/* ═══════════════════════════════════════════════════
   List.Solutions — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
    --primary: #0f172a;
    --primary-mid: #1e293b;
    --primary-light: #334155;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59,130,246,0.15);
    --green: #10b981;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --text: #f8fafc;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background: var(--primary); color: var(--text); min-height: 100vh; overflow-x: hidden; overflow-wrap: break-word; word-break: break-word; }
main, section, article, aside, .page-content { min-width: 0; max-width: 100%; }
a { color: var(--accent-light); text-decoration: none; }

/* ── TOP BAR ── */
.top-bar { background: var(--accent); padding: 6px 20px; text-align: center; font-size: 0.78rem; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 6px; }
.top-bar-phone { color: #fff; text-decoration: none; font-weight: 600; letter-spacing: 0.3px; }
.top-bar-phone:hover { text-decoration: underline; }
.top-bar-email { color: rgba(255,255,255,0.85); text-decoration: none; }
.top-bar-email:hover { color: #fff; text-decoration: underline; }
.top-bar-sep { color: rgba(255,255,255,0.4); }
@media (max-width: 600px) {
    .top-bar-email, .top-bar-sep { display: none; }
}

/* ── NAV ── */
.nav { background: rgba(15,23,42,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0 20px; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; position: relative; z-index: 102; }
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav-logo .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: var(--gray-400); text-decoration: none; padding: 7px 14px; border-radius: 6px; font-size: 0.85rem; font-weight: 500; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-ab { background: rgba(59,130,246,0.1) !important; color: var(--accent-light) !important; border: 1px solid rgba(59,130,246,0.25); }
.nav-ab:hover { background: rgba(59,130,246,0.18) !important; border-color: rgba(59,130,246,0.4); }
.nav-sml { background: rgba(139,92,246,0.12) !important; color: #a78bfa !important; border: 1px solid rgba(139,92,246,0.3); padding: 7px 14px !important; border-radius: 8px; font-weight: 600; }
.nav-sml:hover { background: rgba(139,92,246,0.22) !important; border-color: rgba(139,92,246,0.5); color: #c4b5fd !important; }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 8px 20px !important; border-radius: 8px; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent-light) !important; }
.nav-cta-wrap { margin-left: 4px; }
.nav-divider { display: none; }
.nav-overlay { display: none; }

/* Hamburger button */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-right: -8px; -webkit-tap-highlight-color: transparent; }
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.nav-hamburger span { display: block; height: 2px; width: 100%; background: var(--gray-200); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* Hamburger → X animation */
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ── */
@media (max-width: 1200px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-divider { display: block; height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; }
    .nav-links {
        display: flex; flex-direction: column; gap: 0;
        align-items: stretch;
        position: absolute; top: 60px; left: -20px; right: -20px;
        height: calc(100vh - 60px); height: calc(100dvh - 60px);
        background: var(--primary-mid); padding: 20px 24px 32px;
        transform: translateX(calc(100% + 20px)); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto; z-index: 101;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a {
        display: block; padding: 14px 16px; border-radius: 10px;
        font-size: 1.05rem; font-weight: 500; color: var(--gray-300);
        text-align: left;
    }
    .nav-links a:hover, .nav-links a.active {
        color: var(--white); background: rgba(255,255,255,0.06);
    }
    .nav-ab {
        background: transparent !important;
        border: none !important;
        color: var(--accent-light) !important;
    }
    .nav-cta-wrap { margin: 16px 0 0; padding-top: 8px; }
    .nav-cta {
        display: block !important; text-align: center;
        padding: 16px 20px !important; border-radius: 12px !important;
        font-size: 1.05rem !important; font-weight: 600;
        width: 100%;
    }
    .nav-overlay {
        display: block; position: absolute; top: 60px; left: -20px; right: -20px;
        height: calc(100vh - 60px); height: calc(100dvh - 60px);
        z-index: 99; background: rgba(0,0,0,0.6);
        opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .nav-open .nav-overlay { opacity: 1; pointer-events: auto; }
}

/* ── HERO ── */
.hero { padding: 80px 20px 70px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 60%); pointer-events: none; }
.hero-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: var(--accent-light); padding: 6px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 24px; position: relative; }
.hero-chip .pulse { 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-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; line-height: 1.15; margin-bottom: 18px; position: relative; }
.hero h1 em { font-style: normal; color: var(--accent-light); }
.hero > p { font-size: 1.1rem; color: var(--gray-400); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; font-weight: 300; position: relative; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; position: relative; }
.hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--white); }
.hero-stat-label { font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }

/* Hero CTA buttons */
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 36px; position: relative; flex-wrap: wrap; }
.hero-btn-primary { font-size: 1.05rem; padding: 14px 32px; }
.hero-btn-secondary { font-size: 1.05rem; padding: 14px 32px; background: transparent; border: 1px solid rgba(255,255,255,0.15); }
.hero-btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

/* AI Advisor Banner */
.ai-advisor-banner { padding: 60px 20px; background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(139,92,246,0.04) 100%); border-top: 1px solid rgba(59,130,246,0.1); border-bottom: 1px solid rgba(59,130,246,0.1); }
.ai-banner-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ai-banner-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); color: var(--accent-light); padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.ai-banner-text h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; line-height: 1.25; margin-bottom: 14px; }
.ai-banner-text h2 em { font-style: normal; color: var(--accent-light); }
.ai-banner-text p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin-bottom: 22px; }
.ai-banner-btn { font-size: 0.95rem; padding: 12px 28px; }

/* AI preview — brief/result cards */
.ai-banner-preview { display: flex; flex-direction: column; gap: 12px; }
.ab-preview-card { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 16px 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.ab-preview-card.ab-preview-result { border-color: rgba(59,130,246,0.2); background: linear-gradient(135deg, var(--primary-mid), rgba(59,130,246,0.06)); }
.ab-preview-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 10px; }
.ab-preview-brief { display: flex; flex-direction: column; gap: 6px; }
.ab-preview-row { display: flex; align-items: baseline; gap: 8px; font-size: 0.8rem; line-height: 1.4; }
.ab-preview-key { flex-shrink: 0; color: var(--gray-500); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.3px; min-width: 72px; }
.ab-preview-row span:last-child { color: var(--gray-200); }
.ab-preview-val-accent { color: var(--accent-light) !important; font-weight: 600; }

/* CTA buttons pair */
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline { background: transparent !important; border: 1px solid rgba(255,255,255,0.2) !important; color: var(--gray-200) !important; }
.btn-outline:hover { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.35) !important; }

/* ── SEARCH ── */
.search-section { background: var(--primary-mid); padding: 28px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.search-wrapper { max-width: 560px; margin: 0 auto; position: relative; }
.search-container { position: relative; }
.search-container input { width: 100%; padding: 14px 18px 14px 46px; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; background: rgba(255,255,255,0.04); color: var(--white); font-size: 1rem; font-family: 'DM Sans', sans-serif; transition: all 0.3s; }
.search-container input::placeholder { color: var(--gray-500); }
.search-container input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.06); box-shadow: 0 0 24px rgba(59,130,246,0.1); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1rem; }
.search-count { text-align: center; margin-top: 10px; color: var(--gray-500); font-size: 0.84rem; }
.search-count strong { color: var(--accent-light); }

/* ── SEARCH DROPDOWN ── */
.search-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.1); border-top: none; border-radius: 0 0 10px 10px; max-height: 420px; overflow-y: auto; z-index: 50; display: none; box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.search-dropdown.open { display: block; }
.dd-section { padding: 6px 0; }
.dd-section + .dd-section { border-top: 1px solid rgba(255,255,255,0.06); }
.dd-label { padding: 8px 16px 4px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-500); font-weight: 600; }
.dd-item { display: flex; align-items: center; gap: 10px; padding: 9px 16px; text-decoration: none; color: var(--text); transition: background 0.15s; cursor: pointer; }
.dd-item:hover { background: rgba(255,255,255,0.05); }
.dd-emoji { font-size: 1.1rem; flex-shrink: 0; width: 28px; text-align: center; }
.dd-text { flex: 1; font-size: 0.88rem; color: var(--gray-100); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dd-meta { font-size: 0.75rem; color: var(--gray-500); flex-shrink: 0; white-space: nowrap; }
.dd-tag { display: inline-block; background: rgba(59,130,246,0.12); color: var(--accent-light); padding: 1px 7px; border-radius: 4px; font-size: 0.68rem; font-weight: 600; margin-left: 6px; vertical-align: middle; letter-spacing: 0.3px; }
.dd-tag-seg { background: rgba(255,255,255,0.07); color: var(--gray-400); }
.dd-viewall { display: block; padding: 12px 16px; text-align: center; color: var(--accent-light); font-size: 0.85rem; font-weight: 600; text-decoration: none; border-top: 1px solid rgba(255,255,255,0.06); transition: background 0.15s; }
.dd-viewall:hover { background: rgba(59,130,246,0.06); }
.card-tag { display: inline-block; background: rgba(59,130,246,0.12); color: var(--accent-light); padding: 2px 8px; border-radius: 4px; font-size: 0.65rem; font-weight: 600; margin-left: 6px; vertical-align: middle; letter-spacing: 0.3px; }

/* ── WHY US ── */
.why-us { max-width: 1100px; margin: 0 auto; padding: 60px 20px 20px; text-align: center; }
.why-us h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 10px; }
.why-us h2 em { font-style: normal; color: var(--accent-light); }
.why-us-sub { color: var(--gray-400); font-size: 1rem; font-weight: 300; max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.why-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 28px 22px; text-align: left; transition: border-color 0.25s; }
.why-card:hover { border-color: rgba(59,130,246,0.2); }
.why-icon { font-size: 1.6rem; margin-bottom: 12px; }
.why-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--gray-100); }
.why-card p { color: var(--gray-400); font-size: 0.87rem; line-height: 1.65; font-weight: 300; }
.why-us-cta { margin-top: 28px; font-size: 0.92rem; }
.why-us-cta a { color: var(--accent-light); font-weight: 500; text-decoration: none; transition: color 0.2s; }
.why-us-cta a:hover { color: var(--white); }

/* ── BLOG PREVIEW ── */
.blog-preview { max-width: 1100px; margin: 0 auto; padding: 50px 20px 20px; }
.blog-preview h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 28px; text-align: center; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.blog-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 26px 22px; text-decoration: none; color: var(--text); display: block; transition: all 0.25s; }
.blog-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.blog-tag { display: inline-block; background: var(--accent-glow); color: var(--accent-light); padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.blog-card h3 { font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 10px; color: var(--gray-100); }
.blog-card p { color: var(--gray-400); font-size: 0.85rem; line-height: 1.65; font-weight: 300; margin-bottom: 14px; }
.blog-read { color: var(--accent-light); font-size: 0.82rem; font-weight: 600; }
.featured-post { display: block; background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08)); border: 1px solid rgba(59,130,246,0.2); border-radius: 14px; padding: 32px 30px; margin-bottom: 22px; text-decoration: none; color: var(--text); transition: all 0.25s; }
.featured-post:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(59,130,246,0.12); }
.featured-badge { display: inline-block; background: rgba(59,130,246,0.15); color: var(--accent-light); padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.featured-post h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--gray-100); }
.featured-post p { color: var(--gray-300); font-size: 0.9rem; line-height: 1.65; font-weight: 300; margin-bottom: 14px; max-width: 800px; }

/* ── HOW IT WORKS ── */
.how { max-width: 1000px; margin: 0 auto; padding: 60px 20px 20px; text-align: center; }
.how.how-prominent { max-width: 100%; padding: 50px 24px 40px; background: var(--primary-mid); }
.how.how-prominent .steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 1100px; margin: 0 auto; }
.how.how-prominent .step { flex: 1; max-width: 220px; padding: 0 12px; }
.step-arrow { color: var(--accent); font-size: 1.5rem; font-weight: 700; margin-top: 28px; flex-shrink: 0; padding: 0 4px; }
.how h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 36px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step-num { width: 40px; height: 40px; background: var(--accent); color: var(--white); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; margin-bottom: 14px; }
.step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--gray-500); font-size: 0.87rem; line-height: 1.6; font-weight: 300; }

