

:root {
  --brand: #16794e;
  --brand-dark: #0f5c3a;
  --brand-bg: #eef6f1;
  --brand-tint: #f2f9f5;
  --brand-line: #cfe6da;
  --brand-on-dark: #4fd18b;

  --ink: #14161a;
  --ink-2: #22262c;
  --ink-3: #2a2e35;
  --text: #454b53;
  --text-2: #565c64;
  --text-3: #5c626a;
  --muted: #6b7178;

  --line: #e5e7eb;
  --line-2: #e9ebee;
  --line-3: #eceef0;
  --line-4: #e2e5e8;
  --line-5: #dfe2e6;
  --line-6: #d7dbe0;
  --soft: #fafbfb;
  --soft-2: #fbfcfc;

  --dark: #14161a;
  --dark-card: #1a1d22;
  --dark-card-hover: #1c2027;
  --dark-line: #2a2e34;
  --dark-line-hover: #3a6b52;
  --dark-text: #a7adb5;
  --dark-text-2: #9298a0;
  --dark-text-3: #d7dbdf;
  --dark-text-4: #cbd0d6;

  --err: #b64a3c;
  --err-line: #d98a7e;
  --err-bg: #f4e7e5;

  --wrap: 1180px;
  --gutter: 24px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --display: 'Unbounded', 'Golos Text', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (min-width: 1060px) { html { scroll-padding-top: 124px; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: 'Golos Text', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.01em; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: #cdeede; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--brand); color: #fff; padding: 12px 18px;
  border-radius: 10px; font-weight: 600; transition: top .18s;
}
.skip-link:focus { top: 12px; color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(48px, 5.5vw, 80px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px); }
.section--dark { background: var(--dark); color: #fff; }
.section--soft { background: var(--soft); border-top: 1px solid var(--line-3); border-bottom: 1px solid var(--line-3); }
.section--narrow .wrap { max-width: 820px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--brand);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--brand-on-dark); }

.sec-head { max-width: 680px; margin-bottom: 40px; }
.sec-head--wide { margin-bottom: 44px; }

h2.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(27px, 4vw, 42px);
  letter-spacing: -0.02em;
}
.sec-head p { margin-top: 16px; color: var(--text-2); font-size: 18px; text-wrap: pretty; }
.section--dark .sec-head p { color: var(--dark-text); }

.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid transparent;
  text-align: center;
  transition: background .16s, border-color .16s, color .16s;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-6); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn--lg { font-size: 16px; padding: 16px 26px; }
.btn--sm { font-size: 14px; padding: 11px 18px; border-radius: 10px; }
.btn--block { display: block; width: 100%; padding: 15px; font-size: 16px; }
.btn--xs { font-size: 13px; padding: 6px 13px; border-radius: 9px; }

