/* Лендинг pixcars. Брендбук — pixcars-brand-v2.md.
   Шрифты подключены глобально в base.css → fonts.css.
   Цветовые/типографические переменные локальные — не пересекаются с
   токенами кабинета (cabinet.css). */

:root {
  --bg: #FAF7F2;
  --bg-card: #F2EDE3;
  --bg-dark: #16120E;
  --ink: #1A1410;
  --ink-2: #6B6258;
  --ink-3: #A39A8E;
  --line: #E5DECF;
  --line-2: #D4CCB9;
  --amber: #ED7B22;
  --amber-deep: #B85A0E;
  --amber-soft: #FBE4CB;
  --font-display: 'Unbounded', 'Onest', system-ui, sans-serif;
  --font-body: 'Onest', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* base.css задаёт `html, body { height: 100% }` — это зажимает body-бокс
   в 100vh, из-за чего `position: sticky` у .nav отлипает, когда контент
   уезжает за нижнюю границу body (после hero). Снимаем кап высоты — body
   тянется по контенту, sticky-меню держится всегда. */
html { height: auto; }
body {
  height: auto;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--amber); color: var(--bg); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

/* ==== Atomic ==== */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: .5em;
}
.eyebrow::before { content: '['; color: var(--amber); font-family: var(--font-display); font-weight: 500; font-size: 13px; }
.eyebrow::after  { content: ']'; color: var(--amber); font-family: var(--font-display); font-weight: 500; font-size: 13px; }
.eyebrow--on-dark { color: var(--ink-3); }
.h-section { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4.4vw, 52px); letter-spacing: -.03em; line-height: 1.05; margin: 0; }
.h-card { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -.02em; line-height: 1.2; margin: 0; }
.muted { color: var(--ink-2); }

/* Wordmark */
.wm {
  display: inline-flex; align-items: baseline; gap: .12em;
  font-family: var(--font-display); font-weight: 700; font-size: 1em;
  letter-spacing: -.04em; line-height: 1; text-transform: lowercase;
  white-space: nowrap; text-decoration: none;
}
.wm-b { color: var(--amber); font-weight: 500; font-size: 1.05em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 14px 22px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  border-radius: var(--r-md); transition: all 180ms cubic-bezier(.2, .8, .2, 1);
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn--amber { background: var(--amber); color: #fff; }
.btn--amber:hover { background: var(--amber-deep); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); background: var(--bg-card); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.arrow-svg { width: 1.1em; height: 1.1em; }

/* ==== Header ==== */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(250, 247, 242, .86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { font-size: 22px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--ink-2); text-decoration: none; transition: color 180ms; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 14px; text-decoration: none; color: var(--ink); }
.nav-login:hover { color: var(--amber); }
@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
}

/* ==== HERO ==== */
.hero { padding: 64px 0 88px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1.2fr; gap: 64px; align-items: center; }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 7vw, 88px); letter-spacing: -.045em; line-height: .98;
  margin: 24px 0;
}
.hero h1 em { font-style: normal; color: var(--amber); }
/* На узких экранах базовый clamp застревает на минимуме 44px (7vw < 44px
   ниже ~629px), и неразрывная «из салона —» переполняет вправо. Плавно
   уменьшаем, чтобы строка влезала в симметричные отступы .wrap. */
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(30px, 8.5vw, 44px); letter-spacing: -.03em; }
}
.hero-sub { font-size: 20px; line-height: 1.55; color: var(--ink-2); max-width: 48ch; margin: 0 0 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-meta { margin-top: 24px; display: flex; gap: 24px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 14px; }
.hero-meta-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

.hero-stage-wrap { position: relative; }

/* Hero stage — drag slider до/после */
.stage {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg);
  background: var(--bg-card); overflow: hidden;
  box-shadow: 0 24px 56px -28px rgba(26, 20, 16, .32),
              0 4px 12px -4px rgba(26, 20, 16, .08);
}
.stage::before, .stage::after {
  content: ''; position: absolute; width: 36px; height: 36px; z-index: 5;
  border: 3px solid var(--amber); pointer-events: none;
}
.stage::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.stage::after  { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.stage-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; user-select: none; -webkit-user-drag: none;
}
.stage-img.before { filter: saturate(.78) brightness(.92) contrast(.95); }

