/* ============================================================
   code.bendas.agency — основні стилі
   Темна тема: #0D0E0C + акцент #C6F24E
   Desktop-дизайн: «Лендінг 1a анімований», Mobile: «Лендінг 1a мобільний»
   ============================================================ */

:root {
  --bg: #0D0E0C;
  --bg-input: #161714;
  --bg-card-hover: #151711;
  --bg-row-hover: #13150F;
  --ink: #F1EFE8;
  --accent: #C6F24E;
  --accent-2: #DAFF6B;
  --line: rgba(241, 239, 232, .09);
  --line-2: rgba(241, 239, 232, .12);
  --ink-80: rgba(241, 239, 232, .8);
  --ink-75: rgba(241, 239, 232, .75);
  --ink-70: rgba(241, 239, 232, .7);
  --ink-68: rgba(241, 239, 232, .68);
  --ink-64: rgba(241, 239, 232, .64);
  --ink-58: rgba(241, 239, 232, .58);
  --ink-55: rgba(241, 239, 232, .55);
  --ink-35: rgba(241, 239, 232, .35);
  --ink-28: rgba(241, 239, 232, .28);
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Golos Text', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; }
button { font-family: inherit; border: 0; background: none; color: inherit; cursor: pointer; padding: 0; }
input, textarea { font-family: var(--font-body); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- helpers ---------- */
.only-m { display: none; }

section { scroll-margin-top: 70px; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 14, 12, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hdr-logo { height: 30px; filter: invert(1); display: block; }
.hdr-nav { display: flex; gap: 28px; font-size: 14px; }
.hdr-nav a { color: var(--ink-70); transition: color .18s ease-out; }
.hdr-nav a:hover { color: var(--ink); }
.hdr-right { display: flex; align-items: center; gap: 18px; }
.hdr-tel {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hdr-tel:hover { color: var(--ink); }
.hdr-tel svg { display: none; }
.btn-pill {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  transition: transform .18s ease-out, box-shadow .18s ease-out;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(198, 242, 78, .25); }

/* мобільне бургер-меню */
.m-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 48px 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .9;
}
.hero-inner { position: relative; }
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 26px;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -.01em;
  max-width: 1060px;
}
.hero h1 .accent, .accent { color: var(--accent); }
.hero-sub {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(241, 239, 232, .72);
  max-width: 760px;
}

/* форма з телефоном (hero + cta) */
.lead-form { display: flex; gap: 12px; margin-top: 40px; max-width: 580px; }
.lead-form input[type="tel"] {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid rgba(241, 239, 232, .16);
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: border-color .18s ease-out;
}
.lead-form input[type="tel"]:focus { border-color: var(--accent); }
.lead-form input[type="tel"].is-error { border-color: #E86A5E; animation: shake .3s ease-out; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.btn-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  transition: transform .18s ease-out, box-shadow .18s ease-out;
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(198, 242, 78, .3); }
.form-note { margin: 12px 0 0; font-size: 12.5px; color: var(--ink-55); }
.form-note a { color: var(--ink-55); text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--ink-70); }
/* honeypot: візуально відсутнє поле для ботів */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* трастова смуга */
.trust { display: flex; margin-top: 64px; border-top: 1px solid var(--line); }
.trust-cell { flex: 1; padding: 24px 24px 0; }
.trust-cell:first-child { padding-left: 0; }
.trust-cell:last-child { padding-right: 0; }
.trust-cell + .trust-cell { border-left: 1px solid var(--line); }
.trust-num { font-family: var(--font-head); font-size: 30px; font-weight: 600; }
.trust-label { font-size: 13px; color: var(--ink-64); margin-top: 6px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-28);
  will-change: transform;
}
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   СЕКЦІЇ — загальне
   ============================================================ */
.sec { padding: 88px 48px; max-width: 1280px; margin: 0 auto; }
.sec + .sec-line, .sec-line { border-top: 1px solid var(--line); }
.sec h2 {
  margin: 0 0 40px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 32px;
  transition: letter-spacing .3s ease-out;
}
.sec-sub { margin: -24px 0 36px; font-size: 15.5px; color: var(--ink-68); max-width: 720px; }

/* ============================================================
   ТИПИ ПРОЄКТІВ
   ============================================================ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}
.type-card {
  background: var(--bg);
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .2s ease-out;
  cursor: pointer;
}
.type-card:hover { background: var(--bg-card-hover); }
.type-card-top { display: flex; justify-content: space-between; align-items: center; }
.type-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-35); }
.type-card b { font-size: 16.5px; line-height: 1.3; }
.type-card .type-desc { font-size: 13.5px; line-height: 1.5; color: var(--ink-68); flex: 1; }

/* мобільний список типів з цінами */
.types-list { display: none; }

