/* ============================================================
   Wowseo.ai — feature components
   ============================================================ */

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 4vw, 64px);
  align-items: center; padding-block: clamp(48px, 6vw, 92px);
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .acc { color: var(--acc); }
.hero .lead { margin-bottom: 30px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; gap: 3px; }
.hero-trust .ht b { font-family: var(--f-head); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.hero-trust .ht span { font-size: 13.5px; color: var(--ink-3); }
.hero-trust .ht b .acc { color: var(--acc); }

.hero-dual { display: inline-flex; gap: 8px; margin-bottom: 22px; }
.hero-dual .seg { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-2); }
.hero-dual .seg.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.hero-dual .x { align-self: center; color: var(--ink-3); font-family: var(--f-mono); }

/* faint grid bg */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 10%, #000 0%, transparent 62%);
          mask-image: radial-gradient(120% 90% at 80% 10%, #000 0%, transparent 62%);
  opacity: 0.5;
}
.hero-grid, .hero .wrap > * { position: relative; z-index: 1; }
:root[data-grid="off"] .hero::before { display: none; }

/* hero variant: centered */
:root[data-hero="centered"] .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
:root[data-hero="centered"] .hero .lead { margin-inline: auto; }
:root[data-hero="centered"] .hero-cta, :root[data-hero="centered"] .hero-trust, :root[data-hero="centered"] .hero-dual { justify-content: center; }
:root[data-hero="centered"] .hero-visual { grid-row: 2; width: 100%; max-width: 920px; margin-top: 14px; }
:root[data-hero="centered"] .hero-eyebrow { justify-content: center; }

/* hero variant: dark */
:root[data-hero="dark"] .hero { background: var(--night); color: var(--night-ink); }
:root[data-hero="dark"] .hero h1 { color: var(--night-ink); }
:root[data-hero="dark"] .hero h1 .acc { color: var(--acc-bright); }
:root[data-hero="dark"] .hero .lead { color: var(--night-ink-2); }
:root[data-hero="dark"] .hero .hero-eyebrow { color: var(--acc-bright); }
:root[data-hero="dark"] .hero::before { background-image: linear-gradient(var(--night-line) 1px, transparent 1px), linear-gradient(90deg, var(--night-line) 1px, transparent 1px); opacity: 0.4; }
:root[data-hero="dark"] .hero-trust .ht span { color: var(--night-ink-2); }
:root[data-hero="dark"] .hero-dual .seg { border-color: var(--night-line); color: var(--night-ink-2); }
:root[data-hero="dark"] .hero-dual .seg.on { background: var(--night-ink); color: var(--night); border-color: var(--night-ink); }
:root[data-hero="dark"] .btn--ghost { color: var(--night-ink); border-color: var(--night-line); }
:root[data-hero="dark"] .btn--ghost:hover { border-color: var(--night-ink); background: var(--night-2); }