.stage--slider .clip-after { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos, 55%)) 0 0); }
.stage--slider .clip-after .stage-img { filter: none; }
.stage--slider .handle {
  position: absolute; top: 0; bottom: 0; width: 3px; background: var(--amber);
  left: var(--pos, 55%); transform: translateX(-50%); z-index: 6; cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(26, 20, 16, .1);
}
.stage--slider .handle::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 8px 24px rgba(184, 90, 14, .35);
}
.stage--slider .handle::after {
  content: '‹ ›'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: .4em; padding-left: .4em; pointer-events: none;
}
.stage-tag {
  position: absolute; z-index: 7; top: 18px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 10px; border-radius: var(--r-sm); backdrop-filter: blur(6px);
}
.stage-tag--before { left: 60px; background: rgba(26, 20, 16, .65); color: #fff; }
.stage-tag--after  { right: 60px; background: var(--amber); color: #fff; }

.hero-spec {
  position: absolute; right: -12px; bottom: -22px; z-index: 8;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 14px 16px; min-width: 180px;
  box-shadow: 0 12px 32px -16px rgba(26, 20, 16, .18);
}
.hero-spec-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2);
}
.hero-spec-row + .hero-spec-row { margin-top: 6px; }
.hero-spec-row b { color: var(--ink); font-weight: 500; }
.hero-spec-row b.amber { color: var(--amber); }
@media (max-width: 920px) { .hero-spec { right: 8px; bottom: -12px; } }

/* ==== Section base ==== */
section { padding: 88px 0; position: relative; }
section.dark { background: var(--bg-dark); color: var(--bg); }
section.dark .h-section, section.dark .h-card { color: var(--bg); }
section.dark .lede, section.dark .muted { color: var(--ink-3); }
section.dark .eyebrow { color: var(--ink-3); }
.section--no-top { padding-top: 0; }
.section-head { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; margin-bottom: 56px; align-items: end; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }

/* ==== HOW (steps) ==== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 840px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 28px; background: var(--bg-card);
  border-radius: var(--r-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; min-height: 280px;
}
.step-no {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: .1em;
  color: var(--amber); text-transform: uppercase;
}
.step h3 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 24px; letter-spacing: -.02em; }
.step-body { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex: 1; }
.step-vis {
  margin-top: auto; height: 120px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--bg);
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.vis-upload { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-2); }
.vis-upload svg { stroke: var(--amber); width: 32px; height: 32px; }
.vis-upload span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.vis-progress { width: 78%; }
.vis-progress-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.vis-progress-row b { color: var(--amber); font-weight: 500; }
.vis-progress-row--gap { margin-top: 10px; margin-bottom: 0; }
.vis-progress-bar { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.vis-progress-bar i { display: block; height: 100%; width: 68%; background: var(--amber); border-radius: 3px; }
.vis-download { display: flex; gap: 6px; }
.vis-download .thumb { width: 48px; height: 48px; border-radius: var(--r-sm); border: 1px solid var(--line); background-size: cover; background-position: center; }

/* ==== BEFORE/AFTER GALLERY ==== */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 840px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ba-grid { grid-template-columns: 1fr; } }
.ba {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-md);
  overflow: hidden; background: var(--bg-card); cursor: ew-resize;
}
.ba .stage-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .ba-before { filter: saturate(.7) brightness(.92) contrast(.95); }
.ba .ba-after { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba .ba-handle { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--amber); left: var(--pos, 50%); transform: translateX(-50%); z-index: 5; }
.ba .ba-handle::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 32px; height: 32px; border-radius: 50%; background: var(--amber); box-shadow: 0 4px 14px rgba(184, 90, 14, .4); }
.ba .ba-handle::after {
  content: '‹ ›';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: .3em; padding-left: .3em;
  pointer-events: none; z-index: 1;
}
.ba .ba-tag { position: absolute; bottom: 12px; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: 4px 8px; border-radius: 3px; backdrop-filter: blur(4px); }
.ba .ba-tag.b { left: 12px; background: rgba(26, 20, 16, .65); color: #fff; }
.ba .ba-tag.a { right: 12px; background: var(--amber); color: #fff; }

/* ==== MARKETPLACES ==== */
.mp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 840px) { .mp { grid-template-columns: 1fr; } }
.mp-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.mp-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px;
  padding: 20px 0; align-items: center; border-bottom: 1px solid var(--line);
}
.mp-name { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -.02em; }
.mp-desc { color: var(--ink-2); font-size: 14px; }
.mp-stat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.mp-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--bg-card);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--ink);
}
.mp-vis {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg);
  background: var(--bg-card); padding: 20px; overflow: hidden; border: 1px solid var(--line);
}
.mp-listing {
  background: var(--bg); border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(26, 20, 16, .16);
}
.mp-listing img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mp-listing-body { padding: 14px; }
.mp-listing-title { font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: -.02em; }
.mp-listing-price { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; margin-top: 6px; }
.mp-listing-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); margin-top: 10px; }
.mp-stamp {
  position: absolute; bottom: 24px; right: -8px; z-index: 3;
  background: var(--amber); color: #fff; padding: 8px 16px;
  border-radius: var(--r-sm); transform: rotate(-4deg);
  font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 6px 18px -4px rgba(184, 90, 14, .5);
}
.mp-note {
  margin-top: 14px; padding: 18px 20px;
  border: 1px dashed var(--line-2); border-radius: var(--r-md);
  background: rgba(237, 123, 34, .06);
  display: flex; gap: 14px; align-items: flex-start;
}
.mp-note-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; padding: 4px 8px; border-radius: 3px; background: var(--amber); flex: 0 0 auto;
}
.mp-note-text { color: var(--ink); font-size: 14px; line-height: 1.5; }

