        :root {
            --bg-primary: #0a0a14;
            --bg-secondary: #0e0e1a;
            --bg-tertiary: #151231;
            --bg-card: #1a1838;
            --glass-bg: rgba(255, 255, 255, 0.02);
            --glass-border: rgba(255, 255, 255, 0.06);
            --glass-highlight: rgba(255, 255, 255, 0.08);

            --accent: #007FFD;
            --accent-light: #4da3fd;
            --accent-secondary: #6D5AFF;
            --cyan: #22d3ee;
            --magenta: #6D5AFF;
            --orange: #fb923c;
            --lime: #a3e635;
            --success: #34d399;
            --warning: #fbbf24;
            --danger: #f87171;

            --text-primary: #fafafa;
            --text-secondary: #a1a1aa;
            --text-tertiary: #71717a;

            --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .gradient-mesh {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.4;
        }
        .gradient-orb-1 { width: 800px; height: 800px; background: var(--accent); top: -400px; left: -200px; }
        .gradient-orb-2 { width: 600px; height: 600px; background: var(--magenta); bottom: 20%; right: -200px; opacity: 0.25; }
        .gradient-orb-3 { width: 500px; height: 500px; background: var(--cyan); top: 50%; left: 30%; opacity: 0.15; }

        /* Navigation */
        .nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: calc(100% - 48px);
            max-width: 1200px;
            padding: 12px 20px;
            background: rgba(12, 12, 16, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
        }
        .nav-logo {
            height: 21px;
            width: auto;
        }
        .nav-items { display: flex; gap: 2px; }
        .nav-item {
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.2s ease;
        }
        .nav-item:hover { color: var(--accent-light); }
        .nav-item.active { color: var(--accent-light); }
        .nav-cta {
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--accent), var(--magenta));
            color: white;
            font-size: 13px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s var(--ease);
        }
        .nav-cta:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4); }

        /* Hero */
        .hero {
            min-height: 100vh;
            padding: 120px 24px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .business-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            padding: 12px 24px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            margin-bottom: 40px;
        }
        .business-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
        }
        .business-bar-item svg { width: 14px; height: 14px; color: var(--text-tertiary); }
        .business-bar-divider { width: 1px; height: 16px; background: var(--glass-border); }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(232, 121, 249, 0.15));
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-light);
            margin-bottom: 24px;
        }
        .hero-title {
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
            text-align: center;
            margin-bottom: 16px;
            padding-bottom: 4px;
            background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            text-align: center;
            max-width: 500px;
            margin-bottom: 48px;
        }

        /* Device Switcher */
        .device-showcase { width: 100%; max-width: 1100px; margin: 0 auto; }
        .device-switcher {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-bottom: 24px;
        }
        .device-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 18px;
            background: transparent;
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--text-tertiary);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s var(--ease);
        }
        .device-btn svg { width: 18px; height: 18px; }
        .device-btn:hover { color: var(--text-secondary); border-color: var(--glass-highlight); }
        .device-btn.active {
            background: var(--bg-card);
            border-color: var(--accent);
            color: var(--text-primary);
        }
        .device-btn.active svg { color: var(--accent); }

        .device-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 580px;
        }
        .device-frame {
            position: absolute;
            transition: all 0.6s var(--ease);
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            pointer-events: none;
        }
        .device-frame.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
            position: relative;
        }

        /* Desktop Frame - Premium browser chrome */
        .desktop-frame {
            width: 100%;
            max-width: 1000px;
            background: linear-gradient(180deg, #2a2a2e 0%, #1a1a1e 100%);
            border-radius: 12px;
            overflow: hidden;
            box-shadow:
                0 50px 100px -20px rgba(0,0,0,0.7),
                0 0 0 1px rgba(255,255,255,0.1) inset,
                0 -1px 0 0 rgba(255,255,255,0.05) inset;
        }
        .desktop-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: linear-gradient(180deg, #3a3a3e 0%, #2a2a2e 100%);
            border-bottom: 1px solid rgba(0,0,0,0.3);
        }
        .desktop-dots { display: flex; gap: 8px; }
        .desktop-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            box-shadow: 0 1px 2px rgba(0,0,0,0.3) inset;
        }
        .desktop-dot:nth-child(1) { background: linear-gradient(180deg, #ff5f57 0%, #e0443e 100%); }
        .desktop-dot:nth-child(2) { background: linear-gradient(180deg, #febc2e 0%, #d4a019 100%); }
        .desktop-dot:nth-child(3) { background: linear-gradient(180deg, #28c840 0%, #1fa835 100%); }
        .desktop-url {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: rgba(0,0,0,0.3);
            border-radius: 6px;
            font-size: 13px;
            color: var(--text-tertiary);
        }
        .desktop-url svg { width: 14px; height: 14px; color: var(--success); }
        .desktop-content {
            aspect-ratio: 16/9;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }
        .desktop-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        .desktop-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, var(--bg-primary), transparent);
        }

        /* Tablet Frame - iPad style */
        .tablet-frame {
            width: 680px;
            background: linear-gradient(135deg, #2d2d32 0%, #1d1d22 100%);
            border-radius: 36px;
            padding: 20px;
            box-shadow:
                0 50px 100px -20px rgba(0,0,0,0.7),
                0 0 0 1px rgba(255,255,255,0.1) inset,
                0 0 60px 0 rgba(0,0,0,0.5);
        }
        .tablet-bezel {
            background: linear-gradient(180deg, #1a1a1e 0%, #0f0f12 100%);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        .tablet-camera {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: #2a2a2e;
            border-radius: 50%;
            box-shadow: 0 0 0 2px #1a1a1e;
            z-index: 10;
        }
        .tablet-content {
            aspect-ratio: 4/3;
            position: relative;
            overflow: hidden;
        }
        .tablet-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        .tablet-home {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: rgba(255,255,255,0.2);
            border-radius: 3px;
        }

        /* Mobile Frame - iPhone style */
        .mobile-frame {
            width: 320px;
            background: linear-gradient(135deg, #2d2d32 0%, #1d1d22 100%);
            border-radius: 48px;
            padding: 14px;
            box-shadow:
                0 50px 100px -20px rgba(0,0,0,0.7),
                0 0 0 1px rgba(255,255,255,0.1) inset,
                0 0 60px 0 rgba(0,0,0,0.5);
        }
        .mobile-bezel {
            background: #0f0f12;
            border-radius: 38px;
            overflow: hidden;
            position: relative;
        }
        .mobile-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 32px;
            background: #0f0f12;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }
        .mobile-notch::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 6px;
            background: #2a2a2e;
            border-radius: 3px;
        }
        .mobile-notch::after {
            content: '';
            position: absolute;
            top: 10px;
            right: 20px;
            width: 10px;
            height: 10px;
            background: #2a2a2e;
            border-radius: 50%;
        }
        .mobile-content {
            aspect-ratio: 9/19.5;
            position: relative;
            overflow: hidden;
            border-radius: 34px;
        }
        .mobile-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        .mobile-home-indicator {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
            z-index: 10;
        }

        /* Main Score Section */
        .score-hero {
            padding: 80px 24px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .score-hero-content { max-width: 1200px; margin: 0 auto; }
        .overall-score {
            position: relative;
            width: 280px;
            height: 280px;
            margin: 0 auto 40px;
        }
        .overall-score svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }
        .score-ring-track { fill: none; stroke: var(--bg-tertiary); stroke-width: 8; }
        .score-ring-fill {
            fill: none;
            stroke: url(#scoreGradient);
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 880;
            stroke-dashoffset: 264;
        }
        .score-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .score-number {
            font-size: 96px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            background: linear-gradient(135deg, var(--warning), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .score-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .score-verdict {
            font-size: 24px;
            font-weight: 700;
            color: var(--warning);
            margin-bottom: 8px;
        }
        .score-explanation {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .sub-scores {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: nowrap;
            width: 100%;
            max-width: 1152px;
            margin: 0 auto;
        }
        .sub-score {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
            padding: 24px 20px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            flex: 1;
        }
        .sub-score-value {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        .sub-score-value.good { color: var(--success); }
        .sub-score-value.warning { color: var(--warning); }
        .sub-score-info { text-align: center; }
        .sub-score-label { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
        .sub-score-avg { font-size: 11px; color: var(--text-tertiary); }

        /* Why It Matters Cards */
        .why-matters {
            position: relative;
            padding: 40px;
            margin: 48px 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(232, 121, 249, 0.08));
            border-radius: 24px;
            overflow: hidden;
        }
        .why-matters::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, var(--accent), var(--magenta), var(--cyan));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }
        .why-matters-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--accent), var(--magenta));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
        }
        .why-matters-icon svg { width: 28px; height: 28px; color: white; }
        .why-matters-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--magenta);
            margin-bottom: 8px;
        }
        .why-matters-title {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .why-matters-text {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .why-matters-text strong { color: var(--text-primary); }
        .why-matters-stat {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(34, 211, 238, 0.15);
            border: 1px solid rgba(34, 211, 238, 0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--cyan);
            margin-top: 16px;
        }

        /* Insight Cards */
        .insights-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 32px 0;
        }
        .insight-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        .insight-card:hover {
            border-color: rgba(99, 102, 241, 0.3);
        }
        .insight-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .insight-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(99, 102, 241, 0.1);
            color: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .insight-icon svg {
            width: 16px;
            height: 16px;
        }
        .insight-icon.warning {
            background: rgba(251, 191, 36, 0.1);
            color: var(--warning);
        }
        .insight-icon.danger {
            background: rgba(248, 113, 113, 0.1);
            color: var(--danger);
        }
        .insight-icon.success {
            background: rgba(52, 211, 153, 0.1);
            color: var(--success);
        }
        .insight-card-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .insight-card-text {
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.6;
        }

        /* Callout Box */
        .callout {
            display: flex;
            gap: 16px;
            padding: 24px;
            border-radius: 16px;
            margin: 40px 0;
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
        }
        .callout.danger {
            background: rgba(248, 113, 113, 0.1);
            border-color: rgba(248, 113, 113, 0.3);
        }
        .callout-icon {
            font-size: 24px;
            flex-shrink: 0;
        }
        .callout-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .callout-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Methodology/Estimate Disclaimer */
        .estimate-disclaimer {
            background: rgba(255, 255, 255, 0.03);
            border: 1px dashed var(--glass-border);
            border-radius: 8px;
            padding: 12px 16px;
            margin-top: 16px;
        }
        .estimate-disclaimer p {
            font-size: 13px;
            line-height: 1.5;
            color: var(--text-tertiary);
            margin: 0;
        }
        .estimate-disclaimer strong {
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .insights-grid { grid-template-columns: 1fr; }
        }

        /* Section Styles */
        .section {
            padding: 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .section-header { text-align: center; margin-bottom: 64px; }
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: clamp(32px, 5vw, 44px);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
            background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        .section-subtitle .industry-avg {
            color: var(--orange);
            font-weight: 600;
        }

        /* Metric Cards */
        .metric-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 24px;
            position: relative;
            transition: all 0.4s var(--ease);
            overflow: hidden;
        }
        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            border-radius: 20px 20px 0 0;
            background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
        }
        .metric-card.success::before { background: linear-gradient(90deg, var(--success), var(--cyan)); }
        .metric-card.warning::before { background: linear-gradient(90deg, var(--warning), var(--orange)); }
        .metric-card.danger::before { background: linear-gradient(90deg, var(--danger), var(--magenta)); }
        .metric-card:hover { transform: translateY(-4px); border-color: var(--accent); }
        .metric-value {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 4px;
        }
        .metric-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }
        .metric-comparison {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            background: var(--glass-bg);
            border-radius: 8px;
            font-size: 11px;
            color: var(--text-tertiary);
        }

        /* Bento Grid Layout */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto auto;
            gap: 16px;
        }
        .bento-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease);
        }
        .bento-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }
        .bento-card.hero {
            grid-column: span 2;
            grid-row: span 2;
            background: linear-gradient(135deg, rgba(0, 127, 253, 0.15) 0%, rgba(109, 90, 255, 0.1) 100%), var(--bg-card);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .bento-card.hero .bento-value {
            font-size: 72px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--success) 0%, var(--cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 8px;
        }
        .bento-card.hero .bento-label {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .bento-card.hero .bento-sublabel {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .bento-card.wide {
            grid-column: span 2;
        }
        .bento-card.tall {
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .bento-value {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 4px;
        }
        .bento-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }
        .bento-sublabel {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        .bento-card .service-mini {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--glass-border);
        }
        .bento-card .service-mini:last-child {
            border-bottom: none;
        }
        .service-mini-name {
            font-weight: 600;
            font-size: 13px;
        }
        .service-mini-value {
            font-weight: 700;
            font-size: 14px;
            color: var(--success);
        }
        @media (max-width: 900px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .bento-card.hero { grid-column: span 2; grid-row: span 1; }
            .bento-card.hero .bento-value { font-size: 48px; }
            .bento-card.wide { grid-column: span 2; }
            .bento-card.tall { grid-row: span 1; }
        }
        @media (max-width: 600px) {
            .bento-grid { grid-template-columns: 1fr; }
            .bento-card.hero, .bento-card.wide { grid-column: span 1; }
        }
        .metric-comparison.above { color: var(--success); }
        .metric-comparison.below { color: var(--orange); }

        /* Competitor Table */
        .competitor-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 32px;
        }
        .competitor-table th,
        .competitor-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid var(--glass-border);
        }
        .competitor-table th {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-tertiary);
            background: var(--bg-tertiary);
        }
        .competitor-table th:first-child { border-radius: 12px 0 0 0; }
        .competitor-table th:last-child { border-radius: 0 12px 0 0; }
        .competitor-table td { font-size: 14px; }
        .competitor-table tr:hover td { background: var(--glass-bg); }
        .competitor-table .highlight-row td {
            background: linear-gradient(90deg, rgba(0, 127, 253, 0.12), rgba(109, 90, 255, 0.08));
            font-weight: 600;
            border-top: 2px solid var(--accent);
            border-bottom: 2px solid var(--accent);
            position: relative;
        }
        .competitor-table .highlight-row td:first-child {
            border-left: 2px solid var(--accent);
            border-top-left-radius: 12px;
            border-bottom-left-radius: 12px;
        }
        .competitor-table .highlight-row td:last-child {
            border-right: 2px solid var(--accent);
            border-top-right-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        .competitor-name {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .competitor-avatar {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .competitor-avatar.you {
            background: linear-gradient(135deg, var(--accent), var(--magenta));
            color: white;
        }
        .badge-pill {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
        }
        .badge-pill.success { background: rgba(34, 211, 153, 0.15); color: var(--success); }
        .badge-pill.warning { background: rgba(251, 191, 36, 0.15); color: var(--warning); }
        .badge-pill.danger { background: rgba(248, 113, 113, 0.15); color: var(--danger); }

        /* Service Bar Styles */
        .service-bar-row {
            display: grid;
            grid-template-columns: 200px 1fr 140px;
            gap: 16px;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--glass-border);
        }
        .service-bar-row:last-child { border-bottom: none; }
        .service-bar-label {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .service-bar-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .service-bar-track {
            height: 8px;
            background: var(--glass-bg);
            border-radius: 4px;
            overflow: hidden;
        }
        .service-bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.6s var(--ease);
        }
        .service-bar-stats {
            text-align: right;
        }
        .service-bar-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-primary);
            display: block;
        }
        .service-bar-meta {
            font-size: 11px;
            color: var(--text-tertiary);
        }

        /* Listings Performance */
        .listings-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .listing-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px;
            transition: all 0.4s var(--ease);
        }
        .listing-card:hover { border-color: var(--accent); transform: translateY(-4px); }
        .listing-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        .listing-platform {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .listing-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .listing-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .listing-icon svg { width: 24px; height: 24px; color: white; }
        .listing-name { font-size: 17px; font-weight: 700; }
        .listing-status {
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
        }
        .listing-status.claimed { background: rgba(34, 211, 153, 0.15); color: var(--success); }
        .listing-status.unclaimed { background: rgba(248, 113, 113, 0.15); color: var(--danger); }
        .listing-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .listing-metric { text-align: center; }
        .listing-metric-value {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 4px;
        }
        .listing-metric-label {
            font-size: 11px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Ads Performance */
        .ads-status {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
        }
        .ads-status-icon {
            width: 80px;
            height: 80px;
            background: rgba(248, 113, 113, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        .ads-status-icon svg { width: 40px; height: 40px; color: var(--danger); }
        .ads-status-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .ads-status-text {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }
        .ads-opportunity-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 32px;
        }
        .ads-opportunity {
            background: var(--bg-tertiary);
            border-radius: 16px;
            padding: 20px;
            text-align: left;
        }
        .ads-opportunity-value {
            font-size: 24px;
            font-weight: 800;
            color: var(--cyan);
            margin-bottom: 4px;
        }
        .ads-opportunity-label {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Keyword Opportunities */
        .keyword-opportunities {
            margin-top: 48px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px;
        }
        .keyword-opp-header {
            text-align: center;
            margin-bottom: 32px;
        }
        .keyword-opp-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .keyword-opp-header p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .keyword-opp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .keyword-opp-card {
            background: var(--bg-tertiary);
            border-radius: 16px;
            padding: 20px;
            border-left: 3px solid;
        }
        .keyword-opp-card.high { border-left-color: var(--danger); }
        .keyword-opp-card.medium { border-left-color: var(--warning); }
        .keyword-opp-card.low { border-left-color: var(--success); }
        .keyword-opp-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .keyword-opp-card.high .keyword-opp-label { color: var(--danger); }
        .keyword-opp-card.medium .keyword-opp-label { color: var(--warning); }
        .keyword-opp-card.low .keyword-opp-label { color: var(--success); }
        .keyword-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .keyword-list li {
            font-size: 13px;
            color: var(--text-secondary);
            padding: 8px 0;
            border-bottom: 1px solid var(--glass-border);
        }
        .keyword-list li:last-child { border-bottom: none; }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .service-category {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px;
            transition: all 0.4s var(--ease);
        }
        .service-category:hover { border-color: var(--accent); transform: translateY(-4px); }
        .service-category-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--glass-border);
        }
        .service-category-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent), var(--magenta));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .service-category-icon svg { width: 24px; height: 24px; color: white; }
        .service-category-icon.septic { background: linear-gradient(135deg, var(--success), var(--cyan)); }
        .service-category-icon.emergency { background: linear-gradient(135deg, var(--danger), var(--orange)); }
        .service-category-title { font-size: 17px; font-weight: 700; }
        .service-category-count { font-size: 13px; color: var(--text-tertiary); }
        .service-list { list-style: none; }
        .service-list li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .service-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        /* Coverage Grid */
        .coverage-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .coverage-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px;
        }
        .coverage-card-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .coverage-card-title svg { width: 22px; height: 22px; }
        .coverage-card.has-pages .coverage-card-title { color: var(--success); }
        .coverage-card.no-pages .coverage-card-title { color: var(--orange); }
        .city-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        .city-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            background: var(--glass-bg);
            border-radius: 10px;
            font-size: 13px;
            font-weight: 500;
        }
        .city-item.has-page { border-left: 3px solid var(--success); }
        .city-item.no-page { border-left: 3px solid var(--orange); color: var(--text-tertiary); }

        /* Charts */
        .chart-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px;
        }
        .chart-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        .chart-title { font-size: 17px; font-weight: 700; }
        .chart-legend { display: flex; gap: 20px; }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
        }
        .legend-dot { width: 12px; height: 12px; border-radius: 50%; }
        .chart-container { height: 300px; position: relative; }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px;
            transition: all 0.4s var(--ease);
        }
        .testimonial-card:hover { border-color: var(--warning); transform: translateY(-4px); }
        .testimonial-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
        }
        .testimonial-stars svg { width: 18px; height: 18px; fill: var(--warning); color: var(--warning); }
        .testimonial-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-author { font-size: 14px; font-weight: 600; }

        .highlights-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }
        .highlight-tag {
            padding: 10px 18px;
            background: rgba(34, 211, 153, 0.1);
            border: 1px solid rgba(34, 211, 153, 0.25);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: var(--success);
        }

        /* Analysis Grid */
        .analysis-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }
        .analysis-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px;
        }
        .analysis-card.strengths { border-top: 3px solid var(--success); }
        .analysis-card.weaknesses { border-top: 3px solid var(--orange); }
        .analysis-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .analysis-card h4 svg { width: 22px; height: 22px; }
        .analysis-card.strengths h4 { color: var(--success); }
        .analysis-card.weaknesses h4 { color: var(--orange); }
        .analysis-list { list-style: none; }
        .analysis-list li {
            padding: 10px 0;
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .analysis-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
        .analysis-card.strengths .analysis-list li svg { color: var(--success); }
        .analysis-card.weaknesses .analysis-list li svg { color: var(--orange); }

        /* Opportunities */
        .opportunity-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .opportunity-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px;
            position: relative;
            transition: all 0.4s var(--ease);
        }
        .opportunity-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 20px 50px -20px rgba(99, 102, 241, 0.3);
        }
        .opportunity-number {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent), var(--magenta));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            color: white;
        }
        .opportunity-icon {
            width: 56px;
            height: 56px;
            background: var(--glass-bg);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .opportunity-card.high .opportunity-icon { background: rgba(248, 113, 113, 0.15); }
        .opportunity-card.high .opportunity-icon svg { color: var(--danger); }
        .opportunity-icon svg { width: 28px; height: 28px; color: var(--accent); }
        .opportunity-header { margin-bottom: 16px; }
        .opportunity-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .opportunity-description { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
        .opportunity-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .opportunity-impact {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(34, 211, 153, 0.1);
            border: 1px solid rgba(34, 211, 153, 0.25);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            color: var(--success);
        }

        /* CTA - Full Width Banner */
        .cta-banner {
            background: linear-gradient(135deg, #3a5aff 0%, #6b4dff 50%, #8c5aff 100%);
            padding: 40px 24px;
            position: relative;
            z-index: 1;
        }
        .cta-banner-inner {
            max-width: 1152px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }
        .cta-banner-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .cta-banner-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.3);
            flex-shrink: 0;
        }
        .cta-banner-text h3 {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin: 0 0 4px 0;
        }
        .cta-banner-text p {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin: 0;
        }
        .cta-banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: white;
            color: var(--accent);
            font-weight: 700;
            font-size: 15px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s var(--ease);
            white-space: nowrap;
        }
        .cta-banner-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        .cta-banner-btn svg {
            width: 18px;
            height: 18px;
        }
        .cta-content { max-width: 600px; margin: 0 auto; }
        .cta-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cta-text { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; }
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--accent), var(--magenta));
            color: white;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s var(--ease);
            box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
        }
        .cta-button:hover { transform: translateY(-4px) scale(1.02); }
        .cta-button svg { width: 20px; height: 20px; }

        /* Footer */
        .footer {
            padding: 32px 24px;
            text-align: center;
            border-top: 1px solid var(--glass-border);
        }
        .footer-text { font-size: 13px; color: var(--text-tertiary); }

        /* ============================================
           RESPONSIVE DESIGN - Mobile First
           ============================================ */

        /* Tablet (1024px and below) */
        @media (max-width: 1024px) {
            .metric-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: 1fr; }
            .coverage-grid { grid-template-columns: 1fr; }
            .analysis-grid { grid-template-columns: 1fr; }
            .opportunity-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .listings-grid { grid-template-columns: 1fr; }
            .ads-opportunity-grid { grid-template-columns: 1fr; }
            .sub-scores { flex-direction: column; align-items: center; }
            .business-bar { flex-wrap: wrap; gap: 16px; }
            .device-switcher { flex-wrap: wrap; }

            /* Navigation - simplified for tablet */
            .nav { padding: 10px 16px; }
            .nav-items { gap: 0; }
            .nav-item { padding: 8px 10px; font-size: 12px; }
        }

        /* Mobile Large (768px and below) */
        @media (max-width: 768px) {
            /* Typography scaling */
            .hero-title { font-size: 36px !important; }
            .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
            .section-title { font-size: 28px; }
            .section-subtitle { font-size: 14px; }

            /* Navigation - hide on mobile, show simplified bar */
            .nav { display: none; }

            /* Hero adjustments */
            .hero { padding: 80px 16px 60px; min-height: auto; }
            .business-bar {
                flex-direction: column;
                gap: 8px;
                padding: 16px;
                border-radius: 16px;
            }
            .business-bar-divider { display: none; }
            .business-bar-item { justify-content: center; }

            /* Score section */
            .overall-score { width: 200px; height: 200px; }
            .score-number { font-size: 64px; }
            .score-verdict { font-size: 20px; }
            .score-explanation { font-size: 14px; padding: 0 16px; }
            .sub-scores { gap: 12px; padding: 0 16px; }
            .sub-score-card { padding: 16px; min-width: 280px; }

            /* Grid layouts */
            .metric-grid { grid-template-columns: 1fr; }
            .city-list { grid-template-columns: 1fr; }
            .keyword-opp-grid { grid-template-columns: 1fr; }

            /* Device frames */
            .tablet-frame, .desktop-frame { max-width: 100%; }
            .device-container { min-height: 400px; }

            /* Cards and sections */
            .why-matters { padding: 20px; }
            .section { padding: 48px 16px; }
            .bento-card { padding: 20px; }

            /* Tables - horizontal scroll */
            .competitor-table { font-size: 11px; }
            .competitor-table th, .competitor-table td { padding: 10px 8px; }
            .table-scroll-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                margin: 0 -16px;
                padding: 0 16px;
            }

            /* Keyword opportunities */
            .keyword-opportunities { padding: 16px; }

            /* Market section inline grids */
            .market-stats-grid { grid-template-columns: 1fr 1fr !important; }
            .market-services-grid { grid-template-columns: 1fr !important; }

            /* Growth opportunity card */
            .growth-opportunity-layout {
                flex-direction: column !important;
                gap: 24px !important;
                text-align: center !important;
            }
            .growth-opportunity-layout > div {
                text-align: center !important;
                min-width: auto !important;
            }
            /* Order: Current (1), TAM chart (2), Target (3) */
            .growth-opportunity-layout > div:first-child { order: 1; }
            .growth-opportunity-layout > div:nth-child(2) { order: 2; }
            .growth-opportunity-layout > div:last-child { order: 3; }
            .growth-stat-label { justify-content: center !important; }

            /* Sub-scores: 2x2 grid on mobile */
            .sub-scores {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 12px !important;
                width: 100% !important;
                flex-direction: unset !important;
            }
            .sub-score-card {
                width: 100% !important;
                min-width: auto !important;
            }
        }

        /* Mobile Small (480px and below) */
        @media (max-width: 480px) {
            /* Typography */
            .hero-title { font-size: 28px !important; line-height: 1.2; }
            .section-title { font-size: 24px; }

            /* Tighter spacing */
            .hero { padding: 70px 12px 40px; }
            .section { padding: 32px 12px; }
            .bento-card { padding: 16px; }

            /* Score section */
            .overall-score { width: 160px; height: 160px; margin-bottom: 24px; }
            .score-number { font-size: 48px; }
            .score-hero { padding: 40px 12px; }

            /* Sub-scores - full width cards */
            .sub-scores { width: 100%; }
            .sub-score-card {
                width: 100%;
                min-width: auto;
                flex-direction: row;
                align-items: center;
                gap: 16px;
                padding: 16px;
            }
            .sub-score-card .score-ring {
                width: 56px;
                height: 56px;
                flex-shrink: 0;
            }
            .sub-score-card .score-ring-value { font-size: 16px; }
            .sub-score-card .sub-score-label { font-size: 13px; }

            /* Market stats - single column */
            .market-stats-grid { grid-template-columns: 1fr !important; }

            /* Service TAM cards - adjust sizing */
            .service-tam-circle { width: 56px !important; height: 56px !important; }
            .service-tam-value { font-size: 24px !important; }

            /* Growth opportunity */
            .growth-tam-circle { width: 140px !important; height: 140px !important; }
            .growth-stat-value { font-size: 40px !important; }
            .growth-stat-revenue { font-size: 18px !important; }

            /* Tables */
            .competitor-table { font-size: 10px; }
            .competitor-table th, .competitor-table td { padding: 8px 6px; }

            /* Touch targets - ensure minimum 44px */
            .nav-item, .nav-cta, .device-btn, button {
                min-height: 44px;
                min-width: 44px;
            }

            /* Charts - ensure visibility */
            .chart-container {
                min-height: 250px;
                margin: 0 -8px;
            }
        }

        /* Utility classes for inline responsive grids */
        @media (max-width: 768px) {
            [style*="grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1fr"] {
                grid-template-columns: 1fr 1fr !important;
            }
            [style*="grid-template-columns: repeat(2, 1fr)"][style*="margin-bottom: 16px"] {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 480px) {
            [style*="grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation: none !important; transition: none !important; }
        }

        /* Safe area insets for notched devices */
        @supports (padding: max(0px)) {
            .nav {
                padding-left: max(20px, env(safe-area-inset-left));
                padding-right: max(20px, env(safe-area-inset-right));
            }
            .section {
                padding-left: max(24px, env(safe-area-inset-left));
                padding-right: max(24px, env(safe-area-inset-right));
            }
            .mobile-header {
                padding-top: max(12px, env(safe-area-inset-top));
            }
        }

        /* ============================================
           MOBILE HEADER - Awwwards-style
           ============================================ */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 12px 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .mobile-header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .mobile-header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 100%;
        }
        .mobile-header-logo {
            height: 20px;
            width: auto;
        }
        .mobile-header-score {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
        }
        .mobile-header-score-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--warning);
        }
        .mobile-header-score-label {
            font-size: 10px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Mobile Section Navigation */
        .mobile-nav {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            padding-bottom: 4px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .mobile-nav::-webkit-scrollbar { display: none; }
        .mobile-nav-item {
            flex-shrink: 0;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-tertiary);
            text-decoration: none;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            transition: all 0.2s ease;
            min-height: 36px;
            display: flex;
            align-items: center;
        }
        .mobile-nav-item.active,
        .mobile-nav-item:active {
            color: var(--text-primary);
            background: var(--accent);
            border-color: var(--accent);
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
            z-index: 1001;
            width: 0%;
            transition: width 0.1s ease-out;
        }

        /* Back to Top Button */
        .back-to-top {
            display: none;
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: var(--accent);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 127, 253, 0.4);
        }
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .back-to-top:active {
            transform: scale(0.95);
        }
        .back-to-top svg {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            .mobile-header { display: block; }
            .back-to-top { display: flex; align-items: center; justify-content: center; }
            body { padding-top: 110px; } /* Taller header with nav */
            .hero { padding-top: 20px; }
        }

        /* Touch feedback for interactive elements */
        @media (hover: none) and (pointer: coarse) {
            .bento-card, .sub-score-card, .device-btn {
                -webkit-tap-highlight-color: transparent;
            }
            .bento-card:active {
                transform: scale(0.98);
                transition: transform 0.1s ease;
            }
            .nav-cta:active, .device-btn:active {
                transform: scale(0.95);
            }
        }

        /* Smooth scroll snap for sections on mobile */
        @media (max-width: 768px) {
            html {
                scroll-snap-type: y proximity;
            }
            .section {
                scroll-snap-align: start;
                scroll-snap-stop: normal;
            }
        }

        /* ============================================
           BOTTOM LINE - REVENUE UNLOCK SECTION
           ============================================ */

        .bottom-line-section {
            background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 127, 253, 0.08) 50%, var(--bg-primary) 100%);
            padding: 80px 24px;
            position: relative;
            overflow: hidden;
        }

        /* Removed decorative line - not used elsewhere for consistency */

        .bottom-line-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .bottom-line-header .section-badge {
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.05);
        }

        .bottom-line-title {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            color: var(--text-primary);
            margin: 16px 0 8px;
            letter-spacing: -0.02em;
        }

        .highlight-gradient {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 50%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bottom-line-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Revenue Unlock Container - 3 Column Layout */
        .revenue-unlock-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto 64px;
        }

        /* State Circles (Current & Potential) */
        .revenue-state {
            text-align: center;
            flex: 0 0 200px;
        }

        .state-label {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-tertiary);
            margin-bottom: 24px;
        }

        .state-circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            position: relative;
        }

        .state-circle.current {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--glass-border);
            position: relative;
        }

        .state-circle.current::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 216px;
            height: 216px;
            border: 2px dashed rgba(255, 255, 255, 0.15);
            border-radius: 50%;
        }

        .state-circle.potential {
            background: linear-gradient(135deg, rgba(0, 127, 253, 0.15), rgba(109, 90, 255, 0.15));
            border: 3px solid var(--accent);
            box-shadow: 0 0 60px rgba(0, 127, 253, 0.3), inset 0 0 30px rgba(109, 90, 255, 0.1);
            transform: scale(1.2);
        }

        .state-amount {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .state-circle.potential .state-amount {
            font-size: 32px;
            color: var(--accent-light);
        }

        .state-period {
            font-size: 12px;
            color: var(--text-tertiary);
            margin-top: 4px;
        }

        .state-rank {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .potential-state .state-rank {
            color: var(--accent);
            font-weight: 600;
        }

        /* Opportunity Stack */
        .opportunity-stack {
            flex: 1;
            max-width: 500px;
            position: relative;
            padding: 20px 0;
        }

        .stack-item {
            margin-bottom: 24px;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.6s ease;
        }

        .stack-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .stack-bar {
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--glass-border);
        }

        .stack-bar-fill {
            height: 100%;
            border-radius: 8px;
            transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .stack-bar-fill.blue {
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
        }

        .stack-bar-fill.purple {
            background: linear-gradient(90deg, var(--accent-secondary), var(--magenta));
        }

        .stack-bar-fill.blue-purple {
            background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
        }

        .stack-bar-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
            border-radius: 8px 8px 0 0;
        }

        .stack-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
            padding: 0 4px;
        }

        .stack-action {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .stack-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
        }

        /* Bottom Line Stats */
        .bottom-line-stats {
            display: flex;
            justify-content: center;
            gap: 64px;
            padding: 48px 0;
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
            margin-bottom: 32px;
        }

        .bl-stat {
            text-align: center;
        }

        .bl-stat-value {
            font-size: clamp(36px, 4vw, 48px);
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }

        .bl-stat-label {
            font-size: 14px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Urgency Note */
        .bottom-line-urgency {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px 32px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            max-width: 600px;
            margin: 0 auto;
        }

        .bottom-line-urgency svg {
            width: 24px;
            height: 24px;
            color: var(--danger);
            flex-shrink: 0;
        }

        .bottom-line-urgency p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
        }

        /* CTA Section Enhancements */
        .cta-intro-section {
            text-align: center;
            padding: 64px 24px 48px;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-headline {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            color: var(--text-primary);
            margin: 0 0 8px;
        }

        .cta-subheadline {
            font-size: 20px;
            color: var(--cyan);
            margin: 0 0 32px;
            font-weight: 500;
        }

        .cta-description p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin: 0 0 16px;
        }

        .cta-note {
            font-size: 15px !important;
            color: var(--text-tertiary) !important;
            font-style: italic;
        }

        .cta-availability {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            margin-top: 12px;
        }

        /* Mobile Responsive for Bottom Line */
        @media (max-width: 900px) {
            .revenue-unlock-container {
                flex-direction: column;
                gap: 32px;
            }

            .opportunity-stack {
                width: 100%;
                max-width: 100%;
                padding: 20px 0;
            }

            .state-circle.potential {
                transform: scale(1.1);
            }

            .revenue-state {
                flex: none;
            }
        }

        @media (max-width: 600px) {
            .bottom-line-stats {
                flex-direction: column;
                gap: 32px;
            }

            .bottom-line-section {
                padding: 48px 16px;
            }

            .bottom-line-urgency {
                flex-direction: column;
                text-align: center;
                padding: 16px 20px;
            }
        }