/* ---------- Dashboard mock (hero visual) ---------- */
.mock {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
:root[data-hero="dark"] .mock { background: var(--night-2); border-color: var(--night-line); }
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--surface); }
:root[data-hero="dark"] .mock-bar { background: oklch(0.23 0.018 165); border-color: var(--night-line); }
.mock-bar .dots { display: flex; gap: 6px; }
.mock-bar .dots i { width: 10px; height: 10px; border-radius: 999px; background: var(--line-2); display: block; }
.mock-bar .addr { flex: 1; text-align: center; font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }
:root[data-hero="dark"] .mock-bar .addr { color: var(--night-ink-2); }
.mock-body { padding: 20px; }
:root[data-hero="dark"] .mock-body { color: var(--night-ink); }

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi { border: 1px solid var(--line); border-radius: var(--r); padding: 13px 14px; background: var(--paper); }
:root[data-hero="dark"] .kpi { background: oklch(0.235 0.018 165); border-color: var(--night-line); }
.kpi .lab { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
:root[data-hero="dark"] .kpi .lab { color: var(--night-ink-2); }
.kpi .val { font-family: var(--f-head); font-weight: 800; font-size: 23px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
:root[data-hero="dark"] .kpi .val { color: var(--night-ink); }
.kpi .chg { font-size: 12px; font-weight: 600; color: var(--acc-ink); display: inline-flex; align-items: center; gap: 3px; margin-top: 2px; }
:root[data-hero="dark"] .kpi .chg { color: var(--acc-bright); }

.chart-card { border: 1px solid var(--line); border-radius: var(--r); padding: 16px; background: var(--paper); }
:root[data-hero="dark"] .chart-card { background: oklch(0.235 0.018 165); border-color: var(--night-line); }
.chart-card .chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.chart-card .chart-head .t { font-weight: 600; font-size: 14px; }
:root[data-hero="dark"] .chart-card .chart-head .t { color: var(--night-ink); }

/* svg chart pieces */
.spark-area { fill: var(--acc); opacity: 0.10; }
.spark-line { fill: none; stroke: var(--acc); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.spark-line--dim { stroke: var(--ink-3); opacity: 0.4; stroke-dasharray: 4 5; }
.grid-line { stroke: var(--line); stroke-width: 1; }
:root[data-hero="dark"] .grid-line { stroke: var(--night-line); }
.axis-lab { fill: var(--ink-3); font-family: var(--f-mono); font-size: 10px; }
:root[data-hero="dark"] .axis-lab { fill: var(--night-ink-2); }
.dot-pt { fill: var(--paper); stroke: var(--acc); stroke-width: 2.5; }
:root[data-hero="dark"] .dot-pt { fill: var(--night-2); }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; }
.logo-ph { height: 26px; padding: 0 6px; display: flex; align-items: center; gap: 9px; color: var(--ink-3); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; opacity: 0.72; }
.logo-ph i { width: 22px; height: 22px; border-radius: 6px; background: repeating-linear-gradient(45deg, var(--line-2) 0 5px, var(--surface-2) 5px 10px); display: block; }

/* ---------- Service cards ---------- */
.svc { display: flex; flex-direction: column; gap: 14px; min-height: 100%; }
.svc .svc-ic { width: 46px; height: 46px; border-radius: var(--r); display: grid; place-items: center; background: var(--acc-tint); color: var(--acc-ink); border: 1px solid var(--acc-tint-2); }
.svc .svc-ic svg { width: 22px; height: 22px; }
.svc h3 { font-size: 20px; }
.svc p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.svc .svc-meta { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.svc .svc-price { font-family: var(--f-mono); font-size: 13px; color: var(--ink-3); }
.svc .svc-price b { color: var(--ink); font-weight: 600; }

.svc-feature {
  grid-column: span 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center;
  background: linear-gradient(180deg, var(--acc-tint) 0%, var(--paper) 100%);
  border-color: var(--acc-tint-2);
}
@media (max-width: 680px) { .svc-feature { grid-column: span 1; grid-template-columns: 1fr; } }

/* ---------- Section: numbers / proof ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.proof-cell { background: var(--paper); padding: 30px 26px; }
.proof-cell .stat-num { font-size: clamp(36px, 4vw, 50px); color: var(--ink); }
.proof-cell .stat-num .u { color: var(--acc); }
.proof-cell .lab { margin-top: 8px; color: var(--ink-3); font-size: 14.5px; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Case cards ---------- */
.case { display: flex; flex-direction: column; gap: 0; overflow: hidden; padding: 0; }
.case .case-top { padding: 22px 24px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.case .case-top .ind { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }
.case .case-chart { padding: 8px 10px 0; }
.case .case-foot { padding: 16px 24px 22px; border-top: 1px solid var(--line); margin-top: 12px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.case .case-foot .big { font-family: var(--f-head); font-weight: 800; font-size: 28px; letter-spacing: -0.03em; color: var(--acc-ink); font-variant-numeric: tabular-nums; }
.case .case-foot .sub { font-size: 13px; color: var(--ink-3); text-align: right; }

/* ============================================================
   AI CHECKER (dark block)
   ============================================================ */
.checker-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
@media (max-width: 900px) { .checker-grid { grid-template-columns: 1fr; } }

.term {
  background: oklch(0.17 0.016 165); border: 1px solid var(--night-line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); font-family: var(--f-mono);
}
.term-bar { display: flex; align-items: center; gap: 8px; padding: 12px 15px; border-bottom: 1px solid var(--night-line); background: oklch(0.205 0.018 165); }
.term-bar .dots { display: flex; gap: 6px; }
.term-bar .dots i { width: 10px; height: 10px; border-radius: 999px; background: var(--night-line); display: block; }
.term-bar .ttl { font-size: 12px; color: var(--night-ink-2); letter-spacing: 0.04em; }
.term-body { padding: 18px 20px; font-size: 13.5px; line-height: 1.7; color: var(--night-ink); min-height: 308px; }
.term-input { display: flex; gap: 8px; align-items: center; padding: 12px 16px; border-top: 1px solid var(--night-line); background: oklch(0.195 0.018 165); }
.term-input .pr { color: var(--acc-bright); }
.term-input input { flex: 1; background: transparent; border: 0; outline: 0; color: var(--night-ink); font-family: var(--f-mono); font-size: 13.5px; }
.term-input input::placeholder { color: var(--night-ink-2); }
.term .ln { display: block; white-space: pre-wrap; }
.term .c-dim { color: var(--night-ink-2); }
.term .c-acc { color: var(--acc-bright); }
.term .c-warn { color: oklch(0.78 0.13 75); }
.term .c-bad { color: oklch(0.68 0.15 25); }
.term .cursor { display: inline-block; width: 8px; height: 15px; background: var(--acc-bright); vertical-align: -2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.score-ring { display: grid; place-items: center; }
.score-ring .ring-num { font-family: var(--f-head); font-weight: 800; font-size: 34px; fill: var(--night-ink); letter-spacing: -0.02em; }
.score-ring .ring-lab { font-family: var(--f-mono); font-size: 10px; fill: var(--night-ink-2); letter-spacing: 0.1em; }

.checkrow { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--night-line); }
.checkrow:last-child { border-bottom: 0; }
.checkrow .ck { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; flex: none; }
.checkrow .ck--ok { background: oklch(0.585 0.135 158 / 0.18); color: var(--acc-bright); }
.checkrow .ck--warn { background: oklch(0.78 0.13 75 / 0.16); color: oklch(0.82 0.13 75); }
.checkrow .ck--bad { background: oklch(0.68 0.15 25 / 0.16); color: oklch(0.74 0.15 25); }
.checkrow .ck svg { width: 13px; height: 13px; }
.checkrow .t { font-size: 14.5px; color: var(--night-ink); }
.checkrow .t small { display: block; color: var(--night-ink-2); font-size: 12.5px; font-family: var(--f-mono); margin-top: 1px; }
.checkrow .pts { margin-left: auto; font-family: var(--f-mono); font-size: 13px; color: var(--night-ink-2); }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }
.calc-form { padding: clamp(24px, 3vw, 38px); }
.calc-side { padding: clamp(24px, 3vw, 38px); background: var(--night); color: var(--night-ink); display: flex; flex-direction: column; }

.field { margin-bottom: 26px; }
.field:last-child { margin-bottom: 0; }
.field > .flab { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.field .flab .l { font-weight: 600; font-size: 15.5px; }
.field .flab .v { font-family: var(--f-mono); font-size: 13.5px; color: var(--acc-ink); font-weight: 600; }

.seg-opts { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 8px; }
.seg-opts.wrap2 { grid-auto-flow: row; grid-template-columns: 1fr 1fr; }
.seg-opt { padding: 12px 12px; border: 1px solid var(--line-2); border-radius: var(--r); background: var(--paper); font-weight: 600; font-size: 14.5px; color: var(--ink-2); text-align: center; transition: all .15s ease; line-height: 1.2; }
.seg-opt small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-3); margin-top: 3px; font-family: var(--f-mono); }
.seg-opt:hover { border-color: var(--ink-3); }
.seg-opt.on { border-color: var(--acc); background: var(--acc-tint); color: var(--acc-ink); box-shadow: inset 0 0 0 1px var(--acc); }
.seg-opt.on small { color: var(--acc-ink); }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--surface-2); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 999px; background: var(--paper); border: 2px solid var(--acc); box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .12s ease; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 999px; background: var(--paper); border: 2px solid var(--acc); cursor: pointer; }
.range-ticks { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); }