/* ==== PRICING ==== */
.packs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 760px) { .packs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .packs { grid-template-columns: 1fr; } }
.pack {
  background: rgba(255, 255, 255, .06); border-radius: var(--r-md);
  padding: 22px 20px; border: 1px solid rgba(255, 255, 255, .08);
  display: flex; flex-direction: column; gap: 0; position: relative;
}
.pack.featured { background: rgba(237, 123, 34, .1); border-color: rgba(237, 123, 34, .4); }
.price-cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.pack-pay { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 14px; }
.pack-pay-num { font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -.03em; color: #fff; margin-top: 4px; line-height: 1; }
.pack-pay-num small { font-family: var(--font-mono); font-size: 14px; font-weight: 500; letter-spacing: .08em; opacity: .7; text-transform: uppercase; }
.pack-divider { height: 1px; background: rgba(255, 255, 255, .1); margin: 18px 0; }
.pack-get { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.pack-amount { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.03em; color: #fff; margin-top: 4px; line-height: 1; display: flex; align-items: baseline; gap: .18em; }
.pack-amount small { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .08em; opacity: .7; text-transform: uppercase; }
.pack-bonus {
  display: inline-flex; align-items: baseline; gap: .3em;
  margin-top: 10px; padding: 6px 10px; border-radius: 99px;
  background: rgba(237, 123, 34, .18); color: var(--amber);
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; align-self: flex-start;
}
.pack-bonus b { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: -.02em; }
.pack-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-top: 14px; }
.pack-save {
  position: absolute; top: -12px; right: 14px; z-index: 2;
  background: var(--amber); color: #fff; padding: 8px 12px;
  border-radius: var(--r-sm); transform: rotate(-3deg);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.1;
  box-shadow: 0 8px 22px -6px rgba(184, 90, 14, .55);
  display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.pack-save b { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.pack-save.lg b { font-size: 22px; }
.pack-save.muted { background: var(--ink-2); box-shadow: 0 8px 22px -10px rgba(26, 20, 16, .4); transform: rotate(-2deg); }

.pricing-foot {
  margin-top: 32px; display: flex; gap: 32px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3);
}
.pricing-foot-amber { color: var(--amber); }
.pricing-foot-light { color: #fff; }

/* ==== COMPARE ==== */
.compare {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.cmp-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: stretch; }
.cmp-row + .cmp-row { border-top: 1px solid var(--line); }
.cmp-cell { padding: 22px 24px; display: flex; align-items: center; gap: 12px; }
.cmp-cell.label { color: var(--ink-2); font-size: 14px; }
.cmp-cell.head { padding: 24px; font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -.02em; background: var(--bg-card); }
.cmp-cell.head.us { background: var(--ink); color: var(--bg); }
.cmp-cell.value { font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -.02em; border-left: 1px solid var(--line); }
.cmp-cell.value.us { background: rgba(237, 123, 34, .06); color: var(--ink); }
.cmp-cell.value.us b { color: var(--amber); }
@media (max-width: 680px) {
  /* Строку-заголовок прячем — у каждой карточки свои подписи источников. */
  .cmp-row:first-child { display: none; }
  /* Каждый параметр — карточка: название во всю ширину сверху, под ним
     два значения в две колонки с мини-подписью источника. */
  .cmp-row { grid-template-columns: 1fr 1fr; }
  .cmp-cell.label {
    grid-column: 1 / -1;
    padding: 12px 16px 8px;
    color: var(--ink-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-family: var(--font-mono);
    background: var(--bg-card);
  }
  .cmp-cell.value {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px 16px;
    border-left: 0;
    font-size: 16px;
  }
  .cmp-cell.value + .cmp-cell.value { border-left: 1px solid var(--line); }
  /* Мини-подпись источника над значением (псевдоэлемент, разметка не меняется). */
  .cmp-cell.value::before {
    content: "Фотограф";
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-2);
  }
  .cmp-cell.value.us::before { content: "pixcars"; color: var(--amber); }
}

/* ==== FAQ ==== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -.02em; color: var(--ink);
}
.faq-q:hover { color: var(--amber); }
.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; flex: 0 0 auto; transition: all 180ms;
  font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink);
}
.faq-item.open .faq-toggle { background: var(--amber); border-color: var(--amber); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 280ms ease, padding 200ms ease; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.faq-a-inner { padding: 0 0 24px; max-width: 64ch; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner a { color: var(--amber); }

/* ==== Final CTA ==== */
.final-section { padding-bottom: 48px; }
.cta-final {
  position: relative; background: var(--ink); color: var(--bg);
  border-radius: var(--r-xl); padding: 72px 56px; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 78%, rgba(237, 123, 34, .18) 0, transparent 1.5px),
    radial-gradient(circle at 22% 74%, rgba(237, 123, 34, .14) 0, transparent 1.5px),
    radial-gradient(circle at 14% 70%, rgba(237, 123, 34, .10) 0, transparent 1.5px),
    radial-gradient(circle at 26% 82%, rgba(237, 123, 34, .10) 0, transparent 1.5px);
  background-size: 8px 8px; background-repeat: repeat; opacity: .5;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final-title {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.04em;
  font-size: clamp(40px, 5.5vw, 72px); line-height: 1; margin: 14px 0 20px;
}
.cta-final-title em { font-style: normal; color: var(--amber); }
.cta-final p { font-size: 19px; color: var(--ink-3); max-width: 48ch; margin: 0 0 32px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* ==== Blog ==== */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: var(--ink);
  transition: transform 200ms cubic-bezier(.2, .8, .2, 1), border-color 200ms;
}
.blog-card:hover { transform: translateY(-2px); border-color: var(--line-2); }
.blog-card:hover .blog-title { color: var(--amber); }
.blog-cover { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--bg); }
.blog-cover--placeholder {
  position: relative;
  background:
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg) 100%);
}
.blog-cover--placeholder::after {
  content: '[ ]';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: .2em;
  color: var(--amber);
  opacity: .55;
}
.blog-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.blog-title { font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -.02em; line-height: 1.25; margin: 0; transition: color 180ms; }
.blog-excerpt { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin: 0; }
.blog-foot { margin-top: 32px; display: flex; justify-content: flex-end; }

.blog-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  color: var(--ink-2);
}
.blog-empty h3 {
  margin: 0 0 12px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -.02em; color: var(--ink);
}
.blog-empty p { margin: 0 auto; max-width: 50ch; font-size: 15px; }