/* ── CATEGORIES ── */
.main { max-width: 1200px; margin: 0 auto; padding: 40px 20px 30px; }
/* ── SEGMENT ACCORDION ── */
.segment-accordion { margin-bottom: 8px; }
.section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 0; margin-top: 0; padding: 16px 0; cursor: pointer; user-select: none; transition: opacity 0.2s; }
.section-header:hover { opacity: 0.85; }
.section-header h2 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; white-space: nowrap; min-width: 0; }
.section-header .line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent); }
.section-header .badge { background: var(--accent-glow); color: var(--accent-light); padding: 4px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.section-header .accordion-arrow { color: var(--gray-500); font-size: 0.85rem; transition: transform 0.3s ease; display: flex; align-items: center; }
.segment-accordion.open .accordion-arrow { transform: rotate(180deg); }
.cards-wrap { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.segment-accordion.open .cards-wrap { max-height: 6000px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; padding-bottom: 36px; padding-top: 14px; }
.card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 15px 17px; text-decoration: none; color: var(--text); display: block; transition: all 0.25s ease; position: relative; overflow: hidden; }
.card::after { content: '\2192'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%) translateX(6px); opacity: 0; color: var(--accent); font-size: 1rem; transition: all 0.25s; }
.card:hover { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.card:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.card-icon { font-size: 1.2rem; margin-bottom: 5px; display: block; }
.card-name { font-weight: 600; font-size: 0.9rem; line-height: 1.4; }
.card-sub { font-size: 0.76rem; color: var(--gray-500); margin-top: 2px; }
.no-results { text-align: center; padding: 60px 20px; color: var(--gray-500); font-size: 1rem; display: none; }

/* ── BREADCRUMB ── */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 20px 20px 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; font-size: 0.84rem; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before { content: '/'; color: var(--gray-600); margin-right: 4px; }
.breadcrumb a { color: var(--gray-400); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb .current { color: var(--gray-200); }

/* ── CATEGORY PAGE ── */
.category-hero { max-width: 1200px; margin: 0 auto; padding: 40px 20px 0; }
.category-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 400; margin-bottom: 10px; }
.category-hero .segment-badge { display: inline-block; background: var(--accent-glow); color: var(--accent-light); padding: 4px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; }
.category-hero .listing-count { color: var(--gray-400); font-size: 0.95rem; font-weight: 300; }

/* ── LISTINGS TABLE ── */
.listings-section { max-width: 1200px; margin: 0 auto; padding: 30px 20px; }
.listings-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.listings-search { position: relative; flex: 1; max-width: 400px; }
.listings-search input { width: 100%; padding: 10px 14px 10px 38px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; background: rgba(255,255,255,0.04); color: var(--white); font-size: 0.9rem; font-family: 'DM Sans', sans-serif; }
.listings-search input::placeholder { color: var(--gray-500); }
.listings-search input:focus { outline: none; border-color: var(--accent); }
.listings-search .search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 0.85rem; }
.sort-controls { display: flex; gap: 8px; align-items: center; }
.sort-controls label { color: var(--gray-500); font-size: 0.84rem; }
.sort-controls select { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--white); padding: 8px 12px; border-radius: 8px; font-size: 0.84rem; font-family: 'DM Sans', sans-serif; }
.sort-controls select:focus { outline: none; border-color: var(--accent); }

.listings-table { width: 100%; border-collapse: collapse; }
.listings-table th { text-align: left; padding: 12px 16px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); border-bottom: 1px solid rgba(255,255,255,0.06); }
.listings-table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 0.9rem; vertical-align: top; }
.listings-table tr:hover { background: rgba(255,255,255,0.02); }
.listings-table .list-name { font-weight: 600; color: var(--text); }
.listings-table .list-name a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.listings-table .list-name a:hover { color: var(--accent-light); }
.listings-table .list-desc { color: var(--gray-400); font-size: 0.84rem; font-weight: 300; line-height: 1.6; }
.listings-table .list-universe { color: var(--gray-200); font-weight: 500; white-space: nowrap; }

/* Responsive table */
@media (max-width: 768px) {
    .listings-table thead { display: none; }
    .listings-table tr { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .listings-table td { display: block; padding: 4px 0; border: none; }
    .listings-table td:first-child { padding-bottom: 6px; }
    .listings-table td::before { content: attr(data-label); display: block; font-size: 0.72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
    .listings-table td.list-actions::before { display: none; }
}

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 30px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: 6px; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.pagination a { color: var(--gray-400); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); text-decoration: none; }
.pagination a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.pagination .active { color: var(--white); background: var(--accent); border: 1px solid var(--accent); }

/* ── BLOG INDEX ── */
.blog-index { max-width: 780px; margin: 0 auto; padding: 0 20px 40px; }
.blog-index-card { display: block; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 28px 26px; margin-bottom: 16px; text-decoration: none; color: var(--text); transition: all 0.25s; }
.blog-index-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.blog-index-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-date { color: var(--gray-500); font-size: 0.8rem; }
.blog-index-card h2 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; margin-bottom: 10px; color: var(--gray-100); }
.blog-index-card p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; font-weight: 300; margin-bottom: 12px; }

/* ── BLOG ARTICLE ── */
.blog-article { max-width: 720px; margin: 0 auto; padding: 30px 20px 60px; }
.blog-article-header { margin-bottom: 36px; }
.blog-article-header h1 { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 14px 0 12px; line-height: 1.25; }
.blog-article-meta { color: var(--gray-500); font-size: 0.84rem; display: flex; gap: 8px; }
.blog-article-body { color: var(--gray-300); line-height: 1.85; font-weight: 300; font-size: 0.96rem; }
.blog-article-body h2 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--gray-100); margin: 36px 0 14px; }
.blog-article-body h3 { font-size: 1.05rem; font-weight: 600; color: var(--gray-200); margin: 28px 0 10px; }
.blog-article-body p { margin-bottom: 18px; }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 18px 24px; }
.blog-article-body li { margin-bottom: 8px; }
.blog-article-body strong { color: var(--gray-100); font-weight: 600; }
.blog-article-cta { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 32px; text-align: center; margin-top: 48px; }
.blog-article-cta h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 10px; }
.blog-article-cta p { color: var(--gray-400); font-size: 0.9rem; font-weight: 300; margin-bottom: 20px; line-height: 1.6; }

/* ── SEO CONTENT ── */
.seo-content { max-width: 780px; margin: 0 auto; padding: 50px 20px 50px; border-top: 1px solid rgba(255,255,255,0.04); }
.seo-content h2 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 12px; color: var(--gray-200); }
.seo-content p { color: var(--gray-400); line-height: 1.8; font-weight: 300; margin-bottom: 22px; font-size: 0.93rem; }

/* ── FAQ ── */
.faq { max-width: 780px; margin: 0 auto; padding: 0 20px 60px; }
.faq h2 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 28px; text-align: center; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 20px 0; cursor: pointer; }
.faq-q { font-weight: 600; font-size: 0.98rem; color: var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.faq-q .toggle { color: var(--accent); font-size: 1.2rem; transition: transform 0.3s; }
.faq-q .toggle.open { transform: rotate(45deg); }
.faq-a { color: var(--gray-400); line-height: 1.7; font-weight: 300; font-size: 0.9rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; padding-top: 12px; }

/* ── CTA ── */
.cta-section { text-align: center; padding: 70px 20px; background: linear-gradient(180deg, transparent, rgba(59,130,246,0.04)); border-top: 1px solid rgba(255,255,255,0.04); }
.cta-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 12px; }
.cta-section p { color: var(--gray-400); margin-bottom: 28px; font-weight: 300; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.25s; }
.btn:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.25); }

/* ── FOOTER ── */
.footer { text-align: center; padding: 32px 20px 24px; border-top: 1px solid rgba(255,255,255,0.04); color: var(--gray-500); font-size: 0.82rem; }
.footer a { color: var(--accent-light); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer-main { margin-bottom: 10px; }
.footer-contact { margin-top: 8px; }
.footer-contact a { color: var(--gray-400); }
.footer-contact a:hover { color: var(--accent-light); }
.footer-sep { margin: 0 8px; color: var(--gray-600); }
.footer-links { margin-bottom: 10px; font-size: 0.8rem; }
.footer-links a { color: var(--gray-500); }
.footer-links a:hover { color: var(--accent-light); }
.footer-legal { margin-top: 4px; color: var(--gray-600); font-size: 0.78rem; }

/* ── FREE GUIDE / LEAD MAGNET ── */
.guide-hero { padding: 60px 24px; }
.guide-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: start; }
.guide-badge { display: inline-block; background: rgba(59,130,246,0.1); color: var(--accent); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.guide-hero h1 { font-size: 2.2rem; line-height: 1.25; margin-bottom: 16px; font-family: 'DM Serif Display', serif; }
.guide-subtitle { color: var(--gray-400); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.guide-highlights { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.guide-highlights li { color: var(--gray-300); font-size: 0.92rem; font-weight: 300; }
.guide-form-card { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 32px 28px; }
.guide-form-card h2 { font-size: 1.3rem; margin-bottom: 6px; font-family: 'DM Serif Display', serif; }
.guide-form-sub { color: var(--gray-400); font-size: 0.88rem; margin-bottom: 20px; font-weight: 300; }
.guide-form { display: flex; flex-direction: column; gap: 12px; }
.guide-form-row input, .guide-form-row select {
    width: 100%; background: var(--primary); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s;
    box-sizing: border-box;
}
.guide-form-row input::placeholder { color: var(--gray-500); }
.guide-form-row input:focus, .guide-form-row select:focus { border-color: rgba(59,130,246,0.4); }
.guide-form-row select { color: var(--gray-400); cursor: pointer; appearance: auto; }
.guide-submit-btn {
    background: var(--accent); color: white; border: none; border-radius: 10px;
    padding: 14px; font-size: 1rem; font-weight: 600; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: background 0.2s; width: 100%;
}
.guide-submit-btn:hover { background: var(--accent-light); }
.guide-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.guide-form-note { color: var(--gray-500); font-size: 0.78rem; text-align: center; margin-top: 4px; }
.guide-success { text-align: center; padding: 20px 0; }
.guide-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.guide-success h3 { margin-bottom: 8px; }
.guide-success p { color: var(--gray-400); font-size: 0.9rem; font-weight: 300; }
.guide-success a { color: var(--accent); }

.guide-preview { padding: 60px 24px; background: var(--primary-mid); }
.guide-preview-inner { max-width: 1000px; margin: 0 auto; }
.guide-preview h2 { text-align: center; font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 40px; }
.guide-chapters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-chapter { background: var(--primary); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; }
.guide-chapter-num { color: var(--accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }
.guide-chapter h3 { font-size: 1.05rem; margin: 8px 0; }
.guide-chapter p { color: var(--gray-400); font-size: 0.87rem; font-weight: 300; line-height: 1.6; }

@media (max-width: 768px) {
    .guide-hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .guide-hero h1 { font-size: 1.7rem; }
    .guide-chapters { grid-template-columns: 1fr; }
}

/* ── LEGAL PAGES ── */
.legal-page h2 { margin-top: 36px; }
.legal-page h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 8px; color: var(--gray-300); font-family: 'DM Sans', sans-serif; }
.legal-page ul { color: var(--gray-400); line-height: 1.8; font-weight: 300; margin-bottom: 18px; font-size: 0.95rem; padding-left: 24px; }
.legal-page li { margin-bottom: 6px; }
.legal-updated { color: var(--gray-500); font-size: 0.88rem; font-style: italic; margin-bottom: 28px; }

/* ── TRUST BANNER ── */
.trust-banner {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px;
    margin-bottom: 36px; padding: 0;
}
.trust-banner-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(59,130,246,0.04); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 12px; padding: 20px;
}
.trust-banner-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.trust-banner-item strong { display: block; font-size: 0.9rem; color: var(--gray-100); margin-bottom: 4px; }
.trust-banner-item p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.6; font-weight: 300; margin: 0; }
@media (max-width: 600px) {
    .trust-banner { grid-template-columns: minmax(0, 1fr); }
}

/* ── ABOUT PAGE ── */
.page-content { max-width: 780px; margin: 0 auto; padding: 50px 20px; }
.page-content h1 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 24px; }
.page-content h2 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; color: var(--gray-200); }
.page-content p { color: var(--gray-400); line-height: 1.8; font-weight: 300; margin-bottom: 18px; font-size: 0.95rem; }
.page-content a { color: var(--accent-light); }

/* ── CONTACT FORM PAGE ── */
.cf-page { max-width: 1100px; margin: 0 auto; padding: 0 20px 60px; }
.cf-hero { text-align: center; padding: 48px 20px 36px; }
.cf-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cf-hero p { color: var(--gray-400); font-size: 1.02rem; font-weight: 300; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.cf-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }

/* ── Form main column ── */
.cf-main { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 32px; }

.cf-inquiry-banner { display: flex; align-items: center; gap: 14px; background: var(--accent-glow); border: 1px solid rgba(59,130,246,0.2); border-radius: 10px; padding: 16px 18px; margin-bottom: 24px; min-width: 0; overflow: hidden; }
.cf-inquiry-icon { font-size: 1.4rem; flex-shrink: 0; }
.cf-inquiry-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cf-inquiry-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); font-weight: 600; }
.cf-inquiry-text strong { display: block; font-size: 0.95rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cf-inquiry-label { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cf-inquiry-meta { font-size: 0.82rem; color: var(--gray-400); }

.cf-honeypot { position: absolute; left: -9999px; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { margin-bottom: 20px; }
.cf-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-200); margin-bottom: 7px; }
.cf-req { color: var(--accent-light); }
.cf-field input,
.cf-field select,
.cf-field textarea {
    width: 100%; padding: 11px 14px; background: var(--primary); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; color: var(--text); font-family: inherit; font-size: 0.92rem; transition: border-color 0.2s;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--gray-500); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.cf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.cf-field select option { background: var(--primary-mid); color: var(--text); }
.cf-field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.cf-field textarea.cf-short { min-height: 80px; }

.cf-submit {
    width: 100%; padding: 14px; background: var(--accent); color: white; border: none; border-radius: 10px;
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 4px;
}
.cf-submit:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59,130,246,0.3); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Success state ── */
.cf-success { text-align: center; padding: 48px 20px; }
.cf-success-icon { width: 56px; height: 56px; background: rgba(16,185,129,0.15); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: var(--green); }
.cf-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 12px; }
.cf-success p { color: var(--gray-400); font-weight: 300; margin-bottom: 24px; line-height: 1.7; }

/* ── Sidebar ── */
.cf-sidebar { display: flex; flex-direction: column; gap: 16px; }
.cf-sidebar-card { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; }
.cf-sidebar-card h3 { font-size: 0.95rem; margin-bottom: 10px; color: var(--gray-200); }
.cf-sidebar-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; font-weight: 300; margin-bottom: 0; }

.cf-email-link {
    display: block; margin-top: 12px; padding: 10px 16px; background: var(--accent-glow); border: 1px solid rgba(59,130,246,0.2);
    border-radius: 8px; text-align: center; font-weight: 600; font-size: 0.92rem; color: var(--accent-light); transition: all 0.2s;
}
.cf-email-link:hover { background: rgba(59,130,246,0.2); text-decoration: none; }

.cf-steps { list-style: none; counter-reset: step; }
.cf-steps li { counter-increment: step; position: relative; padding-left: 36px; margin-bottom: 16px; }
.cf-steps li:last-child { margin-bottom: 0; }
.cf-steps li::before {
    content: counter(step); position: absolute; left: 0; top: 0;
    width: 24px; height: 24px; background: var(--accent-glow); border: 1px solid rgba(59,130,246,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; color: var(--accent-light);
}
.cf-steps li strong { display: block; font-size: 0.85rem; color: var(--gray-200); margin-bottom: 2px; }
.cf-steps li span { font-size: 0.78rem; color: var(--gray-500); }

/* ── Contact responsive ── */
@media (max-width: 768px) {
    .cf-layout { grid-template-columns: minmax(0, 1fr); padding: 0 16px; }
    .cf-row { grid-template-columns: minmax(0, 1fr); }
    .cf-main { padding: 24px 18px; min-width: 0; }
    .cf-sidebar { order: 2; min-width: 0; }
    .cf-sidebar-card { min-width: 0; }
}

/* ── GET FREE COUNTS ── */
.gfc-badge {
    display: inline-block; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25);
    color: var(--green); padding: 6px 16px; border-radius: 20px; font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.3px; margin-bottom: 16px;
}
.gfc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.gfc-pills .ab-option-pill { font-size: 0.82rem; padding: 8px 16px; }
.gfc-pills-single .ab-option-pill.selected ~ .ab-option-pill { pointer-events: auto; }
.gfc-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0 24px; }
.gfc-geo-detail { margin-top: 10px; }
.gfc-geo-detail .cf-field-input {
    width: 100%; padding: 10px 14px; border-radius: 8px; font-size: 0.88rem;
    border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
    color: var(--text); font-family: 'DM Sans', sans-serif; transition: border 0.2s, box-shadow 0.2s;
}
.gfc-geo-detail .cf-field-input::placeholder { color: var(--gray-500); }
.gfc-geo-detail .cf-field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }

/* ── AUDIENCE BUILDER FORM SECTIONS ── */
.ab-form-section { margin-bottom: 8px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ab-form-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.ab-section-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ab-section-num {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2); color: var(--accent-light); display: flex; align-items: center;
    justify-content: center; font-size: 0.82rem; font-weight: 700; margin-top: 2px;
}
.ab-section-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.ab-section-sub { font-size: 0.82rem; color: var(--gray-400); font-weight: 300; }

/* ── 404 PAGE ── */
.error-page { text-align: center; padding: 120px 20px; }
.error-page h1 { font-family: 'DM Serif Display', serif; font-size: 6rem; color: var(--accent); margin-bottom: 16px; }
.error-page h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 16px; }
.error-page p { color: var(--gray-400); margin-bottom: 32px; font-weight: 300; }

/* ── SEARCH PAGE ── */
.search-all-link { color: var(--accent-light); font-size: 0.84rem; }
.search-all-link:hover { text-decoration: underline; }

/* Search page hero */
.sp-hero { max-width: 900px; margin: 0 auto; padding: 40px 20px 0; text-align: center; }
.sp-hero h1 { font-family: 'DM Serif Display', serif; font-size: 2rem; margin-bottom: 6px; }
.sp-subtitle { color: var(--gray-400); font-size: 0.95rem; }

/* Search input bar */
.sp-search-bar { max-width: 700px; margin: 24px auto 0; padding: 0 20px; }
.sp-input-wrap { position: relative; }
.sp-input-wrap input { width: 100%; padding: 16px 44px 16px 48px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; background: rgba(255,255,255,0.04); color: var(--white); font-size: 1.05rem; font-family: 'DM Sans', sans-serif; transition: all 0.3s; }
.sp-input-wrap input::placeholder { color: var(--gray-500); }
.sp-input-wrap input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.06); box-shadow: 0 0 30px rgba(59,130,246,0.12); }
.sp-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.1rem; pointer-events: none; }
.sp-clear { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gray-400); font-size: 1.4rem; cursor: pointer; display: none; padding: 4px 8px; line-height: 1; transition: color 0.2s; }
.sp-clear:hover { color: var(--white); }

/* Segment filter tabs */
.sp-filters { display: flex; justify-content: center; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.sp-filter { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; background: transparent; color: var(--gray-400); font-size: 0.82rem; font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.sp-filter:hover { border-color: rgba(255,255,255,0.15); color: var(--gray-200); }
.sp-filter.active { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); color: var(--accent-light); }
.sp-filter-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sp-filter-num { font-weight: 400; opacity: 0.7; }

/* Status text */
.sp-status { text-align: center; margin-top: 12px; color: var(--gray-500); font-size: 0.84rem; min-height: 20px; }

/* Results container */
.sp-results { max-width: 960px; margin: 0 auto; padding: 20px 20px 40px; min-height: 400px; }
.sp-section { margin-bottom: 36px; animation: spFadeIn 0.25s ease; }
@keyframes spFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.sp-section-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.sp-section-head h2 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--gray-200); }
.sp-section-count { font-size: 0.82rem; color: var(--gray-500); font-weight: 400; background: rgba(255,255,255,0.04); padding: 2px 10px; border-radius: 100px; }

/* Category result cards */
.sp-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.sp-cat-card { display: block; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 16px; text-decoration: none; color: var(--text); transition: all 0.25s; }
.sp-cat-card:hover { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.sp-cat-card.sp-kb-active { border-color: var(--accent); background: rgba(59,130,246,0.08); }
.sp-cat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sp-cat-emoji { font-size: 1.2rem; }
.sp-seg-tag { display: inline-block; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; padding: 2px 8px; border-radius: 4px; background: rgba(255,255,255,0.06); color: var(--seg-color, var(--gray-400)); }
.sp-cat-name { font-weight: 600; font-size: 0.9rem; line-height: 1.35; margin-bottom: 4px; }
.sp-cat-name mark { background: rgba(59,130,246,0.2); color: var(--white); border-radius: 2px; padding: 0 1px; }
.sp-cat-meta { font-size: 0.76rem; color: var(--gray-500); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sp-prefix-tag { display: inline-block; background: rgba(59,130,246,0.1); color: var(--accent-light); padding: 1px 6px; border-radius: 3px; font-size: 0.65rem; font-weight: 600; }

/* List result rows */
.sp-list-grid { display: flex; flex-direction: column; gap: 2px; }
.sp-result { display: flex; align-items: center; gap: 14px; padding: 13px 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 8px; text-decoration: none; color: var(--text); transition: all 0.2s; }
.sp-result:hover { background: rgba(255,255,255,0.05); border-color: rgba(59,130,246,0.15); }
.sp-result.sp-kb-active { background: rgba(59,130,246,0.08); border-color: var(--accent); }
.sp-result-emoji { font-size: 1.25rem; flex-shrink: 0; width: 36px; text-align: center; }
.sp-result-body { flex: 1; min-width: 0; }
.sp-result-title { font-size: 0.92rem; font-weight: 500; color: var(--gray-100); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-result-title mark { background: rgba(59,130,246,0.2); color: var(--white); border-radius: 2px; padding: 0 1px; }
.sp-result-meta { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.sp-result-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-right: 2px; }
.sp-result-arrow { color: var(--gray-600); font-size: 1.5rem; flex-shrink: 0; transition: all 0.2s; }
.sp-result:hover .sp-result-arrow { color: var(--accent-light); transform: translateX(2px); }

/* Show more */
.sp-show-more { text-align: center; margin-top: 20px; }
.btn-outline { display: inline-block; padding: 10px 28px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: var(--gray-200); background: transparent; font-size: 0.88rem; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); background: rgba(59,130,246,0.05); }

/* Empty state */
.sp-empty { text-align: center; padding: 60px 20px; animation: spFadeIn 0.3s ease; }
.sp-empty-icon { font-size: 2.5rem; margin-bottom: 16px; opacity: 0.4; }
.sp-empty h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--gray-200); }
.sp-empty p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; }
.sp-empty-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sp-empty-links a { padding: 8px 18px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--accent-light); font-size: 0.85rem; transition: all 0.2s; text-decoration: none; }
.sp-empty-links a:hover { border-color: var(--accent); background: rgba(59,130,246,0.05); }

