* { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg: #0a0a0a;
            --surface: #141414;
            --border: #222;
            --text: #f5f5f5;
            --text-dim: #888;
            --accent: #ff6b35;
            --accent-glow: rgba(255, 107, 53, 0.15);
            --green: #22c55e;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Noise texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Nav */
        nav {
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: -0.5px;
        }

        .logo span { color: var(--accent); }

        .nav-tag {
            font-size: 0.75rem;
            color: var(--text-dim);
            border: 1px solid var(--border);
            padding: 4px 12px;
            border-radius: 100px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-link {
            font-size: 0.8rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            padding: 6px 16px;
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 8px;
            transition: all 0.2s;
            background: var(--accent-glow);
        }

        .nav-link:hover {
            background: rgba(255, 107, 53, 0.2);
            border-color: var(--accent);
        }

        /* Hero */
        .hero {
            padding: 100px 0 80px;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-glow);
            border: 1px solid rgba(255, 107, 53, 0.25);
            border-radius: 100px;
            padding: 6px 16px;
            font-size: 0.8rem;
            color: var(--accent);
            margin-bottom: 32px;
        }

        .hero-badge .dot {
            width: 6px; height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -2px;
            max-width: 800px;
            margin-bottom: 24px;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent), #ff9a6c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: 1.15rem;
            color: var(--text-dim);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 36px;
        }

        /* Waitlist Form */
        .waitlist-form {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin-bottom: 12px;
        }

        .waitlist-form input {
            flex: 1;
            padding: 14px 18px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }

        .waitlist-form input::placeholder {
            color: #555;
        }

        .waitlist-form input:focus {
            border-color: var(--accent);
        }

        .waitlist-form button {
            padding: 14px 28px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .waitlist-form button:hover {
            background: #e85d2a;
            transform: translateY(-1px);
        }

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

        .waitlist-hint {
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        .waitlist-success {
            display: none;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.25);
            border-radius: 10px;
            color: var(--green);
            font-weight: 500;
            max-width: 480px;
        }

        .waitlist-success.show {
            display: flex;
        }

        .waitlist-error {
            display: none;
            font-size: 0.85rem;
            color: #ef4444;
            margin-top: 6px;
        }

        .waitlist-error.show {
            display: block;
        }

        /* Social proof counter */
        .waitlist-social-proof {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
            opacity: 0;
            transition: opacity 0.6s ease;
            display: none;
        }
        .waitlist-social-proof.fade-in {
            opacity: 1;
        }
        .waitlist-social-proof span.count {
            color: #fff;
            font-weight: 700;
        }

        /* Glow orb */
        .hero::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Divider */
        .divider {
            height: 1px;
            background: var(--border);
            margin: 0;
        }

        /* Problem/Solution */
        .problem {
            padding: 80px 0;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .problem-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-dim);
            margin-bottom: 16px;
        }

        .problem-left h2 {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .problem-left p {
            color: var(--text-dim);
            font-size: 1rem;
            line-height: 1.7;
        }

        .solution-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
        }

        .solution-card h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .metric-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .metric-row:last-child { border-bottom: none; }
        .metric-label { color: var(--text-dim); font-size: 0.9rem; }
        .metric-value { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; }
        .metric-value.accent { color: var(--accent); }
        .metric-value.green { color: var(--green); }

        /* Features */
        .features {
            padding: 80px 0;
        }

        .features-header {
            margin-bottom: 48px;
        }

        .features-header h2 {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }

        .features-header p {
            color: var(--text-dim);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .feature-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
            transition: border-color 0.3s;
        }

        .feature-card:hover {
            border-color: rgba(255, 107, 53, 0.3);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 16px;
            background: var(--accent-glow);
            border: 1px solid rgba(255, 107, 53, 0.15);
        }

        .feature-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-card p {
            color: var(--text-dim);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Closing CTA */
        .closing {
            padding: 100px 0;
            text-align: center;
        }

        .closing h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .closing p {
            color: var(--text-dim);
            max-width: 480px;
            margin: 0 auto 32px;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .closing .waitlist-form {
            margin: 0 auto 12px;
        }

        .closing .waitlist-hint {
            text-align: center;
        }

        .closing .waitlist-success {
            margin: 0 auto;
            justify-content: center;
        }

        .closing .waitlist-error {
            text-align: center;
        }

        /* Footer */
        footer {
            padding: 32px 0;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        footer a {
            color: var(--text-dim);
            text-decoration: none;
        }

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

        /* Share Card */
        .share-card {
            display: none;
            max-width: 480px;
            background: #111;
            border: 1px solid rgba(255, 107, 53, 0.35);
            border-radius: 14px;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }

        .share-card::before {
            content: '';
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            width: 200px; height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .share-card.show { display: block; }

        .share-card-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
        }

        .share-card-sub {
            font-size: 0.82rem;
            color: var(--text-dim);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .share-referral-count {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: var(--green);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .share-link-row {
            display: flex;
            gap: 8px;
            margin-bottom: 14px;
        }

        .share-link-input {
            flex: 1;
            padding: 10px 14px;
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            color: #aaa;
            font-size: 0.8rem;
            font-family: monospace;
            outline: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .share-copy-btn {
            padding: 10px 16px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s;
            flex-shrink: 0;
        }

        .share-copy-btn:hover { background: #e85d2a; }
        .share-copy-btn.copied { background: var(--green); }

        .share-social-row {
            display: flex;
            gap: 8px;
        }

        .share-social-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 9px 12px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .share-social-btn:hover { opacity: 0.85; }

        .share-twitter {
            background: #000;
            color: #fff;
            border: 1px solid #333;
        }

        .share-whatsapp {
            background: #25d366;
            color: #fff;
        }

        .closing .share-card { margin: 0 auto; }
        .demo-cta .share-card { margin: 0 auto; position: relative; z-index: 1; }

        /* Mobile */
        @media (max-width: 768px) {
            .hero { padding: 60px 0 50px; }
            .hero h1 { letter-spacing: -1px; }
            .waitlist-form { flex-direction: column; }
            .waitlist-form button { width: 100%; }
            .problem-grid { grid-template-columns: 1fr; gap: 32px; }
            .features-grid { grid-template-columns: 1fr; }
            .closing { padding: 60px 0; }
            .closing .waitlist-form { flex-direction: column; }
            footer { flex-direction: column; gap: 8px; text-align: center; }
            .share-link-row { flex-direction: column; }
            .share-social-row { flex-direction: column; }
        }

        @media (max-width: 480px) {
            .container { padding: 0 16px; }
        }

        /* ===== DEMO SHOWCASE ===== */
        .demo {
            padding: 80px 0;
        }

        .demo-header {
            margin-bottom: 52px;
            text-align: center;
        }

        .demo-header .section-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .demo-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .demo-header p {
            color: var(--text-dim);
            max-width: 460px;
            margin: 0 auto;
            line-height: 1.7;
            font-size: 1rem;
        }

        .demo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 56px;
        }

        .demo-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
        }

        .demo-card-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px 12px;
            border-bottom: 1px solid var(--border);
        }

        .demo-card-label-left {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-dim);
        }

        .label-dot-raw {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #444;
            flex-shrink: 0;
        }

        .label-dot-enriched {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }

        .demo-category-chip {
            font-size: 0.6rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 100px;
            background: var(--accent-glow);
            color: var(--accent);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        /* Raw screenshot mockup */
        .raw-screenshot {
            margin: 14px 14px 0;
            background: #111;
            border: 1px solid #252525;
            border-radius: 10px;
            overflow: hidden;
        }

        .browser-bar {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 10px;
            background: #1c1c1c;
            border-bottom: 1px solid #252525;
        }

        .browser-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
        }

        .bd-red { background: #e05252; }
        .bd-yellow { background: #e0b352; }
        .bd-green { background: #52c852; }

        .browser-url {
            flex: 1;
            background: #141414;
            border-radius: 4px;
            padding: 3px 8px;
            color: #444;
            font-size: 0.62rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-left: 4px;
        }

        .raw-content {
            padding: 12px;
        }

        .raw-img-placeholder {
            background: linear-gradient(135deg, #1e1e1e, #252525);
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 12px;
        }

        .raw-line {
            height: 8px;
            border-radius: 4px;
            background: #2e2e2e;
        }

        .raw-line.w-80 { width: 80%; }
        .raw-line.w-60 { width: 60%; }
        .raw-line.w-40 { width: 40%; }
        .raw-line.w-90 { width: 90%; }
        .raw-line.w-70 { width: 70%; }

        .raw-thumb {
            width: 100%;
            height: 55px;
            background: linear-gradient(135deg, #232323, #2a2a2a);
            border-radius: 6px;
            margin-bottom: 4px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            opacity: 0.5;
        }

        /* Transform arrow divider */
        .transform-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 14px;
            position: relative;
        }

        .transform-arrow::before {
            content: '';
            position: absolute;
            left: 14px; right: 14px; top: 50%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,107,53,0.25), transparent);
        }

        .arrow-badge {
            position: relative;
            z-index: 1;
            background: var(--bg);
            border: 1px solid rgba(255,107,53,0.3);
            color: var(--accent);
            font-size: 0.6rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 100px;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Enriched GIBS card */
        .enriched-card {
            margin: 0 14px 14px;
            background: var(--bg);
            border: 1px solid rgba(255,107,53,0.18);
            border-radius: 12px;
            overflow: hidden;
        }

        .enriched-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-bottom: 1px solid #151515;
        }

        .enriched-icon {
            width: 34px; height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .enriched-meta {
            flex: 1;
            min-width: 0;
        }

        .enriched-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text);
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .enriched-source {
            font-size: 0.62rem;
            color: #444;
            margin-top: 1px;
        }

        .enriched-body {
            padding: 10px 12px 8px;
        }

        .enriched-tags {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .etag {
            font-size: 0.6rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 100px;
            letter-spacing: 0.3px;
        }

        .etag-cat {
            background: rgba(255,107,53,0.1);
            color: var(--accent);
            border: 1px solid rgba(255,107,53,0.2);
        }

        .etag-purple {
            background: rgba(139,92,246,0.1);
            color: #a78bfa;
            border: 1px solid rgba(139,92,246,0.2);
        }

        .etag-green {
            background: rgba(34,197,94,0.08);
            color: var(--green);
            border: 1px solid rgba(34,197,94,0.2);
        }

        .etag-blue {
            background: rgba(59,130,246,0.1);
            color: #60a5fa;
            border: 1px solid rgba(59,130,246,0.2);
        }

        .social-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 12px;
            background: rgba(255,255,255,0.015);
            border-top: 1px solid #131313;
        }

        .social-faces {
            display: flex;
            align-items: center;
        }

        .face {
            width: 18px; height: 18px;
            border-radius: 50%;
            border: 1.5px solid var(--surface);
            margin-right: -5px;
            font-size: 0.5rem;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .social-label {
            font-size: 0.6rem;
            color: #555;
            margin-left: 12px;
            white-space: nowrap;
        }

        .share-pill {
            font-size: 0.58rem;
            font-weight: 700;
            padding: 3px 9px;
            border-radius: 6px;
            background: var(--accent-glow);
            color: var(--accent);
            border: 1px solid rgba(255,107,53,0.22);
            cursor: pointer;
            white-space: nowrap;
        }

        /* Mid-page CTA */
        .demo-cta {
            background: linear-gradient(135deg, #111 0%, #161616 100%);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 52px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .demo-cta::before {
            content: '';
            position: absolute;
            top: -100px; left: 50%;
            transform: translateX(-50%);
            width: 500px; height: 250px;
            background: radial-gradient(ellipse, rgba(255,107,53,0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .demo-cta h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            letter-spacing: -0.8px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .demo-cta p {
            color: var(--text-dim);
            max-width: 380px;
            margin: 0 auto 28px;
            font-size: 0.95rem;
            line-height: 1.65;
            position: relative;
            z-index: 1;
        }

        .demo-cta .waitlist-form {
            margin: 0 auto 10px;
            position: relative;
            z-index: 1;
        }

        .demo-cta .waitlist-success {
            justify-content: center;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .demo-cta .waitlist-hint {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .demo-cta .waitlist-error {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .demo-grid { grid-template-columns: 1fr; }
            .demo-cta { padding: 36px 24px; }
            .demo-cta .waitlist-form { flex-direction: column; }
            .demo { padding: 60px 0; }
        }
        /* ===== END DEMO ===== */

        /* ===== COMPETITOR COMPARISON ===== */
        .comparison {
            padding: 80px 0;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .comparison-header .section-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .comparison-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .comparison-header p {
            color: var(--text-dim);
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.7;
            font-size: 1rem;
        }

        .comp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            align-items: start;
        }

        .comp-card {
            border-radius: 16px;
            padding: 32px 28px;
            position: relative;
            transition: transform 0.2s;
        }

        .comp-card.comp-dim {
            background: var(--surface);
            border: 1px solid var(--border);
            opacity: 0.85;
        }

        .comp-card.comp-featured {
            background: linear-gradient(160deg, #161616 0%, #111 100%);
            border: 1px solid rgba(255, 107, 53, 0.35);
            box-shadow: 0 0 40px rgba(255, 107, 53, 0.07), inset 0 1px 0 rgba(255,107,53,0.1);
        }

        .comp-card.comp-featured:hover {
            transform: translateY(-2px);
        }

        .comp-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-glow);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 100px;
            padding: 4px 12px;
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .comp-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            line-height: 1;
        }

        .comp-card.comp-dim .comp-icon {
            filter: grayscale(0.6);
            opacity: 0.7;
        }

        .comp-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: -0.5px;
        }

        .comp-card.comp-dim .comp-name {
            color: var(--text-dim);
        }

        .comp-card.comp-featured .comp-name {
            color: var(--text);
        }

        .comp-verdict {
            font-size: 0.8rem;
            color: var(--text-dim);
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .comp-card.comp-featured .comp-verdict {
            color: var(--accent);
            font-weight: 500;
        }

        .comp-points {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
        }

        .comp-points li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.875rem;
            line-height: 1.4;
        }

        .comp-points li::before {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
            margin-top: 1px;
        }

        .comp-miss {
            color: var(--text-dim);
        }

        .comp-miss::before {
            content: '✕';
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .comp-hit {
            color: var(--text);
        }

        .comp-hit::before {
            content: '✓';
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.2);
            color: var(--green);
        }

        .comp-quote {
            font-size: 0.75rem;
            color: #444;
            font-style: italic;
            border-top: 1px solid var(--border);
            padding-top: 16px;
            line-height: 1.5;
        }

        .comp-cta-text {
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 600;
            border-top: 1px solid rgba(255, 107, 53, 0.15);
            padding-top: 16px;
        }

        @media (max-width: 768px) {
            .comp-grid {
                grid-template-columns: 1fr;
            }
            .comp-card.comp-featured {
                order: -1;
            }
            .comparison { padding: 60px 0; }
        }
        /* ===== END COMPARISON ===== */

        /* ===== STATS BAR ===== */
        .stats-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            padding: 32px 0 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 40px;
            flex-shrink: 0;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--text);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-number.accent { color: var(--accent); }

        .stat-label {
            font-size: 0.78rem;
            color: var(--text-dim);
            text-align: center;
        }

        .stat-privacy .stat-number {
            font-size: 1.3rem;
        }

        .stat-privacy .stat-label {
            color: #666;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: var(--border);
            flex-shrink: 0;
        }

        @media (max-width: 640px) {
            .stats-bar { gap: 0; }
            .stat-item { padding: 12px 20px; }
            .stat-divider { display: none; }
        }
        /* ===== END STATS BAR ===== */

        /* ===== TESTIMONIAL ===== */
        .testimonial {
            padding: 80px 0;
        }

        .testimonial-inner {
            max-width: 720px;
            margin: 0 auto;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px 52px;
            position: relative;
            text-align: center;
        }

        .testimonial-inner::before {
            content: '';
            position: absolute;
            top: -1px; left: 50%;
            transform: translateX(-50%);
            width: 120px; height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .testimonial-stars {
            color: #f59e0b;
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .testimonial-inner blockquote {
            font-size: 1.1rem;
            line-height: 1.75;
            color: var(--text);
            font-style: italic;
            margin-bottom: 28px;
            font-family: 'DM Sans', sans-serif;
        }

        .testimonial-inner blockquote::before {
            content: '\201C';
            color: var(--accent);
            font-size: 2rem;
            line-height: 0;
            vertical-align: -0.4em;
            margin-right: 4px;
            font-style: normal;
        }

        .testimonial-inner blockquote::after {
            content: '\201D';
            color: var(--accent);
            font-size: 2rem;
            line-height: 0;
            vertical-align: -0.4em;
            margin-left: 4px;
            font-style: normal;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #ff9a6c);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .testimonial-meta {
            font-size: 0.75rem;
            color: var(--text-dim);
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .testimonial-inner { padding: 32px 24px; }
            .testimonial-inner blockquote { font-size: 1rem; }
            .testimonial { padding: 60px 0; }
        }
        /* ===== END TESTIMONIAL ===== */
        /* ===== FAQ SECTION ===== */
        .faq {
            padding: 80px 0;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .faq-header .section-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .faq-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .faq-header p {
            color: var(--text-dim);
            max-width: 460px;
            margin: 0 auto;
            line-height: 1.7;
            font-size: 1rem;
        }

        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-list details {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-list details[open] {
            border-color: rgba(255, 107, 53, 0.3);
        }

        .faq-list summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            list-style: none;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.4;
            color: var(--text);
            user-select: none;
        }

        .faq-list summary::-webkit-details-marker {
            display: none;
        }

        .faq-list summary::after {
            content: '+';
            color: var(--accent);
            font-size: 1.4rem;
            font-weight: 300;
            flex-shrink: 0;
            line-height: 1;
            transition: transform 0.2s;
        }

        .faq-list details[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-list details[open] summary {
            color: var(--text);
        }

        .faq-answer {
            padding: 0 24px 20px;
            color: var(--text-dim);
            font-size: 0.95rem;
            line-height: 1.75;
            border-top: 1px solid var(--border);
            margin-top: -1px;
            padding-top: 16px;
        }

        @media (max-width: 768px) {
            .faq { padding: 60px 0; }
            .faq-list summary { padding: 16px 18px; font-size: 0.95rem; }
            .faq-answer { padding: 0 18px 16px; padding-top: 14px; }
        }
        /* ===== END FAQ ===== */

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 80px 0;
        }

        .hiw-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .hiw-header .section-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .hiw-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .hiw-header p {
            color: var(--text-dim);
            max-width: 460px;
            margin: 0 auto;
            line-height: 1.7;
            font-size: 1rem;
        }

        .hiw-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .hiw-steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: calc(16.66% + 28px);
            right: calc(16.66% + 28px);
            height: 1px;
            background: linear-gradient(90deg, rgba(255,107,53,0.6), rgba(255,107,53,0.2), rgba(255,107,53,0.6));
        }

        .hiw-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 28px;
            position: relative;
        }

        .hiw-step-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            transition: border-color 0.3s, background 0.3s;
        }

        .hiw-step:hover .hiw-step-num {
            border-color: rgba(255, 107, 53, 0.4);
            background: var(--accent-glow);
        }

        .hiw-step-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .hiw-step h3 {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
            color: var(--text);
        }

        .hiw-step p {
            color: var(--text-dim);
            font-size: 0.875rem;
            line-height: 1.65;
        }

        @media (max-width: 768px) {
            .how-it-works { padding: 60px 0; }
            .hiw-steps {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hiw-steps::before { display: none; }
            .hiw-step { padding: 0; }
        }
        /* ===== END HOW IT WORKS ===== */