        /* ==========================================
           CSS RESET
           ========================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ==========================================
           CSS VARIABLES
           ========================================== */
        :root {
            /* Colors */
            --bg-primary: #FFFFFF;
            --text-primary: #1F2937;
            --text-gray: #6B7280;
            --gradient-blue: #3B82F6;
            --gradient-teal: #06B6D4;
            --accent-orange: #F59E0B;

            /* Spacing */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 40px;
            --space-xl: 64px;
            --space-2xl: 120px;

            /* Font Sizes */
            --text-xs: 14px;
            --text-sm: 16px;
            --text-base: 18px;
            --text-lg: 24px;
            --text-xl: 36px;
            --text-2xl: 48px;
            --text-3xl: 60px;
        }

        /* ==========================================
           BASE STYLES
           ========================================== */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        /* ==========================================
           NAVIGATION
           ========================================== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding: 20px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-image {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: var(--space-lg);
            list-style: none;
            margin: 0 auto; /* Center the navigation links */
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: var(--text-sm);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        /* Navigation buttons */
        .nav-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-shrink: 0;
        }

        .nav-btn-secondary {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-btn-secondary:hover {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.2);
        }

        .nav-btn-primary {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            border: none;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
        }

        .nav-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

        /* Mobile menu toggle (hidden by default) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
        }

        /* ==========================================
           SECTION CONTAINERS
           ========================================== */
        section {
            padding: var(--space-xl) 0;
        }

        /* Alternate background for visual separation */
        section:nth-child(even) {
            background: rgba(0, 0, 0, 0.02);
        }

        /* ==========================================
           UTILITY CLASSES
           ========================================== */

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, var(--gradient-blue) 0%, var(--gradient-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Glass Morphism Card */
        .card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: var(--space-lg);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .card:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        /* Primary Button */
        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--gradient-blue) 0%, var(--gradient-teal) 100%);
            color: var(--text-primary);
            font-size: var(--text-base);
            font-weight: 600;
            padding: var(--space-sm) var(--space-lg);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
        }

        /* Secondary Button */
        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--text-primary);
            font-size: var(--text-base);
            font-weight: 600;
            padding: var(--space-sm) var(--space-lg);
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--gradient-blue);
            background: rgba(59, 130, 246, 0.05);
        }

        /* Text Utilities */
        .text-center {
            text-align: center;
        }

        .text-gray {
            color: var(--text-gray);
        }

        /* ==========================================
           HERO SECTION
           ========================================== */
        #hero {
            min-height: 81vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 100px;
            padding-bottom: 60px;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

        .hero-headline {
            font-size: var(--text-3xl);
            font-weight: 700;
            line-height: 1.1;
            max-width: 800px;
            margin-bottom: var(--space-md);
        }

        .dbt-badge {
            position: relative;
            display: inline-block;
        }

        .dbt-logo-overlay {
            position: absolute;
            top: -15px;
            right: -25px;
            height: 50px;
            width: auto;
            z-index: -1;
        }

        .hero-subheadline {
            font-size: 20px;
            color: var(--text-gray);
            max-width: 600px;
            margin-top: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        .hero-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-top: 32px;
        }

        .hero-cta .btn-primary,
        .hero-cta .btn-secondary {
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .hero-cta .btn-primary:hover,
        .hero-cta .btn-secondary:hover {
            transform: scale(1.05);
        }

        .hero-small-text {
            font-size: var(--text-xs);
            color: var(--text-gray);
            margin-bottom: 80px;
        }

        .hero-screenshot {
            max-width: 900px;
            width: 100%;
            margin-top: 80px;
            position: relative;
        }

        .hero-screenshot-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
            animation: float 3s ease-in-out infinite;
        }

        .screenshot-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            animation: float 3s ease-in-out infinite;
        }

        /* ==========================================
           TRUST SCORE VISUAL (NEW)
           ========================================== */
        .trust-score-visual {
            max-width: 800px;
            width: 100%;
            margin: 60px auto 0;
            padding: 36px 40px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.04),
                0 12px 32px rgba(0, 0, 0, 0.08),
                0 24px 64px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }

        .trust-score-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #14b8a6 0%, #3b82f6 100%);
            opacity: 0.7;
        }

        .score-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .score-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .score-range {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .score-range::after {
            content: '→';
            font-size: 32px;
            color: #10b981;
            display: inline-block;
            animation: slideRight 2s ease-out forwards;
            opacity: 0;
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .score-improvement {
            font-size: 17px;
            font-weight: 700;
            color: #10b981;
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid #10b981;
            animation: popIn 0.4s ease-out 1.8s backwards;
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .score-bar-container {
            position: relative;
            margin-bottom: 20px;
        }

        .score-zones {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
        }

        .zone {
            flex: 1;
            text-align: center;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            opacity: 0.6;
        }

        .zone-poor {
            color: #ef4444;
        }

        .zone-fair {
            color: #f59e0b;
        }

        .zone-good {
            color: #10b981;
        }

        .zone-excellent {
            color: #3b82f6;
        }

        .score-bar-track {
            position: relative;
            width: 100%;
            height: 36px;
            background: linear-gradient(
                to right,
                #ef4444 0%, #ef4444 25%,      /* POOR: red */
                #f59e0b 25%, #f59e0b 50%,     /* FAIR: orange */
                #10b981 50%, #10b981 75%,     /* GOOD: green */
                #3b82f6 75%, #3b82f6 100%     /* EXCELLENT: blue */
            );
            border-radius: 10px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .score-bar-fill {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .score-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.4);
            animation: fillScore 2s ease-out forwards;
            transform-origin: left;
        }

        .progress-arrow {
            opacity: 0;
            animation: fadeInArrow 0.5s ease-in 1.8s forwards;
        }

        @keyframes fadeInArrow {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }

        @keyframes fillScore {
            from {
                width: 3.9%; /* 33/850 */
            }
            to {
                width: 54.7%; /* 465/850 */
            }
        }

        .score-marker {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .score-label {
            display: inline-block;
            background: #FFFFFF;
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            letter-spacing: -0.02em;
        }

        .score-before .score-label {
            border: 2px solid #ef4444;
            opacity: 0.7;
        }

        .score-after .score-label {
            border: 3px solid #10b981;
            box-shadow:
                0 4px 12px rgba(0, 0, 0, 0.2),
                0 0 0 0 rgba(16, 185, 129, 0.4);
            animation: pulseScoreGlow 2s ease-in-out 2s infinite;
        }

        @keyframes pulseScoreGlow {
            0%, 100% {
                transform: scale(1);
                box-shadow:
                    0 4px 12px rgba(0, 0, 0, 0.2),
                    0 0 0 0 rgba(16, 185, 129, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow:
                    0 6px 16px rgba(0, 0, 0, 0.25),
                    0 0 0 8px rgba(16, 185, 129, 0);
            }
        }

        .score-meta {
            text-align: center;
            margin-top: 16px;
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .trust-score-visual {
                padding: 24px 20px;
                margin: 40px auto 0;
            }

            .score-transformation {
                gap: 12px;
            }

            .score-before,
            .score-after {
                font-size: 2rem;
            }

            .score-arrow {
                font-size: 1.5rem;
            }

            .score-badge {
                font-size: 0.8rem;
                padding: 4px 10px;
            }

            .zone {
                font-size: 0.65rem;
            }

            .score-meta {
                font-size: 0.75rem;
            }
        }

        /* Score Transformation Row */
        .score-transformation {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
        }

        .score-numbers {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .score-before,
        .score-after,
        .score-arrow {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .score-before {
            color: #9ca3af;
            opacity: 1;
        }

        .score-arrow {
            color: var(--text-gray);
            font-size: 2rem;
        }

        .score-after {
            color: #10b981;
        }

        .score-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
            margin-left: 20px;
        }

        /* Segmented Pills Bar with Gradients */
        .segmented-bar {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
            position: relative;
        }

        .segment {
            flex: 1;
            height: 20px;
            border-radius: 20px;
            opacity: 0.2;
            transition: all 0.4s ease;
            animation: fadeInSegment 0.3s ease-out forwards;
            position: relative;
            overflow: hidden;
        }

        .segment::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
            border-radius: inherit;
        }

        .segment:nth-child(1) { animation-delay: 0.3s; }
        .segment:nth-child(2) { animation-delay: 0.6s; }
        .segment:nth-child(3) { animation-delay: 0.9s; }
        .segment:nth-child(4) { animation-delay: 1.2s; }

        @keyframes fadeInSegment {
            from {
                opacity: 0;
                transform: scaleX(0.8);
            }
            to {
                opacity: 0.2;
                transform: scaleX(1);
            }
        }

        .segment.active {
            opacity: 1;
            box-shadow: 0 4px 12px currentColor;
            animation: activateSegment 0.5s ease-out 1.5s forwards;
        }

        .segment-glow {
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            background: inherit;
            filter: blur(8px);
            opacity: 0.5;
            z-index: -1;
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        @keyframes activateSegment {
            from {
                opacity: 0.2;
                transform: scaleY(1);
            }
            50% {
                transform: scaleY(1.3);
            }
            to {
                opacity: 1;
                transform: scaleY(1);
            }
        }

        .segment-poor { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
        .segment-fair { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
        .segment-good { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
        .segment-excellent { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }

        /* Enhanced Score Markers */
        .score-markers {
            position: relative;
            height: 35px;
        }

        .score-markers .score-marker {
            position: absolute;
            top: 0;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .score-label {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-secondary);
        }

        .score-after .score-label {
            color: #10b981;
            font-size: 1.3rem;
        }

        /* Removed: marker-line and marker-arrow styles (no longer used) */

        /* Zone Labels with Tooltips */
        .score-zones {
            position: relative;
        }

        .zone {
            position: relative;
            cursor: help;
        }

        .zone::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
        }

        .zone:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(-4px);
        }

        .screenshot-placeholder p {
            color: var(--text-gray);
            font-size: var(--text-base);
            margin-top: var(--space-sm);
        }

        .screenshot-caption {
            text-align: center;
            font-size: var(--text-sm);
            color: var(--text-gray);
            margin-top: var(--space-md);
        }

        .floating-badge {
            position: absolute;
            top: 120px;
            right: var(--space-lg);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid var(--accent-orange);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: var(--text-xs);
            font-weight: 600;
            color: var(--accent-orange);
            animation: pulse 2s infinite;
            z-index: 10;
        }

        /* ==========================================
           PROBLEM SECTION
           ========================================== */
        #problem {
            display: none; /* Hidden for now - goes from Hero → Features directly */
            padding: 48px 0 var(--space-xl) 0;
        }

        .section-headline {
            font-size: var(--text-2xl);
            font-weight: 600;
            text-align: center;
            margin-bottom: 80px;
            color: var(--text-primary);
        }

        .problem-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: var(--space-lg);
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .problem-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .problem-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .problem-card-headline {
            font-size: var(--text-lg);
            font-weight: 600;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
        }

        .problem-card-description {
            font-size: var(--text-sm);
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ==========================================
           SOLUTION SECTION
           ========================================== */
        #solution {
            padding: 40px 0;
            padding-top: 48px;
        }

        #solution .section-headline {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: var(--text-primary);
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .solution-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .solution-screenshot {
            max-width: 100%;
        }

        .solution-screenshot-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .solution-screenshot-placeholder {
            width: 100%;
            height: 600px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .solution-screenshot-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .solution-screenshot-placeholder svg {
            margin-top: 40px;
        }

        .solution-screenshot-placeholder p {
            color: var(--text-gray);
            font-size: var(--text-base);
            margin-top: var(--space-sm);
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .feature-icon {
            font-size: 32px;
            flex-shrink: 0;
            line-height: 1;
        }

        .feature-content {
            flex: 1;
        }

        .feature-headline {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .feature-description {
            font-size: var(--text-sm);
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* Features Intro */
        .features-intro {
            max-width: 700px;
            margin: 80px auto 48px;
            text-align: center;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-gray);
            margin-bottom: 12px;
        }

        .intro-question {
            font-weight: 600;
            color: var(--text-primary);
        }

        .intro-text em {
            font-style: italic;
            color: var(--text-primary);
        }

        .intro-text u {
            text-decoration: underline;
            text-decoration-color: rgba(59, 130, 246, 0.5);
            text-underline-offset: 3px;
        }

        /* Subheadline after intro */
        #solution .section-subheadline {
            margin-top: 0;
            margin-bottom: 40px;
        }

        /* Features Grid (NEW - Approach 2) */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 0;
        }

        .feature-card {
            background: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .feature-card:hover .feature-hover-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .feature-card:hover .feature-number {
            transform: scale(1.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
            display: block;
            filter: grayscale(0.3);
            transition: filter 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            filter: grayscale(0);
        }

        .feature-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(90deg, #14b8a6 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .feature-unit {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-gray);
            margin-left: 4px;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .feature-card code {
            background: rgba(99, 102, 241, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'Monaco', 'Courier New', monospace;
            font-size: 0.9em;
            color: #6366f1;
        }

        /* Hover Content (Hidden by default) */
        .feature-hover-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(248, 250, 252, 0.98);
            border-top: 2px solid rgba(59, 130, 246, 0.2);
            padding: 20px 24px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        }

        .example-code {
            color: var(--text-primary);
            font-size: 0.85rem;
            line-height: 1.7;
            text-align: left;
        }

        .example-code strong {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .example-code code {
            background: rgba(99, 102, 241, 0.1);
            color: #6366f1;
            padding: 3px 7px;
            border-radius: 4px;
            font-family: 'Monaco', 'Courier New', monospace;
            font-size: 0.85em;
            font-weight: 500;
        }

        /* ==========================================
           PRODUCT DEMO SECTION
           ========================================== */
        #product-demo {
            padding: var(--space-2xl) 0;
            background: rgba(0, 0, 0, 0.02);
        }

        /* Demo Hero (GIF Section) */
        .demo-hero {
            text-align: center;
            margin-bottom: 80px;
        }

        .demo-gif-container {
            max-width: 900px;
            margin: 48px auto 24px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .demo-gif {
            width: 100%;
            display: block;
        }

        .demo-caption {
            font-size: 0.95rem;
            color: var(--text-gray);
            font-style: italic;
        }

        /* Demo Details (Static Images) */
        .demo-details {
            margin-top: 80px;
        }

        .demo-section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 64px;
            color: var(--text-primary);
        }

        .demo-screenshot {
            margin: 64px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .demo-screenshot:nth-child(even) {
            direction: rtl; /* Flip layout for alternating */
        }

        .demo-screenshot:nth-child(even) .screenshot-caption {
            direction: ltr; /* Reset text direction */
        }

        .demo-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .demo-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
            cursor: zoom-in;
        }

        .screenshot-caption {
            text-align: left;
        }

        .screenshot-caption strong {
            display: block;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .screenshot-caption p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-gray);
        }

        /* Demo CTA */
        .demo-cta {
            text-align: center;
            margin-top: 80px;
            padding-top: 64px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .cta-subtext {
            margin-top: 16px;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        /* ==========================================
           IMAGE LIGHTBOX
           ========================================== */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 95%;
            max-height: 95%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 95vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 36px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            line-height: 1;
            padding: 0;
            z-index: 10001;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        /* Mobile adjustments for lightbox */
        @media (max-width: 768px) {
            .lightbox-close {
                top: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 28px;
            }

            .lightbox-image {
                max-height: 90vh;
            }
        }

        /* ==========================================
           HOW IT WORKS SECTION
           ========================================== */
        #how-it-works {
            padding: var(--space-2xl) 0;
            padding-bottom: var(--space-lg); /* Reduced bottom padding */
            background: rgba(0, 0, 0, 0.02);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-lg);
            position: relative;
        }

        /* Connecting line (desktop only) */
        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-blue), var(--gradient-teal));
            z-index: 0;
        }

        .step {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin: 0 auto 24px;
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
        }

        .step-headline {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .step-description {
            font-size: var(--text-sm);
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* How It Works CTA */
        .how-it-works-cta {
            text-align: center;
            margin-top: 64px;
            padding-top: 64px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .how-it-works-cta .btn-primary {
            margin-bottom: 16px;
        }

        .how-it-works-cta .cta-subtext {
            font-size: 1rem;
            color: var(--text-gray);
        }

        /* ==========================================
           PRICING SECTION
           ========================================== */
        #pricing {
            padding: var(--space-2xl) 0;
            padding-top: var(--space-lg); /* Reduced top padding */
        }

        .section-subheadline {
            font-size: var(--text-base);
            color: var(--text-gray);
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .section-subheadline strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .founder-pricing-banner {
            background: rgba(245, 158, 11, 0.1);
            border: 2px solid var(--accent-orange);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            font-size: var(--text-base);
            font-weight: 600;
            margin-bottom: 60px;
            color: var(--text-primary);
        }

        .founder-pricing-banner .spots-remaining {
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: minmax(280px, 320px) minmax(300px, 360px) minmax(280px, 320px);
            gap: var(--space-lg);
            align-items: flex-start;
            justify-content: center;
            margin-top: var(--space-lg);
            position: relative; /* For badge positioning */
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: 32px 24px; /* Reduced horizontal padding */
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        /* Highlighted Team card */
        .pricing-card.highlighted {
            border: 2px solid var(--gradient-blue);
            box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
            transform: scale(1.05);
        }

        .pricing-card.highlighted:hover {
            transform: scale(1.05) translateY(-4px);
        }

        .popular-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            white-space: nowrap;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
        }

        .pricing-tier {
            font-size: var(--text-lg);
            font-weight: 600;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
        }

        .pricing-price {
            font-size: 32px; /* Reduced from var(--text-2xl) which is 40px */
            font-weight: 700;
            margin: 16px 0; /* Reduced margin */
            color: var(--text-primary);
            line-height: 1.2;
        }

        .pricing-price-old {
            text-decoration: line-through;
            color: var(--text-gray);
            font-size: 16px; /* Smaller strikethrough price */
            display: block;
            margin-bottom: 4px;
        }

        .pricing-description {
            font-size: 14px; /* Slightly smaller */
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin: 20px 0;
            font-size: 14px; /* Reduced from var(--text-sm) */
        }

        .pricing-features li {
            line-height: 1.8; /* Reduced from 2 for more compact spacing */
            padding-left: 24px;
            position: relative;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gradient-blue);
            font-weight: 700;
        }

        .pricing-card .btn-primary,
        .pricing-card .btn-secondary {
            width: 100%;
            margin-top: 20px;
            padding: 12px 24px; /* More compact button */
            font-size: 15px;
        }

        /* ==========================================
           SOCIAL PROOF SECTION
           ========================================== */
        #social-proof {
            padding: var(--space-2xl) 0;
            background: rgba(0, 0, 0, 0.02);
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-lg);
            margin-bottom: 80px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-quote {
            font-size: var(--text-sm);
            line-height: 1.6;
            color: var(--text-primary);
            margin-bottom: var(--space-md);
            font-style: italic;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 24px;
            color: var(--gradient-blue);
            margin-right: 4px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin-top: auto;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 18px;
            color: white;
            flex-shrink: 0;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: var(--text-sm);
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .author-role {
            font-size: var(--text-xs);
            color: var(--text-gray);
        }

        .trusted-by {
            margin-top: 80px;
            text-align: center;
        }

        .trusted-by-headline {
            font-size: var(--text-xs);
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 32px;
        }

        .logos-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .logo-placeholder {
            width: 120px;
            height: 40px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            font-size: 12px;
            font-weight: 500;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Carousel Styles */
        .carousel-container {
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            padding: 60px 80px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .carousel-slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        .carousel-icon {
            font-size: 64px;
            margin-bottom: 24px;
            line-height: 1;
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .carousel-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .carousel-description {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            margin-bottom: 24px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .carousel-description code {
            background: rgba(59, 130, 246, 0.1);
            padding: 3px 8px;
            border-radius: 4px;
            font-family: 'Monaco', 'Courier New', monospace;
            font-size: 15px;
            color: var(--gradient-blue);
            font-weight: 600;
        }

        .carousel-impact {
            font-size: 16px;
            line-height: 1.6;
            color: #d97706;
            margin-bottom: 16px;
            padding: 16px 24px;
            background: rgba(217, 119, 6, 0.08);
            border-left: 4px solid #FF6B35;
            border-radius: 8px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .carousel-impact strong {
            font-weight: 700;
            color: #b45309;
        }

        .carousel-source {
            font-size: 14px;
            color: #9ca3af;
            font-style: italic;
            margin-bottom: 24px;
        }

        .carousel-cta {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
        }

        .carousel-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
        }

        /* Navigation Arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            color: var(--text-primary);
        }

        .carousel-arrow:hover {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow-prev {
            left: 20px;
        }

        .carousel-arrow-next {
            right: 20px;
        }

        /* Dot Indicators */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .carousel-dot:hover {
            background: rgba(0, 0, 0, 0.4);
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            width: 32px;
            border-radius: 6px;
        }

        .incidents-disclaimer {
            text-align: center;
            font-size: 13px;
            color: #9ca3af;
            margin-top: 48px;
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .incidents-cta {
            text-align: center;
            margin-top: 60px;
            padding: 48px 32px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .incidents-cta-headline {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .incidents-cta .btn-primary {
            margin-bottom: 16px;
        }

        .incidents-cta-subtext {
            font-size: 15px;
            color: var(--text-gray);
            max-width: 500px;
            margin: 0 auto;
        }

        /* ==========================================
           FAQ SECTION
           ========================================== */
        #faq {
            padding: var(--space-2xl) 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: var(--space-md);
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: var(--text-base);
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: var(--space-sm);
            transition: color 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .faq-question:hover {
            color: var(--gradient-blue);
        }

        .faq-icon {
            font-size: 24px;
            font-weight: 300;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            color: var(--gradient-blue);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 var(--space-md);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 var(--space-md) var(--space-md) var(--space-md);
        }

        .faq-answer p {
            font-size: var(--text-sm);
            line-height: 1.6;
            color: var(--text-gray);
            margin: 0;
        }

        /* ==========================================
           CTA SECTION
           ========================================== */
        #cta {
            padding: var(--space-2xl) 0;
            background: rgba(0, 0, 0, 0.02);
            text-align: center;
        }

        .cta-headline {
            font-size: var(--text-3xl);
            font-weight: 700;
            margin-bottom: var(--space-md);
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-subheadline {
            font-size: 20px;
            color: var(--text-gray);
            margin-bottom: var(--space-lg);
        }

        .cta-button {
            display: inline-block;
            padding: 20px 48px;
            font-size: 20px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            color: white;
            border: none;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 30px rgba(59, 130, 246, 0.4);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 40px rgba(59, 130, 246, 0.6);
        }

        .trust-badges {
            margin-top: var(--space-md);
            font-size: var(--text-xs);
            color: var(--text-gray);
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        /* ==========================================
           WAITLIST FORM SECTION
           ========================================== */
        #waitlist {
            padding: 80px 0;
        }

        .waitlist-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .waitlist-headline {
            font-size: var(--text-xl);
            font-weight: 600;
            text-align: center;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
        }

        .waitlist-subheadline {
            font-size: var(--text-sm);
            color: var(--text-gray);
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .waitlist-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            font-size: var(--text-sm);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input::placeholder {
            color: var(--text-gray);
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--gradient-blue);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
            cursor: pointer;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            font-size: var(--text-base);
            font-weight: 600;
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            border: none;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        }

        .form-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
        }

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

        .form-small-text {
            font-size: var(--text-xs);
            color: var(--text-gray);
            text-align: center;
            margin-top: var(--space-sm);
        }

        .success-message {
            display: none;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            padding: var(--space-lg);
            text-align: center;
            color: #22c55e;
        }

        .success-message.show {
            display: block;
        }

        .success-message h3 {
            font-size: var(--text-lg);
            margin-bottom: var(--space-sm);
        }

        .success-message p {
            font-size: var(--text-sm);
            margin-bottom: var(--space-sm);
        }

        .success-message a {
            color: #22c55e;
            text-decoration: underline;
        }

        /* ==========================================
           ANIMATIONS
           ========================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* ==========================================
           FOOTER SECTION
           ========================================== */
        footer {
            background: rgba(0, 0, 0, 0.02);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding: 60px 0 40px;
            margin-top: var(--space-xl);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 40px;
        }

        .footer-brand {
            max-width: 400px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .footer-logo span {
            background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-logo-image {
            height: 32px;
            width: auto;
        }

        .footer-tagline {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .footer-subtext {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0;
        }

        .footer-links a {
            display: block;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gradient-blue);
            transform: translateX(4px);
        }

        .footer-email {
            display: block;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-gray);
            text-decoration: none;
        }

        .footer-email:hover {
            color: var(--gradient-blue);
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            text-decoration: none;
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
        }

        .social-link:hover {
            background: rgba(0, 0, 0, 0.1);
            border-color: var(--gradient-blue);
            transform: scale(1.1);
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright {
            font-size: 14px;
            color: var(--text-gray);
        }

        .footer-legal {
            display: flex;
            gap: 16px;
            font-size: 14px;
        }

        .footer-legal a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--text-primary);
        }

        .footer-built-with {
            text-align: center;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 14px;
            color: var(--text-gray);
        }

        .footer-built-with a {
            color: var(--gradient-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-built-with a:hover {
            color: var(--gradient-teal);
            text-decoration: underline;
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays for card animations */
        .animate-on-scroll:nth-child(1) {
            transition-delay: 0s;
        }

        .animate-on-scroll:nth-child(2) {
            transition-delay: 0.1s;
        }

        .animate-on-scroll:nth-child(3) {
            transition-delay: 0.2s;
        }

        .animate-on-scroll:nth-child(4) {
            transition-delay: 0.3s;
        }

        /* Scroll offset for sticky header */
        section {
            scroll-margin-top: 80px;
        }

        /* Mobile navigation menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 100px 32px 32px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            font-size: 36px;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 32px;
            text-align: center;
        }

        .mobile-nav-links a {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .mobile-nav-links a:hover {
            color: var(--gradient-blue);
        }

        /* Accessibility - Reduce motion */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Performance optimizations */
        .problem-card,
        .feature-item,
        .step,
        .pricing-card,
        .testimonial-card,
        .faq-item {
            contain: layout style paint;
        }

        .btn-primary:hover,
        .btn-secondary:hover,
        .pricing-card:hover {
            will-change: transform;
        }

        /* Focus states for accessibility */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--gradient-blue);
            outline-offset: 2px;
        }

        /* Skip to main content link */
        .skip-to-main {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--gradient-blue);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
        }

        .skip-to-main:focus {
            top: 0;
        }

        /* ==========================================
           RESPONSIVE DESIGN
           ========================================== */
        @media (max-width: 1024px) {
            .problem-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .solution-screenshot-placeholder {
                height: 400px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }

            .pricing-card.highlighted {
                transform: scale(1);
            }

            .pricing-card.highlighted:hover {
                transform: translateY(-4px);
            }

            .testimonials-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-2xl: 60px;
                --text-3xl: 40px;
                --text-2xl: 32px;
                --text-xl: 28px;
            }

            section {
                padding: var(--space-xl) 0;
            }

            .section-headline {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .problem-cards {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }

            /* Features Grid - Mobile */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .feature-card {
                padding: 24px;
            }

            .feature-icon {
                font-size: 2rem;
            }

            .feature-number {
                font-size: 2.5rem;
            }

            .feature-hover-content {
                position: relative;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                margin-top: 16px;
                background: rgba(59, 130, 246, 0.1);
                border-radius: 8px;
            }

            /* Product Demo - Mobile */
            .demo-screenshot {
                grid-template-columns: 1fr;
                gap: 24px;
                margin: 48px 0;
            }

            .demo-screenshot:nth-child(even) {
                direction: ltr; /* Reset alternating layout on mobile */
            }

            .demo-section-title {
                font-size: 1.75rem;
                margin-bottom: 48px;
            }

            .screenshot-caption strong {
                font-size: 1.2rem;
            }

            .demo-hero {
                margin-bottom: 60px;
            }

            .demo-gif-container {
                margin: 32px auto 16px;
            }

            .demo-details {
                margin-top: 60px;
            }

            .demo-cta {
                margin-top: 60px;
                padding-top: 48px;
            }

            .example-code {
                color: var(--text-primary);
            }

            .example-code code {
                background: rgba(99, 102, 241, 0.15);
                color: #6366f1;
            }

            .steps-container {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

            /* Hide connecting line on mobile */
            .steps-container::before {
                display: none;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
            }

            .carousel-slide {
                padding: 40px 24px;
            }

            .carousel-icon {
                font-size: 48px;
            }

            .carousel-title {
                font-size: 22px;
            }

            .carousel-description {
                font-size: 15px;
            }

            .carousel-impact {
                font-size: 14px;
                padding: 12px 16px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
            }

            .carousel-arrow-prev {
                left: 10px;
            }

            .carousel-arrow-next {
                right: 10px;
            }

            .incidents-cta-headline {
                font-size: 24px;
            }

            .incidents-cta {
                padding: 32px 24px;
            }

            .logos-container {
                gap: 30px;
            }

            .nav-links {
                position: fixed;
                top: 73px;
                left: -100%;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(12px);
                width: 100%;
                padding: var(--space-lg);
                gap: var(--space-md);
                transition: left 0.3s ease;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            /* Hide nav buttons on mobile */
            .nav-buttons {
                display: none;
            }

            /* Touch-friendly button sizes */
            .btn-primary,
            .btn-secondary {
                min-height: 48px;
                font-size: 16px;
            }

            .faq-question {
                min-height: 48px;
            }

            /* Ensure readable font sizes on mobile */
            body {
                font-size: 16px;
            }

            .hero-cta {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta .btn-primary,
            .hero-cta .btn-secondary {
                width: 100%;
            }

            .screenshot-placeholder {
                height: 300px;
            }

            .floating-badge {
                top: 80px;
                right: var(--space-sm);
                font-size: 12px;
                padding: 6px 12px;
            }

            /* Footer responsive */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-brand {
                max-width: 100%;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            :root {
                --text-3xl: 32px;
                --text-2xl: 28px;
                --text-xl: 24px;
            }

            .hero-headline {
                font-size: 32px;
            }

            .hero-subheadline {
                font-size: 16px;
            }

            .screenshot-placeholder {
                height: 250px;
            }

            .cta-headline {
                font-size: 36px;
            }

            .cta-button {
                font-size: 18px;
                padding: 16px 32px;
            }

            .trust-badges {
                gap: 16px;
            }
        }