/* Initial state */
.sp-initial { text-align: center; padding: 40px 20px 20px; }
.sp-initial-cards { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.sp-stat-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 24px 28px; min-width: 170px; flex: 1; max-width: 220px; transition: border-color 0.25s; }
.sp-stat-card:hover { border-color: rgba(255,255,255,0.1); }
.sp-stat-icon { width: 42px; height: 42px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 12px; }
.sp-stat-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 2px; }
.sp-stat-label { font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

/* Popular search tags */
.sp-popular { margin-top: 10px; }
.sp-popular h4 { font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; font-weight: 500; }
.sp-popular-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.sp-pop-tag { padding: 7px 18px; border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; color: var(--gray-300); font-size: 0.82rem; font-family: 'DM Sans', sans-serif; background: transparent; cursor: pointer; transition: all 0.2s; }
.sp-pop-tag:hover { border-color: var(--accent); color: var(--accent-light); background: rgba(59,130,246,0.04); }
.sp-hint { color: var(--gray-600); font-size: 0.76rem; margin-top: 28px; letter-spacing: 0.2px; }

/* Search page responsive */
@media (max-width: 600px) {
    .sp-initial-cards { gap: 10px; }
    .sp-stat-card { min-width: 140px; padding: 18px 16px; }
    .sp-stat-num { font-size: 1.3rem; }
    .sp-cat-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
    .sp-filters { gap: 4px; }
    .sp-filter { padding: 6px 12px; font-size: 0.78rem; }
    .sp-result { padding: 10px 12px; gap: 10px; }
    .sp-result-emoji { width: 28px; font-size: 1rem; }
    .sp-hint { display: none; }
}

/* ── LISTING PAGE ── */
.lp-layout { max-width: 1200px; margin: 0 auto; padding: 30px 20px 40px; display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.lp-main { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.lp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.lp-emoji { font-size: 2rem; }
.lp-seg-badge { display: inline-block; background: var(--accent-glow); color: var(--accent-light); padding: 4px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.lp-prefix-badge { display: inline-block; background: rgba(255,255,255,0.06); color: var(--gray-400); padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; margin-left: 6px; }
.lp-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 400; line-height: 1.25; margin-bottom: 20px; overflow-wrap: break-word; word-break: break-word; }
.lp-universe { display: inline-flex; flex-direction: column; background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15); border-radius: 10px; padding: 14px 20px; margin-bottom: 16px; max-width: 100%; }
.lp-universe-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-500); margin-bottom: 4px; }
.lp-universe-value { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--accent-light); }
.lp-desc-section { margin-bottom: 28px; }
.lp-desc-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--gray-200); margin-bottom: 10px; }
.lp-desc { color: var(--gray-400); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }
.lp-details { margin-bottom: 28px; }
.lp-details h2 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--gray-200); margin-bottom: 12px; }
.lp-table { width: 100%; border-collapse: collapse; }
.lp-table tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
.lp-table td { padding: 10px 12px; font-size: 0.9rem; }
.lp-table-label { color: var(--gray-500); font-weight: 500; width: 140px; font-size: 0.84rem; }
.lp-table a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
.lp-table a:hover { color: var(--white); }
.lp-cart-row { margin: 20px 0 8px; }
.lp-cart-btn { padding: 10px 24px !important; font-size: 0.92rem !important; font-weight: 600 !important; border-radius: 8px !important; background: #3b82f6 !important; color: #fff !important; border: none !important; cursor: pointer; transition: all 0.15s; box-shadow: 0 2px 8px rgba(59,130,246,0.3); }
.lp-cart-btn:hover { background: #2563eb !important; box-shadow: 0 4px 16px rgba(59,130,246,0.4); transform: translateY(-1px); }
.lp-cart-btn.in-cart { background: #10b981 !important; color: #fff !important; border-color: #10b981 !important; box-shadow: 0 2px 8px rgba(16,185,129,0.3); }
.lp-cta-box { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 28px; margin-top: 8px; }
.lp-cta-box h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 8px; }
.lp-cta-box p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; font-weight: 300; margin-bottom: 18px; }
.lp-cta-box strong { color: var(--gray-200); }

/* Listing page sidebar */
.lp-sidebar { display: flex; flex-direction: column; gap: 16px; }
.lp-sidebar-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 20px; }
.lp-sidebar-card h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 12px; color: var(--gray-200); }
.lp-sidebar-text { color: var(--gray-500); font-size: 0.84rem; line-height: 1.6; font-weight: 300; margin-bottom: 12px; }
.lp-sidebar-link { color: var(--accent-light); font-size: 0.84rem; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.lp-sidebar-link:hover { color: var(--white); }
.lp-sidebar-cta { background: rgba(59,130,246,0.04); border-color: rgba(59,130,246,0.12); }
.lp-related { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; max-height: 360px; overflow-y: auto; }
.lp-related-item { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; text-decoration: none; color: var(--gray-200); font-size: 0.84rem; transition: background 0.15s; }
.lp-related-item:hover { background: rgba(255,255,255,0.04); }
.lp-related-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-related-uni { color: var(--gray-500); font-size: 0.76rem; flex-shrink: 0; }
.lp-sidebar-viewall { display: block; text-align: center; padding: 10px; color: var(--accent-light); font-size: 0.82rem; font-weight: 600; text-decoration: none; border-top: 1px solid rgba(255,255,255,0.05); transition: background 0.15s; }
.lp-sidebar-viewall:hover { background: rgba(59,130,246,0.04); }

/* ── LISTING PAGE PRICE ── */
.lp-price { display: inline-flex; align-items: center; gap: 10px; background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); border-radius: 10px; padding: 12px 18px; margin-bottom: 28px; max-width: 100%; flex-wrap: wrap; }
.lp-price-tier { font-weight: 700; font-size: 1rem; letter-spacing: 1px; }
.lp-tier-1 { color: var(--green); }
.lp-tier-2 { color: #f59e0b; }
.lp-tier-3 { color: #ef4444; }
.lp-price-amount { font-size: 0.95rem; color: var(--gray-300); }
.lp-price-amount strong { color: var(--white); font-weight: 600; }

/* ── CATEGORY TABLE PRICE ── */
.listings-table .list-price { white-space: nowrap; }
.price-tag { display: inline-block; background: rgba(16,185,129,0.08); color: var(--green); padding: 3px 10px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; }
.price-contact { color: var(--gray-500); font-size: 0.82rem; font-style: italic; }

/* ── PRICING PAGE ── */
.pricing-intro { font-size: 1.05rem; color: var(--gray-300); line-height: 1.8; margin-bottom: 36px; }
.pricing-segments { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-bottom: 40px; }
.pricing-card { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 28px 24px; transition: border-color 0.25s; }
.pricing-card:hover { border-color: rgba(59,130,246,0.2); }
.pricing-card-icon { font-size: 2rem; margin-bottom: 10px; }
.pricing-card h2 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 8px; margin-top: 0; }
.pricing-range { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--green); margin-bottom: 6px; }
.pricing-unit { font-size: 1rem; color: var(--gray-400); }
.pricing-card-count { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 14px; }
.pricing-card p { color: var(--gray-400); font-size: 0.88rem; line-height: 1.65; font-weight: 300; margin-bottom: 14px; }
.pricing-card-link { color: var(--accent-light); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.pricing-card-link:hover { color: var(--white); }

/* Listing page responsive */
@media (max-width: 1200px) {
    .lp-layout { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .lp-sidebar { order: 2; }
}
@media (max-width: 768px) {
    .lp-layout { padding: 24px 16px 36px; gap: 20px; }
    .lp-universe { display: flex; max-width: 100%; }
    .lp-price { display: flex; max-width: 100%; }
    .lp-table-label { width: 110px; }
    .breadcrumb { padding: 16px 16px 0; }
    .breadcrumb ol { font-size: 0.78rem; gap: 2px; }
}
@media (max-width: 480px) {
    .lp-layout { padding: 16px 14px 30px; }
    .lp-header { gap: 8px; }
    .lp-emoji { font-size: 1.5rem; }
    .lp-title { font-size: 1.35rem; margin-bottom: 16px; }
    .lp-universe { padding: 10px 14px; margin-bottom: 12px; }
    .lp-universe-value { font-size: 1.2rem; }
    .lp-price { padding: 10px 14px; margin-bottom: 20px; gap: 8px; flex-wrap: wrap; }
    .lp-price-amount { font-size: 0.88rem; }
    .lp-desc { font-size: 0.88rem; line-height: 1.7; }
    .lp-desc-section { margin-bottom: 20px; }
    .lp-desc-section h2 { font-size: 1.05rem; }
    .lp-table td { padding: 8px 8px; font-size: 0.84rem; }
    .lp-table-label { width: 90px; font-size: 0.78rem; }
    .lp-cta-box { padding: 18px; }
    .lp-cta-box h3 { font-size: 1.05rem; }
    .lp-cta-box p { font-size: 0.85rem; }
    .lp-sidebar-card { padding: 16px; }
    .breadcrumb ol { font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════════════
   WHY LIST.SOLUTIONS PAGE
   ═══════════════════════════════════════════════════ */

.why-hero { padding: 70px 20px 60px; text-align: center; position: relative; overflow: hidden; }
.why-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 60%); pointer-events: none; }
.why-hero-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: var(--accent-light); padding: 6px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 24px; position: relative; }
.why-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; line-height: 1.2; margin-bottom: 18px; position: relative; }
.why-hero h1 em { font-style: normal; color: var(--accent-light); }
.why-hero > p { font-size: 1.05rem; color: var(--gray-400); max-width: 660px; margin: 0 auto; line-height: 1.7; font-weight: 300; position: relative; }

/* Sections */
.why-section { padding: 60px 20px; border-top: 1px solid rgba(255,255,255,0.04); }
.why-section-alt { background: var(--primary-mid); }
.why-section-inner { max-width: 800px; margin: 0 auto; }
.why-section-label { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--accent); opacity: 0.3; margin-bottom: 8px; }
.why-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 16px; color: var(--gray-100); }
.why-section p { color: var(--gray-400); line-height: 1.8; font-weight: 300; margin-bottom: 18px; font-size: 0.95rem; }
.why-section strong { color: var(--gray-200); font-weight: 600; }

/* Callout box */
.why-callout { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18); border-radius: 10px; padding: 20px 24px; margin-top: 24px; color: var(--gray-200); font-size: 0.95rem; line-height: 1.7; }
.why-callout strong { color: var(--accent-light); }

/* Platform grid */
.why-platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 28px; }
.why-platform-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 20px 18px; transition: border-color 0.25s; }
.why-platform-card:hover { border-color: rgba(59,130,246,0.2); }
.why-platform-icon { font-size: 1.4rem; margin-bottom: 8px; }
.why-platform-card strong { display: block; font-size: 0.9rem; color: var(--gray-100); margin-bottom: 6px; }
.why-platform-card span { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; font-weight: 300; }

/* Company grid */
.why-company-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 24px 0; }
.why-company-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 18px 16px; transition: border-color 0.25s; }
.why-company-card:hover { border-color: rgba(59,130,246,0.2); }
.why-company-card strong { display: block; font-size: 0.88rem; color: var(--gray-100); margin-bottom: 6px; }
.why-company-card span { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; font-weight: 300; }

/* Broker value cards */
.why-broker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 28px; }
.why-broker-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 24px 20px; transition: border-color 0.25s; }
.why-broker-card:hover { border-color: rgba(59,130,246,0.2); }
.why-broker-icon { font-size: 1.6rem; margin-bottom: 10px; }
.why-broker-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--gray-100); }
.why-broker-card p { color: var(--gray-400); font-size: 0.85rem; line-height: 1.65; font-weight: 300; margin-bottom: 0; }

/* Use case cards */
.why-usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 24px; }
.why-usecase-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 24px 20px; transition: border-color 0.25s; }
.why-usecase-card:hover { border-color: rgba(59,130,246,0.2); }
.why-usecase-icon { font-size: 1.6rem; margin-bottom: 10px; }
.why-usecase-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--gray-100); }
.why-usecase-card p { color: var(--gray-400); font-size: 0.85rem; line-height: 1.65; font-weight: 300; margin-bottom: 0; }

/* ═══════════════════════════════════════════════════
   AUDIENCE BUILDER
   ═══════════════════════════════════════════════════ */

.ab-hero { padding: 60px 20px 40px; text-align: center; position: relative; overflow: hidden; }
.ab-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 60%); pointer-events: none; }
.ab-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; line-height: 1.2; margin-bottom: 14px; position: relative; }
.ab-hero h1 em { font-style: normal; color: var(--accent-light); }
.ab-hero > p { font-size: 1rem; color: var(--gray-400); max-width: 600px; margin: 0 auto; line-height: 1.7; font-weight: 300; position: relative; }

/* Single-column layout */
.ab-container { max-width: 720px; margin: 0 auto; padding: 0 20px 40px; }

/* Chat panel */
.ab-chat-panel { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; }

/* Panel label */
.ab-panel-label {
    display: flex; align-items: center; gap: 8px; padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--accent-light); font-size: 0.88rem; font-weight: 600;
    background: rgba(59,130,246,0.04);
}
.ab-panel-dot {
    width: 8px; height: 8px; background: var(--green); border-radius: 50%;
    animation: pulse 2s infinite; flex-shrink: 0;
}

/* Trust bar under hero */
.ab-trust-bar {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    margin-top: 20px; position: relative;
}
.ab-trust-bar span {
    font-size: 0.82rem; color: var(--gray-400); font-weight: 400;
}