.calc-toggle { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer; }
.calc-toggle:hover { border-color: var(--ink-3); }
.calc-toggle .sw { width: 42px; height: 24px; border-radius: 999px; background: var(--surface-2); position: relative; flex: none; transition: background .18s ease; }
.calc-toggle .sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 999px; background: var(--paper); box-shadow: var(--shadow-sm); transition: transform .18s ease; }
.calc-toggle.on .sw { background: var(--acc); }
.calc-toggle.on .sw::after { transform: translateX(18px); }
.calc-toggle .ct-t { font-weight: 600; font-size: 14.5px; }
.calc-toggle .ct-t small { display: block; font-weight: 500; font-size: 12.5px; color: var(--ink-3); }
.calc-toggle .ct-price { margin-left: auto; font-family: var(--f-mono); font-size: 13px; color: var(--ink-3); }

.calc-side .cs-lab { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--night-ink-2); }
.calc-total { font-family: var(--f-head); font-weight: 800; font-size: clamp(38px, 5vw, 54px); letter-spacing: -0.03em; line-height: 1; margin: 8px 0 4px; font-variant-numeric: tabular-nums; color: var(--night-ink); }
.calc-total .cur { color: var(--acc-bright); }
.calc-period { color: var(--night-ink-2); font-size: 14px; }
.calc-break { margin: 24px 0; display: flex; flex-direction: column; gap: 0; }
.calc-break .br { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--night-line); font-size: 14px; }
.calc-break .br:last-child { border-bottom: 0; }
.calc-break .br .k { color: var(--night-ink-2); display: flex; align-items: center; gap: 8px; }
.calc-break .br .k::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--acc-bright); transform: rotate(45deg); }
.calc-break .br .vv { font-family: var(--f-mono); color: var(--night-ink); }
.calc-side .cta-wrap { margin-top: auto; }
.calc-note { font-size: 12.5px; color: var(--night-ink-2); margin-top: 12px; text-align: center; }

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.steps { max-width: 760px; margin-inline: auto; }
.steps-prog { display: flex; align-items: center; gap: 0; margin-bottom: 34px; }
.steps-prog .stp { display: flex; align-items: center; gap: 10px; flex: 1; }
.steps-prog .stp:last-child { flex: none; }
.steps-prog .stp .n { width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--f-mono); font-size: 14px; font-weight: 600; color: var(--ink-3); background: var(--paper); flex: none; transition: all .2s ease; }
.steps-prog .stp .nm { font-size: 14px; font-weight: 600; color: var(--ink-3); white-space: nowrap; }
.steps-prog .stp .bar { flex: 1; height: 2px; background: var(--line); margin: 0 12px; border-radius: 2px; }
.steps-prog .stp.active .n { border-color: var(--acc); background: var(--acc); color: oklch(0.99 0.01 158); }
.steps-prog .stp.active .nm { color: var(--ink); }
.steps-prog .stp.done .n { border-color: var(--acc); background: var(--acc-tint); color: var(--acc-ink); }
.steps-prog .stp.done .bar, .steps-prog .stp.active .bar { background: var(--acc); }
@media (max-width: 680px) { .steps-prog .stp .nm { display: none; } }

