
/* ── HERO ── */
.hero-section {
    position: relative;
    padding: 140px 6% 100px;
    background-color: #FAFAFA;
    background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
    background-size: 22px 22px;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-bg-saffron {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,144,42,0.18) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.hero-bg-indigo {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,91,219,0.13) 0%, transparent 70%);
    top: -60px;
    right: -60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

/* ── EYEBROW ── */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.eyebrow-line {
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--blue);
    flex-shrink: 0;
}

.eyebrow-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--blue);
}

.eyebrow-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    flex-shrink: 0;
}

.eyebrow-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(34,197,94,0.3);
    animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
    0%   { transform: scale(0.7); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.eyebrow-live {
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    letter-spacing: 0.3px;
}

h1 {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2.5px;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero-serif {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
    letter-spacing: -1.5px;
    display: block;
}

.hero-sub {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 400px;
    font-weight: 400;
}

.hero-sub strong {
    color: var(--ink);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hp-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-soft);
}

.hp-item svg {
    color: var(--blue);
    flex-shrink: 0;
}

/* ── HERO CARDS (right column) ── */
.hero-right {
    position: relative;
    height: 540px;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card-box {
    position: absolute;
    top: 16px;
    left: 0;
    right: 16px;
    bottom: 56px;
    background: linear-gradient(145deg, #eef0ff 0%, #fff6ee 100%);
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 28px rgba(0,0,0,0.07);
    z-index: 0;
}

.hcard {
    position: absolute;
    width: 210px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 14px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hcard-1 { top: 0;    left: 10px;  transform: rotate(-4deg);   z-index: 1; }
.hcard-2 { top: 60px; left: 160px; transform: rotate(3deg);    z-index: 3; }
.hcard-3 { top: 235px; left: 30px; transform: rotate(-1.5deg); z-index: 2; }

.hcard:hover {
    transform: rotate(0deg) translateY(-6px) !important;
    box-shadow: 0 28px 72px rgba(0,0,0,0.14) !important;
    z-index: 10 !important;
}

.hcard-cover {
    height: 64px;
    position: relative;
}

.hcard-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 2px solid #fff;
    position: absolute;
    bottom: -16px;
    left: 12px;
    backdrop-filter: blur(6px);
}

.hcard-niche {
    position: absolute;
    top: 9px;
    right: 9px;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
}

.hcard-body {
    padding: 22px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hcard-handle {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
}

.hcard-meta {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hcard-city {
    font-size: 10px;
    color: var(--ink-faint);
    font-weight: 500;
}

.hcard-vtag {
    font-size: 9.5px;
    font-weight: 700;
    color: #16a34a;
    background: rgba(34,197,94,0.1);
    padding: 2px 7px;
    border-radius: 100px;
}

.hcard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.hcard-stat {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 6px;
    text-align: center;
}

.hcard-sv {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.4px;
    line-height: 1;
    margin-bottom: 3px;
}

.hcard-sv.good { color: #1a7a45; }

.hcard-sk {
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.hcard-rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 8px;
    background: var(--amber-light);
    border-radius: 8px;
}

.hcard-rate-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--ink-soft);
}

.hcard-rate-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--amber);
}

.hcard-barter {
    font-size: 10px;
    font-weight: 600;
    color: #b43c64;
    background: rgba(180,60,100,0.08);
    padding: 7px 10px;
    border-radius: 8px;
    text-align: center;
}

.hcard-cta {
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.2px;
}

/* ── FLOATING CHIPS ── */
@keyframes floatA {
    0%, 100% { transform: translateY(0px) rotate(-6deg); }
    50%       { transform: translateY(-10px) rotate(-6deg); }
}
@keyframes floatB {
    0%, 100% { transform: translateY(0px) rotate(4deg); }
    50%       { transform: translateY(-8px) rotate(4deg); }
}
@keyframes floatC {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50%       { transform: translateY(-12px) rotate(-3deg); }
}

.fchip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 10;
    pointer-events: none;
}

.fchip-unlock {
    background: var(--ink);
    color: #fff;
    top: 10px;
    right: 8px;
    animation: floatA 3.2s ease-in-out infinite;
}

.fchip-verified {
    background: #fff;
    color: #16a34a;
    border: 1px solid rgba(34,197,94,0.25);
    top: 195px;
    right: -10px;
    animation: floatB 3.8s ease-in-out infinite;
    animation-delay: 0.6s;
}

.fchip-engagement {
    background: #fff;
    color: var(--blue);
    border: 1px solid rgba(59,91,219,0.2);
    bottom: 52px;
    right: 12px;
    animation: floatC 4.1s ease-in-out infinite;
    animation-delay: 1.2s;
}

.fchip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.fchip-dot-blue { background: var(--blue); }


/* responsive hero */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-right {
        height: 380px;
    }
    .hcard { width: 180px; }
    .hcard-1 { top: 0;    left: 0;    }
    .hcard-2 { top: 50px; left: 130px; }
    .hcard-3 { top: 200px; left: 20px; }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 110px 5% 72px;
        min-height: auto;
    }
    .hero-right { display: none; }
    .hero-proof { gap: 14px; }
}