/* How it works section */
.ab-how-section { max-width: 900px; margin: 0 auto; padding: 50px 20px 10px; text-align: center; }
.ab-how-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 32px; }
.ab-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ab-how-step { text-align: center; }
.ab-how-num {
    width: 36px; height: 36px; background: var(--accent); color: white; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem; margin-bottom: 12px;
}
.ab-how-step h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-100); }
.ab-how-step p { color: var(--gray-400); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
@media (max-width: 600px) {
    .ab-how-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
    .ab-trust-bar { gap: 12px; }
    .ab-trust-bar span { font-size: 0.75rem; }
}

/* AI Advisor chat */
.ab-advisor { display: flex; flex-direction: column; height: 520px; }
.ab-chat-messages {
    flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px;
}
.ab-chat-messages::-webkit-scrollbar { width: 4px; }
.ab-chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.ab-msg { max-width: 88%; }
.ab-msg-user { align-self: flex-end; }
.ab-msg-ai { align-self: flex-start; }

.ab-msg-body {
    padding: 12px 16px; border-radius: 14px; font-size: 0.9rem; line-height: 1.65; font-weight: 300;
}
.ab-msg-user .ab-msg-body {
    background: var(--accent); color: white; border-bottom-right-radius: 4px;
}
.ab-msg-ai .ab-msg-body {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
    color: var(--gray-200); border-bottom-left-radius: 4px;
}
.ab-msg-ai .ab-msg-body p { margin: 0 0 10px; }
.ab-msg-ai .ab-msg-body p:last-child { margin-bottom: 0; }
.ab-msg-ai .ab-msg-body strong { color: var(--gray-100); font-weight: 600; }
.ab-msg-ai .ab-msg-body a { color: var(--accent-light); text-decoration: none; }
.ab-msg-ai .ab-msg-body a:hover { text-decoration: underline; }

/* Category links in chat (inline badges) */
.ab-cat-link {
    display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; margin: 2px 0;
    background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15);
    border-radius: 6px; color: var(--accent-light); font-size: 0.82rem; font-weight: 500;
    text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.ab-cat-link:hover { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.3); text-decoration: none; }
.ab-cat-link span { font-size: 0.7rem; }

/* Typing indicator */
.ab-dots span {
    display: inline-block; animation: abBounce 1.4s infinite; font-size: 1.5rem; line-height: 1;
    color: var(--gray-500);
}
.ab-dots span:nth-child(2) { animation-delay: 0.2s; }
.ab-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes abBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
}

/* Chat input bar */
.ab-chat-bar {
    display: flex; align-items: flex-end; gap: 8px; padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.15);
}
.ab-chat-bar textarea {
    flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; background: rgba(255,255,255,0.04); color: var(--text);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; resize: none; line-height: 1.5;
    max-height: 120px; transition: border-color 0.2s;
}
.ab-chat-bar textarea::placeholder { color: var(--gray-500); }
.ab-chat-bar textarea:focus { outline: none; border-color: var(--accent); }
.ab-send-btn {
    width: 42px; height: 42px; border-radius: 10px; border: none;
    background: var(--accent); color: white; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}
.ab-send-btn:hover { background: var(--accent-light); transform: scale(1.05); }
.ab-send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Request panel (appears after conversation) */
.ab-request-panel {
    margin-top: 24px; background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; overflow: hidden; max-height: 0; opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.ab-request-panel.ab-request-visible {
    max-height: 800px; opacity: 1;
}
.ab-request-header {
    padding: 24px 24px 0; text-align: center;
}
.ab-request-header h2 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 8px; }
.ab-request-header p { color: var(--gray-400); font-size: 0.88rem; line-height: 1.6; font-weight: 300; }

.ab-request-form { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 14px; }
.ab-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ab-form-field { display: flex; flex-direction: column; gap: 6px; }
.ab-form-field label {
    font-size: 0.78rem; font-weight: 600; color: var(--gray-200);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.ab-req { color: var(--accent-light); }
.ab-form-field input, .ab-form-field textarea {
    width: 100%; padding: 10px 14px; background: var(--primary); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; color: var(--text); font-family: inherit; font-size: 0.88rem; transition: border-color 0.2s;
}
.ab-form-field input::placeholder, .ab-form-field textarea::placeholder { color: var(--gray-500); }
.ab-form-field input:focus, .ab-form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.ab-form-field textarea { resize: vertical; line-height: 1.6; }

.ab-submit-btn {
    width: 100%; padding: 14px; background: var(--accent); color: white; border: none; border-radius: 10px;
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.25s; margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
}
.ab-submit-btn:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
.ab-submit-note { text-align: center; color: var(--gray-500); font-size: 0.78rem; margin-top: 4px; font-weight: 300; }

/* Success state */
.ab-success { text-align: center; padding: 40px 24px; }
.ab-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.ab-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 10px; }
.ab-success p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.6; font-weight: 300; margin-bottom: 8px; }
.ab-success-contact { font-size: 0.85rem; }
.ab-success-contact a { color: var(--accent-light); }

/* ── Audience Builder Wizard ── */
.ab-container-wizard { max-width: 780px; }

.ab-progress {
    display: flex; align-items: center; justify-content: center; gap: 0;
    padding: 0 10px 28px; flex-wrap: nowrap;
}
.ab-progress-line {
    flex: 1; max-width: 40px; height: 2px;
    background: rgba(255,255,255,0.08);
}
.ab-progress-step {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: default; opacity: 0.4; transition: all 0.25s;
}
.ab-progress-step.done { opacity: 0.7; cursor: pointer; }
.ab-progress-step.active { opacity: 1; }
.ab-progress-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 600; transition: all 0.25s;
}
.ab-progress-step.active .ab-progress-num {
    background: var(--accent); border-color: var(--accent); color: var(--white);
    box-shadow: 0 0 12px rgba(59,130,246,0.3);
}
.ab-progress-step.done .ab-progress-num {
    background: rgba(59,130,246,0.15); border-color: var(--accent); color: var(--accent-light);
}
.ab-progress-label { font-size: 0.68rem; font-weight: 500; color: var(--gray-500); white-space: nowrap; }
.ab-progress-step.active .ab-progress-label { color: var(--accent-light); }

/* Wizard steps */
.ab-wizard { position: relative; min-height: 300px; }
.ab-step {
    display: none; opacity: 0; transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.ab-step.active { display: block; opacity: 1; transform: translateY(0); }
.ab-step-out { opacity: 0; transform: translateY(-12px); }

.ab-step-title {
    font-family: 'DM Serif Display', serif; font-size: 1.35rem;
    margin-bottom: 8px; text-align: center;
}
.ab-step-sub {
    color: var(--gray-400); font-size: 0.88rem; text-align: center;
    margin-bottom: 24px; font-weight: 300; line-height: 1.6;
}

/* Option cards */
.ab-options-grid { display: grid; gap: 14px; margin-bottom: 20px; }
.ab-options-3 { grid-template-columns: repeat(3, 1fr); }
.ab-options-2 { grid-template-columns: repeat(2, 1fr); }
.ab-options-pills { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

.ab-option-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 24px 18px; text-align: center;
    cursor: pointer; transition: all 0.25s ease;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif; color: var(--text);
    appearance: none; -webkit-appearance: none; outline: none;
}
.ab-option-card:hover {
    background: rgba(59,130,246,0.05); border-color: rgba(59,130,246,0.2);
    transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.ab-option-card.selected {
    background: rgba(59,130,246,0.08); border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(59,130,246,0.15), 0 4px 16px rgba(59,130,246,0.12);
}
.ab-option-card-sm { padding: 18px 14px; }
.ab-option-icon { font-size: 1.8rem; line-height: 1; }
.ab-option-name { font-weight: 600; font-size: 0.95rem; }
.ab-option-desc { font-size: 0.78rem; color: var(--gray-400); line-height: 1.5; font-weight: 300; }
.ab-option-meta { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; margin-top: 2px; }

/* Option pills (channel step) */
.ab-option-pill {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 14px 18px;
    cursor: pointer; transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
    color: var(--gray-200); display: flex; align-items: center; gap: 8px;
    appearance: none; -webkit-appearance: none; outline: none;
}
.ab-option-pill:hover { border-color: rgba(59,130,246,0.25); background: rgba(59,130,246,0.04); }
.ab-option-pill.selected {
    background: rgba(59,130,246,0.1); border-color: var(--accent); color: var(--white);
    box-shadow: 0 0 0 2px rgba(59,130,246,0.12);
}
.ab-pill-icon { font-size: 1.1rem; }

/* Detail inputs */
.ab-detail-toggle { text-align: center; margin-bottom: 16px; }
.ab-detail-expand {
    background: none; border: none; color: var(--gray-500); font-size: 0.82rem;
    cursor: pointer; font-family: 'DM Sans', sans-serif; padding: 4px 8px;
    transition: color 0.2s;
}
.ab-detail-expand:hover { color: var(--accent-light); }
.ab-detail-wrap { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.ab-detail-wrap.open { max-height: 120px; margin-top: 10px; }
.ab-detail-input {
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif; resize: none; line-height: 1.6;
}
.ab-detail-input::placeholder { color: var(--gray-500); }
.ab-detail-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }

/* Geography detail */
.ab-geo-detail { margin-top: 16px; padding: 0 4px; }
.ab-geo-label { display: block; font-size: 0.82rem; color: var(--gray-400); margin-bottom: 8px; font-weight: 500; }
.ab-geo-input {
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
}
.ab-geo-input::placeholder { color: var(--gray-500); }
.ab-geo-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }

/* Step actions */
.ab-step-actions {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.04);
}
.ab-back-btn {
    background: none; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    padding: 10px 20px; color: var(--gray-400); font-size: 0.85rem; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.ab-back-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--gray-200); }
.ab-next-btn {
    background: var(--accent); color: var(--white); border: none; border-radius: 10px;
    padding: 12px 28px; font-size: 0.92rem; font-weight: 600; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all 0.25s; margin-left: auto;
}
.ab-next-btn:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
.ab-next-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* Loading state */
.ab-loading { text-align: center; padding: 60px 20px; }
.ab-loading p { color: var(--gray-400); font-size: 0.9rem; margin-top: 16px; font-weight: 300; }
.ab-loading-dots { display: flex; justify-content: center; gap: 6px; }
.ab-loading-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent); opacity: 0.3;
    animation: abPulse 1.4s ease-in-out infinite;
}
.ab-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.ab-loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes abPulse { 0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); } 40% { opacity: 1; transform: scale(1.1); } }

/* Summary bar */
.ab-summary-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.ab-summary-pill {
    background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
    color: var(--accent-light); padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 500;
}

/* Recommendation cards */
.ab-rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.ab-rec-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 16px; display: flex; gap: 12px;
    transition: all 0.2s; cursor: default;
}
.ab-rec-card.selected { border-color: rgba(59,130,246,0.25); background: rgba(59,130,246,0.04); }
.ab-rec-check { flex-shrink: 0; position: relative; display: flex; align-items: flex-start; padding-top: 2px; }
.ab-rec-check input { position: absolute; opacity: 0; width: 0; height: 0; cursor: pointer; }
.ab-rec-checkmark {
    width: 20px; height: 20px; border-radius: 5px;
    border: 2px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; cursor: pointer;
}
.ab-rec-check input:checked + .ab-rec-checkmark {
    background: var(--accent); border-color: var(--accent);
}
.ab-rec-check input:checked + .ab-rec-checkmark::after {
    content: '\2713'; color: white; font-size: 0.72rem; font-weight: 700;
}
.ab-rec-info { flex: 1; min-width: 0; }
.ab-rec-name {
    font-weight: 600; font-size: 0.88rem; color: var(--accent-light);
    text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.ab-rec-name:hover { text-decoration: underline; }
.ab-rec-name span { font-size: 0.7rem; }
.ab-rec-count { display: block; font-size: 0.72rem; color: var(--gray-500); margin-top: 2px; }
.ab-rec-reason { font-size: 0.78rem; color: var(--gray-400); line-height: 1.5; margin-top: 6px; font-weight: 300; }

/* Rec error/fallback */
.ab-rec-error { text-align: center; padding: 24px; }
.ab-rec-error p { color: var(--gray-400); margin-bottom: 12px; font-size: 0.9rem; }
.ab-rec-fallback { margin-top: 16px; text-align: left; }
.ab-rec-fallback label { display: block; font-size: 0.82rem; color: var(--gray-400); margin-bottom: 8px; }

/* Summary card (step 6) */
.ab-summary-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 20px 24px; margin-bottom: 24px;
}
.ab-summary-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 14px; }
.ab-summary-rows { display: flex; flex-direction: column; gap: 10px; }
.ab-summary-row {
    display: flex; gap: 12px; font-size: 0.85rem; line-height: 1.5;
}
.ab-summary-key { color: var(--gray-500); font-weight: 500; min-width: 90px; flex-shrink: 0; }
.ab-summary-cats a { color: var(--accent-light); }
.ab-summary-cats a:hover { text-decoration: underline; }