/* ============================================================
   ПОЯСНЮВАЧ (таби / акордеон)
   ============================================================ */
.tab-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all .18s ease-out;
  border: 1px solid rgba(241, 239, 232, .22);
  background: transparent;
  color: rgba(241, 239, 232, .65);
}
.chip:hover { border-color: rgba(241, 239, 232, .45); color: var(--ink); }
.chip.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.tab-panel { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.tab-info { display: flex; flex-direction: column; gap: 24px; }
.tab-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.tab-what { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-80); }
.tab-text { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-75); }
.tab-note { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-58); font-style: italic; }
.tab-card {
  border: 1px solid rgba(241, 239, 232, .14);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tab-scale-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-64);
  margin-bottom: 12px;
}
.tab-scale { display: flex; gap: 6px; align-items: center; }
.tab-scale i {
  display: inline-block;
  width: 26px;
  height: 8px;
  border-radius: 4px;
  transition: background .2s ease-out;
  background: rgba(241, 239, 232, .15);
}
.tab-scale i.on { background: var(--accent); }
.tab-scale-val { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin-left: 10px; }
.tab-price {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  border-top: 1px solid var(--line-2);
  padding-top: 20px;
}
.tab-card .btn-solid { height: 52px; font-size: 15px; padding: 0; width: 100%; }
.exp-note { margin: 36px 0 0; font-size: 14px; color: var(--ink-58); }

/* мобільний акордеон пояснювача */
.exp-acc { display: none; }

/* ============================================================
   ЦІНИ (десктоп-таблиця)
   ============================================================ */
.price-rows { margin-top: 44px; border-top: 1px solid var(--line-2); }
.sec.prices h2 { margin: 0; max-width: 860px; line-height: 1.25; }
.price-row {
  display: grid;
  grid-template-columns: 2.1fr .8fr 1fr 2fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-2);
  transition: background .18s ease-out;
}
.price-row:hover { background: var(--bg-row-hover); }
.price-row b { font-size: 16px; }
.price-val { font-family: var(--font-mono); font-size: 15px; color: var(--accent); white-space: nowrap; }
.price-row .col { font-size: 14px; color: var(--ink-64); }
.btn-ghost {
  font-size: 13px;
  padding: 9px 18px;
  border: 1px solid rgba(241, 239, 232, .25);
  border-radius: 999px;
  transition: background .18s ease-out, color .18s ease-out, border-color .18s ease-out;
  white-space: nowrap;
}
.btn-ghost:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.price-note { margin: 28px 0 0; font-size: 14px; line-height: 1.6; color: var(--ink-64); max-width: 840px; }

/* ============================================================
   ЯК ФОРМУЄТЬСЯ ЦІНА
   ============================================================ */
.howprice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 72px;
  max-width: 1060px;
}
.howprice-item { display: flex; gap: 20px; }
.howprice-item .num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); padding-top: 4px; }
.howprice-item p { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-75); }
.howprice-item b { color: var(--ink); }
.howprice-bonus { display: none; }

/* ============================================================
   ЧОМУ МИ
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-body { display: flex; flex-direction: column; gap: 12px; }
.why-top { display: flex; justify-content: space-between; align-items: center; }
.why-num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-35); }
.why-item b { font-size: 16px; line-height: 1.35; }
.why-item .why-text { font-size: 13.5px; line-height: 1.55; color: var(--ink-68); }
.speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent);
}
.speed-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: .35; } 100% { opacity: 1; } }

/* ============================================================
   ЩО РЕАЛІЗОВУЄМО
   ============================================================ */
.work-rows { border-top: 1px solid var(--line-2); }
.work-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-2);
}
.work-row h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.3;
}
.work-row p { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--ink-75); }

/* ============================================================
   ЕТАПИ
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 2px solid rgba(241, 239, 232, .2);
}
.step.is-first { border-top-color: var(--accent); }
.step-head { display: flex; align-items: center; gap: 10px; }
.step-body { display: flex; flex-direction: column; gap: 12px; }
.step-label { font-family: var(--font-mono); font-size: 12px; color: var(--ink-64); }
.step.is-first .step-label { color: var(--accent); }
.step-mnum { display: none; }
.step b { font-size: 15.5px; line-height: 1.35; }
.step .step-text { font-size: 13px; line-height: 1.5; color: var(--ink-68); }

/* ============================================================
   ФІНАЛЬНИЙ CTA
   ============================================================ */