/* ── MARQUEE ── */
.marquee-section {
    background: #eef1ff;
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border-mid);
    border-bottom: 1px solid var(--border-mid);
}

.marquee-track {
    display: inline-flex;
    animation: marquee 44s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 26px;
    font-size: 12px;
    font-weight: 600;
    color: #555555;
    letter-spacing: 0.2px;
}

.dot {
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.8;
}

/* ── SECTIONS ── */
.section {
    padding: 88px 6%;
}

.section-soft {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    opacity: 0.7;
}

h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 14px;
}

h2 span {
    color: var(--blue);
}

h2 em {
    color: var(--blue);
    font-style: normal;
}

.section-sub {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 400;
}

/* ── HOW IT WORKS — TWO COLUMN ── */
.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hiw-left {
    text-align: left;
}

.hiw-h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hiw-sub {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 420px;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.hiw-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hiw-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--blue);
    background: var(--blue-light);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.hiw-step-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 5px;
}

.hiw-step-text p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}

/* MOCKUP */
.hiw-mockup {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(59, 91, 219, 0.1);
    overflow: hidden;
}

.hm-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}

.hm-dots { display: flex; gap: 5px; }

.hmd {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.hmd-r { background: #ff5f57; }
.hmd-y { background: #febc2e; }
.hmd-g { background: #28c840; }

.hm-url {
    font-size: 11px;
    color: var(--ink-faint);
    background: var(--border);
    border-radius: 4px;
    padding: 3px 12px;
    flex: 1;
    text-align: center;
}

.hm-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--ink-soft);
}

.hm-search-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-light);
    padding: 2px 9px;
    border-radius: 100px;
}

.hm-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
}

.hm-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.hm-cover {
    height: 58px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 8px;
}

.hm-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    filter: blur(5px);
    position: absolute;
    bottom: -15px;
    left: 10px;
    border: 2px solid #fff;
}

.hm-niche {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    border: 1px solid;
    letter-spacing: 0.2px;
}

.hm-body {
    padding: 20px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hm-stat-row {
    display: flex;
    justify-content: space-between;
}

.hm-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hm-stat strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.hm-stat strong.hm-good { color: #e8953a; }

.hm-stat span {
    font-size: 8.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink-faint);
    font-weight: 500;
}

.hm-pr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-soft);
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 10.5px;
    color: var(--ink-soft);
}

.hm-pr-row strong {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink);
}

.hm-unlock {
    background: var(--ink);
    color: #fff;
    border-radius: 7px;
    text-align: center;
    padding: 7px;
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
}

.hm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
    font-size: 11.5px;
    color: var(--ink-soft);
}

.hm-footer strong {
    color: var(--ink);
    font-weight: 700;
}

.hm-browse {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}


/* ── STATS ── */
.stats-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 32px 36px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.num {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: -3px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-faint);
    line-height: 1.45;
}

/* ── FEATURES ── */
/* ── BUILT DIFFERENT ── */
.bd-section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 48px;
}

.bd-tag-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.bd-tag-dash {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--ink-soft);
    flex-shrink: 0;
}

.bd-heading {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--ink);
    margin: 0;
}

.bd-serif {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #3B5BDB;
}

.bd-head-desc {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.7;
    margin: 0;
    padding-bottom: 6px;
}

/* 2×2 grid */
.bd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bd-card {
    background: #fff;
    border: 1px solid #e8eaef;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.22s, box-shadow 0.22s;
}

.bd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.09);
}

.bd-card-inner {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.bd-eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3B5BDB;
    margin-bottom: 14px;
}

.bd-num { font-variant-numeric: tabular-nums; }
.bd-sep { color: #9ca3af; }

.bd-card-heading {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 10px;
}

.bd-card-desc {
    font-size: 13.5px;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Mockup shared */
.bd-mockup {
    background: #f8f9fb;
    border: 1px solid #eceef2;
    border-radius: 14px;
    padding: 16px;
    margin-top: auto;
}

/* Pricing mockup */
.bdm-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    background: #fff;
    border: 1px solid #f0f1f4;
    border-radius: 9px;
    margin-bottom: 6px;
}

.bdm-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
    color: #fff;
}