/* Fallback toggle */
.ab-fallback { text-align: center; margin-top: 28px; }
.ab-fallback-link {
    background: none; border: none; color: var(--gray-500); font-size: 0.82rem;
    cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: underline;
    text-underline-offset: 3px; transition: color 0.2s; padding: 4px 8px;
}
.ab-fallback-link:hover { color: var(--accent-light); }
.ab-fallback-chat { margin-top: 20px; }

/* ── Social Media Ad Leads Page ── */
.sml-hero { padding: 60px 20px 40px; text-align: center; position: relative; overflow: hidden; }
.sml-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.12) 0%, transparent 60%); pointer-events: none; }
.sml-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; line-height: 1.2; margin-bottom: 14px; position: relative; }
.sml-hero h1 em { font-style: normal; color: var(--accent-light); }
.sml-hero > p { font-size: 1rem; color: var(--gray-400); max-width: 640px; margin: 0 auto; line-height: 1.7; font-weight: 300; position: relative; }
.sml-trust-bar {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    margin-top: 20px; position: relative;
}
.sml-trust-bar span { font-size: 0.82rem; color: var(--gray-400); font-weight: 400; }

/* Industry vertical grid (4-col) */
.sml-verticals { grid-template-columns: repeat(4, 1fr); }

/* Audience details (step 3) */
.sml-audience-fields { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.sml-field-group { display: flex; flex-direction: column; gap: 8px; }
.sml-field-label { font-size: 0.82rem; font-weight: 600; color: var(--gray-200); text-transform: uppercase; letter-spacing: 0.5px; }
.sml-field-input {
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 11px 14px; color: var(--text); font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif; transition: border-color 0.2s;
}
.sml-field-input::placeholder { color: var(--gray-500); }
.sml-field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.sml-geo-pills { margin-bottom: 0; }
.sml-budget-pills { margin-bottom: 0; }
.sml-geo-detail { margin-top: 10px; }

/* Strategy tip callout */
.sml-strategy-tip {
    background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.18);
    border-radius: 10px; padding: 14px 18px; margin-bottom: 18px;
    font-size: 0.85rem; color: var(--gray-200); line-height: 1.6; font-weight: 300;
    display: none;
}
.sml-strategy-tip strong { color: var(--accent-light); font-weight: 600; }

/* How it works */
.sml-how-section { max-width: 960px; margin: 0 auto; padding: 50px 20px 10px; text-align: center; }
.sml-how-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 32px; }
.sml-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sml-how-step { text-align: center; }
.sml-how-num {
    width: 36px; height: 36px; background: var(--accent); color: white; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem; margin-bottom: 12px;
}
.sml-how-step h3 { font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-100); }
.sml-how-step p { color: var(--gray-400); font-size: 0.82rem; line-height: 1.6; font-weight: 300; }

/* Value props */
.sml-value-section { padding: 50px 20px; border-top: 1px solid rgba(255,255,255,0.04); }
.sml-value-inner { max-width: 960px; margin: 0 auto; }
.sml-value-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 28px; text-align: center; }
.sml-value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sml-value-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 24px 20px; transition: border-color 0.25s;
}
.sml-value-card:hover { border-color: rgba(59,130,246,0.2); }
.sml-value-icon { font-size: 1.5rem; margin-bottom: 10px; }
.sml-value-card h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; color: var(--gray-100); }
.sml-value-card p { color: var(--gray-400); font-size: 0.82rem; line-height: 1.65; font-weight: 300; margin-bottom: 0; }

/* Social media leads responsive */
@media (max-width: 1200px) {
    .sml-verticals { grid-template-columns: repeat(3, 1fr); }
    .sml-how-grid { grid-template-columns: repeat(2, 1fr); }
    .sml-value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .sml-hero { padding: 40px 16px 24px; }
    .sml-verticals { grid-template-columns: repeat(2, 1fr); }
    .sml-how-grid { grid-template-columns: 1fr; }
    .sml-trust-bar { gap: 12px; }
    .sml-trust-bar span { font-size: 0.75rem; }
}

/* Audience builder responsive */
@media (max-width: 1200px) {
    .ab-advisor { height: 440px; }
    .ab-options-3 { grid-template-columns: 1fr; }
    .ab-rec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ab-hero { padding: 40px 16px 24px; }
    .ab-container { padding: 0 12px 30px; }
    .ab-advisor { height: 380px; }
    .ab-form-row { grid-template-columns: minmax(0, 1fr); }
    .ab-options-2 { grid-template-columns: 1fr; }
    .ab-options-pills { grid-template-columns: 1fr; }
    .ab-progress-label { display: none; }
    .ab-progress-num { width: 28px; height: 28px; font-size: 0.72rem; }
    .ab-progress-line { max-width: 24px; }
    .ab-step-title { font-size: 1.15rem; }
    .ab-summary-row { flex-direction: column; gap: 2px; }
    .ab-summary-key { min-width: unset; }
}

/* ═══════════════════════════════════════════════════
   CHAT WIDGET
   ═══════════════════════════════════════════════════ */

.chat-toggle {
    position: fixed; bottom: 24px; right: 24px; z-index: 1000;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); border: none; cursor: pointer;
    color: white; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(59,130,246,0.4);
    transition: transform 0.2s, background 0.2s;
}
.chat-toggle:hover { transform: scale(1.08); background: var(--accent-light); }
.chat-toggle.open { background: var(--primary-light); box-shadow: none; }

.chat-panel {
    position: fixed; bottom: 92px; right: 24px; z-index: 1000;
    width: 380px; height: 480px; border-radius: 16px;
    background: var(--primary); border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; overflow: hidden;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    clip-path: inset(0 0 0 0);
}
.chat-panel.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px 16px 0 0; background: var(--primary-mid);
}
.chat-header-info { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--gray-100); }
.chat-header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.chat-close { background: none; border: none; color: var(--gray-400); font-size: 1.4rem; cursor: pointer; padding: 0 4px; line-height: 1; }
.chat-close:hover { color: var(--white); }

