﻿/* Hotel Booking Page Styles - Custom purple palette */
        :root {
            --brand: #A78BFA;
            --brand-dark: #8B5CF6;
            --brand-light: #C4B5FD;
            --text: #F9FAFB;
            --text-secondary: #E5E7EB;
            --muted: #9CA3AF;
            --line: #374151;
            --success: #10B981;
            --surface: #1F2937;
            --surface-2: #111827;
            --surface-3: #0F172A;
            --gradient-brand: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #7C3AED 100%);
            --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 50%, #0F172A 100%);
            --gradient-purple-dark: linear-gradient(135deg, #3B0764 0%, #1E1B4B 50%, #0F172A 100%);
        }
        
        /* Global polish */
        html {
            scroll-behavior: smooth;
        }
        
        /* Hotel Booking Page - Custom theme overrides */
        body {
            background: #0F172A;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Section 1: Hero Section – Clean Professional */
        .hero-section {
            padding: 48px 24px 72px;
            background: #0F172A;
            position: relative;
            overflow: hidden;
            min-height: 92vh;
            display: flex;
            align-items: center;
        }

        /* Backdrop: single soft gradient, no particles/orbs */
        .hero-backdrop {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 70% 40%, rgba(139,92,246,0.08) 0%, transparent 100%),
                radial-gradient(ellipse 40% 60% at 20% 80%, rgba(99,102,241,0.05) 0%, transparent 100%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1220px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 64px;
            align-items: center;
        }

        .hero-content {
            position: relative;
        }

        /* Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16,185,129,0.08);
            border: 1px solid rgba(16,185,129,0.2);
            border-radius: 100px;
            padding: 6px 16px;
            margin-bottom: 28px;
        }
        .hero-badge .badge-dot {
            width: 7px;
            height: 7px;
            background: #10B981;
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(16,185,129,0.6);
            animation: dotPulse 2s ease-in-out infinite;
        }
        @keyframes dotPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        .hero-badge span {
            font-size: 12.5px;
            font-weight: 600;
            color: #10B981;
            letter-spacing: 0.3px;
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(34px, 4.5vw, 52px);
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.15;
            color: #F9FAFB;
            margin-bottom: 20px;
        }
        .hero-title__accent {
            background: linear-gradient(135deg, #A78BFA 0%, #818CF8 50%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 16.5px;
            color: #9CA3AF;
            line-height: 1.75;
            margin-bottom: 28px;
            max-width: 480px;
        }

        /* Metrics row */
        .hero-metrics {
            display: flex;
            align-items: center;
            gap: 0;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        .hero-metric {
            text-align: center;
            padding: 0 24px;
        }
        .hero-metric:first-child {
            padding-left: 0;
        }
        .hero-metric__num {
            display: block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #F9FAFB;
            letter-spacing: -1px;
            line-height: 1.2;
        }
        .hero-metric__label {
            display: block;
            font-size: 12px;
            color: #6B7280;
            margin-top: 2px;
        }
        .hero-metric__sep {
            width: 1px;
            height: 36px;
            background: rgba(75, 85, 99, 0.4);
            flex-shrink: 0;
        }

        /* CTA Buttons */
        .hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .btn-primary {
            padding: 14px 32px;
            background: var(--gradient-brand);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(139,92,246,0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(139,92,246,0.4);
        }
        .btn-primary i {
            font-size: 12px;
            transition: transform 0.25s;
        }
        .btn-primary:hover i {
            transform: translateX(3px);
        }
        .btn-secondary {
            padding: 14px 28px;
            background: rgba(31,41,55,0.6);
            border: 1px solid rgba(75, 85, 99, 0.5);
            color: #D1D5DB;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-secondary:hover {
            border-color: rgba(167,139,250,0.4);
            color: #F9FAFB;
            background: rgba(31,41,55,0.8);
        }

        /* Proof strip */
        .hero-proof {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-proof__item {
            font-size: 13px;
            color: #6B7280;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-proof__item i {
            color: #10B981;
            font-size: 12px;
        }

        /* ---- Visual panel (right side) ---- */
        .hero-visual {
            position: relative;
        }

        .hero-visual__window {
            background: #111827;
            border: 1px solid rgba(55, 65, 81, 0.6);
            border-top: 1.5px solid rgba(139,92,246,0.35);
            border-radius: 14px;
            overflow: hidden;
            box-shadow:
                0 24px 60px rgba(0,0,0,0.35),
                0 0 0 1px rgba(55,65,81,0.15),
                0 0 80px -20px rgba(139,92,246,0.12);
            transition: box-shadow 0.4s ease;
        }
        .hero-visual__window:hover {
            box-shadow:
                0 28px 70px rgba(0,0,0,0.4),
                0 0 0 1px rgba(55,65,81,0.2),
                0 0 100px -16px rgba(139,92,246,0.18);
        }
        .hero-visual__bar {
            height: 38px;
            background: #1F2937;
            display: flex;
            align-items: center;
            padding: 0 14px;
            gap: 7px;
            border-bottom: 1px solid rgba(55,65,81,0.4);
        }
        .wdot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }
        .wdot--r { background: #EF4444; }
        .wdot--y { background: #F59E0B; }
        .wdot--g { background: #10B981; }
        .hero-visual__url {
            margin-left: 10px;
            font-size: 11.5px;
            color: #6B7280;
        }
        .hero-visual__url i {
            color: #10B981;
            margin-right: 5px;
            font-size: 10px;
        }
        .hero-visual__body {
            padding: 0;
        }

        /* ---- Dashboard mockup ---- */
        .dash-mock {
            display: flex;
            min-height: 310px;
        }
        .dash-mock__sidebar {
            width: 52px;
            background: #1a1f2e;
            border-right: 1px solid rgba(55,65,81,0.3);
            padding: 14px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .dash-mock__logo {
            width: 26px;
            height: 26px;
            border-radius: 7px;
            background: var(--gradient-brand);
            margin-bottom: 6px;
        }
        .dash-mock__nav-item {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(55,65,81,0.3);
        }
        .dash-mock__nav-item--active {
            background: rgba(139,92,246,0.25);
            box-shadow: inset 0 0 0 1.5px rgba(167,139,250,0.5);
        }
        .dash-mock__main {
            flex: 1;
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .dash-mock__cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .dash-mock__card {
            background: rgba(31,41,55,0.5);
            border: 1px solid rgba(55,65,81,0.35);
            border-radius: 10px;
            padding: 12px;
            transition: border-color 0.3s ease, background 0.3s ease;
        }
        .dash-mock__card:hover {
            border-color: rgba(139,92,246,0.3);
            background: rgba(31,41,55,0.7);
        }
        .dash-mock__card-label {
            display: block;
            font-size: 10px;
            color: #6B7280;
            margin-bottom: 4px;
        }
        .dash-mock__card-val {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #F9FAFB;
            letter-spacing: -0.5px;
        }
        .dash-mock__card:nth-child(2) .dash-mock__card-val {
            color: #10B981;
        }
        .dash-mock__card:nth-child(3) .dash-mock__card-val {
            color: #A78BFA;
        }

        /* Table rows */
        .dash-mock__table {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .dash-mock__row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            padding: 9px 12px;
            font-size: 11.5px;
            color: #D1D5DB;
            border-bottom: 1px solid rgba(55,65,81,0.2);
            align-items: center;
        }
        .dash-mock__row--hd {
            font-size: 10px;
            color: #6B7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            background: rgba(31,41,55,0.3);
            border-radius: 6px 6px 0 0;
        }
        .dash-mock__badge {
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 100px;
            white-space: nowrap;
            display: inline-block;
            width: fit-content;
        }
        .dash-mock__badge--g {
            background: rgba(16,185,129,0.12);
            color: #10B981;
        }
        .dash-mock__badge--b {
            background: rgba(96,165,250,0.12);
            color: #60A5FA;
        }
        .dash-mock__badge--y {
            background: rgba(245,158,11,0.12);
            color: #F59E0B;
        }

        /* ---- Floating notifications ---- */
        .hero-float {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(17,24,39,0.92);
            border: 1px solid rgba(55,65,81,0.5);
            border-radius: 12px;
            padding: 10px 16px;
            backdrop-filter: blur(12px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            animation: floatNotif 4s ease-in-out infinite;
        }
        .hero-float--payment {
            bottom: -18px;
            left: -20px;
            animation-delay: 0s;
        }
        .hero-float--booking {
            top: 50px;
            right: -24px;
            animation-delay: 2s;
        }
        @keyframes floatNotif {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        .hero-float__icon {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .hero-float__icon--green {
            background: rgba(16,185,129,0.15);
            color: #10B981;
        }
        .hero-float__icon--purple {
            background: rgba(167,139,250,0.15);
            color: #A78BFA;
        }
        .hero-float__title {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #F9FAFB;
        }
        .hero-float__sub {
            display: block;
            font-size: 11px;
            color: #6B7280;
        }

        /* Subtle glow behind visual panel */
        .hero-visual::before {
            content: '';
            position: absolute;
            inset: -40px;
            background: radial-gradient(ellipse at center, rgba(139,92,246,0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        /* ---- Hero responsive ---- */
        @media (max-width: 960px) {
            .hero-section {
                padding: 40px 20px 56px;
                min-height: auto;
            }
            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .hero-content {
                text-align: center;
            }
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-metrics {
                justify-content: center;
            }
            .hero-cta {
                justify-content: center;
            }
            .hero-proof {
                justify-content: center;
            }
            .hero-float--payment {
                left: 4px;
                bottom: -12px;
            }
            .hero-float--booking {
                right: 4px;
                top: 30px;
            }
        }
        @media (max-width: 600px) {
            .hero-title {
                font-size: 28px;
                letter-spacing: -0.8px;
            }
            .hero-metrics {
                gap: 0;
            }
            .hero-metric {
                padding: 0 16px;
            }
            .hero-metric__num {
                font-size: 22px;
            }
            .hero-float {
                display: none;
            }
            .dash-mock__sidebar {
                display: none;
            }
            .dash-mock__cards {
                grid-template-columns: 1fr;
            }
        }


        /* Problem Section */
        .problem-section {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0F172A 0%, #0C1222 50%, #0F172A 100%);
            position: relative;
            overflow: hidden;
        }
        
        .problem-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .problem-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .problem-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.25);
            border-radius: 50px;
            padding: 8px 18px;
            margin-bottom: 24px;
            font-size: 13px;
            font-weight: 600;
            color: #F87171;
            letter-spacing: 0.5px;
        }
        
        .problem-badge i {
            font-size: 12px;
        }
        
        .problem-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            color: var(--text);
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .problem-subtitle {
            font-size: 17px;
            color: var(--muted);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }
        
        .problem-card {
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.6) 0%, rgba(17, 24, 39, 0.8) 100%);
            border: 1px solid rgba(239, 68, 68, 0.1);
            border-radius: 20px;
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .problem-card:hover {
            transform: translateY(-4px);
            border-color: rgba(239, 68, 68, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .problem-card:hover::before {
            opacity: 1;
        }
        
        .problem-icon-wrap {
            position: relative;
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
        }
        
        .problem-icon {
            width: 48px;
            height: 48px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #F87171;
            position: relative;
            z-index: 1;
        }
        
        .problem-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            background: rgba(239, 68, 68, 0.15);
            border-radius: 12px;
            animation: problemPulse 3s ease-in-out infinite;
        }
        
        @keyframes problemPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
        }
        
        .problem-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        
        .problem-content p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .problem-stat {
            display: flex;
            align-items: baseline;
            gap: 8px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .problem-stat .stat-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #F87171;
            letter-spacing: -1px;
        }
        
        .problem-stat .stat-desc {
            font-size: 12px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .problem-bottom {
            display: flex;
            justify-content: center;
        }
        
        .problem-insight {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            max-width: 600px;
            padding: 24px 32px;
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
            border: 1px solid rgba(167, 139, 250, 0.15);
            border-radius: 16px;
        }
        
        .problem-insight i {
            font-size: 20px;
            color: var(--brand);
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .problem-insight p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Background decorative lines */
        .problem-bg-line {
            position: absolute;
            background: linear-gradient(180deg, transparent, rgba(239, 68, 68, 0.05), transparent);
            pointer-events: none;
        }
        
        .problem-bg-line-1 {
            width: 1px;
            height: 100%;
            left: 20%;
            top: 0;
        }
        
        .problem-bg-line-2 {
            width: 1px;
            height: 100%;
            right: 20%;
            top: 0;
        }
        
        /* Responsive for problem section */
        @media (max-width: 768px) {
            .problem-section {
                padding: 70px 20px;
            }
            
            .problem-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .problem-card {
                padding: 24px;
            }
            
            .problem-insight {
                flex-direction: column;
                text-align: center;
                padding: 20px 24px;
            }
            
            .problem-insight i {
                margin: 0 auto;
            }
        }
        
        /* Section 2: Bento Grid Section */
        .bento-section {
            padding: 80px 20px 120px;
            background: linear-gradient(180deg, #0F172A 0%, #1E1B4B 100%);
            position: relative;
        }
        .bento-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), transparent);
        }
        .bento-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .bento-row {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 24px;
            margin-bottom: 24px;
        }
        .bento-row:nth-child(2) {
            grid-template-columns: 0.8fr 1.2fr;
        }
        .bento-card {
            background: rgba(31,41,55,0.4);
            backdrop-filter: blur(24px);
            border-radius: 28px;
            padding: 40px;
            border: 1px solid rgba(167,139,250,0.2);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-height: 400px;
        }
        .bento-card:hover {
            border-color: rgba(167,139,250,0.4);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(167,139,250,0.2);
        }
        .bento-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--brand-light);
            margin-bottom: 16px;
            opacity: 0.8;
        }
        .bento-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.3;
            max-width: 400px;
        }
        .bento-description {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 380px;
        }
        .bento-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--brand-light);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .bento-link:hover {
            color: white;
            gap: 12px;
        }
        .bento-link i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        .bento-link:hover i {
            transform: translateX(4px);
        }
        
        /* Bento Visual Elements */
        .bento-visual {
            position: absolute;
            bottom: 0;
            right: 0;
            pointer-events: none;
        }
        
        /* Floating Cards Visual */
        .bento-cards-visual {
            width: 320px;
            height: 250px;
            bottom: 20px;
            right: 20px;
        }
        .floating-card {
            position: absolute;
            width: 100px;
            height: 140px;
            background: linear-gradient(145deg, #1F2937 0%, #374151 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--brand-light);
            border: 1px solid rgba(167,139,250,0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .floating-card.card-1 {
            bottom: 60px;
            right: 140px;
            transform: rotate(-15deg);
            z-index: 3;
        }
        .floating-card.card-2 {
            bottom: 40px;
            right: 70px;
            transform: rotate(5deg);
            z-index: 2;
            background: linear-gradient(145deg, #374151 0%, #4B5563 100%);
        }
        .floating-card.card-3 {
            bottom: 20px;
            right: 0px;
            transform: rotate(20deg);
            z-index: 1;
            background: linear-gradient(145deg, #4B5563 0%, #6B7280 100%);
        }
        .bento-card:hover .floating-card.card-1 {
            transform: rotate(-10deg) translateY(-10px);
        }
        .bento-card:hover .floating-card.card-2 {
            transform: rotate(8deg) translateY(-5px);
        }
        .bento-card:hover .floating-card.card-3 {
            transform: rotate(15deg) translateY(-8px);
        }
        
        /* Payment Logos Visual */
        .bento-logos-visual {
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 12px;
        }
        .payment-logo {
            width: 50px;
            height: 50px;
            background: rgba(31,41,55,0.8);
            border: 1px solid rgba(167,139,250,0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--brand-light);
            transition: all 0.3s ease;
        }
        .bento-card:hover .payment-logo {
            transform: translateY(-5px);
            border-color: rgba(167,139,250,0.5);
        }
        .bento-card:hover .payment-logo:nth-child(2) {
            transition-delay: 0.05s;
        }
        .bento-card:hover .payment-logo:nth-child(3) {
            transition-delay: 0.1s;
        }
        .bento-card:hover .payment-logo:nth-child(4) {
            transition-delay: 0.15s;
        }
        
        /* Dashboard Chip Visual */
        .bento-chip-visual {
            bottom: 30px;
            right: 30px;
        }
        .dashboard-chip {
            width: 120px;
            height: 120px;
            background: linear-gradient(145deg, rgba(31,41,55,0.8) 0%, rgba(55,65,81,0.8) 100%);
            border: 2px solid rgba(167,139,250,0.3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--brand-light);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.1);
            position: relative;
            animation: float 4s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .dashboard-chip::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: var(--gradient-brand);
            border-radius: 22px;
            z-index: -1;
            opacity: 0.5;
            filter: blur(10px);
        }
        
        /* Vault Visual */
        .bento-vault-visual {
            bottom: 30px;
            right: 50px;
        }
        .vault-dial {
            width: 180px;
            height: 180px;
            background: linear-gradient(145deg, #1F2937 0%, #374151 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 3px solid rgba(167,139,250,0.3);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.1);
        }
        .vault-inner {
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, #374151 0%, #4B5563 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--brand-light);
            border: 2px solid rgba(167,139,250,0.4);
            z-index: 2;
        }
        .vault-ring {
            position: absolute;
            width: 140px;
            height: 140px;
            border: 2px dashed rgba(167,139,250,0.3);
            border-radius: 50%;
            animation: spin 20s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .vault-dots {
            position: absolute;
            width: 160px;
            height: 160px;
        }
        .vault-dots span {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--brand-light);
            border-radius: 50%;
            opacity: 0.6;
        }
        .vault-dots span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
        .vault-dots span:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
        .vault-dots span:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
        .vault-dots span:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }
        .vault-dots span:nth-child(5) { top: 15%; right: 15%; }
        .vault-dots span:nth-child(6) { bottom: 15%; right: 15%; }
        .vault-dots span:nth-child(7) { bottom: 15%; left: 15%; }
        .vault-dots span:nth-child(8) { top: 15%; left: 15%; }
        
        /* Old control section (now hidden/replaced) */
        .control-section {
            display: none;
        }
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(38px, 5.5vw, 60px);
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 50%, #C4B5FD 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
            position: relative;
            filter: drop-shadow(0 0 20px rgba(167,139,250,0.4));
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-brand);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(167,139,250,0.8);
        }
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--muted);
            margin-bottom: 60px;
            font-weight: 400;
        }
        .website-images-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .website-image-card {
            background: rgba(31,41,55,0.6);
            backdrop-filter: blur(24px);
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(167,139,250,0.2);
            border: 1px solid rgba(167,139,250,0.2);
            transition: all 0.5s;
            overflow: hidden;
            position: relative;
        }
        .website-image-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(167,139,250,0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s;
        }
        .website-image-card:hover::before {
            opacity: 1;
        }
        .website-image-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(167,139,250,0.3), 0 0 0 1px rgba(167,139,250,0.5);
            border-color: rgba(167,139,250,0.5);
        }
        .website-image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(167,139,250,0.2) 0%, rgba(124,58,237,0.1) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            border: 2px dashed rgba(167,139,250,0.4);
            position: relative;
            overflow: hidden;
        }
        .website-image-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(167,139,250,0.3) 0%, transparent 70%);
            animation: rotate 10s linear infinite;
        }
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .website-image-placeholder i {
            font-size: 48px;
            color: var(--brand-light);
            opacity: 0.7;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 0 10px rgba(167,139,250,0.6));
        }
        
        /* Section 3: Peak Features - Dark Theme */
        .peak-features-section {
            padding: 120px 20px;
            background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%);
            position: relative;
        }
        .peak-features-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }
        .peak-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        .peak-feature-card {
            background: rgba(31,41,55,0.5);
            backdrop-filter: blur(24px);
            border-radius: 32px;
            padding: 48px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(167,139,250,0.2);
            border: 1px solid rgba(167,139,250,0.2);
            transition: all 0.5s;
            position: relative;
            overflow: hidden;
        }
        .peak-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-brand);
            transform: scaleX(0);
            transition: transform 0.5s;
            box-shadow: 0 0 20px rgba(167,139,250,0.8);
        }
        .peak-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(167,139,250,0.3), 0 0 0 1px rgba(167,139,250,0.5);
            border-color: rgba(167,139,250,0.5);
        }
        .peak-feature-card:hover::before {
            transform: scaleX(1);
        }
        .peak-feature-icon {
            font-size: 56px;
            margin-bottom: 24px;
            display: block;
        }
        .peak-feature-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text);
        }
        .peak-feature-description {
            font-size: 17px;
            color: var(--muted);
            line-height: 1.75;
        }
        .peak-feature-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(167,139,250,0.2) 0%, rgba(124,58,237,0.1) 100%);
            border-radius: 16px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(167,139,250,0.4);
            position: relative;
            overflow: hidden;
        }
        .peak-feature-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(167,139,250,0.3) 0%, transparent 70%);
            animation: rotate 10s linear infinite;
        }
        .peak-feature-image i {
            font-size: 64px;
            color: var(--brand-light);
            opacity: 0.7;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 0 15px rgba(167,139,250,0.6));
        }
        
        /* Section 4: Comparison - Dark Theme */
        .comparison-section {
            padding: 120px 20px;
            background: linear-gradient(180deg, #0F172A 0%, #1E1B4B 100%);
            position: relative;
        }
        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), transparent);
        }
        .comparison-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 60px auto 0;
        }
        .comparison-card {
            background: rgba(31,41,55,0.5);
            backdrop-filter: blur(24px);
            border-radius: 32px;
            padding: 48px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(167,139,250,0.2);
            border: 1px solid rgba(167,139,250,0.2);
            transition: all 0.4s;
        }
        .comparison-card.others {
            border-color: rgba(239,68,68,0.3);
            box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(239,68,68,0.2);
        }
        .comparison-card.us {
            border: 2px solid rgba(167,139,250,0.5);
            background: rgba(167,139,250,0.1);
            box-shadow: 0 8px 32px rgba(167,139,250,0.3), 0 0 0 1px rgba(167,139,250,0.5);
        }
        .comparison-card:hover {
            transform: translateY(-4px);
        }
        .comparison-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 24px;
            text-align: center;
        }
        .comparison-card.others .comparison-title {
            color: #ef4444;
        }
        .comparison-card.us .comparison-title {
            color: var(--brand);
        }
        .comparison-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, rgba(167,139,250,0.2) 0%, rgba(124,58,237,0.1) 100%);
            border-radius: 16px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(167,139,250,0.4);
            position: relative;
            overflow: hidden;
        }
        .comparison-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(167,139,250,0.3) 0%, transparent 70%);
            animation: rotate 10s linear infinite;
        }
        .comparison-image i {
            font-size: 80px;
            color: var(--brand-light);
            opacity: 0.7;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 0 20px rgba(167,139,250,0.6));
        }
        .comparison-list {
            list-style: none;
        }
        .comparison-list li {
            padding: 16px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 16px;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(167,139,250,0.1);
        }
        .comparison-list li:last-child {
            border-bottom: none;
        }
        .comparison-list li::before {
            content: '✓';
            color: var(--brand);
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139,92,246,0.1);
            border-radius: 50%;
        }
        .comparison-card.others .comparison-list li::before {
            content: '✗';
            color: #ef4444;
            background: rgba(239,68,68,0.1);
        }
        
        /* Section 5: All Features - Floating Design - Dark Theme */
        .all-features-section {
            padding: 120px 20px;
            background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%);
            position: relative;
            overflow: hidden;
        }
        .all-features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), transparent);
        }
        .floating-features-container {
            max-width: 1400px;
            margin: 60px auto 0;
            position: relative;
            min-height: 600px;
        }
        .floating-feature {
            position: absolute;
            background: rgba(31,41,55,0.7);
            backdrop-filter: blur(24px);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(167,139,250,0.3);
            border: 1px solid rgba(167,139,250,0.3);
            transition: all 0.5s;
            cursor: pointer;
            width: 280px;
        }
        .floating-feature:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 60px rgba(167,139,250,0.4), 0 0 0 1px rgba(167,139,250,0.6);
            z-index: 10;
            border-color: rgba(167,139,250,0.6);
        }
        .floating-feature-icon {
            font-size: 40px;
            margin-bottom: 16px;
            display: block;
        }
        .floating-feature-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
        .floating-feature-text {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }
        /* Position floating features */
        .floating-feature:nth-child(1) { top: 0; left: 10%; animation: float1 6s ease-in-out infinite; }
        .floating-feature:nth-child(2) { top: 15%; right: 15%; animation: float2 7s ease-in-out infinite; }
        .floating-feature:nth-child(3) { top: 40%; left: 5%; animation: float3 8s ease-in-out infinite; }
        .floating-feature:nth-child(4) { top: 50%; right: 10%; animation: float4 6.5s ease-in-out infinite; }
        .floating-feature:nth-child(5) { bottom: 20%; left: 20%; animation: float5 7.5s ease-in-out infinite; }
        .floating-feature:nth-child(6) { bottom: 10%; right: 5%; animation: float6 8.5s ease-in-out infinite; }
        .floating-feature:nth-child(7) { top: 25%; left: 50%; transform: translateX(-50%); animation: float7 7s ease-in-out infinite; }
        .floating-feature:nth-child(8) { bottom: 35%; left: 50%; transform: translateX(-50%); animation: float8 6s ease-in-out infinite; }
        
        @keyframes float1 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        @keyframes float2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(-2deg); }
        }
        @keyframes float3 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-18px) rotate(1deg); }
        }
        @keyframes float4 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-22px) rotate(-1deg); }
        }
        @keyframes float5 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        @keyframes float6 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-24px) rotate(-2deg); }
        }
        @keyframes float7 {
            0%, 100% { transform: translate(-50%, 0) rotate(0deg); }
            50% { transform: translate(-50%, -20px) rotate(1deg); }
        }
        @keyframes float8 {
            0%, 100% { transform: translate(-50%, 0) rotate(0deg); }
            50% { transform: translate(-50%, -22px) rotate(-1deg); }
        }
        
        /* Section 6: Customise Package - MINIMAL 3D FLOATING EXPERIENCE */
        .customise-section {
            padding: 80px 20px 100px;
            background: linear-gradient(180deg, #0a0f1a 0%, #0F172A 50%, #0a0f1a 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Ambient Light Orbs */
        .customise-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
            animation: ambientFloat 15s ease-in-out infinite;
        }
        .customise-section::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
            animation: ambientFloat 18s ease-in-out infinite reverse;
        }
        @keyframes ambientFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -20px) scale(1.05); }
            66% { transform: translate(-20px, 30px) scale(0.95); }
        }
        
        /* Floating Stars */
        .customise-stars {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .customise-star {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(167,139,250,0.6);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(167,139,250,0.8);
            animation: starTwinkle 3s ease-in-out infinite;
        }
        .customise-star:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .customise-star:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.5s; }
        .customise-star:nth-child(3) { top: 60%; left: 5%; animation-delay: 1s; }
        .customise-star:nth-child(4) { top: 70%; left: 90%; animation-delay: 1.5s; }
        .customise-star:nth-child(5) { top: 40%; left: 95%; animation-delay: 2s; }
        .customise-star:nth-child(6) { top: 80%; left: 15%; animation-delay: 2.5s; }
        @keyframes starTwinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }
        
        /* Section Title - Minimal */
        .customise-section .section-title {
            position: relative;
            z-index: 2;
            margin-bottom: 60px;
        }
        
        /* Main 3D Container */
        .customise-3d-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            perspective: 2000px;
            position: relative;
            z-index: 2;
        }
        
        /* Two-Column Grid */
        .customise-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 50px;
            align-items: start;
            transform-style: preserve-3d;
        }
        
        /* Left Column - 3D Floating Card */
        .customise-left {
            transform-style: preserve-3d;
        }
        
        /* UNIFIED BUILDER CARD */
        .builder-card {
            background: linear-gradient(165deg, rgba(30,27,75,0.7) 0%, rgba(15,23,42,0.9) 100%);
            backdrop-filter: blur(40px);
            border: 1px solid rgba(167,139,250,0.15);
            border-radius: 32px;
            overflow: hidden;
            position: relative;
            transform: rotateY(-2deg) rotateX(1deg);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 60px 120px rgba(0,0,0,0.5),
                0 30px 60px rgba(139,92,246,0.1),
                inset 0 1px 0 rgba(255,255,255,0.05);
        }
        .builder-card:hover {
            transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
        }
        
        /* Glowing Edge */
        .builder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), transparent);
        }
        
        /* Package Section */
        .package-section {
            padding: 24px 32px;
            border-bottom: 1px solid rgba(167,139,250,0.08);
            position: relative;
        }
        
        .package-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }
        
        .package-info {
            flex: 1;
        }
        
        .package-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(139,92,246,0.15);
            border: 1px solid rgba(139,92,246,0.3);
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            color: var(--brand);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .package-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #10B981;
            border-radius: 50%;
            animation: pulseGreen 2s ease-in-out infinite;
        }
        @keyframes pulseGreen {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
            50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
        }
        
        .package-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }
        
        .package-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.4;
            max-width: 400px;
        }
        
        .package-price-box {
            text-align: right;
            padding: 14px 18px;
            background: rgba(139,92,246,0.08);
            border: 1px solid rgba(139,92,246,0.15);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }
        .package-price-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .price-label {
            font-size: 10px;
            color: var(--muted);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        
        .base-package-price {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1.5px;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        /* Addons Section */
        .addons-section {
            padding: 16px 0 12px;
        }
        
        .addons-header {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .addons-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .addons-title i {
            color: var(--brand);
            font-size: 11px;
        }
        
        .addons-subtitle {
            font-size: 10px;
            color: var(--muted);
        }
        
        /* Unified Addon Chips Container */
        .addons-pills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 12px;
        }
        
        /* Addon Chip with Description */
        .addon-chip {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            background: rgba(15,23,42,0.6);
            border: 1px solid rgba(167,139,250,0.15);
            border-radius: 12px;
            padding: 10px 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            width: calc(50% - 4px);
            max-width: 220px;
        }
        .addon-chip:hover {
            border-color: rgba(167,139,250,0.4);
            background: rgba(139,92,246,0.08);
        }
        .addon-chip.active {
            background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(124,58,237,0.15));
            border-color: rgba(139,92,246,0.5);
        }
        .addon-chip .chip-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 8px;
        }
        .addon-chip .chip-left {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            min-width: 0;
        }
        .addon-chip .chip-icon {
            font-size: 14px;
            flex-shrink: 0;
        }
        .addon-chip .chip-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .addon-chip .chip-price {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 12px;
            color: var(--brand);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .addon-chip .chip-desc {
            font-size: 11px;
            color: var(--muted);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .addon-chip .chip-check {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 16px;
            height: 16px;
            background: var(--gradient-brand);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: white;
        }
        .addon-chip {
            position: relative;
        }
        .addon-chip.active .chip-check {
            display: flex;
        }
        
        /* Show More Button */
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: 1px solid rgba(167,139,250,0.2);
            color: var(--muted);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .view-all-btn:hover {
            border-color: var(--brand);
            color: var(--brand);
        }
        .view-all-btn i {
            transition: transform 0.2s ease;
            font-size: 10px;
        }
        .view-all-btn.expanded i {
            transform: rotate(180deg);
        }
        
        /* All Addons Grid - Same chip style */
        .all-addons-grid {
            display: none;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(167,139,250,0.08);
            animation: fadeSlideUp 0.3s ease;
        }
        .all-addons-grid.visible {
            display: flex;
        }
        .view-all-btn:hover {
            border-color: var(--brand);
            color: var(--brand);
        }
        .view-all-btn i {
            transition: transform 0.3s ease;
            font-size: 12px;
        }
        .view-all-btn.expanded i {
            transform: rotate(180deg);
        }
        
        /* All Addons Grid */
        .all-addons-grid {
            display: none;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid rgba(167,139,250,0.08);
            animation: fadeSlideUp 0.3s ease;
        }
        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .all-addons-grid.visible {
            display: flex;
        }
        
        /* Compact Addon Card */
        .addon-card {
            background: rgba(15,23,42,0.5);
            border: 1px solid rgba(167,139,250,0.1);
            border-radius: 6px;
            padding: 6px 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .addon-card:hover {
            border-color: rgba(167,139,250,0.3);
            background: rgba(139,92,246,0.05);
        }
        .addon-card.active {
            border-color: rgba(139,92,246,0.4);
            background: rgba(139,92,246,0.1);
        }
        .addon-card.active::before {
            content: '✓';
            position: absolute;
            top: 12px;
            right: 12px;
            width: 22px;
            height: 22px;
            background: var(--gradient-brand);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
        }
        .addon-card {
            position: relative;
        }
        
        .addon-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 6px;
            margin-bottom: 1px;
        }
        .addon-name {
            font-size: 10px;
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            min-width: 0;
        }
        .addon-name .addon-icon-wrapper {
            font-size: 11px;
            flex-shrink: 0;
        }
        .addon-name span:last-child {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .addon-price {
            font-size: 9px;
            font-weight: 600;
            color: var(--brand);
            font-family: 'Space Grotesk', sans-serif;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .addon-description {
            font-size: 8px;
            color: var(--muted);
            line-height: 1.2;
            margin-top: 0;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .addon-select-btn {
            margin-top: 3px;
            padding: 3px 8px;
            background: transparent;
            color: var(--brand);
            border: 1px solid rgba(139,92,246,0.3);
            border-radius: 4px;
            font-size: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .addon-select-btn:hover {
            background: rgba(139,92,246,0.1);
            border-color: rgba(139,92,246,0.5);
        }
        .addon-card.active .addon-select-btn {
            background: var(--gradient-brand);
            color: white;
            border-color: transparent;
        }
        
        /* Force description to show (override any conflicting styles) */
        .all-addons-grid .addon-card .addon-description {
            display: -webkit-box !important;
            -webkit-line-clamp: 1 !important;
            -webkit-box-orient: vertical !important;
            max-height: none !important;
            opacity: 1 !important;
            overflow: hidden !important;
            margin-top: 0 !important;
            font-size: 8px;
            color: var(--muted);
            line-height: 1.2;
        }
        
        @keyframes rotateBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .base-package-banner:hover::after {
            opacity: 1;
        }
        .base-package-banner:hover {
            transform: translateY(-8px) rotateX(2deg);
            box-shadow: 
                0 40px 100px rgba(0,0,0,0.7),
                0 0 60px rgba(139,92,246,0.2),
                inset 0 1px 0 rgba(255,255,255,0.1);
        }
        
        /* Package Header with Status Bar */
        .package-header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 28px;
            background: rgba(139,92,246,0.1);
            border-bottom: 1px solid rgba(167,139,250,0.15);
            position: relative;
            z-index: 2;
        }
        .package-status {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .status-dot {
            width: 10px;
            height: 10px;
            background: #10B981;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(16,185,129,0.8);
            animation: statusPulse 2s ease-in-out infinite;
        }
        @keyframes statusPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }
        .status-text {
            font-size: 12px;
            font-weight: 600;
            color: #10B981;
            letter-spacing: 0.5px;
            font-family: 'JetBrains Mono', monospace;
        }
        .package-tier {
            background: var(--gradient-brand);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(139,92,246,0.4);
        }
        
        /* Package Main Content */
        .package-main-content {
            padding: 32px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
        }
        
        .base-package-info {
            margin-bottom: 0;
        }
        .base-package-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 14px;
            line-height: 1.2;
        }
        .base-package-title .title-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-brand);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 8px 24px rgba(139,92,246,0.4);
        }
        .base-package-subtitle {
            font-size: 15px;
            color: var(--muted);
            font-weight: 400;
            padding-left: 62px;
            max-width: 400px;
            line-height: 1.5;
        }
        
        /* Price Display - 3D Counter Style */
        .price-display-container {
            text-align: right;
        }
        .price-label {
            font-size: 11px;
            color: var(--muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            font-family: 'JetBrains Mono', monospace;
        }
        .base-package-price {
            font-size: 52px;
            font-weight: 800;
            background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #7C3AED 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
            line-height: 1;
            letter-spacing: -3px;
            position: relative;
            display: inline-block;
            filter: drop-shadow(0 4px 8px rgba(139,92,246,0.3));
            font-family: 'JetBrains Mono', monospace;
        }
        .base-package-price::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
            pointer-events: none;
            animation: priceGlow 3s ease-in-out infinite;
        }
        @keyframes priceGlow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }
        
        /* Package Features Preview */
        .package-features-preview {
            padding: 0 32px 28px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(139,92,246,0.1);
            border: 1px solid rgba(167,139,250,0.2);
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .feature-tag:hover {
            background: rgba(139,92,246,0.2);
            border-color: rgba(167,139,250,0.4);
            transform: translateY(-2px);
        }
        .feature-tag i {
            color: var(--brand);
            font-size: 10px;
        }
            content: '🎯';
            font-size: 24px;
        }
        .base-package-subtitle {
            font-size: 15px;
            color: var(--muted);
            font-weight: 400;
            padding-left: 62px;
            max-width: 400px;
            line-height: 1.5;
        }
        
        /* Price Display - 3D Counter Style */
        .price-display-container {
            text-align: right;
        }
        .price-label {
            font-size: 11px;
            color: var(--muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            font-family: 'JetBrains Mono', monospace;
        }
        .base-package-price {
            font-size: 52px;
            font-weight: 800;
            background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #7C3AED 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
            line-height: 1;
            letter-spacing: -3px;
            position: relative;
            display: inline-block;
            filter: drop-shadow(0 4px 8px rgba(139,92,246,0.3));
            font-family: 'JetBrains Mono', monospace;
        }
        .base-package-price::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
            pointer-events: none;
            animation: priceGlow 3s ease-in-out infinite;
        }
        @keyframes priceGlow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }
        
        /* Package Features Preview */
        .package-features-preview {
            padding: 0 32px 28px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(139,92,246,0.1);
            border: 1px solid rgba(167,139,250,0.2);
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .feature-tag:hover {
            background: rgba(139,92,246,0.2);
            border-color: rgba(167,139,250,0.4);
            transform: translateY(-2px);
        }
        .feature-tag i {
            color: var(--brand);
            font-size: 10px;
        }
        .package-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--brand);
            margin: 24px 0;
        }
        
        /* ADDONS SECTION - IMMERSIVE 3D BUILDER */
        .addons-section {
            position: relative;
        }
        .addons-compact-container {
            background: 
                linear-gradient(180deg, rgba(31,41,55,0.8) 0%, rgba(17,24,39,0.9) 100%);
            backdrop-filter: blur(40px);
            border: 1px solid rgba(167,139,250,0.15);
            border-radius: 28px;
            padding: 0;
            box-shadow: 
                0 25px 80px rgba(0,0,0,0.5),
                0 0 0 1px rgba(167,139,250,0.1),
                inset 0 1px 0 rgba(255,255,255,0.03);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .addons-compact-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(139,92,246,0.03) 25%,
                rgba(167,139,250,0.05) 50%,
                rgba(139,92,246,0.03) 75%,
                transparent 100%);
            animation: shimmerPass 8s linear infinite;
            pointer-events: none;
        }
        @keyframes shimmerPass {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }
        .addons-compact-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05));
            pointer-events: none;
        }
        
        /* Addons Header - Command Center Style */
        .addons-header {
            text-align: center;
            padding: 20px 32px;
            position: relative;
            z-index: 1;
            background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, transparent 100%);
            border-bottom: 1px solid rgba(167,139,250,0.1);
        }
        .addons-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: var(--gradient-brand);
            border-radius: 0 0 4px 4px;
            box-shadow: 0 0 30px rgba(139,92,246,0.6);
        }
        .addons-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0;
            letter-spacing: -0.3px;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .addons-header h3::before {
            content: '🚀';
            font-size: 20px;
        }
        .addons-header p {
            color: var(--muted);
            font-size: 13px;
            font-weight: 400;
            max-width: 500px;
            margin: 4px auto 0;
            line-height: 1.4;
        }
        
        /* Boost Badge - Animated */
        .popular-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 
                0 8px 24px rgba(139,92,246,0.5),
                0 4px 12px rgba(139,92,246,0.3),
                inset 0 1px 0 rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }
        .popular-label::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: labelShine 3s ease-in-out infinite;
        }
        @keyframes labelShine {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }
        .popular-label i {
            animation: fireFlicker 1s ease-in-out infinite;
            font-size: 16px;
        }
        @keyframes fireFlicker {
            0%, 100% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.1) rotate(-5deg); }
            75% { transform: scale(1.1) rotate(5deg); }
        }
        
        /* Featured Pills Container */
        .addons-pills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            padding: 28px 32px;
            position: relative;
            z-index: 2;
        }
        
        /* Individual Addon Pill - 3D Floating Style */
        .addon-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(31,41,55,0.9) 0%, rgba(17,24,39,0.95) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(167,139,250,0.25);
            border-radius: 50px;
            padding: 12px 22px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            position: relative;
            box-shadow: 
                0 8px 24px rgba(0,0,0,0.4),
                0 4px 12px rgba(139,92,246,0.1),
                inset 0 1px 0 rgba(255,255,255,0.05);
            overflow: hidden;
        }
        .addon-pill::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 50px;
        }
        .addon-pill:hover {
            border-color: rgba(167,139,250,0.5);
            transform: translateY(-6px) scale(1.02);
            box-shadow: 
                0 16px 40px rgba(0,0,0,0.5),
                0 8px 20px rgba(139,92,246,0.2),
                inset 0 1px 0 rgba(255,255,255,0.1);
        }
        .addon-pill:hover::before {
            opacity: 1;
        }
        .addon-pill.active {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            color: white;
            border-color: transparent;
            box-shadow: 
                0 12px 32px rgba(139,92,246,0.5),
                0 6px 16px rgba(139,92,246,0.3),
                inset 0 1px 0 rgba(255,255,255,0.2),
                inset 0 -2px 0 rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .addon-pill.active::before {
            display: none;
        }
        .addon-pill.active::after {
            content: '✓';
            margin-left: 8px;
            font-weight: 700;
            font-size: 14px;
            animation: checkmarkBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        @keyframes checkmarkBounce {
            0% { transform: scale(0) rotate(-180deg); opacity: 0; }
            60% { transform: scale(1.2) rotate(10deg); }
            100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }
        .addon-pill .addon-icon {
            font-size: 18px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            position: relative;
            z-index: 1;
        }
        .addon-pill .addon-price {
            font-weight: 700;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
        }
        
        /* View All Button - Modern Style */
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: 2px solid rgba(167,139,250,0.3);
            color: var(--text-secondary);
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin: 0 auto 32px;
            position: relative;
            overflow: hidden;
        }
        .view-all-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-brand);
            opacity: 0;
            transition: opacity 0.4s;
            border-radius: 50px;
        }
        .view-all-btn:hover {
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 
                0 12px 32px rgba(139,92,246,0.4),
                0 6px 16px rgba(139,92,246,0.2);
        }
        .view-all-btn:hover::before {
            opacity: 1;
        }
        .view-all-btn i,
        .view-all-btn span {
            position: relative;
            z-index: 1;
        }
        .view-all-btn i {
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-size: 16px;
        }
        .view-all-btn.expanded i {
            transform: rotate(180deg);
        }
        /* All Addons Grid - Immersive Layout */
        .all-addons-grid {
            display: none;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 0 32px 32px;
            position: relative;
            z-index: 2;
            animation: gridFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .all-addons-grid::before {
            content: 'ALL AVAILABLE FEATURES';
            position: absolute;
            top: -30px;
            left: 32px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--brand);
            opacity: 0.5;
            font-family: 'JetBrains Mono', monospace;
        }
        @keyframes gridFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .all-addons-grid.visible {
            display: grid;
        }
        
        /* Addon Card - 3D Interactive Design */
        .addon-card {
            background: linear-gradient(145deg, rgba(31,41,55,0.9) 0%, rgba(17,24,39,0.95) 100%);
            border: 1px solid rgba(167,139,250,0.15);
            border-radius: 20px;
            padding: 20px 24px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: auto;
            min-height: 80px;
            overflow: hidden;
            position: relative;
            box-shadow: 
                0 8px 32px rgba(0,0,0,0.4),
                inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .addon-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139,92,246,0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
            border-radius: 20px;
        }
        .addon-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-brand);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .addon-card:hover::before {
            opacity: 1;
        }
        .addon-card:hover::after {
            transform: scaleX(1);
        }
        .addon-card:hover {
            border-color: rgba(167,139,250,0.3);
            transform: translateY(-6px);
            box-shadow: 
                0 20px 50px rgba(0,0,0,0.5),
                0 10px 25px rgba(139,92,246,0.15),
                inset 0 1px 0 rgba(255,255,255,0.05);
        }
        
        /* Selected State */
        .addon-card.active,
        .addon-card.selected {
            background: linear-gradient(145deg, rgba(139,92,246,0.15) 0%, rgba(124,58,237,0.1) 100%);
            border-color: rgba(139,92,246,0.4);
            box-shadow: 
                0 12px 40px rgba(139,92,246,0.25),
                0 6px 20px rgba(139,92,246,0.15),
                inset 0 1px 0 rgba(255,255,255,0.1),
                0 0 0 1px rgba(139,92,246,0.2);
        }
        .addon-card.active::after,
        .addon-card.selected::after {
            transform: scaleX(1);
            box-shadow: 0 0 20px rgba(139,92,246,0.6);
        }
        
        /* Check Mark for Selected */
        .addon-card.active .addon-header::after,
        .addon-card.selected .addon-header::after {
            content: '✓';
            position: absolute;
            top: 0;
            right: 0;
            width: 28px;
            height: 28px;
            background: var(--gradient-brand);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
            box-shadow: 0 4px 12px rgba(139,92,246,0.5);
            animation: checkmarkBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .addon-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            position: relative;
        }
        .addon-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.4;
            flex: 1;
        }
        .addon-name .addon-icon-wrapper {
            width: 36px;
            height: 36px;
            background: rgba(139,92,246,0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .addon-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--brand);
            padding: 6px 14px;
            background: rgba(139,92,246,0.1);
            border-radius: 12px;
            border: 1px solid rgba(139,92,246,0.2);
            font-family: 'JetBrains Mono', monospace;
            white-space: nowrap;
        }
        .addon-description {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            padding-left: 46px;
            opacity: 0.8;
        }
        
        /* Select Button */
        .addon-select-btn {
            display: block;
            margin-top: 12px;
            padding: 10px 20px;
            background: transparent;
            color: var(--brand);
            border: 2px solid rgba(139,92,246,0.3);
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .addon-select-btn:hover {
            background: var(--gradient-brand);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139,92,246,0.4);
        }
        .addon-card.active .addon-select-btn,
        .addon-card.selected .addon-select-btn {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            color: white;
            border-color: transparent;
        }
        
        /* Hide expand hint - using simpler interaction */
        .addon-expand-hint {
            display: none;
        } 
                0 4px 12px rgba(139,92,246,0.2),
                0 2px 6px rgba(139,92,246,0.15),
                inset 0 1px 0 rgba(255,255,255,0.6);
        }
        .addon-card.active::after {
            opacity: 0;
        }
        .addon-card.active::before {
            content: '✓';
            position: absolute;
            top: 12px;
            right: 12px;
            width: 24px;
            height: 24px;
            background: var(--gradient-brand);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
            box-shadow: 0 3px 8px rgba(139,92,246,0.4), 0 1px 4px rgba(139,92,246,0.3);
            animation: checkmarkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 2;
        }
        
        /* Select Button for Expanded State */
        .addon-select-btn {
            display: none;
            margin-top: 12px;
            padding: 8px 16px;
            background: var(--gradient-brand);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 2px 6px rgba(139,92,246,0.3);
            width: 100%;
            opacity: 0;
            transform: translateY(-10px);
        }
        .addon-card.expanded .addon-select-btn {
            display: block;
            animation: btnFadeIn 0.3s ease 0.2s forwards;
        }
        @keyframes btnFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .addon-select-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(139,92,246,0.4);
        }
        .addon-card.active .addon-select-btn {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        }
        .addon-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0;
            gap: 10px;
            transition: margin-bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .addon-card.expanded .addon-header {
            margin-bottom: 10px;
            align-items: flex-start;
        }
        .addon-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
            line-height: 1.4;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .addon-card.expanded .addon-name {
            white-space: normal;
        }
        .addon-price {
            font-size: 13px;
            font-weight: 600;
            color: var(--brand);
            white-space: nowrap;
            padding: 3px 10px;
            background: rgba(139,92,246,0.1);
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(139,92,246,0.15);
        }
        .addon-card.expanded .addon-price {
            font-size: 14px;
            padding: 4px 12px;
        }
        .addon-description {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: 
                max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
                opacity 0.4s ease 0.2s,
                margin-top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
            margin-top: 0;
        }
        .addon-card.expanded .addon-description {
            max-height: 120px;
            opacity: 1;
            margin-top: 10px;
        }
        .addon-expand-hint {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 10px;
            color: var(--muted);
            opacity: 0;
            transition: opacity 0.3s ease 0.2s;
            pointer-events: none;
            font-weight: 500;
            background: rgba(255,255,255,0.95);
            padding: 2px 8px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .addon-card.expanded .addon-expand-hint {
            opacity: 0;
            transition-delay: 0s;
        }
        .addon-card.active .addon-expand-hint {
            display: none;
        }
        .addon-card:hover:not(.expanded):not(.active) .addon-expand-hint {
            opacity: 0.8;
        }
        
        /* Bento Grid Responsive */
        @media (max-width: 900px) {
            .bento-row {
                grid-template-columns: 1fr;
            }
            .bento-row:nth-child(2) {
                grid-template-columns: 1fr;
            }
            .bento-card {
                min-height: 350px;
            }
            .bento-visual {
                opacity: 0.5;
                transform: scale(0.8);
                transform-origin: bottom right;
            }
            .feature-pills-row {
                gap: 10px;
            }
            .feature-pill {
                padding: 8px 14px;
            }
            .pill-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            .feature-pill span {
                font-size: 12px;
            }
        }
        
        /* Mobile-specific styles */
        @media (max-width: 768px) {
            .addon-card {
                height: 52px;
                padding: 16px 20px;
            }
            .addon-card.expanded {
                min-height: 140px;
                padding: 20px;
            }
            .addon-expand-hint {
                display: none;
            }
            .bento-card {
                min-height: 300px;
                padding: 28px;
            }
            .bento-title {
                font-size: 22px;
            }
            .bento-visual {
                display: none;
            }
            .feature-pills-row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .feature-pill {
                padding: 10px 12px;
                justify-content: flex-start;
            }
        }
        
        /* ORDER SUMMARY - MINIMAL FLOATING DESIGN */
        .customise-right {
            position: sticky;
            top: 100px;
        }
        
        .order-summary {
            background: linear-gradient(165deg, rgba(30,27,75,0.6) 0%, rgba(15,23,42,0.85) 100%);
            backdrop-filter: blur(40px);
            border-radius: 24px;
            border: 1px solid rgba(167,139,250,0.12);
            box-shadow: 0 40px 80px rgba(0,0,0,0.4);
            overflow: hidden;
            transform: rotateY(2deg) rotateX(1deg);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .order-summary:hover {
            transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
            box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.1);
        }
        
        /* Glowing Top Edge */
        .order-summary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
        }
        
        .order-summary-header {
            padding: 28px 28px 20px;
            border-bottom: 1px solid rgba(167,139,250,0.08);
        }
        
        .order-summary h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .order-summary h3::before {
            content: '📋';
            font-size: 18px;
        }
        
        .summary-subtitle {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
        }
        
        .order-summary-body {
            padding: 20px 28px;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(167,139,250,0.06);
            font-size: 14px;
        }
        .summary-item:last-of-type {
            border-bottom: none;
        }
        .summary-item span:first-child {
            color: var(--text-secondary);
            font-weight: 500;
        }
        .summary-item span:last-child {
            color: var(--text);
            font-weight: 600;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 28px;
            background: rgba(139,92,246,0.08);
            border-top: 1px solid rgba(167,139,250,0.1);
        }
        .summary-total-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .summary-total-price {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -1px;
        }
        
        .order-summary-footer {
            padding: 0 28px 28px;
        }
        
        .order-summary .btn-primary {
            width: 100%;
            padding: 16px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 600;
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            box-shadow: 0 10px 30px rgba(139,92,246,0.4);
            transition: all 0.3s ease;
        }
        .order-summary .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(139,92,246,0.5);
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 16px;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--muted);
        }
        .trust-badge i {
            color: #10B981;
            font-size: 10px;
        }
        
        /* Mobile Summary Bar */
        .mobile-summary-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15,23,42,0.98);
            backdrop-filter: blur(30px);
            padding: 16px 24px;
            padding-bottom: calc(16px + env(safe-area-inset-bottom));
            border-top: 1px solid rgba(167,139,250,0.15);
            z-index: 999;
        }
        .mobile-summary-content {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .mobile-summary-price span:first-child {
            font-size: 11px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .mobile-summary-price span:last-child {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #A78BFA, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Space Grotesk', sans-serif;
        }
        .mobile-summary-bar .btn-primary {
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 14px;
            white-space: nowrap;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .customise-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .builder-card {
                transform: none;
            }
            .customise-right {
                display: none;
            }
            .mobile-summary-bar {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .customise-section {
                padding: 80px 16px 120px;
            }
            .package-row {
                flex-direction: column;
                gap: 20px;
            }
            .package-price-box {
                text-align: left;
                width: 100%;
            }
            .base-package-price {
                font-size: 36px;
            }
            .all-addons-grid {
                grid-template-columns: 1fr;
            }
            .addons-pills-container {
                flex-direction: column;
            }
            .addon-pill {
                justify-content: space-between;
            }
            .customise-stars {
                display: none;
            }
        }
        
        /* Hide old elements */
        .customise-grid-bg,
        .base-package-banner,
        .package-header-bar,
        .package-main-content,
        .package-features-preview,
        .addons-compact-container,
        .popular-label {
            display: none !important;
        }
            height: 2px;
            background: var(--gradient-brand);
        }
        .summary-total::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 50%, rgba(139,92,246,0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        .summary-total-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .summary-total-price {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #7C3AED 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
            font-family: 'JetBrains Mono', monospace;
            position: relative;
            z-index: 1;
        }
        
        /* Checkout Button */
        .order-summary-footer {
            padding: 0 28px 28px;
            position: relative;
            z-index: 1;
        }
        .order-summary .btn-primary {
            width: 100%;
            padding: 18px;
            border-radius: 16px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 
                0 8px 24px rgba(139,92,246,0.4),
                0 4px 12px rgba(139,92,246,0.3),
                inset 0 1px 0 rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
        }
        .order-summary .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: buttonShine 4s ease-in-out infinite;
        }
        @keyframes buttonShine {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }
        .order-summary .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 32px rgba(139,92,246,0.5),
                0 6px 16px rgba(139,92,246,0.4),
                inset 0 1px 0 rgba(255,255,255,0.2);
        }
        
        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(167,139,250,0.1);
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--muted);
            font-weight: 500;
        }
        .trust-badge i {
            color: #10B981;
            font-size: 12px;
        }
        
        /* Mobile Floating Summary Bar - Enhanced */
        .mobile-summary-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(17,24,39,0.98);
            backdrop-filter: blur(40px);
            padding: 16px 24px;
            padding-bottom: calc(16px + env(safe-area-inset-bottom));
            box-shadow: 
                0 -10px 40px rgba(0,0,0,0.6),
                0 -2px 10px rgba(139,92,246,0.2);
            z-index: 999;
            border-top: 1px solid rgba(167,139,250,0.2);
        }
        .mobile-summary-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient-brand);
            border-radius: 0 0 4px 4px;
        }
        .mobile-summary-content {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .mobile-summary-price {
            display: flex;
            flex-direction: column;
        }
        .mobile-summary-price span:first-child {
            font-size: 11px;
            color: var(--muted);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .mobile-summary-price span:last-child {
            font-size: 26px;
            font-weight: 800;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -1px;
        }
        .mobile-summary-bar .btn-primary {
            padding: 14px 32px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 6px 20px rgba(139,92,246,0.4);
        }
        
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .hero-content {
                order: 1;
            }
            .hero-3d-showcase {
                order: 2;
                height: 400px;
            }
            .hero-subtitle {
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
            .tech-stack-row {
                justify-content: center;
            }
            .hero-cta {
                justify-content: center;
            }
            .browser-3d {
                width: 360px;
                height: 280px;
                margin-left: -180px;
                margin-top: -140px;
            }
            .terminal-3d {
                display: none;
            }
            .component-3d {
                display: none;
            }
            .customise-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .order-summary {
                position: static;
                display: none;
            }
            .mobile-summary-bar {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .comparison-container {
                grid-template-columns: 1fr;
            }
            .floating-features-container {
                min-height: auto;
                position: relative;
            }
            .floating-feature {
                position: relative !important;
                width: 100%;
                margin-bottom: 24px;
                animation: none !important;
            }
            .hero-section {
                padding: 100px 20px 60px;
                min-height: auto;
            }
            .hero-3d-showcase {
                height: 320px;
            }
            .browser-3d {
                width: 300px;
                height: 240px;
                margin-left: -150px;
                margin-top: -120px;
            }
            .hero-title {
                font-size: 36px;
                letter-spacing: -2px;
            }
            .hero-badge {
                padding: 6px 12px;
            }
            .hero-badge span {
                font-size: 11px;
            }
            .tech-stack-row {
                gap: 8px;
            }
            .tech-badge {
                padding: 6px 10px;
                font-size: 11px;
            }
            .orbit-container,
            .live-counter {
                display: none;
            }
            .particles-container .particle:nth-child(n+6) {
                display: none;
            }
            
            /* Customise Section - Mobile Responsive */
            .customise-section {
                padding: 60px 16px 100px;
            }
            .customise-section .section-title::after {
                display: none;
            }
            .customise-grid-bg {
                display: none;
            }
            .base-package-banner {
                border-radius: 20px;
            }
            .package-header-bar {
                padding: 12px 20px;
                flex-wrap: wrap;
                gap: 10px;
            }
            .package-main-content {
                padding: 24px 20px;
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }
            .price-display-container {
                text-align: center;
            }
            .base-package-title {
                font-size: 22px;
                justify-content: center;
            }
            .base-package-title .title-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .base-package-subtitle {
                padding-left: 0;
                text-align: center;
            }
            .base-package-price {
                font-size: 42px;
            }
            .package-features-preview {
                padding: 0 20px 24px;
                justify-content: center;
            }
            .feature-tag {
                padding: 6px 12px;
                font-size: 11px;
            }
            .addons-compact-container {
                border-radius: 20px;
            }
            .addons-header {
                padding: 28px 20px 24px;
            }
            .addons-header::before {
                width: 100px;
            }
            .addons-header h3 {
                font-size: 18px;
            }
            .addons-header h3::before {
                display: none;
            }
            .addons-pills-container {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
            .addon-pill {
                justify-content: space-between;
                padding: 14px 20px;
                border-radius: 16px;
            }
            .view-all-btn {
                width: calc(100% - 40px);
                justify-content: center;
                margin: 0 20px 24px;
            }
            .all-addons-grid {
                grid-template-columns: 1fr;
                padding: 0 20px 24px;
            }
            .all-addons-grid::before {
                left: 20px;
            }
            .addon-card {
                border-radius: 16px;
            }
        }

        /* ================================================================
           SECTION 6: PRICING TIERS – Refined Compact Design
           ================================================================ */

        .pricing-section {
            padding: 80px 20px 60px;
            background: linear-gradient(180deg, #0a0f1a 0%, #0F172A 100%);
            position: relative;
            overflow: hidden;
        }

        /* Subtle ambient orbs */
        .pricing-section::before,
        .pricing-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        .pricing-section::before {
            width: 400px; height: 400px;
            top: -100px; left: -100px;
            background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 65%);
        }
        .pricing-section::after {
            width: 350px; height: 350px;
            bottom: -80px; right: -60px;
            background: radial-gradient(circle, rgba(167,139,250,0.04) 0%, transparent 65%);
        }

        .pricing-container {
            max-width: 1060px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* ---------- Header ---------- */
        .pricing-heading {
            text-align: center;
            margin-bottom: 44px;
        }

        .pricing-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 5px 14px;
            background: rgba(167,139,250,0.08);
            border: 1px solid rgba(167,139,250,0.18);
            border-radius: 100px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--brand-light);
            margin-bottom: 14px;
        }
        .pricing-label i { font-size: 11px; color: var(--brand); }

        .pricing-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(24px, 3.5vw, 34px);
            font-weight: 700;
            letter-spacing: -1.2px;
            color: var(--text);
            margin: 0 0 8px;
        }

        .pricing-desc {
            font-size: 15px;
            color: var(--muted);
            margin: 0;
            line-height: 1.6;
        }

        /* ---------- Grid ---------- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 28px;
        }

        /* ---------- Card ---------- */
        .p-card {
            position: relative;
            background: rgba(15, 23, 42, 0.65);
            border: 1px solid rgba(55, 65, 81, 0.45);
            border-radius: 18px;
            padding: 28px 24px 24px;
            display: flex;
            flex-direction: column;
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .p-card:hover {
            border-color: rgba(167,139,250,0.2);
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
            transform: translateY(-3px);
        }

        /* -- Popular card -- */
        .p-card--popular {
            border: 1.5px solid rgba(167,139,250,0.45);
            background: rgba(15, 23, 42, 0.8);
            box-shadow:
                0 0 40px rgba(139,92,246,0.06),
                0 8px 32px rgba(0,0,0,0.18);
        }
        .p-card--popular:hover {
            border-color: rgba(167,139,250,0.65);
            box-shadow:
                0 0 50px rgba(139,92,246,0.1),
                0 16px 48px rgba(0,0,0,0.25);
        }

        /* Badge (Most Popular / Best Value) */
        .p-card__badge {
            position: absolute;
            top: -11px;
            left: 50%;
            transform: translateX(-50%);
            padding: 4px 16px;
            background: var(--gradient-brand);
            border-radius: 100px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #fff;
            white-space: nowrap;
            box-shadow: 0 3px 14px rgba(167,139,250,0.35);
        }

        /* -- Top row: icon + name -- */
        .p-card__top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }
        .p-card__icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            background: rgba(55, 65, 81, 0.45);
        }
        .p-card--popular .p-card__icon {
            background: rgba(167,139,250,0.12);
        }
        .p-card__name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 2px;
        }
        .p-card__sub {
            font-size: 12.5px;
            color: var(--muted);
            margin: 0;
            line-height: 1.4;
        }

        /* -- Price block -- */
        .p-card__price {
            margin-bottom: 16px;
        }
        .p-card__was {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 2px;
        }
        .p-card__was s {
            font-size: 13px;
            color: #6B7280;
        }
        .p-card__off {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 2px 8px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.25);
            border-radius: 100px;
            color: #10B981;
        }
        .p-card__amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 34px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -1.5px;
            line-height: 1.15;
        }
        .p-card--popular .p-card__amount {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .p-card__rupee {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0;
            vertical-align: top;
            margin-right: 1px;
        }
        .p-card--popular .p-card__rupee {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .p-card__billing {
            font-size: 12px;
            color: var(--muted);
            margin-top: 1px;
        }

        .p-card__divider {
            height: 1px;
            background: rgba(55, 65, 81, 0.4);
            margin-bottom: 16px;
        }
        .p-card--popular .p-card__divider {
            background: rgba(167,139,250,0.18);
        }

        /* -- Features list -- */
        .p-card__features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            display: flex;
            flex-direction: column;
            gap: 9px;
            flex: 1;
        }
        .p-card__features li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            color: #D1D5DB;
            line-height: 1.45;
        }
        .p-card__features li i {
            font-size: 9px;
            margin-top: 4px;
            flex-shrink: 0;
            color: #10B981;
        }
        .p-card--popular .p-card__features li i {
            color: var(--brand);
        }

        /* Highlight row ("Everything in X, plus:") */
        .p-card__feat--highlight {
            background: rgba(167,139,250,0.06);
            border: 1px solid rgba(167,139,250,0.12);
            border-radius: 8px;
            padding: 6px 10px;
            margin-bottom: 2px;
        }
        .p-card__feat--highlight span {
            font-weight: 600;
            color: var(--brand-light);
        }
        .p-card__feat--highlight i {
            color: var(--brand) !important;
        }

        /* -- CTA button -- */
        .p-card__btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all 0.25s;
            background: rgba(55, 65, 81, 0.45);
            color: var(--text);
            border: 1px solid rgba(75, 85, 99, 0.4);
        }
        .p-card__btn:hover {
            background: rgba(75, 85, 99, 0.55);
            border-color: rgba(167,139,250,0.3);
        }
        .p-card__btn--primary {
            background: var(--gradient-brand);
            color: #fff;
            border: none;
            box-shadow: 0 6px 24px rgba(167,139,250,0.3);
        }
        .p-card__btn--primary:hover {
            box-shadow: 0 10px 32px rgba(167,139,250,0.4);
            transform: translateY(-1px);
        }
        .p-card__btn i {
            font-size: 11px;
            transition: transform 0.25s;
        }
        .p-card__btn:hover i {
            transform: translateX(3px);
        }

        /* ---------- Footer / Trust ---------- */
        .pricing-footer {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }
        .pricing-addon-hint {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            padding: 8px 18px;
            background: rgba(31,41,55,0.25);
            border: 1px solid rgba(55,65,81,0.25);
            border-radius: 100px;
        }
        .pricing-addon-hint i {
            color: var(--brand);
            font-size: 13px;
        }
        .pricing-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .pricing-trust span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #6B7280;
        }
        .pricing-trust span i {
            font-size: 12px;
            color: rgba(167,139,250,0.4);
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 960px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
                gap: 16px;
            }
            .p-card--popular {
                order: -1;
            }
        }
        @media (max-width: 600px) {
            .pricing-section { padding: 56px 16px 44px; }
            .p-card { padding: 24px 20px 20px; border-radius: 16px; }
            .p-card__amount { font-size: 30px; }
            .pricing-trust { gap: 14px; }
            .pricing-addon-hint { font-size: 12px; padding: 6px 14px; }
        }

        /* ================================================================
           SCROLL REVEAL ANIMATIONS
           ================================================================ */
        .section-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .section-visible {
            opacity: 1 !important;
            transform: none !important;
        }

        /* Staggered children reveal */
        .stagger-item {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .stagger-visible {
            opacity: 1;
            transform: none;
        }

        /* ================================================================
           STATS STRIP SECTION
           ================================================================ */
        .stats-strip {
            padding: 44px 20px;
            background: linear-gradient(180deg, #0C1222 0%, #0a0f1a 100%);
            border-top: 1px solid rgba(55, 65, 81, 0.18);
            border-bottom: 1px solid rgba(55, 65, 81, 0.18);
            position: relative;
        }
        .stats-strip__inner {
            max-width: 880px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
        }
        .stats-strip__item {
            text-align: center;
            flex: 1;
            padding: 0 24px;
        }
        .stats-strip__divider {
            width: 1px;
            height: 44px;
            background: rgba(167, 139, 250, 0.15);
            flex-shrink: 0;
        }
        .stats-strip__num {
            display: block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(26px, 3.5vw, 34px);
            font-weight: 800;
            letter-spacing: -1.5px;
            line-height: 1.15;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stats-strip__label {
            display: block;
            font-size: 12.5px;
            color: var(--muted);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        /* Stats strip responsive */
        @media (max-width: 700px) {
            .stats-strip__inner {
                flex-wrap: wrap;
                gap: 20px;
            }
            .stats-strip__item {
                flex: 0 0 40%;
                padding: 10px 0;
            }
            .stats-strip__divider {
                display: none;
            }
        }
        @media (max-width: 400px) {
            .stats-strip__item {
                flex: 0 0 100%;
            }
        }

        /* ================================================================
           ROI CALLOUT (inside Problem section)
           ================================================================ */
        .roi-callout {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            max-width: 720px;
            margin: 0 auto;
            padding: 28px 32px;
            background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(16,185,129,0.02) 100%);
            border: 1px solid rgba(16,185,129,0.2);
            border-radius: 16px;
        }
        .roi-callout__icon {
            width: 44px;
            height: 44px;
            background: rgba(16,185,129,0.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #10B981;
            font-size: 18px;
        }
        .roi-callout__content h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: #10B981;
            margin: 0 0 8px;
        }
        .roi-callout__content p {
            font-size: 14.5px;
            color: #9CA3AF;
            line-height: 1.65;
            margin: 0;
        }
        .roi-callout__content strong {
            color: #E5E7EB;
        }
        @media (max-width: 600px) {
            .roi-callout {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            .roi-callout__icon { margin: 0 auto; }
        }

        /* ================================================================
           HOW IT WORKS SECTION
           ================================================================ */
        .hiw-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0F172A 0%, #131B2E 100%);
            position: relative;
        }
        .hiw-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.25), transparent);
        }
        .hiw-container {
            max-width: 960px;
            margin: 0 auto;
        }
        .hiw-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .hiw-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 16px;
            background: rgba(167,139,250,0.08);
            border: 1px solid rgba(167,139,250,0.18);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-light);
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .hiw-badge i { font-size: 11px; color: var(--brand); }
        .hiw-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            letter-spacing: -1.2px;
            color: var(--text);
            margin: 0 0 12px;
        }
        .hiw-subtitle {
            font-size: 16px;
            color: var(--muted);
            margin: 0;
            line-height: 1.6;
        }
        .hiw-steps {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0;
        }
        .hiw-step {
            flex: 1;
            max-width: 260px;
            text-align: center;
            padding: 0 16px;
            position: relative;
        }
        .hiw-step__num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gradient-brand);
            color: white;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
            box-shadow: 0 4px 16px rgba(139,92,246,0.3);
        }
        .hiw-step__icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            background: rgba(167,139,250,0.08);
            border: 1px solid rgba(167,139,250,0.18);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--brand-light);
            transition: all 0.3s ease;
        }
        .hiw-step:hover .hiw-step__icon {
            background: rgba(167,139,250,0.14);
            border-color: rgba(167,139,250,0.3);
            transform: translateY(-4px);
        }
        .hiw-step__title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 8px;
        }
        .hiw-step__desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin: 0;
        }
        .hiw-step__connector {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 70px;
            color: rgba(167,139,250,0.3);
            font-size: 16px;
            flex-shrink: 0;
        }
        @media (max-width: 700px) {
            .hiw-steps {
                flex-direction: column;
                align-items: center;
                gap: 32px;
            }
            .hiw-step__connector {
                padding-top: 0;
                transform: rotate(90deg);
            }
        }

        /* ================================================================
           SHOWCASE SECTION (proper CSS classes)
           ================================================================ */
        .showcase-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
            position: relative;
            overflow: hidden;
        }
        .showcase-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(167,139,250,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .showcase-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .showcase-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16,185,129,0.1);
            border: 1px solid rgba(16,185,129,0.25);
            border-radius: 50px;
            padding: 8px 18px;
            margin-bottom: 24px;
            font-size: 13px;
            font-weight: 600;
            color: #10B981;
            letter-spacing: 0.5px;
        }
        .showcase-badge i { font-size: 12px; }
        .showcase-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            color: var(--text);
            line-height: 1.2;
        }
        .showcase-subtitle {
            font-size: 17px;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }
        .showcase-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            background: rgba(31,41,55,0.8);
            backdrop-filter: blur(20px);
            color: var(--brand-light);
            border: 2px solid rgba(167,139,250,0.3);
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.35s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .showcase-cta:hover {
            background: rgba(167,139,250,0.2);
            color: white;
            border-color: rgba(167,139,250,0.5);
            transform: translateY(-4px);
        }
        .showcase-cta__arrow {
            font-size: 12px;
            transition: transform 0.25s;
        }
        .showcase-cta:hover .showcase-cta__arrow {
            transform: translateX(4px);
        }
        .showcase-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 28px;
        }
        .showcase-pill {
            padding: 5px 14px;
            background: rgba(167,139,250,0.08);
            border: 1px solid rgba(167,139,250,0.2);
            border-radius: 100px;
            font-size: 12px;
            color: var(--brand-light);
            font-weight: 500;
        }
        .showcase-pill i {
            margin-right: 5px;
            font-size: 10px;
        }

        /* ================================================================
           WHAT'S INCLUDED SECTION
           ================================================================ */
        .included-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0F172A 0%, #0C1222 100%);
            position: relative;
        }
        .included-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .included-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .included-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 16px;
            background: rgba(167,139,250,0.08);
            border: 1px solid rgba(167,139,250,0.18);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-light);
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .included-badge i { font-size: 12px; color: var(--brand); }
        .included-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            letter-spacing: -1.5px;
            margin: 0 0 12px;
            color: var(--text);
        }
        .included-subtitle {
            font-size: 16px;
            color: var(--muted);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 48px;
        }
        .included-card {
            background: rgba(31,41,55,0.4);
            border: 1px solid rgba(167,139,250,0.12);
            border-radius: 16px;
            padding: 24px;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }
        .included-card:hover {
            border-color: rgba(167,139,250,0.28);
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(0,0,0,0.18);
        }
        .included-card__icon {
            width: 40px;
            height: 40px;
            background: rgba(167,139,250,0.12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            font-size: 16px;
            margin-bottom: 14px;
        }
        .included-card__name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            margin: 0 0 8px;
        }
        .included-card__desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin: 0;
        }

        /* No-Tech Worry Banner */
        .notech-banner {
            background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(16,185,129,0.02) 100%);
            border: 1px solid rgba(16,185,129,0.2);
            border-radius: 20px;
            padding: 36px 40px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex-wrap: wrap;
        }
        .notech-banner__icon {
            width: 48px;
            height: 48px;
            background: rgba(16,185,129,0.12);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #10B981;
            font-size: 20px;
            flex-shrink: 0;
        }
        .notech-banner__content {
            flex: 1;
            min-width: 250px;
        }
        .notech-banner__content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 8px;
        }
        .notech-banner__content p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.65;
            margin: 0;
        }
        .notech-banner__checks {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            width: 100%;
            margin-top: 4px;
            padding-left: 68px;
        }
        .notech-banner__checks span {
            font-size: 14px;
            color: #D1D5DB;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .notech-banner__checks i {
            color: #10B981;
            font-size: 13px;
        }
        @media (max-width: 700px) {
            .notech-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
            }
            .notech-banner__icon { margin: 0 auto; }
            .notech-banner__checks {
                justify-content: center;
                padding-left: 0;
            }
        }

        /* ================================================================
           OTA COMPARISON TABLE
           ================================================================ */
        .compare-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0C1222 0%, #0F172A 100%);
            position: relative;
        }
        .compare-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .compare-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .compare-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 16px;
            background: rgba(167,139,250,0.08);
            border: 1px solid rgba(167,139,250,0.18);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-light);
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .compare-badge i { font-size: 12px; color: var(--brand); }
        .compare-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            letter-spacing: -1.2px;
            color: var(--text);
            margin: 0 0 12px;
        }
        .compare-subtitle {
            font-size: 16px;
            color: var(--muted);
            margin: 0;
        }
        .compare-table {
            border: 1px solid rgba(55,65,81,0.4);
            border-radius: 16px;
            overflow: hidden;
            background: rgba(15,23,42,0.5);
        }
        .compare-table__header {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            background: rgba(31,41,55,0.5);
            border-bottom: 1px solid rgba(55,65,81,0.4);
        }
        .compare-table__row {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            border-bottom: 1px solid rgba(55,65,81,0.2);
            transition: background 0.2s;
        }
        .compare-table__row:last-child {
            border-bottom: none;
        }
        .compare-table__row:hover {
            background: rgba(31,41,55,0.3);
        }
        .compare-table__cell {
            padding: 14px 20px;
            font-size: 14px;
            color: #D1D5DB;
            display: flex;
            align-items: center;
        }
        .compare-table__cell--label {
            font-weight: 500;
            color: var(--muted);
            font-size: 13.5px;
        }
        .compare-table__cell--us {
            background: rgba(139,92,246,0.04);
        }
        .compare-table__header .compare-table__cell--us {
            background: rgba(139,92,246,0.08);
        }
        .compare-table__brand {
            display: block;
            font-size: 14px;
            font-weight: 700;
        }
        .compare-table__brand--ota { color: #F87171; }
        .compare-table__brand--us { color: var(--brand-light); }
        .compare-table__brandSub {
            display: block;
            font-size: 11px;
            color: var(--muted);
            margin-top: 2px;
        }
        .compare-bad {
            color: #F87171;
            font-weight: 600;
        }
        .compare-good {
            color: #10B981;
            font-weight: 600;
        }
        @media (max-width: 600px) {
            .compare-table__header,
            .compare-table__row {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .compare-table__cell {
                padding: 10px 12px;
                font-size: 12px;
            }
            .compare-table__brand { font-size: 12px; }
            .compare-table__brandSub { font-size: 9px; }
        }

        /* ================================================================
           WHO THIS IS FOR SECTION
           ================================================================ */
        .whothis-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0a0f1a 0%, #0F172A 100%);
        }
        .whothis-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .whothis-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .whothis-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            letter-spacing: -1.2px;
            color: var(--text);
            margin: 0 0 12px;
        }
        .whothis-subtitle {
            font-size: 16px;
            color: var(--muted);
            margin: 0;
        }
        .whothis-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .whothis-card {
            border-radius: 20px;
            padding: 32px;
        }
        .whothis-card--good {
            background: rgba(16,185,129,0.05);
            border: 1px solid rgba(16,185,129,0.2);
        }
        .whothis-card--bad {
            background: rgba(239,68,68,0.05);
            border: 1px solid rgba(239,68,68,0.2);
        }
        .whothis-card__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }
        .whothis-card__icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .whothis-card__icon--good {
            background: rgba(16,185,129,0.15);
            color: #10B981;
        }
        .whothis-card__icon--bad {
            background: rgba(239,68,68,0.15);
            color: #EF4444;
        }
        .whothis-card__header h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
        }
        .whothis-card--good .whothis-card__header h3 { color: #10B981; }
        .whothis-card--bad .whothis-card__header h3 { color: #EF4444; }
        .whothis-card__list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .whothis-card__list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: #D1D5DB;
            line-height: 1.5;
        }
        .whothis-card__list li i {
            margin-top: 3px;
            flex-shrink: 0;
        }
        .whothis-card--good .whothis-card__list li i { color: #10B981; }
        .whothis-card--bad .whothis-card__list li i { color: #EF4444; }
        @media (max-width: 700px) {
            .whothis-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ================================================================
           FAQ SECTION (Accordion)
           ================================================================ */
        .faq-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0F172A 0%, #0a0f1a 100%);
        }
        .faq-container {
            max-width: 760px;
            margin: 0 auto;
        }
        .faq-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .faq-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            letter-spacing: -1.2px;
            color: var(--text);
            margin: 0 0 12px;
        }
        .faq-subtitle {
            font-size: 16px;
            color: var(--muted);
            margin: 0;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: rgba(31,41,55,0.4);
            border: 1px solid rgba(167,139,250,0.12);
            border-radius: 14px;
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.3s;
        }
        .faq-item:hover {
            border-color: rgba(167,139,250,0.25);
        }
        .faq-item__q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
        }
        .faq-item__q span {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
        }
        .faq-item__arrow {
            color: var(--muted);
            font-size: 13px;
            transition: transform 0.3s, color 0.3s;
            flex-shrink: 0;
        }
        .faq-item--open .faq-item__arrow {
            transform: rotate(180deg);
            color: var(--brand);
        }
        .faq-item__a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
        }
        .faq-item--open .faq-item__a {
            max-height: 300px;
            padding: 0 24px 20px;
        }
        .faq-item__a p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
            margin: 0;
        }
        .faq-item--open {
            border-color: rgba(167,139,250,0.25);
            background: rgba(31,41,55,0.55);
        }

        /* ================================================================
           FINAL CTA SECTION
           ================================================================ */
        .finalcta-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #0a0f1a 0%, #0F172A 50%, #0a0f1a 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .finalcta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .finalcta-container {
            max-width: 660px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .finalcta-urgency {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(245,158,11,0.08);
            border: 1px solid rgba(245,158,11,0.22);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: #F59E0B;
            margin-bottom: 28px;
        }
        .finalcta-urgency i {
            font-size: 13px;
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .finalcta-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(24px, 4vw, 34px);
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--text);
            margin: 0 0 16px;
            line-height: 1.3;
        }
        .finalcta-subtitle {
            font-size: 17px;
            color: var(--muted);
            margin: 0 0 32px;
            line-height: 1.7;
        }
        .finalcta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .finalcta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.35s ease;
        }
        .finalcta-btn--primary {
            background: var(--gradient-brand);
            color: white;
            box-shadow: 0 8px 28px rgba(167,139,250,0.35);
        }
        .finalcta-btn--primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(167,139,250,0.45);
        }
        .finalcta-btn--whatsapp {
            background: rgba(37,211,102,0.12);
            border: 1.5px solid rgba(37,211,102,0.35);
            color: #25D366;
        }
        .finalcta-btn--whatsapp:hover {
            background: rgba(37,211,102,0.2);
            border-color: rgba(37,211,102,0.5);
            transform: translateY(-3px);
        }
        .finalcta-trust {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .finalcta-trust span {
            font-size: 13px;
            color: #6B7280;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .finalcta-trust span i {
            color: rgba(167,139,250,0.5);
            font-size: 12px;
        }
        .finalcta-email {
            font-size: 14px;
            color: #6B7280;
            margin: 0;
        }
        .finalcta-email a {
            color: var(--brand);
            text-decoration: none;
        }
        .finalcta-email a:hover {
            text-decoration: underline;
        }