/* ==== Footer ==== */
.site-footer { padding: 48px 0 32px; border-top: 1px solid var(--line); margin-top: 48px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.foot-brand { font-size: 24px; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-col a { color: var(--ink); text-decoration: none; font-size: 14px; }
.foot-col a:hover { color: var(--amber); }
.foot-tag { color: var(--ink-2); font-size: 14px; max-width: 34ch; margin: 14px 0 0; }
.foot-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.foot-bottom small { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }

/* ==== Legal pages (offer, privacy) ==== */
.legal-page { padding: 88px 0 48px; }
.legal-page h1 { margin: 12px 0 12px; }
.legal-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2); margin: 0 0 36px;
}
.legal-empty { color: var(--ink-2); font-size: 17px; line-height: 1.6; max-width: 56ch; }

.legal-doc { max-width: 760px; }
.legal-doc h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; letter-spacing: -.02em; line-height: 1.3;
  margin: 40px 0 14px;
}
.legal-doc p {
  margin: 0 0 14px;
  font-size: 15px; line-height: 1.65; color: var(--ink);
}
.legal-doc p a { color: var(--amber-deep); text-decoration: underline; }
.legal-doc p a:hover { color: var(--amber); }
.legal-doc ul {
  margin: 0 0 14px;
  padding-left: 22px;
  font-size: 15px; line-height: 1.65; color: var(--ink);
}
.legal-doc ul li { margin-bottom: 6px; }
.legal-doc dl.legal-terms,
.legal-doc dl.legal-req {
  margin: 0 0 18px;
  font-size: 15px; line-height: 1.55;
}
.legal-doc dl.legal-terms dt,
.legal-doc dl.legal-req dt {
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--amber-deep);
}
.legal-doc dl.legal-terms dd,
.legal-doc dl.legal-req dd {
  margin: 4px 0 0;
  color: var(--ink);
}
