      /* ============================================
           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;
        }

        /* ============================================
           BENEFITS & FEATURES GRIDS
           ============================================ */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        /* CSS Variables for Cards */
        :root {
            --card-bg: rgba(251, 252, 253, 0.95);
            --card-grad1: rgba(255, 255, 255, 0.9);
            --card-grad2: rgba(248, 250, 252, 0.9);
            --card-border: rgba(226, 232, 240, 0.8);
            --card-shadow: rgba(15, 23, 42, 0.08);
            --card-shadow-hover: rgba(30, 58, 138, 0.12);
            --card-accent: rgba(29, 78, 216, 0.08);
        }

        .benefit-card {
            background: linear-gradient(180deg, var(--card-grad1), var(--card-grad2));
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(29, 78, 216, 0.1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px var(--card-shadow);
            transform: translateZ(0);
            transition: 
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease,
                background 0.25s ease;
        }

        @supports (backdrop-filter: blur(10px)) {
            .benefit-card {
                backdrop-filter: blur(8px);
            }
        }

        .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: 0.7;
        }

        .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);
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.9), 
                rgba(239, 246, 255, 0.9));
        }

        .benefit-card:hover::after {
            animation: pulse 0.3s ease;
        }

        .benefit-card h3,
        .benefit-card p {
            position: relative;
            z-index: 1;
        }

        .benefit-card p {
            color: #666;
            font-size: 0.95rem;
        }

        .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::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;
        }

        .diff-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            font-family: Monaco, Menlo, 'Ubuntu Mono', monospace;
        }

        .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: #15803d;
            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: 700;
            margin-top: 2px;
        }

        /* ============================================
           PRICING SECTION
           ============================================ */
        .pricing {
            text-align: center;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: #fff;
            padding: 4rem 2rem;
            border-radius: 20px;
        }

        .pricing h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .pricing-header {
            margin-bottom: 2rem;
        }

        .pricing-section {
            padding: 3rem 0;
            margin-top: 2rem;
            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;
        }

        .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: #fff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .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;
        }

        /* Launch Card Specific Styles */
        .launch-card {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            border: 2px solid #10b981;
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.05);
        }

        .launch-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #fff;
            padding: 0.375rem 1.5rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .launch-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .launch-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .launch-subtitle {
            color: #64748b;
            font-size: 1.1rem;
        }

        .price-display {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-radius: 16px;
            margin-bottom: 2rem;
        }

        .price-main {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .price-main .currency {
            font-size: 2rem;
            color: #059669;
            font-weight: 600;
        }

        .price-main .amount {
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
        }

        .price-main .period {
            font-size: 1.25rem;
            color: #059669;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
        }

        .price-breakdown {
            color: #047857;
            font-size: 1rem;
        }

        /* ============================================
           TRUST & GUARANTEE SECTIONS
           ============================================ */
        .trust-section {
            margin: 2rem auto;
            max-width: 700px;
        }

        .trust-badges {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .trust-badge-icon {
            color: #10b981;
            font-size: 1.25rem;
        }

        .trust-badge-text {
            font-size: 0.875rem;
            color: #475569;
        }

        .trust-points {
            text-align: center;
            margin-top: 1.5rem;
            color: #64748b;
            font-size: 0.875rem;
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .guarantee-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin: 3rem 0;
        }

        .guarantee-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .guarantee-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #14532d;
            margin-bottom: 1rem;
        }

        .guarantee-text {
            color: #166534;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============================================
           COUNTDOWN TIMER
           ============================================ */
        .countdown-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 1.5rem 0 2rem;
        }

        .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;
        }

        /* ============================================
           RENEWAL BENEFITS
           ============================================ */
        .renewal-benefits {
            background: #f8fafc;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .benefits-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1.5rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .benefit-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            color: #10b981;
        }

        .benefit-content {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .benefit-content strong {
            color: #1e293b;
            font-size: 1rem;
            line-height: 1.3;
        }

        .benefit-content span {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.4;
        }


        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq-section {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 4rem 0;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-header h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            padding: 1.75rem;
            border-radius: 16px;
            border: 1.5px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .faq-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1.5px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.15;
            transition: opacity 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(16, 185, 129, 0.12);
        }

        .faq-item:hover::before {
            opacity: 0.5;
        }

        .faq-question {
            font-weight: 600;
            background: linear-gradient(135deg, #065f46, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 1.05rem;
            position: relative;
            z-index: 2;
        }

        .faq-icon {
            color: #10b981;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .faq-answer {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-left: 1.5rem;
        }

        /* ============================================
           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;
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid #fff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto;
        }

        .stripe-pricing-container {
            margin: 2rem 0;
            padding: 1rem;
        }

        .features-section {
            margin-bottom: 2rem;
        }

        .features-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin-top: 4rem;
        }

        .feature-icon {
            color: #10b981;
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: -2px;
        }

        .feature-icon.pro {
            color: #3b82f6;
        }

        .feature-text {
            flex: 1;
        }

        .feature-highlight {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 0.125rem 0.375rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.75rem;
            margin-left: 0.5rem;
            color: #92400e;
        }

        /* ============================================
           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;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0.7;
            }
            50% {
                opacity: 1;
                filter: brightness(1.2);
            }
            100% {
                opacity: 0.7;
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ============================================
           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;
            }

            .price-display {
                padding: 1.5rem 1rem;
            }

            .price-main {
                flex-wrap: wrap;
                gap: 0.25rem;
            }

            .price-main .currency {
                font-size: 1.5rem;
            }

            .price-main .amount {
                font-size: 2.5rem;
                line-height: 1;
            }

            .price-main .period {
                font-size: 1rem;
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
            }

            .price-breakdown {
                font-size: 0.875rem;
                line-height: 1.4;
            }

            .renewal-benefits {
                padding: 1.5rem;
            }

            .benefits-title {
                font-size: 1.1rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .benefit-item {
                gap: 0.75rem;
            }

            .benefit-content strong {
                font-size: 0.95rem;
            }

            .benefit-content span {
                font-size: 0.875rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.recommended {
                transform: none;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @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;
    }
}