/* ================================================================
   ЗаймКомпас — дизайн-система «навигационный инструмент».
   Оригинальная вёрстка. Палитра «морская карта на закате».
   ================================================================ */

:root {
  /* Colour — nautical instrument at dusk */
  --ink:        #0a1c24;   /* deep petrol — text, dark panels */
  --ink-80:     #24333b;
  --teal:       #0e6e64;   /* primary action / trust */
  --teal-deep:  #0b4f49;
  --teal-soft:  #dcece8;
  --brass:      #c0882e;   /* bezel, ratings */
  --brass-soft: #f1e4c9;
  --needle:     #d8452a;   /* compass needle — used sparingly */
  --paper:      #e7ece9;   /* cool chart-paper base */
  --paper-2:    #eef2ef;
  --card:       #fbfcfb;
  --line:       rgba(10, 28, 36, .12);
  --line-2:     rgba(10, 28, 36, .07);
  --muted:      #55676d;
  --danger:     #c23b28;

  --radius:   14px;
  --radius-lg: 22px;
  --shadow:   0 10px 30px -14px rgba(10, 28, 36, .30);
  --shadow-lg: 0 30px 60px -24px rgba(10, 28, 36, .45);
  --container: 1160px;

  --f-display: "Unbounded", -apple-system, "Segoe UI", sans-serif;
  --f-body:    "Golos Text", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --f-mono:    ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brass-soft); color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.section { padding: 74px 0; position: relative; }
