      /* ============================================
           GLOBAL RESET & 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 & 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;
        }

        .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;
        }

        /* ============================================
           MOBILE MENU
           ============================================ */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 22px;
            height: 18px;
            background: transparent;
            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 .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;
        }

        .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 .3s ease-in-out;
            z-index: 1000;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .menu-header {
            padding: 2rem 2rem 1rem;
            background: linear-gradient(180deg, #fff 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: transparent;
            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 {
            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);
        }

        .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);
        }

        .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-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
            margin: 1.5rem 0;
        }

        .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;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            margin-top: 80px;
            padding: 80px 0 60px;
            text-align: center;
            background: #1a1a2e;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 80%, #22c55e 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #14b8a6 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, #0ea5e9 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, #6366f1 0%, transparent 50%);
            animation: gradientShift 20s ease infinite;
            opacity: 0.3;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, 
                    rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, 
                    rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            color: #fff;
            text-shadow: 
                0 2px 20px rgba(0, 0, 0, 0.3),
                0 4px 40px rgba(52, 152, 219, 0.2);
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            margin-top: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }


        /* ============================================
           SECTIONS
           ============================================ */
        .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;
        }

        

        /* ============================================
           FOOTER
           ============================================ */
        .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 .divider {
            color: #10b981;
            font-size: 0.75rem;
        }

     
        /* ============================================
           MEDIA QUERIES
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            .benefit-card {
                transition: none;
            }
            .benefit-card:hover::after {
                animation: none;
            }
        }

        @media (min-width: 1200px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .logo img {
                height: 40px !important;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.4;
            }

            .hero .subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .container {
                padding: 0 15px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .nav-breadcrumb {
                font-size: 0.85rem;
            }

            .nav-breadcrumb a {
                max-width: 200px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

      
        }

        @media (max-width: 640px) {
            .mobile-menu {
                width: 100%;
                right: -100%;
            }

            .nav-breadcrumb {
                font-size: 0.875rem;
                padding: 0.4rem 0.8rem;
            }

            .footer-nav .divider {
                display: none;
            }

            .footer-nav {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .price-main .amount {
                font-size: 2rem;
            }

            .price-main .currency {
                font-size: 1.25rem;
            }

            .price-display {
                padding: 1rem;
            }
        }

@media (max-width: 999px) { 
    .hero::before {
        animation: none !important;
    }
}

    .faq { 
      max-width: 900px; 
      margin: 2rem auto; 
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
      line-height: 1.6; 
      padding: 0 1rem;
    }
    .faq h1 { 
      margin-bottom: .75rem; 
      background: linear-gradient(135deg, #065f46, #10b981);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 800;
      font-size: 2.5rem;
      margin-top: 3rem;
    }
    .faq h2 { 
      margin: 3.5rem 0 1rem; 
      background: linear-gradient(135deg, #065f46, #10b981);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      font-size: 1.5rem;
      padding-top: 2.5rem;
      position: relative;
    }
    .faq h2:not(:first-of-type)::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    }
    .hero-box {
      color: #000;
      padding: 1.5rem;
      border-radius: 12px;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
    }
    .hero-box h3 {
      margin-top: 0;
      font-weight: 700;
    }
    .hero-box ul {
      margin: 0;
      padding-left: 1.5rem;
    }
    .hero-box li {
      margin-bottom: 0.5rem;
    }
    .faq details { 
      border: 1px solid #e5e7eb; 
      border-radius: 12px; 
      padding: 1rem 1.25rem; 
      margin: 1rem 0; 
      background: #fff;
      transition: all 0.2s ease;
      border-left: 3px solid #e5e7eb;
    }
    .faq details:hover {
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
      border-left: 3px solid #10b981;
      transform: translateX(3px);
    }
    .faq details[open] {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-left: 3px solid #10b981;
    }
    .faq summary { 
      cursor: pointer; 
      font-weight: 600; 
      outline: none;
      color: #2d3748;
    }
    .faq details div {
      margin-top: 0.75rem;
      color: #4a5568;
      line-height: 1.7;
    }
    .highlight {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.15));
      padding: 0.125rem 0.375rem;
      border-radius: 3px;
      font-weight: 600;
      color: #065f46;
    }
    .win-badge {
      display: inline-block;
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      padding: 0.25rem 0.5rem;
      border-radius: 6px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-left: 0.5rem;
      box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    }
    .section-intro {
      color: #64748b;
      font-style: italic;
      margin-bottom: 1rem;
      padding-left: 1rem;
      border-left: 2px solid #3b82f6;
    }

/* ================================
   PRICING SECTION
   ================================ */

.pricing {
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0, #334155 100%);
    color: #fff;
    padding: 4rem 2rem;
    position: relative;
    margin-top: 6rem;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price-display {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #86efac;
}

.features-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: .5rem;
    margin: 2rem auto;
    max-width: 600px;
    justify-content: center;
    display: grid;
    font-size: 1.2rem;
}

.features-box h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-section {
    margin: 2rem auto;
    max-width: 700px;
}

.credentials {
    font-size: .9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
}

.features-list {
    max-width: 600px;
    margin: 2rem;
    text-align: left;
    list-style: none;
}

.features-list li {
    padding: .5rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
}

@media (max-width: 999px) { 
    .hero::before {
        animation: none !important;
    }
}

.feature-icon {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: -2px;
}

.launch-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0 2.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.countdown-item {
    background: #fff;
    border: 2px solid #10b981;
    border-radius: 12px;
    min-width: 80px;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.2);
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: #64748b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-weight: 600;
}

.countdown-deadline {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #dc2626;
    font-weight: 600;
    background: #fef2f2;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    border: 1px solid #fecaca;
}

.cta-button {
    background: linear-gradient(45deg, #22c55e, #34d399, #10b981, #059669);
    color: #fff !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all .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, .2);
    z-index: 10;
}

.cta-button:visited {
    color: #fff !important;
}

.cta-button span {
    position: relative;
    z-index: 10;
    color: #fff !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 197, 94, .15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    opacity: 1;
    transition: opacity .3s ease;
    z-index: 1;
}

.cta-button:hover::before {
    opacity: 0;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #10b981 0, #047857 100%);
    border-radius: 8px;
    opacity: .7;
    z-index: -1;
    transition: opacity .3s ease;
    filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, .4);
}

.cta-button:hover::after {
    opacity: 0;
}

.cta-large {
    font-size: 1.2rem;
    padding: 16px 40px;
    margin: 2rem 0;
}