.step-panel { display: none; }
.step-panel.on { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .opt-grid { grid-template-columns: 1fr; } }
.opt-card { border: 1px solid var(--line-2); border-radius: var(--r); padding: 18px; cursor: pointer; display: flex; gap: 13px; align-items: flex-start; transition: all .15s ease; background: var(--paper); }
.opt-card:hover { border-color: var(--ink-3); }
.opt-card .ck { width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--line-2); flex: none; display: grid; place-items: center; margin-top: 1px; transition: all .15s ease; }
.opt-card .ck svg { width: 12px; height: 12px; opacity: 0; color: oklch(0.99 0.01 158); }
.opt-card.on { border-color: var(--acc); background: var(--acc-tint); }
.opt-card.on .ck { background: var(--acc); border-color: var(--acc); }
.opt-card.on .ck svg { opacity: 1; }
.opt-card .oc-t { font-weight: 600; font-size: 15.5px; }
.opt-card .oc-d { font-size: 13.5px; color: var(--ink-3); margin-top: 2px; }

.inp { width: 100%; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: var(--r); font-family: inherit; font-size: 16px; color: var(--ink); background: var(--paper); outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
.inp:focus { border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-tint-2); }
.inp::placeholder { color: var(--ink-3); }
.inp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .inp-row { grid-template-columns: 1fr; } }
.flabel { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field-err { border-color: oklch(0.62 0.18 25) !important; }
.err-msg { color: oklch(0.55 0.18 25); font-size: 13px; margin-top: 6px; display: none; }
.err-msg.show { display: block; }

.step-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }

.step-done { text-align: center; padding: 20px 0; }
.step-done .badge-ok { width: 72px; height: 72px; border-radius: 999px; background: var(--acc-tint); color: var(--acc); display: grid; place-items: center; margin: 0 auto 22px; border: 1px solid var(--acc-tint-2); }
.step-done .badge-ok svg { width: 34px; height: 34px; }

/* ============================================================
   PBN builder
   ============================================================ */
.pbn-build { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
@media (max-width: 900px) { .pbn-build { grid-template-columns: 1fr; } }
.pbn-summary { position: sticky; top: 90px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
@media (max-width: 900px) { .pbn-summary { position: static; } }
.pbn-summary .ph { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.pbn-summary .pb { padding: 22px 24px; }
.pbn-network { display: grid; place-items: center; padding: 10px 0 4px; }

/* ---------- process timeline ---------- */
.timeline { display: grid; gap: 0; }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding-bottom: 30px; position: relative; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before { content: ""; position: absolute; left: 27px; top: 46px; bottom: -4px; width: 2px; background: var(--line); }
.tl-step:last-child::before { display: none; }
.tl-num { width: 54px; height: 54px; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: 20px; color: var(--acc-ink); position: relative; z-index: 1; }
.tl-body h3 { font-size: 19px; margin-bottom: 7px; }
.tl-body p { color: var(--ink-2); font-size: 15px; }
.tl-body .when { font-family: var(--f-mono); font-size: 12px; color: var(--acc-ink); margin-bottom: 4px; display: block; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--f-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.faq-q .ic { width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; transition: all .2s ease; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; width: 12px; height: 2px; background: var(--ink-2); border-radius: 2px; transition: transform .2s ease; }
.faq-q .ic::after { transform: rotate(90deg); }
.faq-item.open .faq-q .ic { background: var(--acc); border-color: var(--acc); }
.faq-item.open .faq-q .ic::before, .faq-item.open .faq-q .ic::after { background: oklch(0.99 0.01 158); }
.faq-item.open .faq-q .ic::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .inner { padding-bottom: 22px; color: var(--ink-2); font-size: 15.5px; line-height: 1.6; max-width: 70ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--night); color: var(--night-ink); border-radius: var(--r-xl); padding: clamp(36px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--night-line) 1px, transparent 1px), linear-gradient(90deg, var(--night-line) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.3; -webkit-mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 70%); mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--night-ink); margin-bottom: 16px; }
.cta-band .lead { color: var(--night-ink-2); margin-inline: auto; margin-bottom: 28px; }

/* page hero (inner) */
.page-hero { padding-block: clamp(40px, 5vw, 72px) clamp(20px, 3vw, 36px); }
.crumb { font-family: var(--f-mono); font-size: 12.5px; color: var(--ink-3); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.crumb a:hover { color: var(--acc-ink); }
.crumb .sep { opacity: 0.5; }

/* mobile menu */
.mmenu { position: fixed; inset: 70px 0 0; background: var(--paper); z-index: 55; padding: 24px var(--gut); display: none; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); }
.mmenu.open { display: flex; }
.mmenu a { padding: 14px 6px; font-family: var(--f-head); font-weight: 700; font-size: 20px; border-bottom: 1px solid var(--line); }
.mmenu .btn { margin-top: 14px; justify-content: center; }

/* ============================================================
   PBN page v2 — cases, tiers, niches, request form
   ============================================================ */

/* ---------- case cards with growth charts ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.case-head { padding: 22px 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.case-niche { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--acc-ink); background: var(--acc-tint); border: 1px solid var(--acc-tint-2); padding: 5px 10px; border-radius: 999px; font-weight: 600; }
.case-growth { font-family: var(--f-mono); font-size: 13.5px; font-weight: 600; color: var(--acc-ink); display: inline-flex; align-items: center; gap: 4px; }
.case-card h3 { padding: 14px 22px 4px; font-size: 18.5px; }
.case-card .case-sub { padding: 0 22px; color: var(--ink-3); font-size: 13.5px; }
.case-chart { padding: 10px 12px 0; margin-top: auto; }
.case-chart svg { width: 100%; height: auto; display: block; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: 14px; }
.case-stats .st { padding: 14px 8px 16px; text-align: center; border-right: 1px solid var(--line); }
.case-stats .st:last-child { border-right: 0; }
.case-stats .st b { display: block; font-family: var(--f-head); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.case-stats .st span { font-size: 12px; color: var(--ink-3); display: block; margin-top: 3px; }

/* ---------- pricing tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 1020px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-grid--duo { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 880px; margin-inline: auto; }
@media (max-width: 560px) { .tier-grid--duo { grid-template-columns: 1fr; } }
.tier { position: relative; display: flex; flex-direction: column; padding: 26px 24px; }
.tier .t-name { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.tier .t-price { font-family: var(--f-head); font-weight: 800; font-size: 38px; letter-spacing: -0.03em; line-height: 1; }
.tier .t-price .cur { color: var(--acc); }
.tier .t-per { font-size: 13px; color: var(--ink-3); margin-top: 6px; }
.tier ul { list-style: none; margin: 18px 0 22px; padding: 18px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--ink-2); }
.tier ul li { display: flex; gap: 9px; align-items: flex-start; }
.tier ul li::before { content: "✓"; color: var(--acc); font-weight: 700; flex: none; }
.tier .btn { margin-top: auto; justify-content: center; }
.tier--hot { border-color: var(--acc); box-shadow: 0 0 0 1px var(--acc), var(--shadow); }
.tier-flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--acc); color: oklch(0.99 0.01 158); padding: 4px 10px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
.tier--dark { background: var(--night); border-color: var(--night); color: var(--night-ink); }
.tier--dark .t-name { color: var(--night-ink-2); }
.tier--dark .t-per { color: var(--night-ink-2); }
.tier--dark .t-price .cur { color: var(--acc-bright); }
.tier--dark ul { border-color: var(--night-line); color: var(--night-ink-2); }
.tier--dark ul li::before { color: var(--acc-bright); }

/* ---------- niche / geo chips ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.nchip { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border: 1px solid var(--line-2); border-radius: 999px; font-weight: 600; font-size: 14.5px; background: var(--paper); color: var(--ink-2); }
.nchip .cc { font-family: var(--f-mono); font-size: 11px; font-weight: 600; color: var(--acc-ink); background: var(--acc-tint); padding: 3px 7px; border-radius: 6px; letter-spacing: 0.04em; }
.nchip--more { border-style: dashed; color: var(--ink-3); font-weight: 500; }

/* ---------- request band + form ---------- */
.pbn-summary .calc-break .br { border-color: var(--line); }
.pbn-summary .calc-break .vv { color: var(--ink); }
.pbn-summary .calc-break .k { color: var(--ink-3); }
.pbn-summary .calc-break .k::before { background: var(--acc); }

.req-band { background: var(--night); color: var(--night-ink); border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 900px) { .req-band { grid-template-columns: 1fr; } }
.req-info { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 0; position: relative; }
.req-info::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--night-line) 1px, transparent 1px), linear-gradient(90deg, var(--night-line) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.3; -webkit-mask-image: radial-gradient(100% 100% at 0% 0%, #000, transparent 75%); mask-image: radial-gradient(100% 100% at 0% 0%, #000, transparent 75%); pointer-events: none; }
.req-info > * { position: relative; }
.req-info h2 { color: var(--night-ink); margin: 16px 0 14px; }
.req-info .lead { color: var(--night-ink-2); font-size: 16.5px; }
.req-points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; font-size: 15px; color: var(--night-ink-2); }
.req-points li { display: flex; gap: 11px; align-items: flex-start; }
.req-points li::before { content: "✓"; color: var(--acc-bright); font-weight: 700; flex: none; }
.req-form { padding: clamp(28px, 4vw, 48px); background: var(--paper); color: var(--ink); }
.req-form .frow { margin-bottom: 18px; }
.req-form select.inp { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23808a85' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.cp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .cp-row { grid-template-columns: 1fr; } }
.cp-card { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer; transition: all .15s ease; background: var(--paper); }
.cp-card:hover { border-color: var(--ink-3); }
.cp-card.on { border-color: var(--acc); background: var(--acc-tint); box-shadow: inset 0 0 0 1px var(--acc); }
.cp-card .ic { width: 36px; height: 36px; border-radius: 9px; background: var(--surface); display: grid; place-items: center; color: var(--ink-2); flex: none; }
.cp-card.on .ic { background: var(--acc); color: oklch(0.99 0.01 158); }
.cp-card .ic svg { width: 18px; height: 18px; }
.cp-card .t { font-weight: 600; font-size: 14.5px; }
.cp-card .t small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.req-ok { text-align: center; padding: 40px 10px; display: none; }
.req-ok.show { display: block; }
.req-form.sent form { display: none; }

/* ---------- reviews carousel + trustpilot ---------- */
.tp-badge { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.tp-name { display: inline-flex; gap: 7px; align-items: center; font-family: var(--f-head); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.tp-name svg { width: 22px; height: 22px; color: #00B67A; }
.tp-stars { display: flex; gap: 3px; }
.tp-stars .sq { width: 26px; height: 26px; background: #00B67A; display: grid; place-items: center; }
.tp-stars .sq svg { width: 17px; height: 17px; color: #fff; }
.tp-score { font-size: 13.5px; color: var(--ink-3); }
.tp-score b { color: var(--ink); }

.rev-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 40px) / 3); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 4px; margin: -4px; }
.rev-track::-webkit-scrollbar { display: none; }
.rev-track > * { scroll-snap-align: start; }
@media (max-width: 980px) { .rev-track { grid-auto-columns: calc((100% - 20px) / 2); } }
@media (max-width: 640px) { .rev-track { grid-auto-columns: 100%; } }
.rev-card { display: flex; flex-direction: column; gap: 14px; padding: 26px 26px 22px; }
.rev-stars { display: flex; gap: 2px; }
.rev-stars .sq { width: 19px; height: 19px; background: #00B67A; display: grid; place-items: center; }
.rev-stars .sq svg { width: 12px; height: 12px; color: #fff; }
.rev-text { font-size: 15px; line-height: 1.62; color: var(--ink-2); }
.rev-person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.rev-ava { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: 16px; color: oklch(0.99 0.01 158); flex: none; }
.rev-nm b { display: block; font-size: 15px; }
.rev-nm span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 1px; }
.rev-nm .ord { font-family: var(--f-mono); font-size: 11.5px; color: var(--acc-ink); margin-top: 3px; }
.rev-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.rev-btn { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--paper); color: var(--ink-2); display: grid; place-items: center; cursor: pointer; transition: all .15s ease; }
.rev-btn:hover { border-color: var(--acc); color: var(--acc-ink); background: var(--acc-tint); }
.rev-btn svg { width: 18px; height: 18px; }

/* ---------- Blog ---------- */
a.bpost { display: flex; flex-direction: column; gap: 12px; color: inherit; }
a.bpost .pill { align-self: flex-start; }
a.bpost h3 { font-size: 19px; line-height: 1.35; }
a.bpost p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.bpost-meta { margin-top: auto; padding-top: 6px; font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }

/* ---------- Article ---------- */
.post { max-width: 740px; margin-inline: auto; }
.post .post-meta { display: flex; align-items: center; gap: 12px; font-family: var(--f-mono); font-size: 12.5px; color: var(--ink-3); margin: 16px 0 6px; flex-wrap: wrap; }
.post h1 { font-family: var(--f-head); font-weight: 800; letter-spacing: -0.025em; font-size: clamp(30px, 4vw, 42px); line-height: 1.14; margin: 8px 0 18px; }
.post .lead { margin-bottom: 10px; }
.post h2 { font-size: 24px; margin: 36px 0 12px; }
.post p { color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; font-size: 16px; }
.post ul { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; color: var(--ink-2); line-height: 1.55; }
.post ul li { padding-left: 24px; position: relative; }
.post ul li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--acc); }
.post .callout { border: 1px solid var(--line); background: var(--surface); border-radius: var(--r); padding: 18px 22px; margin: 26px 0; color: var(--ink-2); line-height: 1.65; font-size: 15.5px; }
.post .callout b { color: var(--ink); }
.post-next { display: flex; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }

/* ---------- price table ---------- */
.ptable { width: 100%; border-collapse: collapse; font-size: 15px; }
.ptable th { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line-2); font-weight: 600; }
.ptable td { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.ptable tr:last-child td { border-bottom: 0; }
.ptable td:last-child, .ptable th:last-child { text-align: right; }
.ptable td:first-child { text-align: left; }
.ptable b { color: var(--ink); font-family: var(--f-head); font-size: 16px; }

/* ---------- blog covers ---------- */
.bp-cover { width: 100%; aspect-ratio: 1200 / 630; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--line); }
.post-cover { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); margin: 24px 0 8px; }