/* ============================================
   COMPETITOR GAP CHART
   ============================================ */

.gap-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.gap-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.gap-chart-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.gap-chart-subtitle {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Gap chart explanation text (5th grade reading level) */
.gap-chart-explanation {
    background: rgba(0, 127, 253, 0.08);
    border: 1px solid rgba(0, 127, 253, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.gap-chart-explanation p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.gap-chart-explanation strong {
    color: var(--text-primary);
}

.gap-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gap-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gap-metric {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.gap-values {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.gap-you {
    color: var(--accent-light);
    font-weight: 600;
}

.gap-leader {
    color: var(--text-tertiary);
}

.gap-delta {
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.gap-delta.behind {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.gap-delta.ahead {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.gap-bar {
    position: relative;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.gap-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 5px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.gap-bar-fill.behind {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.6));
    border-right: 3px solid var(--danger);
}

.gap-bar-fill.ahead {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.6));
    border-right: 3px solid var(--success);
}

.gap-bar-fill.close {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.5));
    border-right: 3px solid var(--success);
}

.gap-bar-label {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 1;
}

/* Gap chart legend */
.gap-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    margin-top: 8px;
}

.gap-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.gap-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.gap-legend-dot.you {
    background: linear-gradient(135deg, var(--accent), var(--magenta));
}

.gap-legend-dot.leader {
    background: var(--orange);
}

/* Responsive */
@media (max-width: 600px) {
    .gap-chart {
        padding: 16px;
    }

    .gap-values {
        flex-wrap: wrap;
        gap: 8px;
    }

    .gap-row-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


