/* ==========================================================================
   RESET AND BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   HEADER AND NAVIGATION
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.logo img {
    height: 55px !important;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Mobile responsiveness for logo */
@media (max-width: 768px) {
    .logo img {
        height: 40px !important;
    }
}


.logo:hover {
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.nav-breadcrumb a {
    color: #15803d;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.nav-breadcrumb a:hover {
    color: #2563eb;
    text-decoration-thickness: 2px;
}

.separator {
    color: #999;
    font-size: 1.1rem;
}

.current {
    color: #333;
    font-weight: 600;
}

        /* Hamburger Button */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 22px;
            height: 18px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            margin-left: 0.25rem;
            position: relative;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 2.5px;
            background: linear-gradient(90deg, #475569 0%, #64748b 100%);
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
            transform-origin: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .menu-toggle:hover span {
            background: linear-gradient(135deg, #065f46, #10b981);
            box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
        }

        .menu-toggle.active {
            opacity: 0;
            pointer-events: none;
        }

        /* Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -380px;
            width: 360px;
            height: 100vh;
            background: linear-gradient(180deg, #f5f7fa 0%, #f8fafc 40%, #f2f4f8 100%);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
            transition: right 0.3s ease-in-out;
            z-index: 1000;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Menu Header */
        .menu-header {
            padding: 2rem 2rem 1rem;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border-bottom: 2px solid rgba(16, 185, 129, 0.1);
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-header h2 {
            font-size: 1.5rem;
                background: linear-gradient(135deg, #065f46, #0b8f63);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            font-weight: 700;
            margin: 0;
        }

        .menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #6b7280;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .menu-close:hover {
            background: rgba(0, 0, 0, 0.05);
            color: #374151;
        }

        /* Menu Content */
        .menu-content {
            padding: 0 2rem 2rem;
        }

        .menu-section {
            margin-bottom: 2rem;
            position: relative;
        }

        .menu-section h3 {
            font-size: 1rem;
            color: #000;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .menu-section h3::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(148, 163, 184, 0.3) 0%, transparent 100%);
        }

        .menu-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            margin: 0.5rem 0;
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 8px;
            background: transparent;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 70%;
            background: linear-gradient(180deg, #10b981, #47e73c));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .menu-item:hover {
            box-shadow: 0 2px 8px rgba(11, 80, 160, 0.1); 
            color: #000;
            transform: translateX(4px);
        }

        .menu-item.active {
            color: #000;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(11, 80, 160, 0.1);
        }

        .menu-item.active::before {
            width: 3px;
        }

        .menu-item.main-link:hover {
            background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
            transform: translateX(0) scale(1.02);
        }

        /* Launch offer special style */
        .menu-item.launch-special {
            background: linear-gradient(45deg, #22c55e, #34d399, #10b981, #059669);
            border: 1px solid #059669;
            color: #fff;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            text-align: center;
            justify-content: center;
        }

        .menu-item.launch-special:hover {
            transform: translateX(4px) scale(1.02);
            box-shadow: 0 6px 20px rgba(4, 26, 99, 0.3);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .menu-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
            margin: 1.5rem 0;
        }

        /* Overlay background */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Sign in button special */
        .menu-item.signin {
            margin-top: 2rem;
            background: transparent;
            border: 1px solid #059669;
            color: #000;
            text-align: center;
            justify-content: center;
        }

        .menu-item.signin:hover {
            background: rgba(16, 185, 129, 0.05);
        }

        .menu-item.active {
            color: #000;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(11, 80, 160, .1);
        }

        .menu-item.active::before {
            width: 3px;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 640px) {
            .mobile-menu {
                width: 100%;
                right: -100%;
            }
            
            .nav-breadcrumb {
                font-size: 0.875rem;
                padding: 0.4rem 0.8rem;
            }
        }


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.cta-button {
    background: linear-gradient(45deg, #22c55e, #34d399, #10b981, #059669);
    color: white !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    z-index: 1;
}

.cta-button:visited {
    color: white !important;
}

.cta-button span {
    position: relative;
    z-index: 10;
    color: white !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-button:hover::before {
    opacity: 0;
}

.hero .cta-button::before,
.hero .cta-button::after {
    z-index: -1 !important;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%); /* Green gradient */
    border-radius: 8px;
    opacity: 0.7;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(10px);
    animation: glowRotate 12s linear infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cta-button:hover::after {
    opacity: 0;
}

.cta-large {
    font-size: 1.2rem;
    padding: 16px 40px;
    margin: 2rem 0;
}


/* ==========================================================================
   SECTIONS
   ========================================================================== */
.why-choose {
    padding: 5rem 0;
    background: white;
}

.platform-features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-top: 0;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================================
   GRID LAYOUTS
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
/* Benefit Cards */
:root{
  --card-bg: rgba(251,252,253,0.95);   /* neutral cool white */
  --card-grad1: rgba(255,255,255,0.9);
  --card-grad2: rgba(248,250,252,0.9);  /* light gray */
  --card-border: rgba(226,232,240,0.8);  /* neutral gray border */
  --card-shadow: rgba(15,23,42,0.08);  /* neutral shadow */
  --card-shadow-hover: rgba(30,58,138,0.12);  /* blue-tinted hover shadow */
  --card-accent: rgba(29,78,216,0.08);  /* dark blue accent */
}

.benefit-card{
  background:
    linear-gradient(180deg, var(--card-grad1), var(--card-grad2)); /* subtle depth */
  padding: 4rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(29,78,216,0.1);  /* dark blue border always visible */
  position: relative;
  overflow: hidden;

  /* crisp + soft with neutral shadows */
  box-shadow: 0 6px 20px var(--card-shadow);
  transform: translateZ(0); /* GPU hint */
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

/* frosted look only where supported */
@supports (backdrop-filter: blur(10px)) {
  .benefit-card{ backdrop-filter: blur(8px); }
}

/* subtle corner sheen */
.benefit-card::before{
  content:'';
  position:absolute; inset:-1px;
  background: radial-gradient(1200px 300px at -10% -10%,
             rgba(255,255,255,0.35), transparent 60%);
  pointer-events:none;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1e3a8a, transparent);
    opacity: .7;
}

/* hover/focus lift - enhance existing borders */
.benefit-card:hover,
.benefit-card:focus-within{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--card-shadow-hover);
  border-color: rgba(29,78,216,0.4);  /* slightly stronger blue border on hover */
  background: 
    linear-gradient(180deg, 
      rgba(255,255,255,0.9), 
      rgba(239,246,255,0.9));  /* very subtle blue tint on hover */
}

/* Animate the accent line on hover for extra polish */
.benefit-card:hover::after {
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0% { 
    opacity: 0.7; 
  }
  50% { 
    opacity: 1;
    filter: brightness(1.2);
  }
  100% { 
    opacity: 0.7; 
  }
}

/* prefers-reduced-motion: keep it calm */
@media (prefers-reduced-motion: reduce){
  .benefit-card{ transition: none; }
  .benefit-card:hover::after { animation: none; }
}

.benefit-card h3, 
.benefit-card p {
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Benefit Icons */
.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.4);
    transform: translate(-50%, -50%) scale(0);
    animation: iconPulse 3s ease-out infinite;
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison {
    background: #1e1e1e;
    padding: 5rem 0;
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.comparison .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: #282c34;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.comparison-side {
    padding: 2rem;
    position: relative;
}

.traditional {
    background: rgba(254, 202, 202, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.aivia-side {
    background: rgba(167, 243, 208, 0.05);
}

.comparison-side h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    text-align: left;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.traditional h3 {
    color: #ef4444;
}

.aivia-side h3 {
    color: #10b981;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li::before {
    content: attr(data-line);
    color: #64748b;
    margin-right: 1rem;
    font-size: 0.8rem;
    min-width: 20px;
    display: inline-block;
}

.diff-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.diff-removed {
    color: #ef4444;
}

.diff-added {
    color: #10b981;
}

.traditional .comparison-list li {
    background: rgba(239, 68, 68, 0.1);
    padding-left: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-right: 1rem;
}

.aivia-side .comparison-list li {
    background: rgba(16, 185, 129, 0.1);
    padding-left: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-right: 1rem;
}

/* ==========================================================================
   PLATFORM FEATURES
   ========================================================================== */
.feature-section {
    background: rgba(249, 249, 249, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    transition: all 0.3s ease;
}

.feature-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.feature-section h3 {
    color: rgb(21, 128, 61);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-top: 2px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing {
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0, #334155 100%);
    color: #fff;
    padding: 4rem 2rem;
    position: relative;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price-display {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #86efac;
}

.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    margin: 2rem auto;
    max-width: 600px;
    justify-content: center;
    display: grid;
    font-size: 1.2rem;
}

.features-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-section {
    margin: 2rem auto;
    max-width: 700px;
}

.credentials {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-detail {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.features-list {
    max-width: 600px;
    margin: 2rem;
    text-align: left;
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes gradientShift {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        filter: blur(40px);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        filter: blur(60px);
    }
    50% {
        transform: rotate(180deg) scale(1);
        filter: blur(50px);
    }
    75% {
        transform: rotate(270deg) scale(0.9);
        filter: blur(70px);
    }
}

@keyframes glowRotate {
    0% {
        filter: blur(10px) hue-rotate(0deg);
    }
    100% {
        filter: blur(10px) hue-rotate(60deg);
    }
}

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(20px, -10px) scale(0.95);
    }
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
    /* Typography */

    h2 {
        font-size: 1.8rem;
    }

    /* Layout Adjustments */
    .container {
        padding: 0 15px;
    }
    
    .demo-section {
        padding: 4rem 1rem;
    }
    
    /* Grid Adjustments */
    .comparison-grid,
    .features-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Form Specific */
    .form-group.full-width {
        grid-column: 1;
    }
    
    /* Comparison Specific */
    .traditional {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Navigation */
    .nav-breadcrumb {
        font-size: 0.85rem;
    }
    
    .nav-breadcrumb a {
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
 
.footer-minimal {
    background: rgba(44, 62, 80, 0.05);
    border-top: 1px solid rgba(52, 152, 219, 0.1);
    padding: 1.5rem 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #10b981;
}

.footer-nav .all-tools {
    color: #10b981;
    font-weight: 500;
}

.footer-nav .divider {
    color: #10b981;
    font-size: 0.75rem;
}

@media (max-width: 640px) {
    .footer-nav .divider {
        display: none;
    }
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}