.chat-messages {
    flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px;
    min-height: 200px; max-height: 340px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.chat-msg { display: flex; }
.chat-msg-user { justify-content: flex-end; }
.chat-msg-bot { justify-content: flex-start; }

.chat-msg-content {
    max-width: 85%; padding: 10px 14px; border-radius: 14px;
    font-size: 0.87rem; line-height: 1.6; font-weight: 300;
}
.chat-msg-user .chat-msg-content {
    background: var(--accent); color: white; border-bottom-right-radius: 4px;
}
.chat-msg-bot .chat-msg-content {
    background: var(--primary-mid); color: var(--gray-200); border-bottom-left-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}
.chat-msg-bot .chat-msg-content a { color: var(--accent-light); text-decoration: underline; }
.chat-msg-bot .chat-msg-content strong { color: var(--gray-100); font-weight: 600; }

/* Typing indicator */
.chat-typing { display: flex; gap: 4px; padding: 12px 16px !important; }
.chat-typing span {
    width: 7px; height: 7px; border-radius: 50%; background: var(--gray-500);
    animation: chatBounce 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-wrap {
    display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--primary-mid); border-radius: 0 0 16px 16px; flex-shrink: 0;
}
.chat-header { flex-shrink: 0; }
.chat-input {
    flex: 1; background: var(--primary); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 10px 14px; color: var(--text); font-size: 0.87rem;
    font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s;
}
.chat-input::placeholder { color: var(--gray-500); }
.chat-input:focus { border-color: rgba(59,130,246,0.3); }
.chat-send {
    background: var(--accent); border: none; border-radius: 10px; width: 40px;
    display: flex; align-items: center; justify-content: center;
    color: white; cursor: pointer; transition: background 0.2s;
}
.chat-send:hover { background: var(--accent-light); }

/* Chat lead capture form */
.chat-lead-form {
    display: flex; flex-direction: column; gap: 10px; padding: 20px 16px;
    flex: 1; justify-content: center;
}
.chat-lead-intro {
    font-size: 0.85rem; color: var(--gray-300); line-height: 1.5;
    margin: 0 0 4px 0; font-weight: 300;
}
.chat-lead-input {
    background: var(--primary); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 10px 14px; color: var(--text); font-size: 0.87rem;
    font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s;
}
.chat-lead-input::placeholder { color: var(--gray-500); }
.chat-lead-input:focus { border-color: rgba(59,130,246,0.3); }
.chat-lead-btn {
    background: var(--accent); color: white; border: none; border-radius: 10px;
    padding: 12px; font-size: 0.9rem; font-weight: 600; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: background 0.2s; margin-top: 4px;
}
.chat-lead-btn:hover { background: var(--accent-light); }

/* Footer social */
.footer-social { display: flex; justify-content: center; gap: 12px; margin: 8px 0; }
.footer-social-link {
    color: var(--gray-400); transition: color 0.2s;
    display: flex; align-items: center;
}
.footer-social-link:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero { padding: 50px 16px; }
    .hero-stats { gap: 30px; }
    .ai-banner-inner { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .ai-banner-preview { max-width: 400px; }
    .section-header h2 { white-space: normal; font-size: 1.15rem; }
    .section-header { gap: 10px; flex-wrap: wrap; }
    .section-header .line { display: none; }
    .cards-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 8px; padding-bottom: 28px; }
    .card { padding: 13px 14px; }
    .category-hero { padding: 24px 16px 0; }
    .listings-section { padding: 20px 16px; }
    .listings-controls { flex-direction: column; }
    .listings-search { max-width: 100%; }
    .why-hero { padding: 50px 16px 40px; }
    .why-section { padding: 40px 16px; }
    .why-platform-grid, .why-company-grid, .why-broker-grid { grid-template-columns: minmax(0, 1fr); }
    .why-usecase-grid { grid-template-columns: minmax(0, 1fr); }
    .how.how-prominent .steps { flex-direction: column; align-items: center; gap: 8px; }
    .step-arrow { transform: rotate(90deg); margin: 0; font-size: 1.2rem; }
    .how.how-prominent .step { max-width: 100%; }
    .chat-toggle { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .chat-panel {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100%; max-height: 100%; border-radius: 0;
        z-index: 1001;
    }
    .chat-panel .chat-header { border-radius: 0; padding: 16px; }
    .chat-panel .chat-messages { min-height: 0; max-height: none; flex: 1; }
    .chat-panel .chat-input-wrap { border-radius: 0; padding: 12px 16px; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
    .chat-panel .chat-input { font-size: 16px; }
}

/* ── GLOBAL MOBILE FIXES ── */
@media (max-width: 480px) {
    body { -webkit-text-size-adjust: 100%; }
    .hero { padding: 40px 14px 36px; }
    .hero h1 { font-size: 1.8rem; }
    .hero > p { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; justify-content: center; padding: 14px 20px; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 1.8rem; }
    .cta-section { padding: 50px 16px; }
    .cta-section h2 { font-size: 1.4rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn, .cta-buttons .btn-outline { width: 100%; text-align: center; justify-content: center; }
    .btn { padding: 12px 24px; font-size: 0.92rem; }
    .section-header h2 { font-size: 1rem; }
    .section-header .badge { font-size: 0.68rem; padding: 3px 10px; }
    .cards-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 6px; }
    .card { padding: 12px; border-radius: 8px; }
    .card-name { font-size: 0.8rem; }
    .page-content { padding: 30px 16px; }
    .page-content h1 { font-size: 1.5rem; }
    .page-content h2 { font-size: 1.15rem; }
    .footer-main p { font-size: 0.78rem; }
    .footer-contact { font-size: 0.75rem; }
    .footer-links { font-size: 0.75rem; }
    .trust-banner { padding: 24px 16px; }
}

/* ═══════════════════════════════════════════════════
   THEME TOGGLE
   ═══════════════════════════════════════════════════ */

.theme-toggle {
    background: none; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    padding: 6px 8px; cursor: pointer; color: var(--gray-400);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; margin-left: 6px; flex-shrink: 0;
}
.theme-toggle:hover { color: var(--accent-light); border-color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
[data-theme="dark"] .theme-icon-moon,
.theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun,
.theme-icon-sun { display: block; }
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: block; }

@media (max-width: 1200px) {
    .theme-toggle {
        position: absolute; top: 14px; right: 56px; z-index: 103;
        border-color: rgba(255,255,255,0.08);
    }
}

/* ═══════════════════════════════════════════════════
   LIGHT THEME
   ═══════════════════════════════════════════════════ */

[data-theme="light"] {
    --primary: #f8fafc;
    --primary-mid: #f1f5f9;
    --primary-light: #e2e8f0;
    --accent: #2563eb;
    --accent-light: #1d4ed8;
    --accent-glow: rgba(37,99,235,0.1);
    --green: #059669;
    --white: #0f172a;
    --gray-100: #1e293b;
    --gray-200: #334155;
    --gray-300: #475569;
    --gray-400: #64748b;
    --gray-500: #94a3b8;
    --gray-600: #cbd5e1;
    --text: #0f172a;
    --text-muted: #64748b;
}

/* ── Top bar ── */
[data-theme="light"] .top-bar { background: var(--accent); }

/* ── Nav ── */
[data-theme="light"] .nav { background: rgba(248,250,252,0.97); border-bottom-color: rgba(0,0,0,0.06); }
[data-theme="light"] .nav-links a { color: var(--gray-400); }
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active { color: var(--white); background: rgba(0,0,0,0.04); }
[data-theme="light"] .nav-hamburger span { background: var(--gray-400); }
[data-theme="light"] .nav-divider { background: rgba(0,0,0,0.06); }
[data-theme="light"] .nav-ab { background: rgba(37,99,235,0.08) !important; color: var(--accent-light) !important; border-color: rgba(37,99,235,0.2); }
[data-theme="light"] .nav-ab:hover { background: rgba(37,99,235,0.14) !important; border-color: rgba(37,99,235,0.35); }
[data-theme="light"] .nav-sml { background: rgba(139,92,246,0.08) !important; color: #7c3aed !important; border-color: rgba(139,92,246,0.2); }
[data-theme="light"] .nav-sml:hover { background: rgba(139,92,246,0.14) !important; border-color: rgba(139,92,246,0.35); color: #6d28d9 !important; }
[data-theme="light"] .nav-cta { background: var(--accent) !important; color: #fff !important; }
[data-theme="light"] .nav-cta:hover { background: var(--accent-light) !important; }
[data-theme="light"] .theme-toggle { border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .theme-toggle:hover { border-color: var(--accent); }

/* Mobile nav light */
@media (max-width: 1200px) {
    [data-theme="light"] .nav-links { background: var(--primary-mid); border-top-color: rgba(0,0,0,0.06); }
    [data-theme="light"] .nav-links a { color: var(--gray-400); }
    [data-theme="light"] .nav-links a:hover,
    [data-theme="light"] .nav-links a.active { color: var(--white); background: rgba(0,0,0,0.04); }
    [data-theme="light"] .nav-ab { background: transparent !important; border: none !important; color: var(--accent-light) !important; }
    [data-theme="light"] .nav-overlay { background: rgba(0,0,0,0.3); }
    [data-theme="light"] .theme-toggle { border-color: rgba(0,0,0,0.08); }
}

/* ── Hero ── */
[data-theme="light"] .hero-chip { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.15); }
[data-theme="light"] .hero-btn-secondary { border-color: rgba(0,0,0,0.12); color: var(--gray-200); }
[data-theme="light"] .hero-btn-secondary:hover { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.2); }

/* ── AI Advisor Banner ── */
[data-theme="light"] .ai-advisor-banner { background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, rgba(139,92,246,0.03) 100%); border-top-color: rgba(37,99,235,0.08); border-bottom-color: rgba(37,99,235,0.08); }
[data-theme="light"] .ai-banner-chip { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.18); }
[data-theme="light"] .ab-preview-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
[data-theme="light"] .ab-preview-card.ab-preview-result { background: linear-gradient(135deg, #fff, rgba(37,99,235,0.03)); border-color: rgba(37,99,235,0.15); }
[data-theme="light"] .ab-preview-row span:last-child { color: var(--text); }

/* ── Buttons ── */
[data-theme="light"] .btn { color: #fff; }
[data-theme="light"] .btn:hover { color: #fff; box-shadow: 0 8px 30px rgba(37,99,235,0.2); }
[data-theme="light"] .btn-outline { border-color: rgba(0,0,0,0.12) !important; color: var(--gray-200) !important; }
[data-theme="light"] .btn-outline:hover { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.2) !important; }

/* ── Search ── */
[data-theme="light"] .search-section { background: var(--primary-mid); border-bottom-color: rgba(0,0,0,0.04); }
[data-theme="light"] .search-container input { border-color: rgba(0,0,0,0.08); background: #fff; color: var(--text); }
[data-theme="light"] .search-container input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 24px rgba(37,99,235,0.08); }
[data-theme="light"] .search-dropdown { background: #fff; border-color: rgba(0,0,0,0.1); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
[data-theme="light"] .dd-section + .dd-section { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .dd-item:hover { background: rgba(0,0,0,0.03); }
[data-theme="light"] .dd-tag { background: rgba(37,99,235,0.08); }
[data-theme="light"] .dd-tag-seg { background: rgba(0,0,0,0.04); }
[data-theme="light"] .dd-viewall { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .dd-viewall:hover { background: rgba(37,99,235,0.04); }

/* ── Cards (homepage, categories) ── */
[data-theme="light"] .card,
[data-theme="light"] .why-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .sp-cat-card,
[data-theme="light"] .sp-stat-card,
[data-theme="light"] .sml-value-card,
[data-theme="light"] .why-broker-card,
[data-theme="light"] .why-usecase-card,
[data-theme="light"] .why-platform-card,
[data-theme="light"] .why-company-card,
[data-theme="light"] .ab-option-card,
[data-theme="light"] .ab-rec-card,
[data-theme="light"] .ab-summary-card,
[data-theme="light"] .lp-sidebar-card,
[data-theme="light"] .blog-index-card { background: #fff; border-color: rgba(0,0,0,0.08); }

[data-theme="light"] .card:hover,
[data-theme="light"] .blog-card:hover,
[data-theme="light"] .sp-cat-card:hover,
[data-theme="light"] .blog-index-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
[data-theme="light"] .why-card:hover,
[data-theme="light"] .sml-value-card:hover,
[data-theme="light"] .why-broker-card:hover,
[data-theme="light"] .why-usecase-card:hover,
[data-theme="light"] .why-platform-card:hover,
[data-theme="light"] .why-company-card:hover { border-color: rgba(37,99,235,0.2); }

[data-theme="light"] .card:hover { background: rgba(37,99,235,0.03); border-color: rgba(37,99,235,0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
[data-theme="light"] .sp-cat-card.sp-kb-active { border-color: var(--accent); background: rgba(37,99,235,0.04); }

/* ── Segment accordion ── */
[data-theme="light"] .section-header .line { background: linear-gradient(90deg, rgba(0,0,0,0.06), transparent); }
[data-theme="light"] .section-header .badge { background: rgba(37,99,235,0.06); }
[data-theme="light"] .ab-option-card:hover { background: rgba(37,99,235,0.03); border-color: rgba(37,99,235,0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
[data-theme="light"] .ab-option-card.selected { background: rgba(37,99,235,0.05); border-color: var(--accent); box-shadow: 0 0 0 2px rgba(37,99,235,0.1), 0 4px 16px rgba(37,99,235,0.08); }

/* ── Audience builder pills ── */
[data-theme="light"] .ab-option-pill { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ab-option-pill:hover { border-color: rgba(37,99,235,0.2); background: rgba(37,99,235,0.02); }
[data-theme="light"] .ab-option-pill.selected { background: rgba(37,99,235,0.06); border-color: var(--accent); color: var(--white); box-shadow: 0 0 0 2px rgba(37,99,235,0.08); }

/* ── Audience builder panels ── */
[data-theme="light"] .ab-chat-panel,
[data-theme="light"] .ab-request-panel { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ab-panel-label { border-bottom-color: rgba(0,0,0,0.06); background: rgba(37,99,235,0.03); }
[data-theme="light"] .ab-msg-ai .ab-msg-body { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .ab-msg-user .ab-msg-body { background: var(--accent); color: #fff; }
[data-theme="light"] .ab-chat-bar { border-top-color: rgba(0,0,0,0.06); background: rgba(0,0,0,0.02); }
[data-theme="light"] .ab-chat-bar textarea { background: #fff; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .ab-send-btn { color: #fff; }
[data-theme="light"] .ab-cat-link { background: rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.12); }
[data-theme="light"] .ab-cat-link:hover { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.25); }

/* ── Audience builder wizard ── */
[data-theme="light"] .ab-progress-line { background: rgba(0,0,0,0.06); }
[data-theme="light"] .ab-progress-num { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .ab-progress-step.active .ab-progress-num { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 12px rgba(37,99,235,0.2); }
[data-theme="light"] .ab-progress-step.done .ab-progress-num { background: rgba(37,99,235,0.1); }
[data-theme="light"] .ab-rec-card.selected { border-color: rgba(37,99,235,0.2); background: rgba(37,99,235,0.03); }
[data-theme="light"] .ab-rec-checkmark { border-color: rgba(0,0,0,0.15); background: #fff; }
[data-theme="light"] .ab-rec-check input:checked + .ab-rec-checkmark { background: var(--accent); border-color: var(--accent); }
[data-theme="light"] .ab-summary-pill { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.15); }
[data-theme="light"] .ab-step-actions { border-top-color: rgba(0,0,0,0.04); }
[data-theme="light"] .ab-back-btn { border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .ab-back-btn:hover { border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .ab-next-btn { color: #fff; }
[data-theme="light"] .ab-next-btn:hover { box-shadow: 0 4px 16px rgba(37,99,235,0.2); }
[data-theme="light"] .ab-submit-btn { color: #fff; }
[data-theme="light"] .ab-submit-btn:hover { box-shadow: 0 4px 16px rgba(37,99,235,0.2); }

/* ── Inputs & forms (light) ── */
[data-theme="light"] .ab-detail-input,
[data-theme="light"] .ab-geo-input,
[data-theme="light"] .ab-form-field input,
[data-theme="light"] .ab-form-field textarea,
[data-theme="light"] .sml-field-input,
[data-theme="light"] .cf-field input,
[data-theme="light"] .cf-field select,
[data-theme="light"] .cf-field textarea,
[data-theme="light"] .sp-input-wrap input,
[data-theme="light"] .listings-search input,
[data-theme="light"] .sort-controls select,
[data-theme="light"] .chat-input { background: #fff; border-color: rgba(0,0,0,0.12); color: var(--text); }

[data-theme="light"] .ab-detail-input:focus,
[data-theme="light"] .ab-geo-input:focus,
[data-theme="light"] .ab-form-field input:focus,
[data-theme="light"] .ab-form-field textarea:focus,
[data-theme="light"] .sml-field-input:focus,
[data-theme="light"] .cf-field input:focus,
[data-theme="light"] .cf-field select:focus,
[data-theme="light"] .cf-field textarea:focus,
[data-theme="light"] .sp-input-wrap input:focus,
[data-theme="light"] .chat-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); background: #fff; }
[data-theme="light"] .cf-field select option { background: #fff; color: var(--text); }

/* ── Contact form ── */
[data-theme="light"] .cf-main { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .cf-inquiry-banner { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.12); }
[data-theme="light"] .cf-sidebar-card { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .cf-email-link { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.12); }
[data-theme="light"] .cf-email-link:hover { background: rgba(37,99,235,0.08); }
[data-theme="light"] .cf-steps li::before { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.2); }
[data-theme="light"] .cf-submit { color: #fff; }
[data-theme="light"] .cf-submit:hover { box-shadow: 0 4px 12px rgba(37,99,235,0.2); }
[data-theme="light"] .cf-success-icon { background: rgba(5,150,105,0.08); }

/* ── Get Free Counts ── */
[data-theme="light"] .gfc-badge { background: rgba(5,150,105,0.06); border-color: rgba(5,150,105,0.2); }
[data-theme="light"] .gfc-divider { background: rgba(0,0,0,0.06); }
[data-theme="light"] .gfc-geo-detail .cf-field-input { background: #fff; border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .gfc-geo-detail .cf-field-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); background: #fff; }

/* ── Audience Builder Sections ── */
[data-theme="light"] .ab-form-section { border-bottom-color: rgba(0,0,0,0.06); }
[data-theme="light"] .ab-section-num { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.15); }
[data-theme="light"] .ab-section-title { color: var(--text); }

/* ── Featured post ── */
[data-theme="light"] .featured-post { background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(139,92,246,0.04)); border-color: rgba(37,99,235,0.12); }
[data-theme="light"] .featured-post:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 6px 28px rgba(37,99,235,0.08); }
[data-theme="light"] .featured-badge { background: rgba(37,99,235,0.08); }

/* ── Blog article ── */
[data-theme="light"] .blog-article-cta { background: #fff; border-color: rgba(0,0,0,0.08); }

/* ── SEO / FAQ ── */
[data-theme="light"] .seo-content { border-top-color: rgba(0,0,0,0.04); }
[data-theme="light"] .faq-item { border-bottom-color: rgba(0,0,0,0.06); }

/* ── CTA section ── */
[data-theme="light"] .cta-section { background: linear-gradient(180deg, transparent, rgba(37,99,235,0.03)); border-top-color: rgba(0,0,0,0.04); }

/* ── Footer ── */
[data-theme="light"] .footer { border-top-color: rgba(0,0,0,0.06); }

/* ── Trust banner ── */
[data-theme="light"] .trust-banner-item { background: rgba(37,99,235,0.03); border-color: rgba(37,99,235,0.08); }

/* ── Pricing ── */
[data-theme="light"] .pricing-card { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .pricing-card:hover { border-color: rgba(37,99,235,0.2); }

/* ── Listing page ── */
[data-theme="light"] .listings-table th { border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .listings-table td { border-bottom-color: rgba(0,0,0,0.04); }
[data-theme="light"] .listings-table tr:hover { background: rgba(0,0,0,0.02); }
[data-theme="light"] .lp-universe { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.1); }
[data-theme="light"] .lp-price { background: rgba(5,150,105,0.04); border-color: rgba(5,150,105,0.1); }
[data-theme="light"] .lp-table tr { border-bottom-color: rgba(0,0,0,0.04); }
[data-theme="light"] .lp-cta-box { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .lp-sidebar-cta { background: rgba(37,99,235,0.02); border-color: rgba(37,99,235,0.08); }
[data-theme="light"] .lp-related-item:hover { background: rgba(0,0,0,0.02); }
[data-theme="light"] .lp-sidebar-viewall { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .lp-sidebar-viewall:hover { background: rgba(37,99,235,0.03); }
[data-theme="light"] .lp-prefix-badge { background: rgba(0,0,0,0.04); }
[data-theme="light"] .price-tag { background: rgba(5,150,105,0.06); }

/* ── Why page ── */
[data-theme="light"] .why-hero-chip { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.15); }
[data-theme="light"] .why-section { border-top-color: rgba(0,0,0,0.04); }
[data-theme="light"] .why-section-alt { background: var(--primary-mid); }
[data-theme="light"] .why-callout { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.12); }

/* ── Search page ── */
[data-theme="light"] .sp-filter { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .sp-filter:hover { border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .sp-filter.active { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.2); }
[data-theme="light"] .sp-section-count { background: rgba(0,0,0,0.04); }
[data-theme="light"] .sp-result { background: #fff; border-color: rgba(0,0,0,0.05); }
[data-theme="light"] .sp-result:hover { background: rgba(0,0,0,0.01); border-color: rgba(37,99,235,0.12); }
[data-theme="light"] .sp-result.sp-kb-active { background: rgba(37,99,235,0.04); border-color: var(--accent); }
[data-theme="light"] .sp-cat-name mark,
[data-theme="light"] .sp-result-title mark { background: rgba(37,99,235,0.12); color: var(--text); }
[data-theme="light"] .sp-seg-tag { background: rgba(0,0,0,0.04); }
[data-theme="light"] .sp-prefix-tag { background: rgba(37,99,235,0.06); }
[data-theme="light"] .sp-pop-tag { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .sp-pop-tag:hover { border-color: var(--accent); background: rgba(37,99,235,0.03); }
[data-theme="light"] .sp-empty-links a { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .sp-empty-links a:hover { border-color: var(--accent); background: rgba(37,99,235,0.03); }
[data-theme="light"] .sp-stat-card:hover { border-color: rgba(0,0,0,0.12); }

/* ── Social Media Leads ── */
[data-theme="light"] .sml-hero::before { background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%); }
[data-theme="light"] .sml-strategy-tip { background: rgba(139,92,246,0.05); border-color: rgba(139,92,246,0.12); }
[data-theme="light"] .sml-value-section { border-top-color: rgba(0,0,0,0.04); }

/* ── Chat widget ── */
[data-theme="light"] .chat-toggle { box-shadow: 0 4px 20px rgba(37,99,235,0.25); color: #fff; }
[data-theme="light"] .chat-toggle.open { background: var(--primary-light); box-shadow: none; color: var(--gray-400); }
[data-theme="light"] .chat-panel { background: #fff; border-color: rgba(0,0,0,0.1); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
[data-theme="light"] .chat-header { background: var(--primary-mid); border-bottom-color: rgba(0,0,0,0.06); }
[data-theme="light"] .chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); }
[data-theme="light"] .ab-chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); }
[data-theme="light"] .chat-msg-user .chat-msg-content { background: var(--accent); color: #fff; }
[data-theme="light"] .chat-msg-bot .chat-msg-content { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .chat-input-wrap { border-top-color: rgba(0,0,0,0.06); background: var(--primary-mid); }
[data-theme="light"] .chat-send { color: #fff; }
[data-theme="light"] .chat-lead-input { background: #fff; border-color: rgba(0,0,0,0.12); color: var(--text); }
[data-theme="light"] .chat-lead-input:focus { border-color: var(--accent); }
[data-theme="light"] .chat-lead-intro { color: var(--gray-600); }
[data-theme="light"] .guide-form-card { background: #f8f9fb; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .guide-form-row input, [data-theme="light"] .guide-form-row select { background: #fff; border-color: rgba(0,0,0,0.12); color: var(--text); }
[data-theme="light"] .guide-form-row input:focus, [data-theme="light"] .guide-form-row select:focus { border-color: var(--accent); }
[data-theme="light"] .guide-chapter { background: #fff; border-color: rgba(0,0,0,0.06); }

/* ── Scrollbars ── */
[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12) !important; }

/* ── Misc ── */
[data-theme="light"] .step-num { color: #fff; }
[data-theme="light"] .ab-how-num { color: #fff; }
[data-theme="light"] .sml-how-num { color: #fff; }
[data-theme="light"] .card-tag { background: rgba(37,99,235,0.08); }
[data-theme="light"] .pagination a { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .pagination a:hover { background: rgba(0,0,0,0.04); }
[data-theme="light"] .pagination .active { color: #fff; }

/* ═══════════════════════════════════════════════════
   Vertical Landing Pages
   ═══════════════════════════════════════════════════ */

.vert-hero { text-align: center; padding: 70px 24px 50px; }
.vert-hero h1 { font-family: 'DM Serif Display', serif; font-size: 2.4rem; line-height: 1.2; margin-bottom: 18px; }
.vert-hero h1 em { color: var(--accent-light); font-style: normal; }
.vert-hero-sub { color: var(--gray-400); font-size: 1.1rem; max-width: 680px; margin: 0 auto 28px; line-height: 1.6; font-weight: 300; }
.vert-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.vert-overview { padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.vert-overview-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.vert-overview h2 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; margin-bottom: 16px; }
.vert-overview p { color: var(--gray-400); line-height: 1.7; font-weight: 300; font-size: 1.02rem; }

.vert-selects { padding: 60px 24px; }
.vert-selects h2 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; text-align: center; margin-bottom: 8px; }
.vert-selects-sub { text-align: center; color: var(--gray-400); margin-bottom: 36px; font-weight: 300; }
.vert-selects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.vert-select-card { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; text-align: center; transition: border-color 0.2s; }
.vert-select-card:hover { border-color: rgba(59,130,246,0.3); }
.vert-select-icon { font-size: 1.8rem; margin-bottom: 10px; }
.vert-select-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.vert-select-card p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; font-weight: 300; }

.vert-usecases { padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.vert-usecases h2 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; text-align: center; margin-bottom: 36px; }
.vert-usecases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.vert-usecase { background: linear-gradient(135deg, var(--primary-mid), rgba(59,130,246,0.04)); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 28px; }
.vert-usecase-icon { font-size: 1.6rem; margin-bottom: 12px; }
.vert-usecase h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.vert-usecase p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.6; font-weight: 300; }

.vert-channels { padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.vert-channels h2 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; text-align: center; margin-bottom: 36px; }
.vert-channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.vert-channel { background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; text-align: center; transition: border-color 0.2s; }
.vert-channel:hover { border-color: rgba(59,130,246,0.2); }
.vert-channel-highlight { border-color: rgba(59,130,246,0.3); background: linear-gradient(135deg, var(--primary-mid), rgba(59,130,246,0.06)); }
.vert-channel-icon { font-size: 1.6rem; margin-bottom: 10px; }
.vert-channel h3 { font-size: 0.92rem; font-weight: 600; margin-bottom: 6px; }
.vert-channel p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; font-weight: 300; }

.vert-faq { max-width: 800px; margin: 0 auto; padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.vert-faq h2 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; text-align: center; margin-bottom: 28px; }

@media (max-width: 768px) {
    .vert-hero h1 { font-size: 1.7rem; }
    .vert-hero-sub { font-size: 0.98rem; }
    .vert-selects-grid { grid-template-columns: 1fr 1fr; }
    .vert-channels-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .vert-selects-grid { grid-template-columns: 1fr; }
    .vert-channels-grid { grid-template-columns: 1fr; }
}

/* ── Vertical pages: light theme ── */
[data-theme="light"] .vert-overview { border-top-color: rgba(0,0,0,0.04); }
[data-theme="light"] .vert-select-card { background: #fff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .vert-select-card:hover { border-color: rgba(37,99,235,0.3); }
[data-theme="light"] .vert-usecase { background: linear-gradient(135deg, #fff, rgba(37,99,235,0.03)); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .vert-usecases { border-top-color: rgba(0,0,0,0.04); }
[data-theme="light"] .vert-channel { background: #fff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .vert-channel-highlight { border-color: rgba(37,99,235,0.3); background: linear-gradient(135deg, #fff, rgba(37,99,235,0.04)); }
[data-theme="light"] .vert-channels { border-top-color: rgba(0,0,0,0.04); }
[data-theme="light"] .vert-faq { border-top-color: rgba(0,0,0,0.04); }

/* ── Vertical links grid (homepage) ── */
.vert-links { padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.vert-links h2 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; text-align: center; margin-bottom: 32px; }
.vert-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; max-width: 1100px; margin: 0 auto; }
.vert-link-card { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--primary-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; text-decoration: none; color: var(--text); transition: border-color 0.2s, background 0.2s; }
.vert-link-card:hover { border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.04); }
.vert-link-icon { font-size: 1.3rem; flex-shrink: 0; }
.vert-link-name { font-size: 0.88rem; font-weight: 500; }
[data-theme="light"] .vert-links { border-top-color: rgba(0,0,0,0.04); }
[data-theme="light"] .vert-link-card { background: #fff; border-color: rgba(0,0,0,0.06); color: var(--text); }
[data-theme="light"] .vert-link-card:hover { border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.03); }

/* ── Hero featured tags ── */
.hero-featured { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-featured-label { font-size: 0.82rem; color: var(--gray-400); font-weight: 500; }
.hero-featured-tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.3); border-radius: 20px; font-size: 0.82rem; font-weight: 600; color: #34d399; text-decoration: none; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; }
.hero-featured-tag:hover { border-color: rgba(16,185,129,0.6); background: rgba(16,185,129,0.14); color: #6ee7b7; box-shadow: 0 0 16px rgba(16,185,129,0.15); }
[data-theme="light"] .hero-featured-tag { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.25); color: #059669; }
[data-theme="light"] .hero-featured-tag:hover { border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.12); color: #047857; box-shadow: 0 0 16px rgba(16,185,129,0.1); }

/* ── Guide banner (homepage) ── */
.guide-banner { padding: 0 24px; margin: 40px auto; max-width: 900px; }
.guide-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.06)); border: 1px solid rgba(59,130,246,0.2); border-radius: 14px; padding: 28px 32px; }
.guide-banner-text h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 6px; }
.guide-banner-text p { color: var(--gray-400); font-size: 0.88rem; line-height: 1.5; font-weight: 300; }
.guide-banner-btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 640px) {
    .guide-banner-inner { flex-direction: column; text-align: center; padding: 24px 20px; }
}
[data-theme="light"] .guide-banner-inner { background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(124,58,237,0.04)); border-color: rgba(37,99,235,0.15); }
