/* MailGuard - Enterprise Email Security Stylesheet */
:root {
    --color-primary: #0A1628;
    --color-accent: #00D4FF;
    --color-accent-dark: #0066FF;
    --color-text: #E8EDF2;
    --color-text-muted: #94A3B8;
    --color-border: rgba(0, 212, 255, 0.2);
    --color-bg-glass: rgba(10, 22, 40, 0.8);
    --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    --gradient-text: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    --transition-base: 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--color-primary); color: var(--color-text); line-height: 1.6; }
html { scroll-behavior: smooth; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--color-bg-glass); backdrop-filter: blur(20px); border-bottom: 1px solid var(--color-border); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-link { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-link:hover { color: var(--color-accent); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--color-text); }

/* Buttons */
/* Buttons - Professional */.btn {    display: inline-flex;    align-items: center;    justify-content: center;    padding: 0.75rem 1.5rem;    font-size: 1rem;    font-weight: 600;    text-decoration: none;    border-radius: 8px;    border: none;    cursor: pointer;    transition: all 0.3s ease;    white-space: nowrap;}.btn-primary {    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%) !important;    color: white !important;    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);}.btn-primary:hover {    background: linear-gradient(135deg, #00E5FF 0%, #0077FF 100%) !important;    color: white !important;    transform: translateY(-2px);    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);}.btn-secondary {    background: rgba(0, 212, 255, 0.15) !important;    color: #00D4FF !important;    border: 2px solid #00D4FF;}.btn-secondary:hover {    background: rgba(0, 212, 255, 0.25) !important;    color: #00D4FF !important;    transform: translateY(-2px);}.btn-outline {    background: transparent !important;    color: #00D4FF !important;    border: 2px solid #00D4FF;}.btn-outline:hover {    background: #00D4FF !important;    color: #0A1628 !important;}.btn-large {    padding: 1rem 2rem;    font-size: 1.1rem;}.btn-block {    width: 100%;    justify-content: center;}

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; background: linear-gradient(180deg, #0A1628 0%, #0F1F35 100%); overflow: hidden; }
.particles-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(0, 212, 255, 0.1); border: 1px solid var(--color-accent); border-radius: 9999px; margin-bottom: 2rem; color: var(--color-accent); }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(255, 255, 255, 0.85); max-width: 700px; margin: 0 auto 2rem; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-item { padding: 1rem; background: rgba(0, 212, 255, 0.05); border: 1px solid var(--color-border); border-radius: 8px; }
.stat-number { font-size: 2.5rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); margin-top: 0.25rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.mouse { width: 24px; height: 40px; border: 2px solid var(--color-text-muted); border-radius: 12px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--color-accent); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll 2s infinite; }

/* Sections */
section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { display: inline-block; padding: 0.4rem 1rem; background: rgba(0, 212, 255, 0.1); border: 1px solid var(--color-accent); border-radius: 9999px; font-size: 0.85rem; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.2rem; color: rgba(255, 255, 255, 0.85); max-width: 600px; margin: 0 auto; }

/* Trusted By */
.trusted-by { padding: 2rem 0; background: rgba(0, 0, 0, 0.2); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trusted-by-text { text-align: center; color: rgba(255, 255, 255, 0.85); margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; }
.logos-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; opacity: 0.6; }
.logo-placeholder { font-size: 1.2rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }

/* Features */
.features { background: linear-gradient(180deg, #0A1628 0%, #0F1F35 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card { padding: 2rem; background: rgba(30, 45, 70, 0.4); border: 1px solid var(--color-border); border-radius: 16px; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 212, 255, 0.3); border-color: var(--color-accent); }
.feature-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: rgba(0, 212, 255, 0.1); border-radius: 8px; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.feature-card p { color: rgba(255, 255, 255, 0.85); }

/* How It Works */
.how-it-works { background: #152238; }
.steps-container { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.step { flex: 1; min-width: 250px; text-align: center; padding: 2rem; }
.step-number { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; background: var(--gradient-primary); border-radius: 9999px; font-size: 1.5rem; font-weight: 700; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: rgba(255, 255, 255, 0.85); }
.step-arrow { font-size: 2rem; color: var(--color-accent); }

/* Statistics */
.statistics { background: linear-gradient(180deg, #0A1628 0%, #0F1F35 100%); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.stat-card { text-align: center; padding: 2rem; background: rgba(30, 45, 70, 0.4); border: 1px solid var(--color-border); border-radius: 16px; }
.stat-value { font-size: 3rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: rgba(255, 255, 255, 0.85); }

/* Pricing */
.pricing { background: #152238; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: rgba(30, 45, 70, 0.4); border: 1px solid var(--color-border); border-radius: 16px; padding: 2rem; position: relative; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); }
.pricing-card.featured { border-color: var(--color-accent); box-shadow: 0 0 24px rgba(0, 212, 255, 0.3); transform: scale(1.05); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: white; padding: 0.4rem 1rem; border-radius: 9999px; font-size: 0.85rem; }
.pricing-header { text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.amount { font-size: 3rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0; color: rgba(255, 255, 255, 0.85); }
.pricing-features li svg { color: #00FFA3; }

/* Testimonials */
.testimonials { background: linear-gradient(180deg, #0A1628 0%, #0F1F35 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: rgba(30, 45, 70, 0.4); border: 1px solid var(--color-border); border-radius: 16px; padding: 2rem; }
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-text { font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 9999px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-weight: 600; }
.author-name { font-weight: 600; }
.author-title { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); }

/* FAQ */
.faq { background: #152238; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(30, 45, 70, 0.4); border: 1px solid var(--color-border); border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }
.faq-question {
    background: rgba(0, 50, 80, 0.3) !important;    border: none;    width: 100%;    text-align: left;    transition: background 0.3s ease;}.faq-question:hover {    background: rgba(0, 212, 255, 0.1);}.faq-question h3 {
    font-size: 1rem;
    margin: 0;
    color: #ffffff !important;
    font-weight: 500;
}}
.faq-toggle { background: none; border: none; cursor: pointer; color: var(--color-accent); padding: 8px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer p { padding: 0 1rem 1rem; color: rgba(255, 255, 255, 0.85); }

/* Contact */
.contact { background: linear-gradient(180deg, #0A1628 0%, #0F1F35 100%); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
.contact-form-wrapper { background: rgba(30, 45, 70, 0.4); border: 1px solid var(--color-border); border-radius: 16px; padding: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem; background: rgba(0, 0, 0, 0.3); border: 1px solid var(--color-border); border-radius: 8px; color: var(--color-text); font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1); }
.form-privacy { margin-top: 1rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); text-align: center; }
.form-privacy a { color: var(--color-accent); text-decoration: none; }

/* Footer */
.footer { background: var(--color-primary); border-top: 1px solid var(--color-border); padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.85); margin: 1rem 0; }
/* FAQ Fix - END */
.faq-question {
    background: rgba(40, 60, 90, 0.4);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
}

.faq-question h3 {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #00D4FF;
}
/* Link Color Overrides */
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.nav-link:hover {
    color: #00D4FF !important;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-section a:hover {
    color: #00D4FF !important;
}

/* Simplified Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-brand a {
    color: #00D4FF;
    text-decoration: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}






/* ========== LINK COLORS - MUST BE LAST ========== */
/* Navigation Links */
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}
.nav-link:hover {
    color: #00D4FF !important;
}

/* Footer Links */
.footer-column a {
    color: rgba(255, 255, 255, 0.7) !important;
}
.footer-column a:hover {
    color: #00D4FF !important;
}

/* Footer Brand Links */
.footer-brand a {
    color: #00D4FF !important;
}

/* Contact Links */
.contact-item a {
    color: #00D4FF !important;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00E5FF !important;
    text-decoration: underline;
}


/* ========== CONTACT LINKS - MAXIMUM PRIORITY ========== */
.contact-item a[href^="mailto"],
.contact-item a[href^="tel:"] {
    color: #00D4FF !important;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a[href^="mailto"]:hover,
.contact-item a[href^="tel:"]:hover {
    color: #00E5FF !important;
    text-decoration: underline;
}

/* All links in contact section */
.contact-content a {
    color: #00D4FF !important;
}


/* ========== FAQ BUTTONS - INTERACTIVE ========== */
.faq-question {
    background: rgba(40, 60, 90, 0.3) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.2) !important;
    border: 1px solid rgba(0, 212, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.faq-question h3 {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #00D4FF !important;
}

/* ========================================
   MODERN HOVER EFFECTS & MICRO-INTERACTIONS
   ======================================== */

/* Enhanced Feature Cards with 3D Tilt Effect */
.feature-card {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 0;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.feature-card .feature-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

/* Magnetic Button Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 3s ease infinite !important;
    color: white !important;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.3);
}

/* Pricing Cards - Enhanced */
.pricing-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00D4FF, #0066FF, #00D4FF);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%;
    animation: borderGradient 3s linear infinite;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Stats Counter Cards */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #00D4FF;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-number {
    transition: all 0.3s ease;
}

/* Testimonial Cards with Glow */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0, 212, 255, 0.15),
        inset 0 0 30px rgba(0, 212, 255, 0.03);
}

/* FAQ Items - Enhanced */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 212, 255, 0.08) !important;
    border-color: rgba(0, 212, 255, 0.4) !important;
}

.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D4FF, #0066FF);
    transition: width 0.3s ease;
}

.faq-question:hover::after {
    width: 100%;
}

.faq-question[aria-expanded="true"]::after {
    width: 100%;
    background: #00D4FF;
}

/* Navigation Links - Underline Animation */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00D4FF, #0066FF);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(0);
}

/* Logo Hover */
.logo {
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    transform: scale(1.05);
}

/* Social Links (if added later) */
.social-link {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    filter: drop-shadow(0 5px 15px rgba(0, 212, 255, 0.4));
}

/* Input Focus Effects */
input[type="email"],
input[type="text"],
textarea {
    transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 20px rgba(0, 212, 255, 0.2),
        0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Hero Buttons - Special Effects */
.hero .btn-primary {
    position: relative;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Image/Icon Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.feature-icon {
    animation: float 6s ease-in-out infinite;
}

.feature-icon:nth-child(2n) {
    animation-delay: 1s;
}

.feature-icon:nth-child(3n) {
    animation-delay: 2s;
}

/* Pulse Effect for CTAs */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(0, 212, 255, 0.1); }
}

.pulse-effect {
    animation: pulse-glow 2s infinite;
}

/* Footer Links Hover */
.footer-column a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00D4FF;
}

.footer-column a:hover {
    transform: translateX(10px);
    color: #00D4FF !important;
}

.footer-column a:hover::before {
    opacity: 1;
    left: -15px;
}

/* Section Headers - Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 50%, #00D4FF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

/* Card Shine Effect */
@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card:hover .shine-effect {
    animation: shine 0.75s;
}

/* ========================================
   GLASSMORPHISM EFFECT - MODERN FROSTED GLASS
   ======================================== */

/* Glassmorphism Base Classes */
.glass-card {
    background: rgba(40, 60, 90, 0.25) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.glass-card:hover {
    background: rgba(40, 60, 90, 0.35) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
    box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

/* Apply Glassmorphism to Feature Cards */
.feature-card {
    background: rgba(40, 60, 90, 0.25) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Apply Glassmorphism to Pricing Cards */
.pricing-card {
    background: rgba(40, 60, 90, 0.25) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
}

.pricing-card.featured {
    background: rgba(0, 102, 255, 0.15) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(0, 212, 255, 0.2);
}

/* Apply Glassmorphism to Testimonials */
.testimonial-card {
    background: rgba(40, 60, 90, 0.25) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
}

/* Apply Glassmorphism to FAQ */
.faq-item {
    background: rgba(40, 60, 90, 0.2) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Glassmorphism Stats */
.stats-section {
    background: rgba(40, 60, 90, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-item {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Glassmorphism Navigation */
nav {
    background: rgba(10, 22, 40, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glassmorphism Footer */
.footer {
    background: rgba(10, 22, 40, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glassmorphism Contact Form */
.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.1),
        inset 0 0 10px rgba(0, 212, 255, 0.05);
}

/* Glassmorphism Buttons */
.btn-glass {
    background: rgba(0, 212, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    color: #00D4FF !important;
}

.btn-glass:hover {
    background: rgba(0, 212, 255, 0.25) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.25),
        inset 0 0 15px rgba(0, 212, 255, 0.1);
}

/* Glassmorphism Cards with Reflection */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: scaleY(-1);
    opacity: 0.3;
    pointer-events: none;
}

/* Inner Glow Effect */
.glass-card-inner-glow {
    position: relative;
}

.glass-card-inner-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(0, 212, 255, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card-inner-glow:hover::before {
    opacity: 1;
}

/* Frosted Edge Effect */
.frosted-edge {
    position: relative;
}

.frosted-edge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: inherit;
    pointer-events: none;
}

/* ========================================
   PARTICLES CANVAS STYLES
   ======================================== */

.hero {
    position: relative;
    overflow: hidden;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Enhance hero background for better particle visibility */
.hero {
    background: linear-gradient(135deg, #0A1628 0%, #1a2845 50%, #0A1628 100%) !important;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
    animation: heroGradient 15s ease infinite;
    z-index: 0;
}

@keyframes heroGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ========================================
   REMOVE NAVIGATION UNDERLINE ANIMATIONS
   ======================================== */

/* Override the underline effect for nav links */
.nav-link::after {
    display: none !important;
}

.nav-link:hover::after {
    display: none !important;
}

/* Subtle hover effect instead */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00D4FF !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Clean hover without bars */
.footer-column a::before {
    display: none !important;
}

.footer-column a:hover {
    transform: none !important;
    color: #00D4FF !important;
}

/* ========================================
   REMOVE FAQ UNDERLINE BARS
   ======================================== */

.faq-question::after {
    display: none !important;
}

.faq-question:hover::after {
    display: none !important;
}

/* Keep other hover effects */
.faq-question:hover {
    background: rgba(0, 212, 255, 0.2) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* ========================================
   CENTER TEXT IN HOW IT WORKS SECTION
   ======================================== */

.how-it-works .step-number {
    text-align: center !important;
}

.how-it-works h3 {
    text-align: center !important;
}

.how-it-works p {
    text-align: center !important;
}

.how-it-works .step {
    text-align: center !important;
}

/* Force center for all step content */
.step-content {
    text-align: center !important;
}

.process-step {
    text-align: center !important;
}
