        /* ========================================
           GLOBAL SETTINGS - EASY TWEAKS
           ======================================== */
        
        :root {
            /* VIDEO/GIF BACKGROUND OPACITY CONTROL
               Adjust this single value (0.0 to 1.0) to control background visibility
               0.0 = completely invisible
               0.08 = subtle background effect
               1.0 = fully visible
               Currently using console-gif.gif
            */
            --video-bg-opacity: 0.9;
            
            /* VIDEO/GIF BACKGROUND ENABLE/DISABLE TOGGLES
               Set to 1 to show background, 0 to hide background
               Benefits section = "Why Propraisal" section
               Case Study section = "NYC Multifamily Case Study" section
            */
            --benefits-video-enabled: 0; /* 0 = disabled, 1 = enabled */
            --case-study-video-enabled: 1; /* 0 = disabled, 1 = enabled */
        }
        
        /* ======================================== */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-padding-top: 90px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #ffffff;
        }

        /* Header */
        header {
            background: #ffffff;
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #3b82f6;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #6b7280;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3b82f6;
        }

        .cta-button {
            background: #3b82f6;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
        }

        /* 1. HERO - Inline Metrics with Gradient */
        .hero {
            background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
            color: #1f2937;
            padding: 4rem 2rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(59, 130, 246, 0.03) 2px, rgba(59, 130, 246, 0.03) 4px);
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: #4b5563;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .primary-button {
            background: #3b82f6;
            color: #ffffff;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s;
        }

        .primary-button:hover {
            transform: translateY(-2px);
        }

        .secondary-button {
            background: transparent;
            color: #4b5563;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: 1px solid #d1d5db;
            transition: all 0.3s;
        }

        .secondary-button:hover {
            color: #1f2937;
            border-color: #3b82f6;
        }

        .hero-divider {
            display: none; /* Hidden - not needed */
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #bfdbfe, transparent);
            margin: 2rem 0 2rem;
        }

        .inline-metrics {
            display: flex;
            justify-content: center;
            gap: 3.5rem;
            flex-wrap: wrap;
            position: absolute;
            bottom: -2rem;
            left: 0;
            right: 0;
            z-index: 10;
        }

        .inline-metric {
            text-align: center;
        }
        
        .inline-metric:nth-child(3) {
            margin-left: 2rem;
        }

        .inline-metric h3 {
            font-size: 1.75rem;
            color: #3b82f6;
            font-weight: 800;
            margin-bottom: 0.05rem;
        }

        .inline-metric p {
            font-size: 0.8rem;
            color: #4b5563;
            max-width: 140px;
            line-height: 1.1;
        }

        /* Tilemap container in hero */
        .hero-tilemap {
            max-width: 825px;
            margin: 0 auto 1.5rem;
            padding: 0.25rem 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(191, 219, 254, 0.6);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
            position: relative;
        }

        #heroTilemap {
            height: 510px;
            margin-bottom: 0.75rem;
        }

        /* 2. WHY PROPRAISAL - Vertical List (NO CARDS) */
        .benefits {
            padding: 2.5rem 2rem;
            background: #f9fafb;
            position: relative; /* Moved from line 1115 for consolidation */
            overflow: hidden; /* Moved from line 1115 for consolidation */
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .benefits-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .benefit-row {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #e5e7eb;
            transition: background 0.3s;
        }

        .benefit-row:nth-child(even) {
            background: rgba(191, 219, 254, 0.15);
        }

        .benefit-row:hover {
            background: rgba(191, 219, 254, 0.25);
        }

        .benefit-icon {
            font-size: 3.5rem;
            flex-shrink: 0;
            opacity: 0.9;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .benefit-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .benefit-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.35rem;
            color: #1f2937;
        }

        .benefit-content p {
            color: #4b5563;
            line-height: 1.5;
        }

        /* 3. WHO IT'S FOR - Tall Column Cards */
        .who-its-for {
            padding: 3rem 1rem;
            background: #ffffff;
            border-top: 1px solid #e5e7eb;
        }

        .who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto 0;
        }

        .who-card {
            background: transparent;
            border-left: 3px solid #3b82f6;
            padding: 2rem 2rem 2rem 2.5rem;
            min-height: 380px;
            position: relative;
            transition: border-color 0.3s;
        }

        .who-card-middle {
            border-right: 3px solid #3b82f6;
        }

        .who-card:hover {
            border-color: #2563eb;
        }

        .who-accent {
            position: absolute;
            top: 0;
            left: -3px;
            width: 3px;
            height: 80px;
            background: linear-gradient(180deg, #3b82f6, transparent);
        }
        
        .who-accent-right {
            position: absolute;
            top: 0;
            right: -3px;
            left: auto;
            width: 3px;
            height: 80px;
            background: linear-gradient(180deg, #3b82f6, transparent);
        }

        .who-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .who-card > p {
            color: #4b5563;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .who-card ul {
            list-style: none;
            padding: 0;
        }

        .who-card li {
            color: #4b5563;
            padding: 0.35rem 0 0.35rem 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .who-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #3b82f6;
            font-weight: bold;
        }

        /* 4. TECHNOLOGY - Clean Paragraphs */
        .technology {
            padding: 3rem 2rem;
            background: #eff6ff;
        }

        .tech-content {
            max-width: 900px;
            margin: 2rem auto 0;
        }

        .tech-paragraph {
            margin-bottom: 2.5rem;
        }

        .tech-paragraph h3 {
            font-size: 1.3rem;
            color: #3b82f6;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .tech-paragraph p {
            color: #4b5563;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .tech-split {
                grid-template-columns: 1fr;
            }

            .tech-divider {
                width: 100%;
                height: 2px;
                background: linear-gradient(90deg, transparent, #3b82f6 20%, #3b82f6 80%, transparent);
            }
        }

        @media (max-width: 768px) {
            /* MOBILE HEADER - HIDE NAV */
            header {
                padding: 1rem !important;
            }
            
            nav {
                justify-content: center !important;
            }
            
            .logo img {
                height: 40px !important;
            }
            
            .nav-links {
                display: none !important;
            }
            
            nav .cta-button {
                display: none !important;
            }
            /* END MOBILE HEADER */
            
            /* MOBILE HERO LAYOUT */
            .hero {
                padding: 2rem 1rem 3rem !important;
            }
            
            .hero h1 {
                font-size: 2rem !important;
                margin-bottom: 1rem !important;
            }
            
            .hero p {
                font-size: 1rem !important;
                margin-bottom: 1.5rem !important;
            }
            
            .hero-buttons {
                margin-bottom: 2rem !important;
            }
            
            /* Tilemap - smaller on mobile */
            .hero-tilemap {
                margin-bottom: 2rem !important;
                padding: 0.5rem 0.5rem 1rem !important;
                max-width: 333px !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }
            
            #heroTilemap {
                height: 250px !important;
            }
            
            /* Metrics - change from absolute to relative positioning */
            .inline-metrics {
                position: relative !important;
                bottom: auto !important;
                gap: 1rem !important;
                margin-top: 1rem !important;
            }
            
            .inline-metric:nth-child(3) {
                margin-left: 0 !important;
            }
            
            .inline-metric h3 {
                font-size: 1.1rem !important;
                margin-bottom: 0.075rem !important;
            }
            
            .inline-metric p {
                font-size: 0.575rem !important;
                max-width: 90px !important;
                line-height: 1.2 !important;
            }
            
            /* Benefits section - hide icons and reduce padding */
            .benefits {
                padding: 2.5rem 0.5rem !important;
            }
            
            .benefit-icon {
                display: none !important;
            }

            .benefit-row {
                padding: 1.5rem 0.5rem !important;
                gap: 0 !important;
            }
            
            /* Who It's For section - compressed for mobile */
            .who-its-for {
                padding: 1.5rem 0.5rem !important;
            }

            .who-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem !important;
            }
            
            .who-card {
                border-left: none !important;
                border-right: none !important;
                border-top: 3px solid #3b82f6 !important;
                padding: 0.75rem 0.75rem 0.5rem 0.75rem !important;
                min-height: auto !important;
            }
            
            .who-card:last-child {
                border-bottom: 3px solid #3b82f6 !important;
                padding-bottom: 1rem !important;
            }
            
            .who-card h3 {
                font-size: 1.3rem !important;
                margin-bottom: 0.5rem !important;
            }
            
            .who-card > p {
                font-size: 0.9rem !important;
                line-height: 1.4 !important;
                margin-bottom: 1rem !important;
            }
            
            .who-card ul {
                margin: 0 !important;
                margin-bottom: 0 !important;
                padding-left: 1.2rem !important;
            }
            
            .who-card li {
                font-size: 0.85rem !important;
                line-height: 1.3 !important;
                margin-bottom: 0.4rem !important;
                padding: 0 0 0 1.2rem !important;
            }
            
            .who-card li:last-child {
                margin-bottom: 0 !important;
            }
            
            .who-card-middle {
                border-right: none !important;
            }
            
            .who-accent,
            .who-accent-right {
                display: none !important;
            }
            
            /* Footer - reduce logo size */
            footer {
                padding: 2rem 0.5rem !important;
            }
            
            .footer-section img {
                height: 35px !important;
                max-width: 100% !important;
            }
            
            /* How It Works - aggressive compression */
            .how-it-works {
                padding: 1.5rem 0.5rem !important;
            }
            
            .workflow {
                gap: 0 !important;
                margin-top: 1.5rem !important;
            }
            
            .workflow-step {
                padding: 0.75rem 0.5rem !important;
                min-height: auto !important;
                border: 1px solid #c7d2fe !important;
                border-radius: 8px !important;
                margin-bottom: 1.5rem !important;
                position: relative !important;
            }
            
            .workflow-step::after {
                content: '↓' !important;
                display: block !important;
                position: absolute !important;
                bottom: -1.5rem !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                color: #ef4444 !important;
                font-size: 1.5rem !important;
                font-weight: 700 !important;
                line-height: 1 !important;
            }
            
            .workflow-step:first-child::after {
                display: none !important;
            }
            
            .workflow-step:last-child::after {
                display: none !important;
            }
            
            /* Dual arrows from Step 1 to 2a/2b */
            .workflow-step:first-child::before {
                content: '' !important;
                display: block !important;
                position: absolute !important;
                bottom: -1.5rem !important;
                left: 0 !important;
                width: 100% !important;
                height: 1.5rem !important;
            }
            
            .workflow-step:first-child::before {
                content: '↓' !important;
                left: 25% !important;
                transform: translateX(-50%) !important;
                color: #ef4444 !important;
                font-size: 1.5rem !important;
                font-weight: 700 !important;
                width: auto !important;
                line-height: 1 !important;
            }
            
            /* Second arrow pointing to 2b */
            .parallel-models::before {
                content: '↓' !important;
                display: block !important;
                position: absolute !important;
                top: -1.5rem !important;
                right: 25% !important;
                transform: translateX(50%) !important;
                color: #ef4444 !important;
                font-size: 1.5rem !important;
                font-weight: 700 !important;
                line-height: 1 !important;
            }
            
            .workflow-arrow {
                display: none !important;
            }
            
            .step-number {
                width: 40px !important;
                height: 40px !important;
                font-size: 1.3rem !important;
                margin-bottom: 0.5rem !important;
            }
            
            .step-title {
                font-size: 1.1rem !important;
                margin-bottom: 0.4rem !important;
            }
            
            .step-description {
                font-size: 0.8rem !important;
                line-height: 1.3 !important;
            }
            
            /* Parallel models - side by side */
            .parallel-models {
                padding: 0.75rem 0.5rem !important;
            }
            
            .models-container {
                flex-direction: row !important;
                gap: 0.5rem !important;
            }
            
            .model-item {
                flex: 1 !important;
                padding: 0.75rem 0.5rem !important;
                border: 1px solid #c7d2fe !important;
                border-radius: 6px !important;
            }
            
            .model-number {
                width: 40px !important;
                height: 40px !important;
                font-size: 1.3rem !important;
                margin-bottom: 0.4rem !important;
            }
            
            .model-name {
                font-size: 0.95rem !important;
                margin-bottom: 0.3rem !important;
            }
            
            .model-description {
                font-size: 0.75rem !important;
                line-height: 1.3 !important;
            }
            
            /* Pricing - aggressive compression */
            .pricing {
                padding: 1.5rem 0.5rem !important;
            }
            
            .pricing-grid {
                gap: 0.5rem !important;
                margin-top: 1rem !important;
            }
            
            .pricing-card {
                padding: 1rem 0.75rem !important;
                border: 1px solid #e5e7eb !important;
                border-radius: 8px !important;
            }
            
            .pricing-card:hover {
                border-color: #3b82f6 !important;
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
                transform: translateY(-2px) !important;
            }
            
            .pricing-card:nth-child(3):hover {
                border-color: #ef4444 !important;
                box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15) !important;
            }
            
            .pricing-card.featured {
                border-width: 1px !important;
                border-color: #3b82f6 !important;
            }
            
            .pricing-badge {
                top: -10px !important;
                padding: 0.25rem 1rem !important;
                font-size: 0.75rem !important;
            }
            
            .pricing-card h3 {
                font-size: 1.2rem !important;
                margin-bottom: 0 !important;
                display: inline !important;
                margin-right: 0.5rem !important;
            }
            
            .pricing-card .price {
                font-size: 1.8rem !important;
                margin-bottom: 0 !important;
                display: inline !important;
                margin-right: 0.25rem !important;
            }
            
            .pricing-card .price-term {
                font-size: 0.85rem !important;
                margin-bottom: 1rem !important;
                display: inline !important;
            }
            
            .pricing-features {
                margin-bottom: 1rem !important;
            }
            
            .pricing-features li {
                padding: 0.4rem 0 0.4rem 1.5rem !important;
                font-size: 0.8rem !important;
                border-bottom: none !important;
            }
            
            .pricing-features li::before {
                font-size: 0.9rem !important;
            }
            
            .pricing-button {
                padding: 0.75rem 1.5rem !important;
                font-size: 0.9rem !important;
            }
            
            /* Case Study - aggressive compression */
            .case-study {
                padding: 1.5rem 0.5rem !important;
            }
            
            .case-study-content {
                padding: 1rem 0.75rem !important;
                border-radius: 8px !important;
                box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1) !important;
            }
            
            .case-study-intro {
                margin-bottom: 1rem !important;
            }
            
            .case-study-intro h2 {
                font-size: 1.3rem !important;
                margin-bottom: 0.5rem !important;
            }
            
            .case-study-intro p {
                font-size: 0.85rem !important;
                line-height: 1.4 !important;
            }
            
            .case-study-stats {
                gap: 0.5rem !important;
                margin-bottom: 1rem !important;
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
            }
            
            .case-study-stat {
                min-width: auto !important;
                flex: none !important;
            }
            
            .case-study-stat h3 {
                font-size: 1.5rem !important;
                margin-bottom: 0.25rem !important;
            }
            
            .case-study-stat p {
                font-size: 0.75rem !important;
                line-height: 1.2 !important;
            }
            
            .visualizations h3 {
                font-size: 1.1rem !important;
                margin-bottom: 1rem !important;
            }

            .who-card {
                min-height: auto;
            }
        }

        /* Footer */
        footer {
            background: #f3f4f6;
            color: #6b7280;
            padding: 3rem 2rem;
            border-top: 2px solid #e5e7eb;
        }

        /* How It Works - Timeline */
        .how-it-works {
            padding: 3rem 2rem;
            background: #e0e7ff;
            border-top: 1px solid #c7d2fe;
        }

        .how-it-works-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .workflow {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
            gap: 0;
            margin-top: 2.5rem;
            align-items: stretch;
        }

        .workflow-step {
            text-align: center;
            position: relative;
            padding: 2rem 1.5rem;
            border: 2px solid #c7d2fe;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 320px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #3b82f6;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 800;
            margin: 0 auto 1.25rem;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        .step-description {
            color: #4b5563;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Parallel models section */
        .parallel-models {
            position: relative;
            padding: 2rem 1.5rem;
        }

        .models-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .model-item {
            background: rgba(255, 255, 255, 0.6);
            border: 2px solid #c7d2fe;
            border-radius: 12px;
            padding: 1.5rem 1rem;
            text-align: center;
        }

        .model-number {
            background: #3b82f6;
            color: #ffffff;
            width: 60px; /* Increased from 48px to match step-number */
            height: 60px; /* Increased from 48px to match step-number */
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800; /* Increased from 700 to match step-number */
            font-size: 1.75rem; /* Increased from 1.125rem to match step-number */
            margin-bottom: 0.75rem;
        }

        .model-name {
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .model-description {
            font-size: 0.875rem;
            color: #4b5563;
            line-height: 1.5;
        }

        .workflow-arrow {
            color: #ef4444;
            font-size: 3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            align-self: center;
        }

        @media (max-width: 968px) {
            .workflow {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .workflow-arrow {
                display: none;
            }
        }

        /* Pricing Section */
        .pricing {
            padding: 4rem 2rem;
            background: #f0f9ff;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 2.5rem auto 0;
        }

        .pricing-card {
            background: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
            transform: translateY(-4px);
        }

        /* Enterprise card (3rd card) has red hover border */
        .pricing-card:nth-child(3):hover {
            border-color: #ef4444;
            box-shadow: 0 8px 24px rgba(239, 68, 68, 0.15);
        }

        .pricing-card.featured {
            border-color: #3b82f6;
            border-width: 3px;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #3b82f6;
            color: #ffffff;
            padding: 0.35rem 1.25rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.75rem;
            margin-bottom: 0.75rem;
            color: #1f2937;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 0.5rem;
        }

        .pricing-card .price-term {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: #4b5563;
            border-bottom: 1px solid #f3f4f6;
            position: relative;
            padding-left: 1.75rem;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #3b82f6;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-button {
            width: 100%;
            background: #3b82f6;
            color: #ffffff;
            padding: 0.85rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: background 0.3s;
        }

        .pricing-button:hover {
            background: #2563eb;
        }

        .pricing-button.secondary {
            background: transparent;
            color: #3b82f6;
            border: 2px solid #3b82f6;
        }

        .pricing-button.secondary:hover {
            background: #3b82f6;
            color: #ffffff;
        }

        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
        }

        /* Case Study - Featured Panel */
        .case-study {
            padding: 2.5rem 2rem; /* Changed from 4rem to match benefits section */
            /* background: #0f1419; */ /* Removed - using video background instead */
            background: #f9fafb; /* Changed from transparent to match benefits section */
            border-top: 2px solid rgba(59, 130, 246, 0.3);
            border-bottom: 2px solid rgba(59, 130, 246, 0.3);
            position: relative; /* Moved from line 1161 for consolidation */
            overflow: hidden; /* Moved from line 1161 for consolidation */
        }

        .case-study-content {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border: 1px solid rgba(59, 130, 246, 0.3);
            padding: 3rem 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
            border-radius: 16px;
            padding: 3rem 2.5rem;
        }

        .case-study-intro {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .case-study-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .case-study-intro p {
            font-size: 1.1rem;
            color: #4b5563;
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto;
        }

        .case-study-stats {
            display: flex;
            justify-content: space-around;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .case-study-stat {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }

        .case-study-stat h3 {
            font-size: 2.5rem;
            color: #3b82f6;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .case-study-stat p {
            color: #6b7280;
        }

        .visualizations h3 {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1f2937;
        }

        .viz-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .viz-placeholder {
            background: rgba(249, 250, 251, 0.8);
            border: 1px dashed rgba(209, 213, 219, 0.8);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            text-align: center;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .viz-placeholder-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.4;
        }

        .viz-placeholder h4 {
            color: #6b7280;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .viz-placeholder p {
            color: #9ca3af;
            font-size: 0.9rem;
        }


        .viz-chart-container {
            background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 1.5rem 1rem 1rem;
            grid-column: 1 / -1;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -1px rgba(59, 130, 246, 0.05), 
                        inset 0 1px 0 0 rgba(59, 130, 246, 0.1);
        }

        .viz-chart {
            width: 100%;
            height: 550px;
        }

        /* CTA - Full Width Destination */
        .cta-section {
            background: #dbeafe;
            padding: 2.5rem 2rem;
            border-top: 1px solid #bfdbfe;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.25rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .cta-section > .cta-content > p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #4b5563;
        }

        .contact-form {
            max-width: 520px;
            margin: 1rem auto 0;
            padding: 1.75rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            border: 1px solid rgba(191, 219, 254, 0.5);
            text-align: left;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            color: #1f2937;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.65rem 0.9rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            background: #ffffff;
            color: #1f2937;
            font-size: 0.9rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-group small {
            display: block;
            margin-top: 0.4rem;
            color: #6b7280;
            font-size: 0.8rem;
        }

        .form-submit {
            width: 100%;
            background: #3b82f6;
            color: #ffffff;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .form-submit:hover {
            transform: translateY(-2px);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-message {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid #3b82f6;
            color: #2563eb;
            display: block;
        }

        .form-message.error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #ef4444;
            color: #ef4444;
            display: block;
        }

        /* Footer Detailed */
        .footer-content {
            max-width: 1200px;
            margin: 0 auto 2rem auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: left;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: #1f2937;
        }

        .footer-section p {
            color: #6b7280;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #3b82f6;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #d1d5db;
            color: #6b7280;
            text-align: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Enhanced Responsive */
        @media (max-width: 1024px) {
            .steps {
                grid-template-columns: 1fr;
            }

            .viz-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-tilemap {
                max-width: 100%;
                padding: 0.25rem 0.5rem 1rem;
            }

            #heroTilemap {
                height: 420px;
            }

            .inline-metrics {
                gap: 2rem;
                bottom: -2rem;
            }
            
            .inline-metric:nth-child(3) {
                margin-left: 0;
            }
            
            .inline-metric h3 {
                font-size: 1.5rem;
                margin-bottom: 0.05rem;
            }
            
            .inline-metric p {
                font-size: 0.75rem;
                max-width: 120px;
                line-height: 1.1;
            }

            .benefit-row {
                padding: 2rem 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .benefit-icon {
                font-size: 2rem;
                width: 90px;
                height: 90px;
            }

            .who-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .who-card {
                min-height: auto;
            }

            .case-study-content {
                padding: 2rem 1.5rem;
            }

            .case-study-stats {
                flex-direction: column;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }
        }


        /* Background Image/GIF for Benefits Section */
        .benefits-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0; /* Stretches to full height with top: 0 */
            width: 140%;
            object-fit: cover;
            object-position: left center;
            opacity: calc(var(--video-bg-opacity) * var(--benefits-video-enabled)); /* Toggle controlled at top of file */
            z-index: 0;
        }
        
        /* Dark overlay on top of video */
        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(249, 250, 251, 0.85);
            z-index: 1;
            pointer-events: none;
        }

        .benefits-content {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .benefits-video-bg {
                width: 150%;
                bottom: 0; /* Ensure full height coverage */
                object-fit: cover;
                object-position: left center;
            }
        }


        /* Background Image/GIF for Case Study Section */
        .case-study-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0; /* Stretches to full height with top: 0 */
            width: 140%;
            object-fit: cover;
            object-position: left center;
            opacity: calc(var(--video-bg-opacity) * var(--case-study-video-enabled)); /* Toggle controlled at top of file */
            z-index: 0;
        }
        
        /* Dark overlay on top of case study video - matches benefits overlay */
        .case-study::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(249, 250, 251, 0.85); /* Changed to match benefits section */
            z-index: 1;
            pointer-events: none;
        }

        .case-study-content {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .case-study-video-bg {
                width: 150%; /* Set to match benefits section mobile width */
                bottom: 0; /* Ensure full height coverage */
                object-fit: cover;
                object-position: left center;
            }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* Hero section */
            .hero {
                padding: 2rem 1rem !important;
            }
            
            /* Hide the blue divider line on mobile */
            .hero-divider {
                display: none !important;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            /* Chart container - critical for mobile */
            .viz-chart-container {
                padding: 0.75rem;
                margin-bottom: 1.5rem;
                border-radius: 8px;
                display: flex !important;
                justify-content: center !important;
            }
            
            .viz-chart {
                height: 400px !important;
                min-height: 400px;
            }
            
            /* Override sunburst chart inline height on mobile */
            #sunburstChart {
                height: 320px !important;
                max-width: 320px !important;
            }
            
            /* Center scatterplot on mobile */
            #predictionScatter {
                width: 310px !important;
                margin: 0 auto !important;
            }
            
            /* Case study section */
            .case-study {
                padding: 2rem 1rem;
            }
            
            .case-study-intro h2 {
                font-size: 1.75rem;
            }
            
            .case-study-intro p {
                font-size: 0.95rem;
            }
            
            .visualizations h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            
            /* Section titles */
            .section-title {
                font-size: 1.75rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }
            
            .logo {
                font-size: 1.25rem;
            }
            
            .viz-chart {
                height: 350px !important;
                min-height: 350px;
            }
            
            .case-study-intro h2 {
                font-size: 1.5rem;
            }
        }
        
        /* CTA/Form Section Mobile Optimization */
        @media (max-width: 768px) {
            .cta-section {
                padding: 1.5rem 0.5rem !important;
            }
            
            .cta-content {
                max-width: 100% !important;
                padding: 0 !important;
            }
            
            .cta-section h2 {
                font-size: 1.3rem !important;
                margin-bottom: 0.5rem !important;
            }
            
            .cta-section > .cta-content > p {
                font-size: 0.85rem !important; /* Smaller intro */
                margin-bottom: 0.75rem !important; /* Less gap to form */
                line-height: 1.4 !important;
            }
            
            .contact-form {
                max-width: 100% !important;
                padding: 0.75rem 0.75rem !important; /* Tighter vertical padding */
                border-radius: 8px !important;
                margin: 0.5rem 0 0 0 !important; /* Less top margin */
            }
            
            .form-group {
                margin-bottom: 0.6rem !important; /* Tighter gaps between fields */
            }
            
            .form-group label {
                font-size: 0.85rem !important;
                margin-bottom: 0.25rem !important; /* Less space after label */
            }
            
            .form-group input,
            .form-group textarea {
                padding: 0.5rem 0.65rem !important;
                font-size: 0.85rem !important; /* Smaller text in inputs */
                border-radius: 6px !important;
            }
            
            .form-group textarea {
                min-height: 55px !important; /* Even shorter textarea */
            }
            
            .form-group small {
                font-size: 0.7rem !important; /* Smaller helper text */
                margin-top: 0.25rem !important;
            }
            
            .form-submit {
                padding: 0.55rem 1.5rem !important; /* Shorter button */
                font-size: 0.85rem !important; /* Smaller button text */
                border-radius: 6px !important;
                margin-top: 0.25rem !important; /* Less space above button */
            }
            
            .cta-section p[style*="text-align: center"] {
                font-size: 0.75rem !important; /* Smaller disclaimer */
                margin-top: 0.6rem !important; /* Less space after button */
            }
            
            .form-message {
                padding: 0.65rem !important;
                margin-bottom: 0.75rem !important;
                font-size: 0.8rem !important;
                border-radius: 6px !important;
            }
        }
        
        /* Why Propraisal / Benefits Section Mobile Optimization */
        @media (max-width: 768px) {
            .benefits {
                padding: 2rem 0.75rem !important;
            }
            
            .section-title {
                font-size: 1.5rem !important;
                margin-bottom: 1.25rem !important;
            }
            
            .benefit-row {
                margin-bottom: 1.5rem !important;
            }
            
            .benefit-content h3 {
                font-size: 1.05rem !important;
                margin-bottom: 0.3rem !important;
            }
            
            .benefit-content p {
                font-size: 0.85rem !important;
                line-height: 1.45 !important;
            }
        }
        
        /* Footer Mobile Optimization - Inline Layout */
        @media (max-width: 768px) {
            footer {
                padding: 1rem 0.5rem 0.75rem !important;
                background: #f9fafb !important;
                border-top: 1px solid #e5e7eb !important;
            }
            
            .footer-content {
                display: block !important;
                margin-bottom: 0.75rem !important;
            }
            
            /* Hide logo section on mobile */
            .footer-section:first-child {
                display: none !important;
            }
            
            /* Product section - inline format */
            .footer-section:nth-child(2) {
                margin-bottom: 0.6rem !important;
            }
            
            .footer-section:nth-child(2) h4,
            .footer-section:nth-child(3) h4 {
                font-size: 0.9rem !important;
                font-weight: 700 !important;
                margin-bottom: 0.35rem !important;
                color: #1f2937 !important;
                letter-spacing: 0.01em !important;
            }
            
            .footer-section:nth-child(2) ul,
            .footer-section:nth-child(3) ul {
                display: flex !important;
                flex-wrap: wrap !important;
                gap: 0.4rem 0.5rem !important;
                list-style: none !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            
            .footer-section:nth-child(2) ul li,
            .footer-section:nth-child(3) ul li {
                margin: 0 !important;
                padding: 0 !important;
            }
            
            .footer-section:nth-child(2) ul li:not(:last-child)::after,
            .footer-section:nth-child(3) ul li:not(:last-child)::after {
                content: " •" !important;
                color: #9ca3af !important;
                margin-left: 0.5rem !important;
            }
            
            .footer-section ul li a {
                font-size: 0.8rem !important;
                line-height: 1.5 !important;
                color: #6b7280 !important;
                transition: color 0.2s ease !important;
            }
            
            .footer-section ul li a:hover {
                color: #3b82f6 !important;
            }
            
            .footer-bottom {
                padding-top: 0.75rem !important;
                border-top: 1px solid #e5e7eb !important;
            }
            
            .footer-bottom p {
                font-size: 0.7rem !important;
                color: #9ca3af !important;
                text-align: center !important;
                margin: 0 !important;
            }
        }