.section--dark { background: var(--ink); color: #dfe8e6; }
.section--paper2 { background: var(--paper-2); }

/* ---------- Bearing eyebrow (mono, the recurring instrument motif) ---------- */
.bearing {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.bearing::before {
  content: "";
  width: 8px; height: 8px;
  border: 1.5px solid var(--brass);
  transform: rotate(45deg);
  display: inline-block;
}
.section--dark .bearing { color: var(--brass); }

.section__head { max-width: 640px; margin: 0 0 52px; }
.section__head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head.is-center .bearing { justify-content: center; }
.section__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.section__subtitle { color: var(--muted); font-size: 17px; margin: 0; max-width: 60ch; }
.section--dark .section__subtitle { color: #9fb2af; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 15.5px; line-height: 1;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { box-shadow: 0 12px 26px -12px rgba(14, 110, 100, .8); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(14, 110, 100, .9); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn--ondark { background: #fff; color: var(--ink); }
.btn--ondark:hover { background: var(--brass-soft); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 16.5px; }
.btn:active { transform: translateY(0); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(231, 236, 233, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(231, 236, 233, .94); }
.header-bar { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--teal), var(--ink) 130%);
  display: grid; place-items: center; color: #fff; position: relative;
  box-shadow: inset 0 0 0 2px var(--brass), var(--shadow);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name b { color: var(--teal-deep); }
.section--dark .brand__name, .site-footer .brand__name { color: #fff; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--muted); font-weight: 500; font-size: 15px; position: relative; transition: color .15s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--brass); transition: width .2s; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: var(--f-mono); font-weight: 600; font-size: 15px; letter-spacing: .01em; color: var(--ink); }
.header-call { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); flex: none; }
.header-call svg { width: 19px; height: 19px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero { padding: 26px 0 30px; position: relative; overflow: hidden; }
.hero-license { display: inline-flex; align-items: center; gap: 10px; background: var(--teal-soft); border: 1px solid rgba(14, 110, 100, .22); color: var(--teal-deep); padding: 8px 15px 8px 12px; border-radius: 999px; font-size: 13.5px; margin-bottom: 18px; }
.hero-license svg { width: 18px; height: 18px; flex: none; }
.hero-license b { color: var(--ink); }
.hero::before {  /* faint compass rings — ambient chart texture */
  content: ""; position: absolute; right: -140px; top: 50%; transform: translateY(-50%);
  width: 820px; height: 820px; border-radius: 50%; pointer-events: none;
  background:
    repeating-radial-gradient(circle, transparent 0 58px, rgba(10,28,36,.05) 58px 59px);
  -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 72%);
          mask-image: radial-gradient(circle, #000 55%, transparent 72%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-grid > * { min-width: 0; }
.hero h1 { overflow-wrap: break-word; }
.hero h1 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(26px, 3.3vw, 38px); line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.hero h1 em { font-style: normal; color: var(--teal-deep); position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; background: var(--brass-soft); z-index: -1; }
.hero__lead { font-size: 16.5px; color: var(--muted); margin: 0 0 16px; max-width: 500px; line-height: 1.5; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-note { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 9px; max-width: 440px; line-height: 1.5; }
.hero-note svg { width: 16px; height: 16px; color: var(--teal); flex: none; }

/* ---------- Hero trust chips ---------- */
.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 18px; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--ink); }
.chip svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

/* ---------- Hero visual: pinned note (signature) ---------- */
.hero-visual { display: grid; place-items: center; }
.notecard {
  position: relative; width: 100%; max-width: 380px;
  background: #fffdf5; border: 1px solid #efe6cf; border-radius: 6px;
  padding: 30px 28px 24px;
  box-shadow: 0 24px 46px -22px rgba(10, 28, 36, .5);
  transform: rotate(-2.4deg);
}
.notecard__pin {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle at 35% 30%, #ff8163, var(--needle) 55%, #a3311c);
  box-shadow: 0 7px 11px -3px rgba(10, 28, 36, .55), inset 0 -2px 3px rgba(0, 0, 0, .28);
}
.notecard__pin::after {
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 13px; background: linear-gradient(180deg, rgba(10, 28, 36, .35), transparent);
}
.notecard__flash { display: inline-block; background: var(--brass); color: var(--ink); font-weight: 700; font-size: 13px; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
.notecard__title { font-family: var(--f-display); font-weight: 600; font-size: 25px; letter-spacing: -0.02em; margin: 0 0 18px; }
.notecard__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.notecard__list li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink); }
.notecard__list b { color: var(--teal-deep); }
.notecard__list .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); font-size: 12px; font-weight: 700; display: grid; place-items: center; flex: none; }
.notecard__tip { font-size: 15px; line-height: 1.58; color: var(--ink); margin: 0 0 18px; }
.notecard--tip .notecard__flash { background: #ffe9a8; color: #7a5a12; }

/* Горизонтальный «Совет» над витриной */
.notecard--wide { max-width: 720px; margin: 0 auto 30px; padding: 22px 28px; transform: rotate(-0.6deg); }
.notecard--wide .notecard__flash { background: #ffe9a8; color: #7a5a12; }
.notecard--wide .notecard__tip { margin: 0; }

/* Топ-оффер в герое (CRO, фаза 1) */
.hero-offer { width: 100%; max-width: 380px; }
.hero-offer__label { font-family: var(--f-display); font-weight: 600; font-size: 14px; color: var(--teal-deep); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.hero-offer .offer { box-shadow: var(--shadow-lg); }

/* Выделенная карточка (CRO, фаза 2) */
.offer--featured { border-color: var(--brass); box-shadow: 0 0 0 2px var(--brass-soft), var(--shadow); }
.offer--featured:hover { border-color: var(--brass); }

/* ---------- Trust strip (coordinates) ---------- */
.trust-strip { background: var(--ink); color: #cdd9d6; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { text-align: center; padding: 18px 18px; position: relative; }
.trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: rgba(255,255,255,.12); }
.trust-item b { display: block; font-family: var(--f-mono); font-size: 26px; font-weight: 600; color: var(--brass); letter-spacing: -0.02em; }
.trust-item span { color: #92a5a1; font-size: 13.5px; }

/* ---------- Offers ---------- */
#offers { padding-top: 34px; }               /* витрина ближе к верху */
#offers .section__head { margin-bottom: 34px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal); }
.offer__flag {
  position: absolute; top: -10px; right: 18px; font-family: var(--f-mono);
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink); background: var(--brass); padding: 5px 11px; border-radius: 999px;
}
.offer__top { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.offer__logo { width: 50px; height: 50px; border-radius: 13px; overflow: hidden; background: #fff; border: 1px solid var(--line); flex: none; display: grid; place-items: center; }
.offer__logo img { width: 100%; height: 100%; object-fit: cover; }
.offer__logo--empty { font-family: var(--f-display); font-weight: 600; font-size: 16px; color: var(--teal-deep); }
.offer__name { font-family: var(--f-display); font-size: 16.5px; font-weight: 600; margin: 0; letter-spacing: -0.01em; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.offer__rating { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 12px; color: var(--muted); margin-top: 4px; }
.offer__rating svg { width: 13px; height: 13px; color: var(--brass); }
.offer__promo { background: var(--teal-soft); color: var(--teal-deep); font-weight: 600; font-size: 13.5px; border-radius: 10px; padding: 11px 14px; margin-bottom: 18px; text-align: center; }
.offer__rows { display: grid; gap: 4px; margin-bottom: 20px; }
.offer__row { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--line-2); }
.offer__row:last-child { border-bottom: none; }
.offer__row-icon { width: 28px; height: 28px; display: grid; place-items: center; flex: none; color: var(--teal); }
.offer__row-icon svg { width: 16px; height: 16px; }
.offer__row .lbl { color: var(--muted); }
.offer__row .val { margin-left: auto; font-family: var(--f-mono); font-weight: 600; font-size: 13.5px; }
.offer__cta { margin-top: auto; }
.offers-disclaimer { text-align: center; color: var(--muted); font-size: 13px; margin-top: 34px; max-width: 780px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ---------- Tips ---------- */
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tip { display: flex; gap: 18px; padding: 30px; background: var(--card); }
.tip__num { font-family: var(--f-mono); font-size: 13px; font-weight: 600; color: var(--brass); padding-top: 4px; flex: none; }
.tip h4 { font-family: var(--f-display); margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.tip p { margin: 0; color: var(--muted); font-size: 14.5px; }
.section--dark .tips-grid { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.section--dark .tip { background: var(--ink-80); }
.section--dark .tip h4 { color: #fff; }
.section--dark .tip p { color: #9fb2af; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.review::before { content: "“"; position: absolute; top: 6px; right: 20px; font-family: var(--f-display); font-size: 64px; color: var(--brass-soft); line-height: 1; }
.review.is-hidden { display: none; }
.review__stars { color: var(--brass); margin-bottom: 14px; letter-spacing: 3px; font-size: 14px; }
.review__text { font-size: 15px; margin: 0 0 20px; position: relative; }
.review__author { display: flex; align-items: center; gap: 13px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-weight: 600; color: #fff; flex: none; }
.review__author b { display: block; font-size: 15px; }
.review__author span { color: var(--muted); font-family: var(--f-mono); font-size: 12px; }
.reviews-more { text-align: center; margin-top: 36px; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 18px; width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 4px; font-family: var(--f-display); font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.faq-q svg { width: 22px; height: 22px; flex: none; color: var(--teal); transition: transform .25s; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); color: var(--needle); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 0; padding: 0 4px 24px; color: var(--muted); font-size: 15.5px; max-width: 68ch; }

/* ---------- Lead form (deep teal instrument panel) ---------- */
.lead { background: var(--teal-deep); color: #eaf3f1; border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.lead::before { content: ""; position: absolute; left: -120px; bottom: -160px; width: 460px; height: 460px; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 40px, rgba(255,255,255,.05) 40px 41px); pointer-events: none; }
.lead-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; position: relative; z-index: 1; }
.lead h2 { font-family: var(--f-display); font-size: clamp(26px, 3.4vw, 34px); font-weight: 600; margin: 0 0 14px; letter-spacing: -0.02em; }
.lead > .lead-grid p { color: #b6d3cd; margin: 0 0 24px; }
.lead-perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.lead-perks li { display: flex; gap: 11px; font-size: 15px; color: #d3e6e1; }
.lead-perks svg { width: 20px; height: 20px; color: var(--brass); flex: none; margin-top: 2px; }

.form-card { background: var(--card); border-radius: var(--radius); padding: 30px; color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--needle); }
.field input, .field select, .field textarea { font-family: var(--f-body); font-size: 15px; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--paper-2); color: var(--ink); transition: border-color .15s, background .15s; }
.field input::placeholder, .field textarea::placeholder { color: #93a4a0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.field textarea { resize: vertical; min-height: 84px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); background: rgba(194,59,40,.06); }
.field__err { color: var(--danger); font-size: 12px; min-height: 14px; font-family: var(--f-mono); }

.consent { grid-column: 1 / -1; display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--teal); flex: none; }
.consent a { color: var(--teal-deep); text-decoration: underline; }

.form-success { display: none; text-align: center; padding: 36px 12px; }
.form-success.is-visible { display: block; }
.form-success__icon { width: 68px; height: 68px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success__icon svg { width: 34px; height: 34px; }
.form-success h3 { font-family: var(--f-display); margin: 0 0 8px; font-size: 22px; font-weight: 600; }
.form-success p { color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #93a5a1; padding: 66px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 360px; line-height: 1.7; }
.footer-col h5 { font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--brass); font-size: 12px; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: #93a5a1; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; font-size: 12.5px; color: #6f827e; display: grid; gap: 14px; }
.footer-legal .disclaimer { background: rgba(255,255,255,.04); border-left: 3px solid var(--brass); padding: 14px 18px; border-radius: 6px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--f-mono); }
.placeholder-note { color: var(--brass); }

/* ---------- Scroll to top ---------- */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: #fff; border: 2px solid var(--brass); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .22s; z-index: 40; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Focus visibility (a11y floor) ---------- */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .notecard { max-width: 460px; }
  .offers-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 720px) {
  /* --- компактная шапка с телефоном --- */
  .header-bar { height: 56px; }
  .brand { font-size: 17px; gap: 9px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__mark svg { width: 18px; height: 18px; }
  .nav, .header-actions .btn, .header-phone { display: none; }
  .header-call { display: inline-flex; }
  .nav-toggle { display: block; padding: 6px; }
  .nav.is-open { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; position: absolute; top: 56px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px 22px; box-shadow: var(--shadow); }
  .nav.is-open a { padding: 11px 0; width: 100%; font-size: 16px; }

  /* --- меньше воздуха, витрина выше --- */
  .section { padding: 32px 0; }
  .section__head { margin-bottom: 22px; }
  .section__title { font-size: 24px; }
  .section__subtitle { font-size: 15px; }

  .hero { padding: 12px 0 16px; }
  .hero-grid { gap: 18px; }
  .hero-license { font-size: 12px; padding: 6px 12px; margin-bottom: 14px; }
  .hero h1 { font-size: 25px; margin: 0 0 10px; }
  .hero__lead { font-size: 14.5px; margin-bottom: 14px; }
  .hero-chips { display: none; }                 /* на мобиле убираем — дублируют подзаголовок */
  .hero-cta { flex-wrap: nowrap; gap: 10px; }
  .hero-cta .btn { flex: 1 1 0; padding: 12px 8px; font-size: 14px; }
  .chip { padding: 6px 11px; font-size: 12px; }
  .hero-cta { gap: 10px; }
  .btn--lg { padding: 13px 22px; font-size: 15px; }

  .notecard { transform: none; padding: 20px 18px 18px; max-width: 100%; }
  .notecard__flash { margin-bottom: 10px; }
  .notecard__tip { font-size: 14px; margin-bottom: 14px; }

  .trust-strip .trust-item { padding: 15px 12px; }
  .trust-item b { font-size: 23px; }
  .trust-item span { font-size: 12px; }

  #offers { padding-top: 16px; }
  #offers .section__head { margin-bottom: 20px; }
  .offer { padding: 20px; }
  .offers-disclaimer { margin-top: 22px; }

  .offers-grid, .reviews-grid, .tips-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3)::before, .trust-item:nth-child(-n+2)::before { display: none; }
  .faq-q { font-size: 16px; padding: 18px 4px; }
  .lead { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .site-footer { padding: 40px 0 26px; }
  .field--half-mobile { grid-column: 1 / -1; }
}