.sec.cta { padding: 104px 48px; text-align: center; }
.sec.cta h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
}
.sec.cta .lead-form { margin: 40px auto 0; max-width: 560px; }
.cta-next { margin: 18px 0 0; font-size: 13.5px; color: var(--ink-64); }
.cta-contacts {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
  font-size: 15px;
  color: var(--ink-75);
}
.cta-contacts a { color: var(--ink-58); }
.cta-contacts a:hover { color: var(--ink); }
.cta-contacts .strong { font-weight: 600; color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 900px; border-top: 1px solid var(--line-2); }
.faq-list details { border-bottom: 1px solid var(--line-2); }
.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .18s ease-out;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  margin: 0;
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 760px;
}
.faq-note { margin: 26px 0 0; font-size: 14.5px; color: var(--ink-64); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-58);
}
footer img { height: 24px; filter: invert(1); opacity: .7; }
.foot-nav { display: flex; gap: 18px; flex-wrap: wrap; }
footer a { color: var(--ink-58); }
footer a:hover { color: var(--ink-70); }

/* ============================================================
   МОБІЛЬНА STICKY-ПАНЕЛЬ
   ============================================================ */
.m-sticky { display: none; }

/* ============================================================
   БРИФ-МОДАЛКА
   ============================================================ */
.brief {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.brief[hidden] { display: none; }
.brief-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 5, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.brief-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #121310;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 32px;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .22s ease-out, transform .22s ease-out;
}
.brief.is-open .brief-card { opacity: 1; transform: none; }
.brief-x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(241, 239, 232, .18);
  color: var(--ink-64);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .18s ease-out, border-color .18s ease-out;
}
.brief-x:hover { color: var(--ink); border-color: rgba(241, 239, 232, .4); }
.brief-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.brief-progress {
  height: 3px;
  border-radius: 2px;
  background: rgba(241, 239, 232, .12);
  margin-bottom: 26px;
  overflow: hidden;
}
.brief-progress i {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  width: 0;
  transition: width .3s ease-out;
}
.brief-q {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
}
.brief-panel { min-height: 132px; }
.brief-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.brief-chips .chip { font-size: 14px; }
/* крок кваліфікації: два широкі варіанти в стовпчик */
.brief-chips-col { flex-direction: column; }
.brief-chips-col .chip { width: 100%; text-align: left; padding: 15px 20px; border-radius: 12px; }
/* дрібний чіп під полем (напр. «немає Telegram») */
.brief-chips-inline { margin-top: 10px; }
.chip-sm { font-size: 12.5px; padding: 7px 14px; }
.brief input[type="text"] {
  width: 100%;
  padding: 0 18px;
  height: 54px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid rgba(241, 239, 232, .16);
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: border-color .18s ease-out;
}
.brief input[type="text"] + input[type="text"] { margin-top: 10px; }
.brief input[type="text"]:disabled { opacity: .45; }
.brief textarea {
  width: 100%;
  margin-top: 12px;
  padding: 14px 18px;
  min-height: 110px;
  border-radius: 12px;
  background: var(--bg-input);
  border: 1px solid rgba(241, 239, 232, .16);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  resize: vertical;
  transition: border-color .18s ease-out;
}
.brief input:focus, .brief textarea:focus { border-color: var(--accent); }
.brief-hint { margin: 10px 0 0; font-size: 12.5px; color: var(--ink-55); }
.brief-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.brief-back { font-size: 13.5px; color: var(--ink-55); transition: color .18s ease-out; }
.brief-back:hover { color: var(--ink); }
.brief-back[hidden] { visibility: hidden; display: block; }
.brief-nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.brief-skip { font-size: 13.5px; color: var(--ink-55); transition: color .18s ease-out; }
.brief-skip:hover { color: var(--ink); }
.brief-next { height: 48px; padding: 0 26px; font-size: 15px; }
/* фінальний екран */
.brief-done { text-align: center; padding: 18px 0 6px; }
.brief-done-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(198, 242, 78, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brief-done h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 23px;
}
.brief-done p { margin: 0 0 22px; font-size: 14.5px; line-height: 1.6; color: var(--ink-68); }
.brief-done .btn-solid { display: inline-flex; height: 50px; }

/* ============================================================
   АНІМАЦІЇ ПОЯВИ (керуються з JS, лише десктоп)
   ============================================================ */
/* стани задаються інлайново з main.js, щоб без JS все було видно */

/* ============================================================
   ПЛАНШЕТ (769–1100)
   ============================================================ */