.msgs { display: flex; align-items: center; gap: 10px; }
.msg {
  width: 34px; height: 34px; border-radius: 50%; padding: 0; border: 0;
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
  transition: transform .16s ease, opacity .16s ease;
}
.msg:hover { color: #fff; opacity: .9; transform: scale(1.08); }

.msg[data-channel="telegram"] { background: #2aabee; }
.msg[data-channel="whatsapp"] { background: #25d366; }
.msg[data-channel="max"] { background: linear-gradient(135deg, #44ccff 0%, #5533ee 60%, #9933dd 100%); }
.msg[data-channel="vk"] { background: #0077ff; }
.msgs--sm { gap: 7px; }
.msgs--sm .msg { width: 26px; height: 26px; }

.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.header__bar {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  height: 72px; display: flex; align-items: center; gap: 24px;
}

.header__top { background: var(--soft); border-bottom: 1px solid var(--line-3); }
.header__top-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  height: 38px; display: flex; align-items: center; justify-content: flex-end; gap: 16px;
}
.header__hours { font-size: 13px; color: var(--muted); white-space: nowrap; }
.header__phone { font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.header__phone:hover { color: var(--brand-dark); }
@media (max-width: 1059px) { .header__top { display: none; } }
.logo { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo__mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--brand); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 17px;
  display: grid; place-items: center; flex-shrink: 0;
}

.logo__name { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; white-space: nowrap; }
@media (min-width: 1060px) and (max-width: 1199px) {
  .logo__name { font-size: 15px; }
  .nav { gap: 20px; }
}

@media (max-width: 700px) { .logo__name { font-size: 14px; } }
@media (max-width: 420px) {
  .logo__name { font-size: 13px; }
  .header__bar { gap: 12px; }
}
@media (max-width: 360px) { .logo__mark { display: none; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav a { color: #3a3f47; font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--brand-dark); }
.nav .nav__phone { color: var(--ink); font-weight: 600; white-space: nowrap; }

.nav a.btn--primary, .nav a.btn--primary:hover { color: #fff; white-space: nowrap; }

.nav__cta { display: inline-flex; align-items: center; gap: 10px; }
.nav a.btn--ghost { color: var(--ink); white-space: nowrap; }
.nav a.btn--ghost:hover { color: var(--brand-dark); border-color: var(--brand); }

.nav__item { position: relative; display: flex; align-items: center; }
.nav__drop-toggle { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.nav__drop-toggle::after {
  content: ''; width: 6px; height: 6px; margin-top: -3px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg); transition: transform .18s ease;
}
.nav__item:hover .nav__drop-toggle::after,
.nav__item:focus-within .nav__drop-toggle::after { margin-top: 2px; transform: rotate(-135deg); }

.nav__item::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav__drop {
  position: absolute; top: calc(100% + 12px); left: -12px;
  min-width: 264px; padding: 8px;
  background: #fff; border: 1px solid var(--line-4); border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20, 22, 26, .13);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 50;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a {
  padding: 10px 12px; border-radius: 9px; font-size: 14.5px;
  color: var(--ink-2); font-weight: 500; white-space: nowrap;
}
.nav__drop a:hover { background: var(--brand-tint); color: var(--brand-dark); }

.burger {
  margin-left: auto; width: 42px; height: 42px;
  border: 1px solid var(--line-5); border-radius: 10px; background: #fff;
  display: none; grid-auto-rows: 2px; align-content: center; justify-items: center; gap: 4px; padding: 0;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-nav {
  border-top: 1px solid var(--line-2); background: #fff;
  padding: 14px var(--gutter) 20px;
  display: none; flex-direction: column; gap: 4px;
}
.mobile-nav[data-open="true"] { display: flex; }
.mobile-nav a { color: var(--ink-2); font-weight: 500; padding: 11px 4px; border-bottom: 1px solid #f0f1f3; }
.mobile-nav .mobile-nav__phone { color: var(--ink); font-weight: 600; border-bottom: 0; }
.mobile-nav a.btn--primary, .mobile-nav a.btn--primary:hover {
  color: #fff; margin-top: 8px; padding: 14px; border-radius: 11px; border-bottom: 0;
}

.mobile-nav .msgs { padding: 14px 4px 6px; gap: 12px; }

.mobile-nav a.msg { padding: 0; border-bottom: 0; color: #fff; }
.mobile-nav a.btn--ghost {
  margin-top: 8px; padding: 14px; border-radius: 11px;
  border: 1px solid var(--line-6); color: var(--ink);
}
.mobile-nav a.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); }

.mobile-nav__group {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); padding: 12px 4px 2px;
}
.mobile-nav a.mobile-nav__sub { padding-left: 16px; }

@media (max-width: 1059px) {
  .nav { display: none; }
  .burger { display: grid; }
}
@media (min-width: 1060px) {
  .mobile-nav { display: none !important; }
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__col { min-width: 0; }

@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    align-items: stretch;
  }
  .hero__col { display: flex; flex-direction: column; justify-content: space-between; }
  .hero__aside .photo {
    flex: 1 1 0;
    aspect-ratio: auto;
    min-height: 300px;
    max-height: none;
  }
}

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand-bg); color: var(--brand-dark);
  font-weight: 600; font-size: 13px; padding: 7px 13px;
  border-radius: 100px; margin-bottom: 22px;
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(22, 121, 78, .16); flex-shrink: 0;
}

.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(33px, 5.4vw, 58px);
  line-height: 1.04; letter-spacing: -0.03em;
  text-wrap: balance; overflow-wrap: break-word;
}
.hero__lead {
  margin-top: 22px; font-size: clamp(17px, 2vw, 20px);
  color: var(--text); max-width: 560px; text-wrap: pretty;
}
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero__note { margin-top: 18px; font-size: 14px; color: var(--muted); }

.hero__aside { display: flex; flex-direction: column; gap: 18px; }

.photo {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4 / 5; max-height: 440px;
}

.photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

.stub {
  background: repeating-linear-gradient(135deg, #f4f5f6 0 14px, #eceef0 14px 28px);
  display: grid; place-items: center;
}
.stub__label {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  background: #fff; padding: 6px 12px; border-radius: 7px;
  border: 1px solid var(--line); text-align: center;
}

.card {
  border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: var(--soft-2);
}
.card__title { font-family: var(--display); font-weight: 600; font-size: 16px; }
.speclist { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.speclist__row { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; }
.speclist__row dt { color: var(--muted); }
.speclist__row dd { font-weight: 600; text-align: right; }
.speclist__row--total { border-top: 1px dashed var(--line-4); padding-top: 11px; }
.speclist__row--total dd { font-weight: 700; color: var(--brand-dark); }

.facts {
  border-top: 1px solid var(--line-3); border-bottom: 1px solid var(--line-3);
  background: var(--soft);
}
.facts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.facts__item { padding: 28px 22px; border-left: 1px solid var(--line-3); }
.facts__big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 3vw, 30px); color: var(--ink);
}
.facts__label { margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.4; }

.compare { display: flex; flex-direction: column; gap: 14px; }
.compare__topic {
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--ink-2); margin-bottom: 10px;
}
.compare__pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.compare__cell {
  border-radius: 14px; padding: 18px 20px;
  display: flex; gap: 13px; align-items: flex-start;
}
.compare__cell svg { flex-shrink: 0; margin-top: 2px; }
.compare__cell--me { border: 1px solid var(--brand-line); background: var(--brand-tint); }
.compare__cell--them { border: 1px solid #e6e8eb; background: var(--soft); }
.compare__who { font-weight: 600; font-size: 13px; margin-bottom: 3px; }
.compare__cell--me .compare__who { color: var(--brand-dark); }
.compare__cell--them .compare__who { color: var(--muted); }
.compare__cell--me p { font-size: 15.5px; color: var(--ink-2); }
.compare__cell--them p { font-size: 15.5px; color: var(--text-3); }

.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.service {
  border: 1px solid var(--dark-line); background: var(--dark-card);
  border-radius: 16px; padding: 26px 24px;
  display: flex; flex-direction: column; min-height: 200px;
  transition: border-color .16s, background .16s;
}
.service:hover { border-color: var(--dark-line-hover); background: var(--dark-card-hover); }
.service__num { font-family: var(--mono); font-size: 13px; color: var(--brand-on-dark); }
.service h3 {
  font-family: var(--display); font-weight: 500; font-size: 19px;
  margin-top: 18px; line-height: 1.25;
}
.service p { margin-top: 10px; color: var(--dark-text-2); font-size: 14.5px; flex: 1; text-wrap: pretty; }
.service__price { margin-top: 20px; font-family: var(--display); font-weight: 600; font-size: 20px; color: #fff; }

.calc { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: stretch; }
.calc__panel {
  border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
}
.calc__legend { font-weight: 600; font-size: 15px; margin-bottom: 12px; padding: 0; }
.calc__opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 9px; }
.calc__opts--wide { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.calc__opt {
  padding: 12px 14px; border-radius: 11px;
  border: 1.5px solid #e0e3e7; background: #fff;
  color: #3a3f47; font-weight: 500; font-size: 14.5px;
  transition: border-color .16s, background .16s, color .16s;
}
.calc__opt:hover { border-color: var(--brand-line); }
.calc__opt[aria-pressed="true"] {
  border-color: var(--brand); background: var(--brand-bg);
  color: var(--brand-dark); font-weight: 600;
}
.calc__result {
  border: 1px solid var(--brand-line);
  background: linear-gradient(180deg, var(--brand-tint), #fff);
  border-radius: 18px; padding: clamp(24px, 3vw, 34px);
  display: flex; flex-direction: column;
}
.calc__caption { font-size: 14px; color: var(--text-3); }
.calc__price {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 4.6vw, 42px); color: var(--brand-dark);
  margin-top: 8px; line-height: 1.05;
}
.calc__meta {
  margin-top: 22px; margin-bottom: 26px;
  padding-top: 22px; border-top: 1px solid #d5e7dd;
  display: flex; flex-direction: column; gap: 14px;
}
.calc__meta div { display: flex; justify-content: space-between; gap: 12px; }
.calc__meta dt { color: var(--text-3); font-size: 15px; }
.calc__meta dd { font-weight: 600; text-align: right; max-width: 60%; }

.calc__result .btn { margin-top: auto; }
.calc__disclaimer { margin-top: 14px; font-size: 13px; color: var(--muted); text-wrap: pretty; }

.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.case {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
}

.case__head {
  padding: 22px 22px 0;
  display: flex; justify-content: space-between; gap: 6px 12px;
  flex-wrap: wrap; align-items: baseline;
}
.case__niche {
  font-weight: 600; font-size: 16px; line-height: 1.3;
  min-height: 2.6em; flex: 1 1 60%; text-wrap: pretty;
}
.case__period {
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  white-space: nowrap;
}

.case__shot {
  margin: 16px 22px 0; position: relative; display: block;
  border: 1px solid var(--line-4); border-radius: 12px; overflow: hidden;
  aspect-ratio: 22 / 10; background: #fff;
}
.case__shot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.case__shot .stub__label { font-size: 11.5px; padding: 5px 10px; border-radius: 6px; }
.case__stamp {
  position: absolute; top: 9px; left: 9px;
  font-family: var(--mono); font-size: 10.5px; color: var(--muted);
  background: rgba(255, 255, 255, .9); padding: 3px 7px; border-radius: 5px;
}

.case__zoom {
  position: absolute; right: 9px; bottom: 9px;
  font-family: var(--mono); font-size: 10.5px; color: #fff;
  background: rgba(20, 22, 26, .78); padding: 4px 9px; border-radius: 5px;
  opacity: 0; transition: opacity .15s ease;
}
.case__shot:hover .case__zoom,
.case__shot:focus-visible .case__zoom { opacity: 1; }
.case__shot:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
@media (hover: none) {
  .case__zoom { opacity: 1; }
}

.case__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.case__metric {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 27px); color: var(--brand-dark); line-height: 1.1;
  min-height: 1.1em; text-wrap: balance;
}
.case__facts {
  margin-top: 9px; font-family: var(--mono); font-size: 12.5px;
  color: var(--muted); line-height: 1.5; min-height: 3em; text-wrap: pretty;
}
.case__detail { margin-top: 12px; color: var(--text-2); font-size: 14.5px; flex: 1; text-wrap: pretty; }
.case__link { margin-top: 18px; font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }
.cases__note {
  margin-top: 22px; font-size: 13px; color: var(--muted);
  max-width: 820px; text-wrap: pretty;
}

.honest {
  margin-top: 18px; background: #fff;
  border: 1px solid var(--line); border-left: 3px solid var(--brand-line);
  border-radius: 16px; padding: clamp(22px, 3vw, 30px);
}
.honest__title {
  margin-top: 8px; font-family: var(--display); font-weight: 600;
  font-size: clamp(19px, 2.4vw, 23px); letter-spacing: -0.015em;
  line-height: 1.25; color: var(--ink); text-wrap: balance;
}
.honest p {
  margin-top: 13px; max-width: 78ch;
  font-size: 15.5px; color: var(--text-2); text-wrap: pretty;
}
.scope { margin-top: clamp(32px, 4vw, 48px); }
.scope__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2.6vw, 25px); letter-spacing: -0.015em; color: var(--ink);
}
.scope__lead { margin-top: 10px; max-width: 78ch; font-size: 16px; color: var(--text-2); text-wrap: pretty; }
.scope__grid {
  margin-top: 20px; display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.scope__item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 22px clamp(20px, 2.4vw, 26px);
}
.scope__item h4 {
  font-size: 16.5px; font-weight: 600; color: var(--ink-2); line-height: 1.3; text-wrap: balance;
}
.scope__item p { margin-top: 10px; font-size: 15px; color: var(--text-2); line-height: 1.6; text-wrap: pretty; }

.honest__list { margin-top: 18px; display: grid; gap: 14px; list-style: none; }
.honest__list li {
  max-width: 78ch; padding-left: 16px; border-left: 2px solid var(--line-4);
  font-size: 15.5px; color: var(--text-2); line-height: 1.6; text-wrap: pretty;
}
.honest__list b { color: var(--ink-2); font-weight: 600; }

.certs__intro { margin-top: 8px; font-size: 14px; color: var(--text-2); text-wrap: pretty; }
.certs {
  margin-top: 14px; display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.cert {
  border: 1px solid var(--line); border-radius: 14px; background: var(--soft-2);
  overflow: hidden; display: flex; flex-direction: column;
}

.cert__shot {
  position: relative; display: block; aspect-ratio: 1 / 1;
  min-height: 0; overflow: hidden; padding: 12px;
  background: #fff; border-bottom: 1px solid var(--line-3);
}
.cert__shot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cert__shot:hover .case__zoom,
.cert__shot:focus-visible .case__zoom { opacity: 1; }
.cert__shot:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.cert__body { padding: 12px 14px 14px; }
.cert__name { font-weight: 600; font-size: 14.5px; line-height: 1.35; text-wrap: pretty; }
.cert__meta {
  margin-top: 6px; font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); line-height: 1.5; text-wrap: pretty;
}

.lb {
  position: fixed; inset: 0; z-index: 80;
  display: flex; flex-direction: column;
  background: rgba(16, 18, 21, .985);
}
.lb[hidden] { display: none; }

.lb__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; color: var(--dark-text-3);
  font-family: var(--mono); font-size: 12.5px;
}
.lb__btn {
  border: 1px solid var(--dark-line); background: var(--dark-card);
  color: var(--dark-text-3); border-radius: 9px; cursor: pointer;
  font: inherit; padding: 7px 13px; line-height: 1;
}
.lb__btn:hover:not(:disabled) { background: var(--dark-card-hover); border-color: var(--dark-line-hover); }
.lb__btn:disabled { opacity: .35; cursor: default; }
.lb__btn:focus-visible { outline: 2px solid var(--brand-on-dark); outline-offset: 2px; }
.lb__nav { display: flex; gap: 8px; align-items: center; }

.lb__stage {
  flex: 1; min-height: 0; overflow: auto;
  display: grid; place-items: center; padding: 0 16px;
  overscroll-behavior: contain;
}

.lb__img {
  max-width: 100%; max-height: 100%;
  min-width: 0; min-height: 0;
  border-radius: 10px; background: #fff; cursor: zoom-in;
}

.lb__img.is-zoomed { max-width: none; max-height: none; width: auto; cursor: zoom-out; }

.lb__cap {
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  color: var(--dark-text); font-size: 13.5px; text-align: center; text-wrap: pretty;
}

@media (max-width: 640px) {
  .lb__bar { padding: 10px 12px; font-size: 11.5px; }
  .lb__btn { padding: 7px 10px; }
  .lb__cap { font-size: 12.5px; }
}

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.step {
  border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px;
  display: flex; flex-direction: column; min-height: 190px;
}
.step__n {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-bg); color: var(--brand-dark);
  font-family: var(--display); font-weight: 700;
  display: grid; place-items: center; font-size: 16px;
}
.step h3 { font-weight: 600; font-size: 17px; margin-top: 18px; }
.step p { margin-top: 8px; color: var(--muted); font-size: 14px; flex: 1; text-wrap: pretty; }

.step p.step__term {
  flex: 0 0 auto;
  margin-top: 16px; font-family: var(--mono); font-size: 12.5px;
  color: var(--brand); background: var(--brand-bg);
  align-self: flex-start; padding: 4px 10px; border-radius: 6px;
}

.sec-head__aside { margin-top: 10px; color: var(--dark-text-2); font-size: 14.5px; }
.sec-head__aside a { color: var(--brand-on-dark); text-decoration: none; border-bottom: 1px solid currentColor; }
.sec-head__aside a:hover { border-bottom-color: currentColor; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.review {
  border: 1px solid var(--dark-line); background: var(--dark-card);
  border-radius: 18px; padding: 26px 24px; display: flex; flex-direction: column;
}

.stars { position: relative; display: inline-block; font-size: 15px; line-height: 1; letter-spacing: 2px; margin-bottom: 16px; }
.stars::before { content: "★★★★★"; color: #3a3f47; }
.stars span { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; }
.stars span::before { content: "★★★★★"; color: #f5a623; }
.review blockquote { font-size: 16px; line-height: 1.55; color: var(--dark-text-3); text-wrap: pretty; flex: 1; }
.review figcaption { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--dark-line); }
.review__name { font-weight: 600; font-size: 15px; }
.review__role { color: var(--dark-text-2); font-size: 13.5px; margin-top: 3px; }
.review__cost {
  margin-top: 12px; font-family: var(--mono); font-size: 12px; color: var(--dark-text);
  border: 1px solid var(--dark-line); border-radius: 7px; padding: 6px 10px; display: inline-block;
}

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 56px); align-items: start; }

@media (min-width: 900px) {
  .split--sticky > :first-child { position: sticky; top: 96px; }
}
.nots { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.nots li {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; color: var(--ink-3); text-wrap: pretty;
}
.nots svg { flex-shrink: 0; margin-top: 1px; }

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 22px; display: flex; justify-content: space-between;
  gap: 16px; align-items: center;
  font-weight: 600; font-size: 17px; color: var(--ink);
}
.faq__icon {
  font-weight: 600; font-size: 24px; color: var(--brand);
  flex-shrink: 0; line-height: 1; transition: transform .2s;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { padding: 0 22px 22px; color: #4c525a; font-size: 16px; line-height: 1.6; text-wrap: pretty; }
.faq__a[hidden] { display: none; }

.lead__benefits { margin-top: 24px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lead__benefits li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-3); }
.lead__benefits svg { flex-shrink: 0; margin-top: 1px; }

.form-box { border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 3vw, 34px); background: #fff; }
.form { display: flex; flex-direction: column; gap: 18px; }

.form[hidden] { display: none; }
.field { display: block; }
.field__label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field__opt { color: var(--muted); font-weight: 400; }
.field input[type="text"], .field input[type="url"], .field input[type="tel"] {
  width: 100%; padding: 14px 15px;
  border: 1.5px solid #dde0e4; border-radius: 11px;
  background: #fff; outline: none; color: var(--ink);
  transition: border-color .16s;
}
.field input:focus { border-color: var(--brand); }
.field input[aria-invalid="true"] { border-color: var(--err-line); }
.field__err { color: var(--err); font-size: 13px; margin-top: 6px; display: block; }
.field__err[hidden] { display: none; }

.agree { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.agree input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--brand); cursor: pointer; }
.agree span { font-size: 13.5px; color: var(--text-2); line-height: 1.5; }
.agree a { text-decoration: underline; }
.form__err--agree { margin-top: -8px; }
.form button[type="submit"] {
  background: var(--brand); color: #fff; font-weight: 600; font-size: 16px;
  padding: 16px; border: none; border-radius: 12px; transition: background .16s;
}
.form button[type="submit"]:hover { background: var(--brand-dark); }
.form button[type="submit"]:disabled { opacity: .6; cursor: progress; }
.form__note { font-size: 13px; color: var(--muted); text-align: center; text-wrap: pretty; }
.form__fail { color: var(--err); font-size: 14px; text-align: center; }
.form__fail[hidden] { display: none; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-done { text-align: center; padding: 30px 10px; }
.form-done[hidden] { display: none; }
.form-done__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--brand-bg);
  margin: 0 auto; display: grid; place-items: center;
}
.form-done h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin-top: 20px; }
.form-done p { margin-top: 12px; color: var(--text-2); font-size: 16px; }

