        /* =====================
           SECTION WRAPPERS
        ===================== */
        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
        }
        .section-divider {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 48px;
            height: 1px;
        }
        .section-divider::after {
            content: '';
            display: block;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200,168,124,0.12), transparent);
        }
        .section-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }
        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            letter-spacing: -1.2px;
            line-height: 1.1;
        }
        .section-sub {
            font-size: 1.05rem;
            color: var(--steel);
            line-height: 1.7;
            font-weight: 300;
            margin-top: 18px;
            max-width: 560px;
        }

        /* =====================
           HOW IT WORKS
        ===================== */
        .how {
            padding: 120px 0;
            position: relative;
        }
        .how-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .how-header .section-sub { margin-left: auto; margin-right: auto; }
        .how-steps {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 32px;
        }
        .how-step {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            overflow: hidden;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .how-step:hover {
            border-color: var(--gold-border);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,168,124,0.08);
        }
        .how-step-header {
            padding: 32px 28px 0;
        }
        .how-step-num {
            width: 40px; height: 40px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .how-step h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }
        .how-step p {
            font-size: 0.88rem;
            color: var(--steel);
            line-height: 1.65;
            font-weight: 300;
            padding-bottom: 28px;
        }
        .how-step-preview {
            background: var(--deep);
            border-top: 1px solid var(--border);
            padding: 24px 24px 0;
            min-height: 200px;
            overflow: hidden;
            position: relative;
        }

        /* Chat preview mockup */
        .mock-chat { display: flex; flex-direction: column; gap: 12px; }
        .mock-msg { display: flex; gap: 8px; align-items: flex-end; }
        .mock-msg.right { flex-direction: row-reverse; }
        .mock-avatar {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: var(--muted);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        .mock-bubble {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 14px 14px 14px 4px;
            padding: 10px 14px;
            font-size: 0.78rem;
            color: var(--paper);
            line-height: 1.55;
            max-width: 220px;
        }
        .mock-msg.right .mock-bubble {
            background: var(--gold-dim);
            border-color: var(--gold-border);
            color: var(--gold);
            border-radius: 14px 14px 4px 14px;
        }
        .mock-ai-badge {
            font-size: 9px;
            letter-spacing: 0.5px;
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        /* Dashboard preview mockup */
        .mock-dashboard { display: flex; flex-direction: column; gap: 10px; }
        .mock-booking-card {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 14px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mock-booking-info .name { font-size: 0.8rem; font-weight: 500; margin-bottom: 3px; }
        .mock-booking-info .detail { font-size: 0.72rem; color: var(--steel); }
        .mock-badge {
            font-size: 0.68rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 100px;
        }
        .mock-badge.new { background: rgba(200,168,124,0.12); color: var(--gold); }
        .mock-badge.paid { background: rgba(94,202,143,0.10); color: var(--green); }

        /* Payment mockup */
        .mock-payment { display: flex; flex-direction: column; gap: 14px; }
        .mock-payment-header { font-size: 0.78rem; color: var(--steel); font-weight: 300; text-align: center; }
        .mock-payment-amount { text-align: center; }
        .mock-payment-amount .amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--paper);
            letter-spacing: -1px;
        }
        .mock-payment-amount .label { font-size: 0.72rem; color: var(--steel); margin-top: 2px; }
        .mock-pay-btn {
            background: var(--gold);
            color: var(--ink);
            border-radius: 10px;
            padding: 12px;
            text-align: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
        }
        .mock-secure {
            text-align: center;
            font-size: 0.68rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        /* =====================
           PRODUCT SHOWCASE
        ===================== */
        .showcase {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        .showcase-glow {
            width: 600px; height: 600px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.25;
        }
        .showcase-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        .showcase-header .section-sub { margin-left: auto; margin-right: auto; }
        .showcase-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .showcase-card {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 40px 36px;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .showcase-card:hover {
            border-color: var(--gold-border);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,168,124,0.08);
        }
        .showcase-card-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .showcase-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }
        .showcase-card p {
            font-size: 0.88rem;
            color: var(--steel);
            line-height: 1.65;
            font-weight: 300;
            margin-bottom: 24px;
        }
        .showcase-mockup {
            background: var(--deep);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 24px;
            min-height: 180px;
        }

        /* =====================
           PROBLEM / PAIN
        ===================== */
        .problem {
            padding: 120px 0;
            position: relative;
        }
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .problem-left h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -1.2px;
            margin-bottom: 20px;
        }
        .problem-left p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--steel);
            font-weight: 300;
        }
        .pain-list { display: flex; flex-direction: column; }
        .pain-item {
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .pain-item:first-child { padding-top: 0; }
        .pain-item:last-child { border-bottom: none; }
        .pain-icon {
            width: 40px; height: 40px;
            background: rgba(255,85,85,0.06);
            border: 1px solid rgba(255,85,85,0.10);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .pain-text h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        .pain-text p {
            font-size: 0.85rem;
            color: var(--steel);
            line-height: 1.6;
            font-weight: 300;
        }

        /* =====================
           LOSS CALCULATOR
        ===================== */
        .loss {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        .loss::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(200,140,80,0.02) 0%, transparent 70%);
            pointer-events: none;
        }
        .loss-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        .loss-header .section-sub { margin-left: auto; margin-right: auto; }
        .loss-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .loss-calc {
            display: flex;
            flex-direction: column;
        }
        .loss-step {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 28px;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            width: 100%;
            transition: border-color 0.3s ease;
        }
        .loss-step {
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .loss-step:hover { border-color: var(--gold-border); transform: translateX(4px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
        .loss-step-red {
            background: rgba(255,85,85,0.04);
            border-color: rgba(255,85,85,0.15);
        }
        .loss-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--paper);
            min-width: 70px;
            flex-shrink: 0;
        }
        .loss-num-red { color: var(--red); }
        .loss-desc { font-size: 0.88rem; color: var(--steel); font-weight: 300; line-height: 1.45; }
        .loss-arrow { padding: 6px 0 6px 34px; color: var(--muted); font-size: 0.9rem; }
        .loss-vs { display: flex; align-items: center; justify-content: center; }
        .loss-vs-inner {
            background: var(--surface);
            border: 1px solid var(--gold-border);
            border-radius: 24px;
            padding: 44px 36px;
            text-align: center;
            width: 100%;
        }
        .loss-vs-label {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--steel);
            margin-bottom: 12px;
        }
        .loss-vs-amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            letter-spacing: -3px;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 12px;
        }
        .loss-vs-sub { font-size: 0.92rem; color: var(--paper); line-height: 1.6; font-weight: 300; margin-bottom: 24px; }
        .loss-vs-proof {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            text-align: left;
            background: rgba(94,202,143,0.06);
            border: 1px solid rgba(94,202,143,0.12);
            border-radius: 12px;
            padding: 16px 18px;
            margin-bottom: 16px;
        }
        .loss-vs-proof-icon { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
        .loss-vs-proof span:last-child { font-size: 0.85rem; color: var(--paper); line-height: 1.6; font-weight: 300; }
        .loss-vs-detail { font-size: 0.75rem; color: var(--muted); line-height: 1.55; }

        /* =====================
           WHO IT'S FOR
        ===================== */
        .for-who { padding: 120px 0; }
        .for-who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }
        .for-card {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 40px 32px;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .for-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,168,124,0.08); }
        .for-emoji {
            font-size: 2rem;
            margin-bottom: 20px;
            display: block;
        }
        .for-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }
        .for-card p { font-size: 0.85rem; color: var(--steel); line-height: 1.65; font-weight: 300; }
        .not-for {
            margin-top: 48px;
            padding: 24px 28px;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .not-for-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
        .not-for p { font-size: 0.85rem; color: var(--steel); line-height: 1.6; font-weight: 300; }
        .not-for strong { color: var(--paper); font-weight: 500; }

        /* =====================
           LIVE DEMO SECTION
        ===================== */
        .live-demo {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        .live-demo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(200,168,124,0.03) 0%, transparent 55%);
            pointer-events: none;
        }
        .demo-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .demo-header .section-sub { margin-left: auto; margin-right: auto; }
        .demo-container {
            max-width: 440px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .demo-phone {
            background: #161616;
            border: 2px solid rgba(255,255,255,0.08);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.05);
        }
        .demo-phone-notch {
            width: 100px;
            height: 4px;
            background: rgba(255,255,255,0.12);
            border-radius: 4px;
            margin: 12px auto 0;
        }
        .demo-chat-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px 12px;
            border-bottom: 1px solid var(--border);
        }
        .demo-bot-avatar {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-dim) 0%, var(--surface) 100%);
            border: 1px solid var(--gold-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--gold);
            flex-shrink: 0;
        }
        .demo-header-info {
            flex: 1;
        }
        .demo-artist-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--paper);
        }
        .demo-online {
            font-size: 0.72rem;
            color: var(--green);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .demo-online-dot {
            width: 6px; height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: online-pulse 2s ease-in-out infinite;
        }
        @keyframes online-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.4); }
        }
        .demo-messages {
            padding: 20px 16px;
            min-height: 360px;
            max-height: 420px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            scroll-behavior: smooth;
        }
        .demo-messages::-webkit-scrollbar { width: 3px; }
        .demo-messages::-webkit-scrollbar-track { background: transparent; }
        .demo-messages::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
        .demo-msg {
            max-width: 82%;
            padding: 11px 15px;
            border-radius: 16px 16px 16px 4px;
            font-size: 0.88rem;
            line-height: 1.55;
            color: var(--paper);
            background: var(--surface);
            border: 1px solid var(--border-light);
            opacity: 0;
            transform: translateY(8px);
            animation: msg-appear 0.35s ease-out forwards;
        }
        .demo-msg.client {
            align-self: flex-end;
            background: var(--gold-dim);
            border-color: var(--gold-border);
            color: var(--gold-light);
            border-radius: 16px 16px 4px 16px;
        }
        .demo-msg.bot .demo-msg-label {
            font-size: 0.65rem;
            letter-spacing: 0.5px;
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        @keyframes msg-appear {
            to { opacity: 1; transform: translateY(0); }
        }
        .demo-typing {
            display: flex;
            gap: 4px;
            padding: 12px 16px;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 16px 16px 16px 4px;
            width: fit-content;
            opacity: 0;
            transform: translateY(8px);
            animation: msg-appear 0.3s ease-out forwards;
        }
        .demo-typing span {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--steel);
            animation: typing-bounce 1.2s ease-in-out infinite;
        }
        .demo-typing span:nth-child(2) { animation-delay: 0.15s; }
        .demo-typing span:nth-child(3) { animation-delay: 0.30s; }
        @keyframes typing-bounce {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
            30% { transform: translateY(-4px); opacity: 1; }
        }
        .demo-summary {
            background: var(--surface);
            border: 1px solid var(--gold-border);
            border-radius: 16px;
            padding: 16px 18px;
            max-width: 88%;
            opacity: 0;
            transform: translateY(8px);
            animation: msg-appear 0.4s ease-out forwards;
        }
        .demo-summary-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .demo-summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.78rem;
            padding: 5px 0;
            border-bottom: 1px solid var(--border);
        }
        .demo-summary-row:last-child { border-bottom: none; }
        .demo-summary-key { color: var(--steel); }
        .demo-summary-val { color: var(--paper); font-weight: 500; }
        .demo-input-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-top: 1px solid var(--border);
            background: var(--deep);
        }
        .demo-input {
            flex: 1;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--paper);
            font-family: 'DM Sans', sans-serif;
            outline: none;
            transition: border-color 0.25s;
        }
        .demo-input::placeholder { color: var(--muted); }
        .demo-input:focus { border-color: var(--gold-border); }
        .demo-send {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: var(--gold);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }
        .demo-send:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(200,168,124,0.3); }
        .demo-send svg { width: 16px; height: 16px; fill: var(--ink); }
        .demo-restart {
            display: block;
            margin: 20px auto 0;
            background: none;
            border: 1px solid var(--border-light);
            color: var(--steel);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            padding: 8px 20px;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.25s;
        }
        .demo-restart:hover { border-color: var(--gold-border); color: var(--gold); }

        @media (max-width: 768px) {
            .live-demo { padding: 80px 0; }
            .demo-container { max-width: 100%; }
            .demo-phone { border-radius: 24px; }
            .demo-messages { min-height: 300px; max-height: 360px; padding: 16px 12px; }
            .demo-msg { font-size: 0.84rem; }
        }

        /* =====================
           TESTIMONIALS (MARQUEE)
        ===================== */
        .quotes {
            padding: 120px 0;
            overflow: hidden;
            position: relative;
        }
        .quotes-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .quotes-header .section-sub { margin-left: auto; margin-right: auto; }
        .quotes-track-wrapper {
            position: relative;
            mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        }
        .quotes-track {
            display: flex;
            gap: 20px;
            animation: marquee 40s linear infinite;
            width: fit-content;
        }
        .quotes-track:hover { animation-play-state: paused; }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .quote-card {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 36px 32px;
            min-width: 340px;
            max-width: 340px;
            flex-shrink: 0;
            transition: border-color 0.3s ease;
        }
        .quote-card:hover { border-color: var(--gold-border); }
        .quote-stars {
            color: var(--gold);
            font-size: 0.82rem;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }
        .quote-text {
            font-size: 0.92rem;
            line-height: 1.7;
            color: var(--paper);
            font-weight: 300;
            margin-bottom: 24px;
            font-style: italic;
        }
        .quote-author { display: flex; align-items: center; gap: 12px; }
        .quote-avatar {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-dim) 0%, var(--surface) 100%);
            border: 1px solid var(--gold-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gold);
            flex-shrink: 0;
        }
        .quote-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
        }
        .quote-handle { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
        .quotes-disclaimer {
            text-align: center;
            margin-top: 32px;
            font-size: 0.75rem;
            color: var(--muted);
        }

        /* =====================
           PRICING
        ===================== */
        .pricing {
            padding: 120px 0;
            position: relative;
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .pricing-header .section-sub { margin-left: auto; margin-right: auto; }
        .pricing-card {
            max-width: 560px;
            margin: 0 auto;
            background: var(--surface);
            border: 1px solid var(--gold-border);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(200,168,124,0.08);
        }
        .pricing-top {
            padding: 44px 48px 36px;
            border-bottom: 1px solid var(--border);
        }
        .pricing-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 28px;
        }
        .pricing-amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            letter-spacing: -2px;
            line-height: 1;
        }
        .pricing-amount sup {
            font-size: 1.5rem;
            vertical-align: top;
            margin-top: 10px;
            margin-right: 2px;
            font-weight: 500;
            color: var(--gold);
        }
        .pricing-tagline {
            font-size: 0.92rem;
            color: var(--steel);
            margin-top: 12px;
            font-weight: 300;
        }
        .pricing-commission {
            margin-top: 24px;
            padding: 16px 20px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            border-radius: 14px;
        }
        .pricing-commission p { font-size: 0.88rem; color: var(--gold); line-height: 1.55; }
        .pricing-commission strong { font-weight: 600; }
        .pricing-features { padding: 36px 48px 44px; }
        .pricing-features ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 0.92rem;
            color: var(--paper);
            font-weight: 300;
        }
        .pricing-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 600;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .pricing-cta {
            margin-top: 32px;
            display: block;
            text-align: center;
            padding: 16px;
            background: var(--gold);
            color: var(--ink);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 8px 24px rgba(200,168,124,0.15);
            border: none;
        }
        .pricing-cta:hover { background: var(--gold-light); transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 40px rgba(200,168,124,0.35); }
        .pricing-note {
            text-align: center;
            margin-top: 24px;
            font-size: 0.78rem;
            color: var(--muted);
        }

        /* =====================
           BEFORE / AFTER
        ===================== */
        .before-after { padding: 120px 0; position: relative; overflow: hidden; }
        .before-after::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(200,168,124,0.025) 0%, transparent 55%);
            pointer-events: none;
        }
        .before-after-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .before-after-header .section-sub { margin-left: auto; margin-right: auto; }
        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .ba-card {
            background: rgba(17,17,17,0.62);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 20px;
            padding: 40px 36px;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .ba-card:hover {
            transform: translateY(-4px);
            box-shadow:
                0 24px 64px rgba(0,0,0,0.55),
                0 0 0 1px rgba(255,255,255,0.06),
                0 0 48px rgba(0,0,0,0.15) inset;
        }

        /* AVANT card — dark red / danger */
        .ba-card-before {
            border-color: rgba(255,85,85,0.18);
            background: linear-gradient(170deg, rgba(255,85,85,0.06) 0%, rgba(17,17,17,0.62) 50%);
        }
        .ba-card-before:hover {
            border-color: rgba(255,85,85,0.32);
            box-shadow:
                0 24px 64px rgba(0,0,0,0.55),
                0 0 0 1px rgba(255,85,85,0.12),
                0 0 48px rgba(255,85,85,0.03) inset;
        }

        /* APRÈS card — gold / success */
        .ba-card-after {
            border-color: var(--gold-border);
            background: linear-gradient(170deg, rgba(200,168,124,0.06) 0%, rgba(17,17,17,0.62) 50%);
        }
        .ba-card-after:hover {
            border-color: rgba(200,168,124,0.38);
            box-shadow:
                0 24px 64px rgba(0,0,0,0.55),
                0 0 0 1px rgba(200,168,124,0.14),
                0 0 48px rgba(200,168,124,0.04) inset;
        }

        .ba-glow {
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(200,168,124,0.12) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .ba-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
        }
        .ba-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .ba-icon-before {
            background: rgba(255,85,85,0.10);
            border: 1px solid rgba(255,85,85,0.22);
        }
        .ba-icon-after {
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            color: var(--gold);
        }

        .ba-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .ba-title-before { color: var(--red); }
        .ba-title-after { color: var(--gold); }

        .ba-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 2px;
        }

        .ba-items {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .ba-items li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            color: var(--steel);
            line-height: 1.55;
            font-weight: 300;
        }

        .ba-bullet-before,
        .ba-bullet-after {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .ba-bullet-before {
            background: rgba(255,85,85,0.12);
            color: var(--red);
            border: 1px solid rgba(255,85,85,0.22);
        }
        .ba-bullet-after {
            background: rgba(200,168,124,0.12);
            color: var(--gold);
            border: 1px solid var(--gold-border);
        }

        /* =====================
           COMPARISON / WHY BOOKINK
        ===================== */
        .comparison { padding: 120px 0; }
        .comparison-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .comparison-header .section-sub { margin-left: auto; margin-right: auto; }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }
        .feature-card {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 40px 32px;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,168,124,0.08); }
        .feature-icon {
            width: 48px; height: 48px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }
        .feature-card p { font-size: 0.85rem; color: var(--steel); line-height: 1.65; font-weight: 300; }

        /* =====================
           FAQ
        ===================== */
        .faq { padding: 120px 0; }
        .faq-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .faq-list {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-q {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 28px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .faq-q-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--paper);
            letter-spacing: -0.2px;
        }
        .faq-icon {
            width: 28px; height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-dim); border-color: var(--gold-border); }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .faq-item.open .faq-a { max-height: 300px; }
        .faq-a-inner {
            padding-bottom: 28px;
            font-size: 0.92rem;
            color: var(--steel);
            line-height: 1.7;
            font-weight: 300;
        }
        .faq-a-inner strong { color: var(--paper); font-weight: 500; }

        /* =====================
           CLOSING CTA
        ===================== */
        .closing {
            padding: 160px 24px 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .closing-glow {
            width: 700px; height: 700px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.2;
        }
        .closing-content { position: relative; z-index: 1; }
        .closing-line {
            width: 1px; height: 60px;
            background: linear-gradient(to bottom, transparent, var(--gold));
            opacity: 0.2;
            margin: 0 auto 40px;
        }
        .zero-risk-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(94,202,143,0.06);
            border: 1px solid rgba(94,202,143,0.15);
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--green);
            margin-bottom: 32px;
        }
        .closing h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -2px;
            line-height: 1.08;
            max-width: 640px;
            margin: 0 auto 24px;
        }
        .closing h2 em { font-style: normal; color: var(--gold); }
        .closing p {
            font-size: 1.05rem;
            color: var(--steel);
            max-width: 440px;
            margin: 0 auto 44px;
            line-height: 1.7;
            font-weight: 300;
        }
        .closing-cta-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* =====================
           FOOTER
        ===================== */
        footer {
            padding: 44px 48px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-brand-dot {
            width: 6px; height: 6px;
            background: var(--gold);
            border-radius: 50%;
        }
        .footer-links { display: flex; gap: 32px; }
        .footer-links a {
            font-size: 0.8rem;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.25s;
        }
        .footer-links a:hover { color: var(--steel); }
        .footer-legal { font-size: 0.75rem; color: var(--muted); }

        /* =====================
           PRODUCT PREVIEW
        ===================== */
        .product-preview {
            padding: 120px 0;
            position: relative;
        }
        .preview-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .preview-header .section-sub { margin-left: auto; margin-right: auto; }
        .preview-devices {
            display: flex;
            gap: 48px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Phone frame */
        .device-phone { flex-shrink: 0; }
        .phone-frame {
            width: 260px;
            background: #161616;
            border: 2px solid rgba(255,255,255,0.08);
            border-radius: 36px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.05);
            position: relative;
        }
        .phone-notch {
            width: 100px; height: 18px;
            background: #050505;
            border-radius: 0 0 14px 14px;
            margin: 0 auto;
        }
        .phone-screen { padding: 0 0 20px; }
        .chat-ui {
            display: flex;
            flex-direction: column;
            height: 430px;
        }
        .chat-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .chat-bot-avatar {
            width: 32px; height: 32px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 12px;
            flex-shrink: 0;
        }
        .chat-header-info { flex: 1; }
        .chat-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.76rem; font-weight: 600; }
        .chat-status { font-size: 0.62rem; color: var(--green); margin-top: 2px; }
        .chat-messages {
            flex: 1;
            padding: 14px 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow: hidden;
        }
        .chat-msg {
            max-width: 84%;
            padding: 9px 12px;
            border-radius: 14px;
            font-size: 0.71rem;
            line-height: 1.5;
            font-weight: 300;
        }
        .chat-msg.bot {
            background: #1d1d1d;
            border: 1px solid rgba(255,255,255,0.07);
            color: var(--paper);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }
        .chat-msg.client {
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            color: var(--paper);
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }
        .chat-typing {
            display: flex;
            gap: 4px;
            align-self: flex-start;
            background: #1d1d1d;
            border: 1px solid rgba(255,255,255,0.07);
            padding: 10px 14px;
            border-radius: 14px;
            border-bottom-left-radius: 4px;
        }
        .chat-typing span {
            width: 5px; height: 5px;
            background: var(--muted);
            border-radius: 50%;
            animation: typing-bounce 1.4s ease infinite;
        }
        .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
        .chat-typing span:nth-child(3) { animation-delay: 0.4s; }
        @keyframes typing-bounce {
            0%,60%,100% { transform: translateY(0); opacity: 0.4; }
            30% { transform: translateY(-4px); opacity: 1; }
        }
        .chat-input-bar {
            margin: 0 12px;
            padding: 10px 14px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            font-size: 0.68rem;
            color: var(--muted);
        }

        /* Desktop frame */
        .device-desktop { flex: 1; min-width: 320px; max-width: 580px; }
        .desktop-frame {
            background: #0d0d0d;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 32px 72px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03);
        }
        .desktop-titlebar {
            background: #141414;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .desktop-dots { display: flex; gap: 6px; }
        .desktop-dots .dot { width: 10px; height: 10px; border-radius: 50%; }
        .desktop-dots .dot.red { background: #ff5f57; }
        .desktop-dots .dot.yellow { background: #febc2e; }
        .desktop-dots .dot.green { background: #28c840; }
        .desktop-url {
            font-size: 0.68rem;
            color: var(--muted);
            background: rgba(255,255,255,0.04);
            padding: 4px 12px;
            border-radius: 6px;
            letter-spacing: 0.3px;
        }
        .desktop-screen { padding: 24px; }
        .dash-stats-row {
            display: flex;
            gap: 14px;
            margin-bottom: 22px;
        }
        .dash-stat {
            flex: 1;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 14px 12px;
            text-align: center;
        }
        .dash-stat-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--paper) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dash-stat-lbl { font-size: 0.65rem; color: var(--muted); margin-top: 4px; }
        .dash-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--steel);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .dash-booking-list { display: flex; flex-direction: column; gap: 8px; }
        .dash-booking-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: 10px;
            padding: 12px 14px;
            transition: border-color 0.2s;
        }
        .dash-booking-row:hover { border-color: var(--gold-border); }
        .dash-booking-name { font-size: 0.78rem; font-weight: 500; margin-bottom: 2px; }
        .dash-booking-detail { font-size: 0.67rem; color: var(--muted); }
        .dash-badge {
            font-size: 0.62rem;
            font-weight: 600;
            font-family: 'Space Grotesk', sans-serif;
            padding: 4px 10px;
            border-radius: 20px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            flex-shrink: 0;
            margin-left: 12px;
        }
        .dash-badge.new { background: rgba(94,202,143,0.10); color: var(--green); border: 1px solid rgba(94,202,143,0.18); }
        .dash-badge.paid { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
        .dash-badge.confirmed { background: rgba(94,202,143,0.06); color: var(--green); border: 1px solid rgba(94,202,143,0.12); }

        /* =====================
           PREMIUM VISUAL LAYER
        ===================== */

        /* --- Animated hero mesh orbs --- */
        @keyframes mesh-drift-1 {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.50; }
            33%       { transform: translateX(-47%) scale(1.10); opacity: 0.40; }
            66%       { transform: translateX(-53%) scale(0.95); opacity: 0.60; }
        }
        @keyframes mesh-drift-2 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.30; }
            50%       { transform: translate(-28px, 38px) scale(1.12); opacity: 0.20; }
        }
        @keyframes mesh-drift-3 {
            0%, 100% { transform: translate(0, 0); opacity: 0.12; }
            33%       { transform: translate(22px, -28px); opacity: 0.22; }
            66%       { transform: translate(-18px, 18px); opacity: 0.08; }
        }
        @keyframes closing-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.20; }
            50%       { transform: translate(-50%, -50%) scale(1.08); opacity: 0.30; }
        }
        @keyframes showcase-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.25; }
            50%       { transform: translate(-50%, -50%) scale(1.06); opacity: 0.32; }
        }

        .hero-glow-1  { animation: mesh-drift-1 20s ease-in-out infinite; }
        .hero-glow-2  { animation: mesh-drift-2 26s ease-in-out infinite; }
        .hero-glow-3  {
            width: 500px; height: 500px;
            bottom: 5%; left: 5%;
            background: radial-gradient(circle, rgba(180,110,50,0.07) 0%, transparent 70%);
            animation: mesh-drift-3 22s ease-in-out infinite;
        }
        .closing-glow  { animation: closing-pulse 9s ease-in-out infinite; }
        .showcase-glow { animation: showcase-pulse 11s ease-in-out infinite; }

        /* --- Glassmorphism cards --- */
        .how-step,
        .feature-card,
        .for-card,
        .showcase-card,
        .quote-card,
        .loss-step {
            background: rgba(17,17,17,0.62);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }
        .pricing-card {
            background: rgba(17,17,17,0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }
        .loss-vs-inner {
            background: rgba(17,17,17,0.72);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        /* --- Enhanced hover depth shadows --- */
        .how-step:hover,
        .feature-card:hover,
        .for-card:hover,
        .showcase-card:hover {
            box-shadow:
                0 24px 64px rgba(0,0,0,0.55),
                0 0 0 1px rgba(200,168,124,0.14),
                0 0 48px rgba(200,168,124,0.04) inset;
        }
        .loss-step:hover {
            box-shadow: 0 10px 32px rgba(0,0,0,0.30), 0 0 0 1px rgba(200,168,124,0.10);
        }

        /* --- Custom spring easing on CTA buttons --- */
        .btn-primary {
            transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .btn-ghost {
            transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .nav-cta {
            transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* --- Hero tag shimmer (transform-based, GPU-accelerated) --- */
        .hero-tag {
            background: linear-gradient(
                90deg,
                var(--gold-dim) 0%,
                rgba(200,168,124,0.18) 45%,
                var(--gold-dim2) 55%,
                var(--gold-dim) 100%
            );
            background-size: 200% auto;
            overflow: hidden;
        }
        .hero-tag::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(200,168,124,0.15) 50%, transparent 100%);
            transform: translateX(-100%);
            animation: gold-shimmer 4s linear infinite;
        }
        @keyframes gold-shimmer {
            0%   { transform: translateX(-100%); }
            100% { transform: translateX(200%); }
        }

        /* --- Subtle CTA primary pulse glow (composited: opacity only) --- */
        @keyframes btn-glow-pulse {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0.85; }
        }
        /* Only animate when NOT hovered — interrupted by hover state naturally */
        .btn-primary:not(:hover) {
            animation: btn-glow-pulse 3s ease-in-out infinite;
            will-change: opacity;
        }

        /* --- Section background radial accents --- */
        .how { overflow: hidden; }
        .how::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(200,168,124,0.025) 0%, transparent 55%);
            pointer-events: none;
        }
        .comparison { position: relative; overflow: hidden; }
        .comparison::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 80% 50%, rgba(200,168,124,0.025) 0%, transparent 55%);
            pointer-events: none;
        }
        .for-who { position: relative; overflow: hidden; }
        .for-who::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 80%, rgba(200,168,124,0.02) 0%, transparent 50%);
            pointer-events: none;
        }

        /* --- Cursor glow (JS-powered via CSS custom props) --- */
        .hero-cursor-glow {
            position: absolute;
            width: 440px; height: 440px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200,168,124,0.07) 0%, transparent 60%);
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            will-change: transform, top, left;
        }
        .hero-cursor-glow.visible { opacity: 1; }

        /* --- Particle canvas in hero --- */
        #particle-canvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }

        /* =====================
           SOCIAL PROOF COUNTERS
        ===================== */
        .stats-counter {
            padding: 80px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-item {
            background: var(--surface);
            border: 1px solid var(--gold-border);
            border-radius: 20px;
            padding: 32px 16px;
            text-align: center;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-item:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,168,124,0.12);
        }
        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: -1px;
            line-height: 1.1;
            margin-bottom: 8px;
        }
        .stat-number.stat-green {
            color: var(--green);
        }
        .stat-label {
            font-size: 0.82rem;
            color: var(--steel);
            line-height: 1.45;
            font-weight: 400;
        }

        @media (max-width: 900px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 768px) {
            .stats-counter {
                padding: 60px 0;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .stat-item {
                padding: 24px 12px;
                border-radius: 16px;
            }
            .stat-number {
                font-size: 2rem;
            }
            .stat-label {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-item {
                padding: 20px 10px;
            }
            .stat-number {
                font-size: 1.7rem;
            }
        }

        /* --- Pricing card top subtle gradient --- */
        .pricing-top {
            background: linear-gradient(180deg, rgba(200,168,124,0.03) 0%, transparent 100%);
        }