.bdm-icon-r { background: #3B5BDB; }
.bdm-icon-s { background: #7c3aed; }
.bdm-icon-c { background: #0891b2; }
.bdm-icon-b { background: #3B5BDB; }

.bdm-bundle { background: #f5f7ff; border-color: #c7d2fe; }

.bdm-label {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
}

.bdm-old {
    font-size: 11px;
    color: #9ca3af;
    text-decoration: line-through;
}

.bdm-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
}

.bdm-price-accent { color: #3B5BDB; }

.bdm-saving {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 8px 10px;
    background: #ecfdf5;
    border-radius: 8px;
    font-size: 11.5px;
    color: #374151;
}

.bdm-badge {
    background: #059669;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 5px;
    flex-shrink: 0;
}

/* Verification checklist */
.bdm-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    background: #fff;
    border: 1px solid #f0f1f4;
    border-radius: 9px;
    margin-bottom: 6px;
}

.bdm-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bdm-check-label {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
}

.bdm-check-val {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
}

.bdm-tag-organic {
    background: #ecfdf5;
    color: #059669;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 10px;
}

.bdm-tag-passed {
    background: #eef2ff;
    color: #3B5BDB;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 10px;
}

/* Audience mockup */
.bdm-aud-mock { padding: 14px; }

.bdm-aud-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bdm-aud-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 14px;
}

.bdm-cities { flex: 1; }

.bdm-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.bdm-city {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink);
    width: 58px;
    flex-shrink: 0;
}

.bdm-bar-wrap {
    flex: 1;
    height: 6px;
    background: #f0f1f4;
    border-radius: 100px;
    overflow: hidden;
}

.bdm-bar {
    height: 100%;
    background: #3B5BDB;
    border-radius: 100px;
}

.bdm-bar-dim { background: #c7d2fe; }

.bdm-pct {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    width: 26px;
    text-align: right;
    flex-shrink: 0;
}

.bdm-gender {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bdm-donut {
    position: relative;
    display: inline-block;
}

.bdm-donut-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bdm-donut-val {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.bdm-donut-sub {
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #9ca3af;
    text-transform: uppercase;
}

.bdm-gender-legend {
    display: flex;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
}

.bdm-ldot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 3px;
    vertical-align: middle;
}

.bdm-ldot-f { background: #3B5BDB; }
.bdm-ldot-m { background: #f97316; }
.bdm-ldot-x { background: #e8eaef; }

.bdm-age { border-top: 1px solid #eceef2; padding-top: 12px; }

.bdm-age-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 52px;
}

.bdm-age-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.bdm-age-col span {
    font-size: 8.5px;
    color: #9ca3af;
    font-weight: 600;
    white-space: nowrap;
}

.bdm-age-bar {
    width: 100%;
    background: #c7d2fe;
    border-radius: 3px 3px 0 0;
}

.bdm-age-bar-hi { background: #3B5BDB; }

/* Steps mockup */
.bdm-steps-mock { display: flex; flex-direction: column; gap: 16px; }

.bdm-steps {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid #f0f1f4;
    border-radius: 12px;
    padding: 14px 16px;
}

.bdm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.bdm-step span {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.bdm-sline {
    flex: 1;
    height: 2px;
    background: #e8eaef;
    margin-bottom: 16px;
}

.bdm-sdot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.bdm-sdot-done {
    background: #059669;
    color: #fff;
}

.bdm-sdot-active {
    background: #3B5BDB;
    border: 3px solid #c7d2fe;
    width: 20px;
    height: 20px;
}

.bdm-active-label { color: #3B5BDB !important; font-weight: 700 !important; }

.bdm-time-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bdm-time-val {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--ink);
    line-height: 1;
}

.bdm-time-unit {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-mid);
}

.bdm-time-sub {
    font-size: 12px;
    color: #9ca3af;
    margin-top: -8px;
}

/* ── VALUE TABLE ── */
/* ── COMPARISON TABLE ── */
.cvt-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 40px;
}

.cvt-heading {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--ink);
    margin: 0;
}

.cvt-strike {
    color: #9ca3af;
    text-decoration: line-through;
    text-decoration-color: #9ca3af;
    font-style: normal;
}

.cvt-head-desc {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.7;
    margin: 0;
    padding-bottom: 6px;
}

/* Table shell */
.cvt-table {
    border: 1px solid #dde0e8;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

/* Column headers */
.cvt-col-heads {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    border-bottom: 1px solid #dde0e8;
}

.cvt-ch {
    padding: 13px 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cvt-ch-need {
    background: #f8f9fb;
    color: #9ca3af;
    border-right: 1px solid #dde0e8;
}

.cvt-ch-old {
    background: #f8f9fb;
    color: #6b7280;
    border-right: 1px solid #dde0e8;
}

.cvt-ch-new {
    background: #1e2a5e;
    color: rgba(255,255,255,0.7);
}

.cvt-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cvt-dot-red   { background: #ef4444; }
.cvt-dot-green { background: #22c55e; }

.cvt-yr-badge {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.cvt-live-badge {
    margin-left: auto;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Data rows */
.cvt-row {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    border-bottom: 1px solid #eceef2;
}

.cvt-row-last { border-bottom: none; }

.cvt-need {
    padding: 22px 20px;
    border-right: 1px solid #eceef2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #fff;
}

.cvt-rnum {
    font-size: 10px;
    font-weight: 700;
    color: #3B5BDB;
    background: #eef2ff;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    letter-spacing: 0.3px;
}

.cvt-rtitle {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.cvt-rsub {
    font-size: 11.5px;
    color: #9ca3af;
    line-height: 1.4;
}

.cvt-old {
    padding: 20px;
    border-right: 1px solid #eceef2;
    display: flex;
    align-items: center;
    background: #fafafa;
}

.cvt-new {
    padding: 20px;
    display: flex;
    align-items: center;
    background: #f5f7ff;
}

/* Row 01 — Chat bubble */
.cvt-bubble {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
}

.cvt-bubble-msg {
    font-size: 12.5px;
    color: var(--ink);
    margin-bottom: 5px;
    line-height: 1.4;
}

.cvt-bubble-meta {
    font-size: 10.5px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.cvt-bubble-noreply {
    font-size: 11px;
    color: #ef4444;
    font-weight: 600;
}

.cvt-price-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.cvt-pchip {
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #dde0e8;
    border-radius: 100px;
    font-size: 12px;
    color: var(--ink);
}

.cvt-bundle-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: #1e2a5e;
    color: #fff;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
}

/* Row 02 — Engagement */
.cvt-self-report {
    font-size: 12.5px;
    color: var(--ink-mid);
    line-height: 1.5;
    font-style: italic;
}

.cvt-self-report s { color: #ef4444; }

.cvt-sr-tag {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    color: #9ca3af;
    font-style: normal;
    margin-top: 4px;
}

.cvt-verified-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
}

.cvt-vc-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.cvt-vc-main {
    font-size: 13px;
    font-weight: 700;
    color: #065f46;
}

.cvt-vc-sub {
    font-size: 11px;
    color: #059669;
    margin-top: 2px;
}

/* Row 03 — Niche */
.cvt-scroll-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cvt-dummy-av {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    opacity: 0.5;
}

.cvt-scroll-note {
    font-size: 11px;
    font-family: 'Courier New', monospace;
    color: #6b7280;
    margin-left: 4px;
}

.cvt-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.cvt-fchip {
    padding: 5px 12px;
    background: #1e2a5e;
    color: #fff;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
}

.cvt-matches {
    padding: 5px 12px;
    background: #3B5BDB;
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

/* Row 04 — Cost */
.cvt-fee-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cvt-fee-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-mid);
    padding: 4px 0;
    border-bottom: 1px solid #f0f1f4;
}

.cvt-fee-total {
    font-size: 12.5px;
    font-weight: 800;
    color: #ef4444;
    margin-top: 6px;
    font-family: 'Courier New', monospace;
}

.cvt-price-card {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    position: relative;
}

.cvt-killer-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #1e2a5e;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.4px;
}

.cvt-pc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cvt-pc-price {
    font-size: 22px;
    font-weight: 800;
    color: #1e2a5e;
    letter-spacing: -0.5px;
}

.cvt-pc-per {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0;
}

.cvt-no-sub {
    padding: 4px 12px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #059669;
}

/* Row 05 — Audience */
.cvt-no-data {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f4f6;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
}

.cvt-lock { font-size: 18px; }

.cvt-nd-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #6b7280;
}

.cvt-nd-sub {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
}

.cvt-aud-card {
    background: #fff;
    border: 1px solid #dde0e8;
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
}

.cvt-aud-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cvt-aud-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink);
}

.cvt-aud-row span:last-child { color: #6b7280; width: 28px; text-align: right; flex-shrink: 0; }

.cvt-abar-wrap {
    flex: 1;
    height: 5px;
    background: #f0f1f4;
    border-radius: 100px;
    overflow: hidden;
}

.cvt-abar {
    height: 100%;
    background: #3B5BDB;
    border-radius: 100px;
}

/* Row 06 — Direct */
.cvt-chain {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cvt-chain-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.cvt-av-you { background: #3B5BDB; }
.cvt-av-a   { background: #6b7280; }
.cvt-av-m   { background: #6b7280; }
.cvt-av-cr  { background: #6b7280; }

.cvt-arr { font-size: 11px; color: #9ca3af; }

.cvt-middlemen {
    font-size: 10.5px;
    color: #ef4444;
    font-weight: 600;
    margin-left: 4px;
    white-space: nowrap;
}

.cvt-direct-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dde0e8;
    border-radius: 10px;
    padding: 10px 12px;
    width: 100%;
}

.cvt-dm-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c96b2e, #7a2e0e);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cvt-dm-body { flex: 1; font-size: 12px; }

.cvt-dm-you {
    font-weight: 700;
    color: #3B5BDB;
    margin-right: 5px;
}

.cvt-dm-text { color: var(--ink-mid); }

.cvt-dm-send {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1e2a5e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Stats bar */
.cvt-stats-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid #dde0e8;
    border-radius: 14px;
    padding: 20px 28px;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.cvt-sstat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cvt-sval {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
    line-height: 1;
}

.cvt-sval-accent { color: #3B5BDB; }

.cvt-slabel {
    font-size: 12.5px;
    color: var(--ink-mid);
}

.cvt-sdiv {
    width: 1px;
    height: 32px;
    background: #e5e7eb;
    flex-shrink: 0;
}

.cvt-browse-btn {
    margin-left: auto;
    display: inline-block;
    background: #1e2a5e;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.cvt-browse-btn:hover { opacity: 0.88; }

/* ── PRICING ── */
.pricing-grid {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.22s;
}

.price-card:hover {
    border-color: var(--blue-mid);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(59, 91, 219, 0.1);
}

.price-card.featured {
    border-color: var(--blue);
    background: var(--blue);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--bg);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pack-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-faint);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.price-card.featured .pack-name {
    color: rgba(255, 255, 255, 0.45);
}

.pack-price {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -3px;
    color: var(--ink);
    line-height: 1;
}

.pack-price strong {
    font-weight: 800;
}

.price-card.featured .pack-price {
    color: var(--bg);
}

.pack-per {
    font-size: 13px;
    color: var(--ink-faint);
    margin: 6px 0 16px;
}

.price-card.featured .pack-per {
    color: rgba(255, 255, 255, 0.4);
}

.pack-save {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.price-card.featured .pack-save {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, #1a2a6c 0%, #2d46b9 60%, #3B5BDB 100%);
    margin: 0 5% 88px;
    border-radius: 20px;
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
    top: -120px;
    right: -60px;
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--bg);
    margin-bottom: 12px;
}

.cta-banner h2 em {
    color: #a8bcff;
    font-style: normal;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

/* ── FOOTER ── */
/* ── FOOTER ── */
footer {
    background: var(--blue-navy);
    padding: 64px 6% 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--bg);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: #a8bcff;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-pill {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 13px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.18s;
    letter-spacing: 0.2px;
}

.social-pill:hover {
    background: rgba(168, 188, 255, 0.15);
    border-color: rgba(168, 188, 255, 0.3);
    color: #a8bcff;
}

.footer-links-group {
    display: flex;
    gap: 48px;
    flex: 2;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 130px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.18s;
    line-height: 1.4;
}

.footer-link:hover {
    color: #a8bcff;
}

.footer-link-admin {
    font-size: 11px;
    opacity: 0.35;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 10px;
    margin-top: 4px;
    letter-spacing: 0.2px;
}

.footer-link-admin:hover {
    opacity: 1;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 768px) {
    .footer-top {
        gap: 40px;
    }

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

    .footer-links-group {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-links-group {
        flex-direction: column;
        gap: 28px;
    }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .bd-section-head {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 36px;
    }
}

@media (max-width: 900px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-left {
        max-width: 100%;
    }

    .hiw-sub {
        max-width: 100%;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0 4%;
    }

    .nav-link {
        display: none;
    }

    .section {
        padding: 60px 5%;
    }

    .cta-banner {
        margin: 0 4% 64px;
        padding: 52px 24px;
    }

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

    h1 {
        letter-spacing: -1px;
    }

    .cvt-col-heads,
    .cvt-row {
        grid-template-columns: 1fr;
    }
    .cvt-need { border-right: none; border-bottom: 1px solid #eceef2; }
    .cvt-old  { border-right: none; border-bottom: 1px solid #eceef2; }
    .cvt-head { grid-template-columns: 1fr; gap: 12px; }

}

/* ── TRUST STRIP ── */
.trust-strip {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 13px 6%;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-mid);
    padding: 5px 24px;
}

.trust-item svg {
    color: var(--blue);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 18px;
    background: var(--border-mid);
}

/* ── WHO IT'S FOR ── */
/* ── WHO IT'S FOR ── */
.fw-section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 32px;
    margin-bottom: 48px;
}

.fw-section-head .tag { margin-bottom: 12px; }

.fw-section-desc {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.7;
    margin: 0;
    padding-bottom: 6px;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fw-card {
    background: #fff;
    border: 1px solid #e8eaef;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.22s, box-shadow 0.22s;
}

.fw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.fw-card-inner {
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

/* Pill tag */
.fw-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px 5px 10px;
    background: #f3f4f6;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #6b7280;
    margin-bottom: 16px;
    width: fit-content;
}

.fw-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fw-dot-blue  { background: #3B5BDB; }
.fw-dot-green { background: #059669; }
.fw-dot-amber { background: #d97706; }

.fw-heading {
    font-size: 21px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.fw-desc {
    font-size: 13.5px;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Mockup area */
.fw-mockup {
    background: #f8f9fb;
    border: 1px solid #eceef2;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 18px;
}

/* Filter chips */
.fwm-filter-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.fwm-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    background: #fff;
    border: 1px solid #dde0e8;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
}

.fwm-chip-add {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #3B5BDB;
}

.fwm-x { color: #9ca3af; font-size: 10px; }

/* Creator rows */
.fwm-creators { display: flex; flex-direction: column; gap: 6px; }

.fwm-row {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid #f0f1f4;
    border-radius: 10px;
    padding: 7px 9px;
}

.fwm-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.fwm-av-a { background: linear-gradient(135deg, #f093fb, #f5576c); }
.fwm-av-b { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.fwm-av-c { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.fwm-av-d { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.fwm-av-e { background: linear-gradient(135deg, #f6d365, #fda085); }

.fwm-info { flex: 1; min-width: 0; }

.fwm-handle {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.fwm-meta {
    font-size: 10px;
    color: #9ca3af;
    line-height: 1.3;
}

.fwm-badge {
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.fwm-badge-blue  { background: #eef2ff; color: #3B5BDB; }
.fwm-badge-green { background: #ecfdf5; color: #059669; }

/* Map mockup */
.fwm-map {
    position: relative;
    height: 72px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.fwm-map-dots { position: absolute; inset: 0; }

.fwm-map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3B5BDB;
    transform: translate(-50%, -50%);
}

.fwm-dot-dim {
    background: #bfdbfe;
    width: 5px;
    height: 5px;
}

.fwm-dot-pulse {
    background: #059669;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 4px rgba(5,150,105,0.2);
}

.fwm-map-tag {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #fff;
    border-radius: 100px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Metrics mockup */
.fwm-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.fwm-metric {
    background: #fff;
    border: 1px solid #f0f1f4;
    border-radius: 10px;
    padding: 9px 6px;
    text-align: center;
}

.fwm-mv {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}

.fwm-mv-green { color: #059669; }

.fwm-mk {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #9ca3af;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Table mockup */
.fwm-table { display: flex; flex-direction: column; gap: 4px; }

.fwm-trow {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 5px 9px;
    background: #fff;
    border: 1px solid #f0f1f4;
    border-radius: 7px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink);
}

.fwm-theader {
    background: transparent;
    border-color: transparent;
    padding: 0 9px 2px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #9ca3af;
    text-transform: uppercase;
}

.fwm-conv-ok   { color: #059669; }
.fwm-conv-best { color: #3B5BDB; font-weight: 800; }

/* Features list */
.fw-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
    flex: 1;
}

.fw-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-mid);
    line-height: 1.5;
}

.fw-icon-feat {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.fw-icon-blue  { background: rgba(59,91,219,0.1);  color: #3B5BDB; }
.fw-icon-green { background: rgba(5,150,105,0.1);  color: #059669; }
.fw-icon-amber { background: rgba(217,119,6,0.1);  color: #d97706; }

/* CTA link */
.fw-cta {
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    padding-top: 16px;
    border-top: 1px solid #e8eaef;
    display: block;
    transition: opacity 0.15s;
}

.fw-cta:hover { opacity: 0.7; }

.fw-cta-blue  { color: #3B5BDB; }
.fw-cta-green { color: #059669; }
.fw-cta-amber { color: #d97706; }

/* ── NICHES ── */
.niches-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 48px;
}

/* Niche request banner */
.niche-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #1e2a5e;
    border-radius: 16px;
    padding: 22px 28px;
    margin-top: 20px;
}

.ncb-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ncb-left strong {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.ncb-left span {
    font-size: 14px;
    color: rgba(255,255,255,0.58);
}

.ncb-btn {
    display: inline-block;
    white-space: nowrap;
    background: #fff;
    color: #1e2a5e;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    flex-shrink: 0;
}

.ncb-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .niche-cta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
}

/* IMAGE-STYLE CATEGORY CARDS */
.lp-cat-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
}

.lp-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.lp-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
    z-index: 1;
}

.lp-cat-text {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-cat-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    font-family: 'Bricolage Grotesque', sans-serif;
}

.lp-cat-count {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.lp-cat-food {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/food.webp') center/cover no-repeat;
}

.lp-cat-fashion {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/fashion.webp') center/cover no-repeat;
}

.lp-cat-fitness {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/fitness.webp') center/cover no-repeat;
}

.lp-cat-travel {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/travel.webp') center/cover no-repeat;
}

.lp-cat-beauty {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/beauty.webp') center/cover no-repeat;
}

.lp-cat-tech {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/tech.webp') center/cover no-repeat;
}

.lp-cat-lifestyle {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/lifestyle.webp') center/cover no-repeat;
}

.lp-cat-gaming {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/gaming.webp') center/cover no-repeat;
}

.lp-cat-finance {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/finance.webp') center/cover no-repeat;
}

.lp-cat-comedy {
    background:
        linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%),
        url('../assets/images/comdey.webp') center/cover no-repeat;
}

/* ── UNLOCK DETAILS ── */
/* ── WHAT YOU GET ── */
.wu-section { background: #fff; }

.wu-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
}

.wu-left { padding-top: 20px; }

.wu-heading {
    font-size: clamp(34px, 3.8vw, 50px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 14px;
}

.wu-desc {
    font-size: 14.5px;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 0;
}

.wu-divider {
    height: 1px;
    background: #d1d5db;
    margin: 22px 0;
}

.wu-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.wu-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.5;
}

.wu-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1e2a5e;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.wu-pricing { margin-bottom: 24px; }

.wu-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.wu-price-val {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--ink);
    line-height: 1;
}

.wu-price-old {
    font-size: 17px;
    color: #9ca3af;
    text-decoration: line-through;
}

.wu-price-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #6b7280;
    text-transform: uppercase;
}

.wu-price-note {
    font-size: 13px;
    color: var(--ink-mid);
    margin: 0;
}

.wu-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wu-btn-primary {
    display: inline-block;
    background: #1e2a5e;
    color: #fff;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
}

.wu-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.wu-btn-ghost {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color 0.15s;
}

.wu-btn-ghost:hover { color: var(--ink); }

/* ── Card mockup ── */
.wu-right {
    display: flex;
    justify-content: center;
    padding: 20px 40px 20px 10px;
}

.wu-card-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.wu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 8px 16px rgba(0,0,0,0.07),
        0 24px 48px rgba(0,0,0,0.12),
        0 48px 96px rgba(0,0,0,0.1);
}

.wu-card-cover {
    height: 96px;
    background: linear-gradient(135deg, #bf6232 0%, #7a2e0e 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 20px;
}

.wu-card-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8b07a, #c47240);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #7a2e0e;
    margin-bottom: -31px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.wu-avail-badge {
    position: absolute;
    top: 11px;
    right: 12px;
    background: #fff;
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #374151;
}

.wu-avail-badge::before {
    content: '●';
    color: #059669;
    margin-right: 5px;
    font-size: 9px;
}

.wu-card-body { padding: 38px 20px 0; }

.wu-creator-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.3px;
    margin-bottom: 3px;
}

.wu-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    background: #3B5BDB;
    color: #fff;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 900;
    margin-left: 4px;
    vertical-align: middle;
}

.wu-creator-meta {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 14px;
}

.wu-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #f0f1f4;
    border-bottom: 1px solid #f0f1f4;
    padding: 10px 0;
    margin-bottom: 4px;
}

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

.wu-sv {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.wu-sv-up {
    font-size: 9.5px;
    font-weight: 700;
    color: #059669;
    vertical-align: super;
}

.wu-sk {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #9ca3af;
    text-transform: uppercase;
    margin-top: 2px;
}

.wu-section-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 13px;
    margin-bottom: 7px;
}

.wu-section-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #9ca3af;
    text-transform: uppercase;
}

.wu-section-link {
    font-size: 9px;
    font-weight: 700;
    color: #3B5BDB;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.wu-rate-rows { display: flex; flex-direction: column; }

.wu-rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f7f8fa;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 500;
}

.wu-rate-bundle {
    background: #f5f7ff;
    margin: 4px -20px 0;
    padding: 8px 20px;
    border-bottom: none;
    font-weight: 600;
    border-radius: 0;
}

.wu-rate-price { font-weight: 800; font-size: 13px; }
.wu-bundle-price { color: #3B5BDB; }

.wu-city-rows { display: flex; flex-direction: column; gap: 5px; }

.wu-city-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
}

.wu-city-name {
    width: 58px;
    font-weight: 600;
    color: var(--ink);
    flex-shrink: 0;
}

.wu-city-bar-wrap {
    flex: 1;
    height: 5px;
    background: #f0f1f4;
    border-radius: 100px;
    overflow: hidden;
}

.wu-city-bar {
    height: 100%;
    background: #3B5BDB;
    border-radius: 100px;
}

.wu-city-pct {
    font-size: 10.5px;
    font-weight: 700;
    color: #6b7280;
    width: 26px;
    text-align: right;
    flex-shrink: 0;
}

.wu-collab-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-bottom: 4px;
}

.wu-pill {
    padding: 4px 11px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
}

.wu-pill-more {
    background: transparent;
    border-color: #c7d2fe;
    color: #3B5BDB;
}

.wu-msg-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #f0f1f4;
    padding: 11px 0 16px;
    margin-top: 12px;
}

.wu-msg-text {
    flex: 1;
    font-size: 12px;
    color: #9ca3af;
}

.wu-msg-send {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e2a5e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Annotation dots */
.wu-ann {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #1e2a5e;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.wu-ann-1 { top: 55px;  left: -13px; }
.wu-ann-2 { top: 174px; right: -13px; }
.wu-ann-3 { top: 216px; left: -13px; }
.wu-ann-4 { top: 296px; right: -13px; }
.wu-ann-5 { top: 535px; left: -13px; }
.wu-ann-6 { bottom: 22px; left: -13px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testi-quote {
    font-size: 52px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    opacity: 0.18;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}

.testi-text {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.78;
    flex: 1;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.testi-role {
    font-size: 12px;
    color: var(--ink-faint);
    margin-top: 2px;
}

/* ── FAQ ── */
.faq-list {
    margin-top: 48px;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    background: var(--bg);
    transition: background 0.15s;
    user-select: none;
}

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

.faq-q:hover {
    background: var(--bg-soft);
}

.faq-chevron {
    color: var(--ink-soft);
    flex-shrink: 0;
    transition: transform 0.22s;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-item[open] .faq-q {
    background: var(--bg-soft);
    color: var(--blue);
}

.faq-a {
    padding: 16px 24px 22px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.8;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}

/* ── NEW RESPONSIVE ── */
@media (max-width: 1024px) {
    .fw-section-head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 36px;
    }
    .for-who-grid {
        grid-template-columns: 1fr 1fr;
    }
    .wu-inner {
        grid-template-columns: 360px 1fr;
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .fw-section-head {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }
    .for-who-grid {
        grid-template-columns: 1fr;
    }
    .niches-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .wu-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wu-right { padding: 0; }
    .wu-ann { display: none; }
    .trust-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .niches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .lp-cat-name { font-size: 13px; }
    .lp-cat-count { font-size: 10px; }
    .trust-item {
        padding: 4px 12px;
        font-size: 11.5px;
    }
}

/* ── FEATURED CREATORS ── */
.featured-section {
    background: var(--bg);
}

.featured-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.featured-viewall {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.featured-viewall:hover {
    gap: 8px;
}

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

/* Skeleton loader */
.fc-skeleton {
    height: 460px;
    background: linear-gradient(90deg, var(--border) 25%, var(--bg) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 18px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Featured creator card */
.fc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.22s;
}

.fc:hover {
    box-shadow: 0 12px 40px rgba(59, 91, 219, 0.1);
    transform: translateY(-3px);
}

.fc-cover {
    height: 88px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 18px 0;
}

.fc-avatar-wrap {
    position: absolute;
    bottom: -22px;
    left: 18px;
}

.fc-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: 3px solid var(--bg);
    backdrop-filter: blur(8px);
}

.fc-niche {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 100px;
    letter-spacing: 0.2px;
    
}

.fc-body {
    padding: 40px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-identity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.fc-handle-locked {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-lock-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--bg-soft);
    border: 1px solid var(--border-mid);
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fc-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.fc-badge-v {
    font-size: 10px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-bg);
    padding: 2px 8px;
    border-radius: 100px;
}

.fc-badge-city {
    font-size: 10px;
    font-weight: 500;
    color: var(--ink-soft);
}

.fc-section-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-faint);
    
}

.fc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fc-metric {
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.fc-mv {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

.fc-mv.good { color: #1a7a45; }
.fc-mv.ok   { color: #c2410c; }

.fc-mk {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ink-faint);
    
}

.fc-aud {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-aud-top {
    display: flex;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-soft);
}

.fc-gender-bar {
    display: flex;
    height: 5px;
    border-radius: 100px;
    overflow: hidden;
}

.fc-gb-f {
    background: var(--blue);
    height: 100%;
}

.fc-gb-m {
    background: var(--blue-light);
    height: 100%;
    flex: 1;
}

.fc-rates-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.fc-rate {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
}

.fc-rate span {
    display: block;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 3px;
    
}

.fc-rate strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    font-family: 'Bricolage Grotesque', sans-serif;
}

.fc-barter {
    font-size: 12px;
    font-weight: 500;
    color: #2e7d32;
    background: #edfaf3;
    border: 1px solid #c8eed9;
    border-radius: 8px;
    padding: 10px 12px;
}

.fc-unlock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    transition: background 0.18s, transform 0.18s;
    
}

.fc-unlock:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

.fc-unlock strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
}

@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .featured-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .featured-grid {
        max-width: 100%;
    }
}