.footer { background: var(--dark); color: var(--dark-text-4); }
.footer__inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(48px, 6vw, 72px) var(--gutter) 40px; }

.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 36px 28px; }
.footer__logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }

.footer__logo .logo__name { color: #fff; white-space: normal; }
.footer__logo .nb { white-space: nowrap; }
.footer__about { font-size: 14.5px; color: var(--dark-text-2); max-width: 300px; text-wrap: pretty; }
.footer__title { font-weight: 600; color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer__list { display: flex; flex-direction: column; gap: 9px; font-size: 15px; list-style: none; }
.footer__list a { color: var(--dark-text-4); }
.footer__list a:hover { color: #fff; }
.footer__hours { color: var(--dark-text-2); font-size: 13.5px; margin-top: 4px; }

.footer__msgs { margin-top: 18px; }
.footer__legal {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--dark-line);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: 13px; color: var(--dark-text-2);
}

@keyframes cbup { from { transform: translateY(120%); } to { transform: translateY(0); } }
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line-5); border-radius: 16px;
  padding: 20px 22px; box-shadow: 0 12px 40px rgba(20, 22, 26, .18);
  animation: cbup .4s ease;
}
.cookie[hidden] { display: none; }
.cookie__row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.cookie p { font-size: 14px; color: #4c525a; flex: 1; min-width: 240px; line-height: 1.5; text-wrap: pretty; }
.cookie a { text-decoration: underline; }
.cookie__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btns button {
  font-weight: 600; font-size: 14px; padding: 11px 16px; border-radius: 10px;
  transition: background .16s, border-color .16s;
}
.cookie__btns .is-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line-6); }
.cookie__btns .is-secondary:hover { border-color: var(--brand); }
.cookie__btns .is-primary { background: var(--brand); color: #fff; border: none; padding: 11px 18px; }
.cookie__btns .is-primary:hover { background: var(--brand-dark); }

.draft-only { display: none; }
body.is-draft .draft-only { display: revert; }
body.is-draft section.draft-only { display: block; }
body.is-draft li.draft-only { display: flex; }

.ph {
  background: #fff7e8;
  border-bottom: 1px dashed #d9a441;
  padding: 0 2px;
  border-radius: 2px;
}
body:not(.is-draft) .ph { background: none; border-bottom: 0; padding: 0; }

.draft-note {
  margin-bottom: 24px; padding: 14px 18px;
  border: 1px dashed #d9a441; background: #fff7e8;
  border-radius: 12px; font-size: 14px; color: #6b5320; text-wrap: pretty;
}
.section--dark .draft-note { background: #2a2413; border-color: #7a6128; color: #e0c98a; }

.draft-bar {
  background: #fff7e8; border-bottom: 1px solid #e6c98a;
  color: #6b5320; font-size: 13.5px; line-height: 1.5;
  padding: 10px var(--gutter); text-align: center; text-wrap: pretty;
}
.draft-bar code { font-family: var(--mono); font-size: 12.5px; background: #f6e6c8; padding: 1px 5px; border-radius: 4px; }

.crumbs--page { padding: 16px 0 0; }
.crumbs--page .wrap { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); }
.crumbs--page a { color: var(--muted); }
.crumbs--page a:hover { color: var(--brand); }
.crumbs__sep { color: var(--muted); }

h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(29px, 4.4vw, 46px); line-height: 1.06;
  letter-spacing: -0.025em; text-wrap: balance;
}
.split__lead { margin-top: 16px; color: var(--text-2); font-size: 18px; text-wrap: pretty; }
.wrap--text { max-width: 820px; }
.calc__set { border: 0; padding: 0; margin: 0; }

.service__more {
  margin-top: 14px; font-size: 14.5px; font-weight: 600;
  color: var(--brand-on-dark); align-self: flex-start;
}
.service__more:hover { color: #7ce0ad; }

.about { display: grid; grid-template-columns: minmax(260px, 360px) minmax(300px, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }
.about__media { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
@media (max-width: 860px) { .about__media { position: static; } }
.about__doc {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; background: var(--soft-2); font-size: 14.5px; color: var(--text-2);
}
.about__doc-title { font-weight: 600; color: var(--ink); margin-bottom: 8px; font-size: 15px; }
.about__doc-note { margin-top: 10px; font-size: 13px; color: var(--muted); text-wrap: pretty; }
.about__contacts { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--muted); }
.about__text > p { margin-top: 16px; color: var(--text); font-size: 17px; text-wrap: pretty; }
.about__text h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(21px, 2.6vw, 26px); margin-top: 36px; letter-spacing: -0.015em;
}
.about__lead { font-size: 19px !important; color: var(--ink-3) !important; }
.about__facts { margin-top: 22px; display: grid; gap: 12px; }
.about__facts > div {
  display: grid; grid-template-columns: 170px 1fr; gap: 14px;
  border-top: 1px solid var(--line-3); padding-top: 12px; font-size: 15.5px;
}
.about__facts dt { color: var(--muted); }
.about__facts dd { color: var(--ink-3); text-wrap: pretty; }
@media (max-width: 620px) { .about__facts > div { grid-template-columns: 1fr; gap: 4px; } }
.about__stack-title { margin-top: 28px; font-weight: 600; }
.about__more { margin-top: 30px; }

.chips { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chips li {
  border: 1px solid var(--line-5); border-radius: 100px;
  padding: 7px 14px; font-size: 14px; color: var(--text-2); background: #fff;
}

.ticks { margin-top: 22px; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--ink-3); font-size: 16px; text-wrap: pretty; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--brand-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 10.2l2.6 2.6L14.2 7' stroke='%2316794e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ticks--boxed li { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px 16px 46px; }
.ticks--boxed li::before { left: 18px; top: 18px; }

.terms { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.term {
  border: 1px solid var(--brand-line); background: var(--brand-tint);
  border-radius: 16px; padding: 22px 24px;
}
.term__tag {
  font-family: var(--mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .05em; color: var(--brand-dark); margin-bottom: 10px;
}
.term h3 { font-weight: 600; font-size: 17.5px; }
.term p { margin-top: 9px; color: var(--text-2); font-size: 15px; text-wrap: pretty; }
.term--no { border-color: var(--line-5); background: var(--soft); }
.term__tag--no { color: var(--err); }
.terms__note {
  margin-top: 20px; font-size: 15px; color: var(--text-2);
  border-left: 3px solid var(--brand-line); padding-left: 16px; text-wrap: pretty;
}

.geo { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.geo__item {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 24px clamp(20px, 2.4vw, 26px);
}
.geo__item--main { border-color: var(--brand-line); border-left: 3px solid var(--brand); }
.geo__tag {
  font-family: var(--mono); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted);
}
.geo__item--main .geo__tag { color: var(--brand-dark); }
.geo__city {
  margin-top: 10px; font-family: var(--display); font-weight: 600;
  font-size: clamp(17px, 2vw, 19px); letter-spacing: -0.015em;
  line-height: 1.3; color: var(--ink-2); text-wrap: balance;
}
.geo__text { margin-top: 12px; font-size: 15px; color: var(--text-2); line-height: 1.6; text-wrap: pretty; }
.geo__wide {
  margin-top: 16px; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 24px clamp(20px, 2.4vw, 26px);
}
.geo__sub {
  font-family: var(--mono); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
}
.chips--geo { margin-top: 12px; gap: 8px; }
.chips--geo li { background: var(--brand-tint); border-color: var(--brand-line); font-size: 14px; }

.fit { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.fit__col { border: 1px solid var(--dark-line); background: var(--dark-card); border-radius: 18px; padding: 26px 24px; }
.fit__col--light { border-color: var(--line); background: var(--soft-2); }
.fit__head { font-family: var(--display); font-weight: 600; font-size: 17px; margin-bottom: 16px; }
.fit__head--yes { color: var(--brand-on-dark); }
.fit__head--no { color: #e08e7f; }
.fit__col--light .fit__head--yes { color: var(--brand-dark); }
.fit__col--light .fit__head--no { color: var(--err); }
.fit__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fit__list li {
  position: relative; padding-left: 24px;
  font-size: 15.5px; color: var(--dark-text-3); text-wrap: pretty;
}
.fit__col--light .fit__list li { color: var(--ink-3); }
.fit__list li::before { content: '+'; position: absolute; left: 0; top: -1px; color: var(--brand-on-dark); font-weight: 700; }
.fit__col--light .fit__list li::before { color: var(--brand); }
.fit__list--no li::before { content: '—'; color: #e08e7f; }
.fit__col--light .fit__list--no li::before { color: var(--err); }

.artifacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.artifact {
  display: block; border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; background: #fff; color: var(--ink);
  transition: border-color .16s, transform .16s;
}
a.artifact:hover { border-color: var(--brand); color: var(--ink); transform: translateY(-2px); }
.artifact__kind { font-family: var(--mono); font-size: 12px; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; }
.artifact h3 { font-family: var(--display); font-weight: 600; font-size: 18.5px; margin-top: 14px; }
.artifact p { margin-top: 10px; color: var(--text-2); font-size: 15px; text-wrap: pretty; }
.artifact__go { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 14.5px; color: var(--brand); }
.artifact__go--muted { color: var(--muted); }
.artifact--soon { background: var(--soft); }

.offer { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(280px, 380px); gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 900px) { .offer { grid-template-columns: 1fr; } }
.offer__lead { margin-top: 20px; font-size: 18.5px; color: var(--text); text-wrap: pretty; }
.offer__card {
  border: 1px solid var(--brand-line);
  background: linear-gradient(180deg, var(--brand-tint), #fff);
  border-radius: 18px; padding: clamp(22px, 3vw, 30px);
  position: sticky; top: 96px;
}
@media (max-width: 900px) { .offer__card { position: static; } }
.offer__price { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 40px); color: var(--brand-dark); line-height: 1; }
.offer__price-note { margin-top: 8px; font-size: 14px; color: var(--text-3); }
.offer__card .speclist { margin-top: 20px; padding-top: 18px; border-top: 1px solid #d5e7dd; }
.offer__card .btn { margin-top: 22px; }
.offer__card-note { margin-top: 14px; font-size: 13px; color: var(--muted); text-wrap: pretty; }

.contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.contact {
  display: block; border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; background: #fff; color: var(--ink); transition: border-color .16s;
}
a.contact:hover { border-color: var(--brand); color: var(--ink); }
.contact--accent { border-color: var(--brand-line); background: var(--brand-tint); }
.contact--plain { background: var(--soft); }
.contact__kind { font-family: var(--mono); font-size: 12px; color: var(--brand); text-transform: uppercase; letter-spacing: .05em; }
.contact__value { font-family: var(--display); font-weight: 600; font-size: 19px; margin-top: 12px; letter-spacing: -0.01em; }
.contact__note { margin-top: 10px; font-size: 14px; color: var(--text-2); text-wrap: pretty; }

.req { border: 1px solid var(--line); border-radius: 16px; padding: 8px 24px 24px; background: #fff; }
.req dl { display: flex; flex-direction: column; }
.req dl > div { display: grid; grid-template-columns: 160px 1fr; gap: 14px; border-top: 1px solid var(--line-3); padding: 14px 0; font-size: 15.5px; }
.req dl > div:first-child { border-top: 0; }
.req dt { color: var(--muted); }
.req dd { color: var(--ink-3); text-wrap: pretty; }
@media (max-width: 620px) { .req dl > div { grid-template-columns: 1fr; gap: 4px; } }

.ctabar { background: var(--brand-tint); border-top: 1px solid var(--brand-line); border-bottom: 1px solid var(--brand-line); }
.ctabar__row {
  padding: clamp(24px, 3vw, 34px) var(--gutter);
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.ctabar p { font-size: 17.5px; color: var(--ink-2); max-width: 640px; text-wrap: pretty; }

.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  display: none; gap: 10px;
}
.sticky-cta[hidden] { display: none !important; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
}
.sticky-cta__main {
  flex: 1; background: var(--brand); color: #fff; font-weight: 600; font-size: 15px;
  padding: 14px 16px; border-radius: 12px; text-align: center;
  box-shadow: 0 8px 24px rgba(20, 22, 26, .22);
}
.sticky-cta__main:hover { color: #fff; }
.sticky-cta__msg {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); border: 1px solid var(--line-5);
  font-weight: 600; font-size: 15px; padding: 14px 16px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(20, 22, 26, .14);
}
.sticky-cta__msg svg { color: var(--brand); }

.fab {
  position: fixed; right: 20px; bottom: 22px; z-index: 45;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fab[hidden] { display: none; }
.fab__list {
  flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.92);
  transform-origin: bottom center; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.fab[data-open="true"] .fab__list {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto;
}
.fab__list .msg { width: 46px; height: 46px; box-shadow: 0 8px 22px rgba(20, 22, 26, .18); }
.fab__toggle, .to-top {
  border: 0; border-radius: 50%; cursor: pointer; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(20, 22, 26, .2);
  transition: background .16s ease, transform .16s ease;
}
.fab__toggle { width: 52px; height: 52px; background: var(--brand); }
.fab__toggle:hover { background: var(--brand-dark); transform: scale(1.06); }
.fab[data-open="true"] .fab__toggle { background: var(--brand-dark); }
.fab__icon-close { display: none; }
.fab[data-open="true"] .fab__icon-chat { display: none; }
.fab[data-open="true"] .fab__icon-close { display: block; }

.to-top {
  width: 42px; height: 42px; background: #fff; color: var(--ink);
  border: 1px solid var(--line-5);
}
.to-top:hover { background: #fff; color: var(--brand-dark); border-color: var(--brand); transform: scale(1.06); }
.to-top[hidden] { display: none; }

@media (max-width: 760px) { .fab { display: none; } }

.article__lead { margin-top: 22px; font-size: 19px; color: var(--text); text-wrap: pretty; }
.article__meta {
  margin-top: 20px; padding: 14px 0; border-top: 1px solid var(--line-3); border-bottom: 1px solid var(--line-3);
  display: flex; flex-wrap: wrap; gap: 6px 20px; font-size: 14px; color: var(--muted);
}
.callout {
  margin-top: 26px; border: 1px solid var(--brand-line); background: var(--brand-tint);
  border-radius: 14px; padding: 18px 20px; font-size: 15.5px; color: var(--ink-3); text-wrap: pretty;
}
.checklist { margin-top: 42px; }
.checklist h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(21px, 2.8vw, 27px); letter-spacing: -0.015em;
}
.checklist > p { margin-top: 12px; color: var(--text-2); font-size: 16.5px; text-wrap: pretty; }
.checklist__list { margin-top: 18px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist__list li {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  font-size: 15.5px; color: var(--ink-3); text-wrap: pretty;
}
.checklist__num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  background: var(--brand-bg); color: var(--brand-dark);
  font-family: var(--mono); font-size: 12.5px;
  display: grid; place-items: center;
}

.lead__alt { margin-top: 22px; font-size: 15px; color: var(--text-2); text-wrap: pretty; }
.lead__alt a, .faq__a a, .legal p a, .legal li a { text-decoration: underline; text-underline-offset: 2px; }

.legal-hero { border-bottom: 1px solid var(--line-3); background: var(--soft); }
.legal-hero .wrap { max-width: 820px; padding-top: clamp(36px, 5vw, 56px); padding-bottom: clamp(28px, 4vw, 40px); }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.legal-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.02em;
}
.legal { max-width: 820px; margin: 0 auto; padding: clamp(36px, 5vw, 56px) var(--gutter) clamp(56px, 8vw, 88px); }
.legal p { margin-bottom: 16px; color: #33383f; text-wrap: pretty; }
.legal h2 {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  margin: 36px 0 14px; letter-spacing: -0.01em;
}
.legal h3 { font-weight: 600; font-size: 18px; margin: 24px 0 10px; }
.legal ul, .legal ol { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; color: #33383f; }
.legal__rev { font-size: 15px; color: var(--muted); }
.legal__box {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px; background: var(--soft); margin-bottom: 24px;
}
.legal__box p:last-child { margin-bottom: 0; }
