        /* =============================================================================
           MA LANDING PAGE - Stripped Down, High-Impact
           ============================================================================= */
        
        :root {
            --font-handwritten: 'Caveat', cursive;
            --near-black: hsl(258, 33%, 6%);
            --text-primary: hsl(221, 39%, 11%);
            --text-secondary: hsl(220, 9%, 46%);
            --text-inverse: hsl(0, 0%, 100%);
        }
        
        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-l);
        }

        /* =============================================================================
           NAVIGATION - Now using centralized header component
           ============================================================================= */

        /* =============================================================================
           HERO SECTION - Dark with Glowing $47K
           ============================================================================= */
        .hero {
            min-height: 100vh;
            background: linear-gradient(180deg, var(--near-black) 0%, hsl(256, 25%, 12%) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px var(--space-l) 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-spotlight {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1200px;
            height: 100%;
            pointer-events: none;
            opacity: 0.8;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: 8px 16px;
            background: hsl(271, 91%, 65%, 0.15);
            border: 1px solid hsl(271, 91%, 65%, 0.3);
            border-radius: var(--radius-full);
            color: var(--primary-200);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: var(--space-xl);
        }
        
        .hero-number {
            position: relative;
            margin-bottom: var(--space-l);
        }
        
        .hero-number-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 200px;
            background: radial-gradient(ellipse, hsl(51, 100%, 50%, 0.3) 0%, transparent 70%);
            filter: blur(40px);
            pointer-events: none;
        }
        
        .hero-number-value {
            font-size: clamp(64px, 12vw, 120px);
            font-weight: 900;
            background: linear-gradient(180deg, hsl(51, 100%, 50%) 0%, hsl(39, 100%, 50%) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            line-height: 1;
        }
        
        .hero-headline {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 600;
            color: white;
            line-height: 1.3;
            margin-bottom: var(--space-m);
        }
        
        .hero-subheadline {
            font-size: 18px;
            color: hsl(0, 0%, 100%, 0.7);
            line-height: 1.6;
            margin-bottom: var(--space-xl);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: var(--space-s);
            background: var(--tertiary-400);
            color: var(--near-black);
            padding: 16px 32px;
            border-radius: var(--radius-full);
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .hero-cta:hover {
            background: hsl(51, 100%, 65%);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px hsl(51, 100%, 50%, 0.3);
        }
        
        .hero-proof {
            display: flex;
            justify-content: center;
            gap: var(--space-xxl);
            margin-top: var(--space-xxl);
            padding-top: var(--space-xl);
            border-top: 1px solid hsl(0, 0%, 100%, 0.1);
        }
        
        .proof-item {
            text-align: center;
        }
        
        .proof-value {
            font-size: 28px;
            font-weight: 700;
            color: white;
        }
        
        .proof-label {
            font-size: 14px;
            color: hsl(0, 0%, 100%, 0.5);
            margin-top: 4px;
        }
        
        @media (max-width: 640px) {
            .hero-proof {
                flex-wrap: wrap;
                gap: var(--space-l);
            }
            .proof-item {
                flex: 1 1 40%;
            }
        }
        
        /* =============================================================================
           PAIN SECTION - "The Midnight Spreadsheet" (Fitzloff emotional turn)
           ============================================================================= */
        .pain-section {
            background: var(--surface-background);
            padding: var(--space-section) 0;
        }
        
        .pain-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xxl);
            align-items: center;
        }
        
        @media (max-width: 900px) {
            .pain-container {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }
        }
        
        .pain-content {
            max-width: 520px;
        }
        
        .pain-eyebrow {
            font-family: var(--font-handwritten);
            font-size: 24px;
            color: var(--primary-600);
            margin-bottom: var(--space-m);
        }
        
        .pain-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: var(--space-l);
        }
        
        .pain-description {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-l);
        }
        
        .pain-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-s);
        }
        
        .pain-list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-s);
            color: var(--text-secondary);
            font-size: 16px;
        }
        
        .pain-list .material-symbols-rounded {
            color: var(--zivvy-danger-500);
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .pain-photo {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-5);
        }
        
        .pain-photo img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .pain-annotation {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: hsl(0, 0%, 0%, 0.8);
            backdrop-filter: blur(10px);
            padding: 16px 20px;
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--tertiary-400);
        }
        
        .pain-annotation p {
            font-family: var(--font-handwritten);
            font-size: 22px;
            color: white;
            margin: 0;
        }
        
        /* =============================================================================
           THE REVEAL - Step 1: "It Finds the Money"
           ============================================================================= */
        .reveal-section {
            background: linear-gradient(180deg, var(--near-black) 0%, hsl(256, 25%, 12%) 100%);
            padding: var(--space-section) 0;
            color: white;
        }
        
        .reveal-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .reveal-step {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: 6px 16px;
            background: hsl(160, 84%, 39%, 0.15);
            border: 1px solid hsl(160, 84%, 39%, 0.3);
            border-radius: var(--radius-full);
            color: var(--zivvy-success-500);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: var(--space-l);
        }
        
        .reveal-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: var(--space-m);
            line-height: 1.2;
        }
        
        .reveal-description {
            font-size: 20px;
            color: hsl(0, 0%, 100%, 0.7);
            line-height: 1.6;
            margin-bottom: var(--space-xxl);
        }
        
        .reveal-benefits {
            display: flex;
            justify-content: center;
            gap: var(--space-xl);
            margin-bottom: var(--space-xxl);
            flex-wrap: wrap;
        }
        
        .reveal-benefit {
            display: flex;
            align-items: center;
            gap: var(--space-s);
            font-size: 16px;
            color: hsl(0, 0%, 100%, 0.9);
        }
        
        .reveal-benefit .material-symbols-rounded {
            color: var(--zivvy-success-500);
            font-size: 24px;
        }
        
        /* Scan Animation - Now using embedded component from zivvy-scan-animation.html */
        /* Removed old placeholder styles - component has its own styles in <head> */
        
        .reveal-cta-link {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            color: var(--tertiary-400);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.2s;
        }
        
        .reveal-cta-link:hover {
            gap: var(--space-s);
        }
        
        /* =============================================================================
           TESTIMONIALS - 3 Max (Segall: Brutal Reduction)
           ============================================================================= */
        .testimonials-section {
            background: var(--surface-background);
            padding: var(--space-section) 0;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: var(--space-xxl);
        }
        
        .testimonials-eyebrow {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-600);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-s);
        }
        
        .testimonials-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-s);
        }

        .testimonials-scroll-hint {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 14px;
            color: var(--text-tertiary);
            margin-top: var(--space-s);
            animation: pulse 2s ease-in-out infinite;
        }

        .testimonials-scroll-hint .material-symbols-rounded {
            font-size: 20px;
            color: var(--primary-600);
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        
        .testimonials-grid {
            display: flex;
            gap: var(--space-l);
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE and Edge */
            padding: 4px 0 var(--space-l) 0;
            position: relative;

            /* Show peek of next card on desktop */
            scroll-padding: 0 24px;
        }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .testimonials-grid::-webkit-scrollbar {
            display: none;
        }

        /* Add fade gradient on right edge to indicate more content */
        .testimonials-grid::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: var(--space-l);
            width: 120px;
            background: linear-gradient(to right, transparent 0%, var(--surface-background) 100%);
            pointer-events: none;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .testimonials-grid {
                gap: var(--space-m);
            }
        }

        .testimonial-card {
            background: white;
            border: 1px solid var(--surface-border);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            transition: all 0.3s;

            /* Fixed width for horizontal scroll */
            min-width: 400px;
            max-width: 400px;
            flex-shrink: 0;
        }

        @media (max-width: 600px) {
            .testimonial-card {
                min-width: 320px;
                max-width: 320px;
            }
        }

        @media (min-width: 601px) and (max-width: 900px) {
            .testimonial-card {
                min-width: 360px;
                max-width: 360px;
            }
        }
        
        .testimonial-card:hover {
            border-color: var(--primary-600);
            box-shadow: var(--shadow-4);
            transform: translateY(-4px);
        }
        
        .testimonial-quote {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-l);
        }
        
        .testimonial-quote mark {
            background: hsl(160, 84%, 39%, 0.15);
            color: var(--zivvy-success-600);
            padding: 2px 4px;
            border-radius: 2px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-m);
        }

        .testimonial-author > div {
            flex: 1;
            min-width: 0;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .testimonial-title {
            font-size: 14px;
            color: var(--text-tertiary);
            white-space: nowrap;
        }
        
        .testimonial-result {
            margin-left: auto;
            text-align: right;
        }
        
        .testimonial-result-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--zivvy-success-500);
        }
        
        .testimonial-result-label {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        
        .testimonials-more {
            text-align: center;
            margin-top: var(--space-xl);
        }
        
        .testimonials-more a {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            color: var(--primary-600);
            font-weight: 600;
            text-decoration: none;
        }
        
        .testimonials-more a:hover {
            text-decoration: underline;
        }
        
        /* =============================================================================
           FINAL CTA
           ============================================================================= */
        .cta-section {
            background: linear-gradient(180deg, var(--near-black) 0%, var(--primary-800) 100%);
            padding: var(--space-section) 0;
            text-align: center;
            color: white;
        }
        
        .cta-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: var(--space-m);
        }
        
        .cta-description {
            font-size: 18px;
            color: hsl(0, 0%, 100%, 0.7);
            max-width: 600px;
            margin: 0 auto var(--space-xl);
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-s);
            background: var(--tertiary-400);
            color: var(--near-black);
            padding: 18px 36px;
            border-radius: var(--radius-full);
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background: hsl(51, 100%, 65%);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px hsl(51, 100%, 50%, 0.3);
        }
        
        .cta-note {
            font-size: 14px;
            color: hsl(0, 0%, 100%, 0.5);
            margin-top: var(--space-l);
        }
        
        /* =============================================================================
           FOOTER
           ============================================================================= */
        .footer {
            background: var(--near-black);
            padding: var(--space-xxl) 0 var(--space-xl);
            color: hsl(0, 0%, 100%, 0.6);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--space-xxl);
            margin-bottom: var(--space-xl);
        }
        
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-xl);
            }
        }
        
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .footer-brand img {
            height: 32px;
            margin-bottom: var(--space-m);
        }
        
        .footer-tagline {
            font-size: 14px;
            line-height: 1.6;
            max-width: 280px;
        }
        
        .footer-col h4 {
            color: white;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: var(--space-m);
        }
        
        .footer-col a {
            display: block;
            color: hsl(0, 0%, 100%, 0.6);
            text-decoration: none;
            font-size: 14px;
            padding: 6px 0;
            transition: color 0.2s;
        }
        
        .footer-col a:hover {
            color: white;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            padding-top: var(--space-xl);
            border-top: 1px solid hsl(0, 0%, 100%, 0.1);
            font-size: 14px;
        }
        
        @media (max-width: 600px) {
            .footer-bottom {
                flex-direction: column;
                gap: var(--space-s);
                text-align: center;
            }
        }