@media (max-width: 1100px) and (min-width: 769px) {
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .tab-panel { grid-template-columns: 1fr; gap: 36px; }
  .price-row { grid-template-columns: 1.6fr .8fr 1fr auto; }
  .price-row .col-note { display: none; }
  .hero h1 { font-size: 42px; }
}

/* ============================================================
   МОБІЛЬНА ВЕРСІЯ (≤768)
   ============================================================ */
@media (max-width: 768px) {
  .only-d { display: none !important; }
  .only-m { display: block; }

  body { padding-bottom: 76px; }
  section { scroll-margin-top: 64px; }

  /* порядок секцій мобільної версії */
  main { display: flex; flex-direction: column; }
  main > * { width: 100%; } /* flex + margin:auto інакше стискає секції */
  .hero { order: 1; }
  .marquee-wrap { order: 2; }
  .sec.types { order: 3; }
  .sec.explainer { order: 4; }
  .sec.howprice { order: 5; }
  .sec.why { order: 6; }
  .sec.work { order: 7; }
  .sec.steps { order: 8; }
  .sec.cta { order: 9; }
  .sec.faq { order: 10; }
  .sec.prices { display: none; }

  /* header */
  .hdr { padding: 14px 16px 14px 20px; background: rgba(13, 14, 12, .88); gap: 10px; }
  .hdr-logo { height: 28px; width: auto; }
  .hdr-nav { display: none; }
  .hdr-right .btn-pill { display: none; }
  .hdr-right { gap: 12px; }
  .hdr-tel { font-size: 13px; white-space: nowrap; gap: 6px; }
  .hdr-tel svg { display: block; flex-shrink: 0; }

  .m-menu { display: block; position: static; }
  .m-menu summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(241, 239, 232, .18);
  }
  .m-menu summary::-webkit-details-marker { display: none; }
  .m-menu nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0E0F0C;
    border-bottom: 1px solid var(--line-2);
    display: flex;
    flex-direction: column;
    padding: 6px 20px 14px;
  }
  .m-menu nav a {
    padding: 13px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid rgba(241, 239, 232, .08);
  }
  .m-menu nav a:last-child { border-bottom: 0; color: var(--accent); font-weight: 700; }

  /* hero */
  .hero { padding: 44px 20px 40px; }
  .hero-bg { display: none; }
  .kicker { font-size: 10.5px; letter-spacing: .12em; margin-bottom: 18px; }
  .hero h1 { font-size: 29px; line-height: 1.18; }
  .hero-sub { margin-top: 18px; font-size: 15px; }
  .lead-form { flex-direction: column; gap: 10px; margin-top: 26px; max-width: none; }
  .lead-form input[type="tel"] { flex: none; height: 54px; padding: 0 18px; }
  .btn-solid { height: 54px; justify-content: center; }
  .btn-solid:hover { transform: none; box-shadow: none; }
  .form-note { margin-top: 10px; font-size: 11.5px; line-height: 1.5; }

  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(241, 239, 232, .1);
    border: 1px solid rgba(241, 239, 232, .1);
    margin-top: 32px;
    border-top: 1px solid rgba(241, 239, 232, .1);
  }
  .trust-cell { background: var(--bg); padding: 16px !important; border-left: 0 !important; }
  .trust-num { font-size: 19px; }
  .trust-label { font-size: 11.5px; margin-top: 3px; }

  /* marquee: CSS-анімація замість скрол-драйву */
  .marquee-wrap { padding: 12px 0; }
  .marquee { font-size: 14px; animation: mq 18s linear infinite; }

  /* секції */
  .sec { padding: 44px 20px; }
  .sec h2 { font-size: 22px; margin-bottom: 20px; line-height: 1.3; }
  .sec-sub { margin: -12px 0 20px; font-size: 13px; }

  /* типи: компактний список з цінами */
  .types-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-2); }
  .type-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-2);
    cursor: pointer;
  }
  .type-row svg { flex-shrink: 0; }
  .type-row-main { flex: 1; }
  .type-row-main b { font-size: 14.5px; line-height: 1.35; display: block; }
  .type-row-main .meta { font-size: 12px; color: var(--ink-64); }
  .type-row .price-val { font-size: 13px; }

  /* пояснювач: акордеон */
  .sec.explainer { padding-top: 24px; }
  .exp-acc { display: block; border-top: 1px solid var(--line-2); }
  .exp-acc details { border-bottom: 1px solid var(--line-2); }
  .exp-acc summary {
    cursor: pointer;
    padding: 16px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .exp-acc summary::-webkit-details-marker { display: none; }
  .exp-acc summary::after {
    content: '+';
    color: var(--ink-58);
    font-size: 18px;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform .18s ease-out;
  }
  .exp-acc details[open] summary::after { transform: rotate(45deg); }
  .exp-acc summary b { font-size: 15px; }
  .exp-vol { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent); white-space: nowrap; margin-left: auto; }
  .exp-body { padding: 0 0 18px; display: flex; flex-direction: column; gap: 12px; }
  .exp-body p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-80); }
  .exp-body p + p { font-size: 13px; color: var(--ink-68); }
  .exp-price { font-family: var(--font-mono); font-size: 13.5px; font-weight: 600; color: var(--accent); }
  .exp-note { margin-top: 16px; font-size: 12.5px; line-height: 1.5; }

  /* як формується ціна */
  .sec.howprice { padding-top: 0; }
  .howprice-grid { display: flex; flex-direction: column; gap: 16px; }
  .howprice-item { gap: 12px; }
  .howprice-item .num { font-size: 12px; padding-top: 3px; }
  .howprice-item p { font-size: 13.5px; color: var(--ink-80); }
  .howprice-bonus {
    display: block;
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--line-2);
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-64);
  }

  /* чому ми */
  .sec.why { padding-top: 0; }
  .why-grid { display: flex; flex-direction: column; gap: 20px; }
  .why-item { flex-direction: row; gap: 14px; align-items: flex-start; }
  .why-top { flex-shrink: 0; margin-top: 2px; }
  .why-num { display: none; }
  .why-item b { font-size: 14.5px; display: block; margin-bottom: 4px; }
  .why-item .why-text { font-size: 13px; }
  .why-body { display: block; }

  /* що реалізовуємо */
  .sec.work { padding-top: 0; }
  .work-row { display: block; padding: 18px 0; }
  .work-row h3 { font-size: 16px; line-height: 1.35; margin-bottom: 6px; }
  .work-row p { font-size: 13px; line-height: 1.6; color: var(--ink-70); }

  /* етапи: вертикальна стрічка */
  .sec.steps { padding-top: 0; }
  .steps-grid { display: flex; flex-direction: column; gap: 0; }
  .step {
    flex-direction: row;
    gap: 14px;
    padding: 12px 0 12px 16px;
    border-top: 0;
    border-left: 2px solid rgba(241, 239, 232, .15);
  }
  .step.is-first { border-left-color: var(--accent); }
  .step-head svg { display: none; }
  .step-label { display: none; }
  .step-mnum {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-55);
    white-space: nowrap;
    padding-top: 2px;
  }
  .step.is-first .step-mnum { color: var(--accent); }
  .step-body { display: block; }
  .step-body b { font-size: 14px; display: block; }
  .step-body .step-text { font-size: 12.5px; color: var(--ink-64); }

  /* CTA */
  .sec.cta { padding: 8px 20px 48px; }
  .sec.cta h2 { font-size: 24px; line-height: 1.3; margin-bottom: 0; }
  .sec.cta .lead-form { margin-top: 22px; }
  .cta-next { margin-top: 16px; font-size: 12.5px; line-height: 1.5; }
  .cta-contacts { flex-direction: column; gap: 8px; margin-top: 20px; font-size: 14px; }
  .cta-contacts .tg-link { display: none; }

  /* FAQ */
  .sec.faq { padding-top: 0; }
  .faq-list summary { padding: 15px 0; font-size: 14.5px; gap: 14px; }
  .faq-list summary::after { font-size: 19px; }
  .faq-list p { padding-bottom: 16px; font-size: 13px; line-height: 1.6; }
  .faq-note { font-size: 13px; }

  /* footer */
  footer {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 12px;
  }
  footer img { height: 22px; }
  .foot-nav { justify-content: center; gap: 14px; }

  /* sticky-панель */
  .m-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(13, 14, 12, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-2);
  }
  .m-sticky .btn-solid {
    flex: 1.4;
    height: 48px;
    font-size: 15px;
    border-radius: 12px;
  }
  .m-sticky .btn-tg {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(241, 239, 232, .25);
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
  }

  /* бриф-модалка на мобільному — знизу */
  .brief { padding: 0; align-items: flex-end; }
  .brief-card {
    max-width: none;
    border-radius: 20px 20px 0 0;
    padding: 26px 20px calc(26px + env(safe-area-inset-bottom));
    max-height: 88vh;
    transform: translateY(40px);
  }
  .brief-q { font-size: 18px; }
}
