/* ООО "ГУДВЕЙ БИЗНЕС" — «Минимал-корпоратив» (airy minimal B2B) */

:root {
  --paper: #ffffff;
  --bg: #f7f9fc;
  --ink: #0f2033;
  --ink-2: #1a2b45;
  --muted: #5c6f88;
  --line: #e2e8f1;
  --line-strong: #cbd6e4;
  --accent: #2f6fb0;      /* quiet steel blue */
  --accent-ink: #234f7e;
  --maxw: 1080px;
  --pad: clamp(20px, 5vw, 64px);
  --font: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.is-hidden { display: none; }

/* small uppercase labels */
.eyebrow, .label, .mark-sub, .fleet-class {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
.mark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.mark-name { font-weight: 700; letter-spacing: -0.01em; font-size: 1.02rem; }
.mark-sub {
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 1px 6px;
  color: var(--accent-ink);
}

.nav { display: flex; align-items: center; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 7px 12px;
  font: inherit;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.18s ease;
}
.nav-menu a:hover { color: var(--ink); }
.nav-cta {
  color: var(--accent-ink) !important;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  border: 1px solid transparent;
  font-family: inherit;
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-ink); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-line:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn-wide { width: 100%; text-align: center; margin-top: 6px; }

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.text-link:hover { border-color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(60px, 11vw, 130px) 0 clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 100% 0%, #f2f6fb 0%, transparent 60%),
    var(--paper);
}
.hero .eyebrow { margin: 0 0 22px; }
.hero-title {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  color: var(--ink);
  max-width: 16ch;
}
.hero-lede {
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  margin: clamp(48px, 7vw, 78px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.hero-stats .stat {
  padding: 26px 28px 26px 0;
  border-right: 1px solid var(--line);
}
.hero-stats .stat:last-child { border-right: none; }
.hero-stats dt {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
}
.hero-stats dd { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- generic section ---------- */
.section {
  padding: clamp(56px, 8vw, 104px) 0;
  border-bottom: 1px solid var(--line);
}
.grid-2 {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.col-label { position: sticky; top: 96px; }
.col-label .num {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.col-label .label { margin: 0; }

.sec-title {
  font-size: clamp(1.3rem, 2.4vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--ink);
  max-width: 34ch;
}
.sec-lede {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 8px;
  max-width: 58ch;
}

/* feature lists */
.feature-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.feature-list.four { grid-template-columns: 1fr 1fr; }
.feature-list li {
  padding: 24px 26px 24px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.feature-list li:nth-child(2n) { border-right: none; padding-right: 0; }
.feature-list h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.feature-list p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* feature band */
.feature-band { background: var(--bg); }
.feature-band-body .sister {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.98rem;
}
.feature-band-body .sister .text-link { margin-top: 0; }

/* ---------- fleet ---------- */
.fleet-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 54px);
}
.fleet-lede { max-width: 60ch; }
.fleet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.fleet-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease;
}
.fleet-item:hover { background: var(--bg); }
.fleet-photo {
  width: 92px;
  height: 62px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}
.fleet-photo img { width: 100%; height: 100%; object-fit: cover; }
.fleet-meta h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.fleet-price {
  font-weight: 600;
  color: var(--accent-ink);
  font-size: 0.98rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ---------- process ---------- */
.process-list {
  list-style: none;
  counter-reset: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.process-list .step-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}
.process-list h3 { margin: 6px 0 4px; font-size: 1.05rem; font-weight: 600; }
.process-list p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- form ---------- */
.form { margin-top: 30px; max-width: 620px; }
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 11px 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47,111,176,0.14);
}
#formMessage {
  margin: 16px 0 0;
  font-size: 0.94rem;
  min-height: 1.2em;
}
#formMessage.is-error { color: #b4342b; }
#formMessage.is-success { color: var(--accent-ink); }
#mailLink {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- requisites ---------- */
.requisites-section { background: var(--bg); }
.requisites summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 6px 0;
  list-style: none;
}
.requisites summary::-webkit-details-marker { display: none; }
.requisites summary::before {
  content: "+ ";
  color: var(--accent);
  font-weight: 700;
}
.requisites[open] summary::before { content: "– "; }
.req-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.req-grid span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.req-grid p { margin: 0; font-size: 0.96rem; color: var(--ink); }

/* ---------- footer ---------- */
.site-foot { padding: 54px 0; background: var(--ink); color: #cdd8e6; }
.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.foot-name { font-weight: 700; color: #fff; margin: 0 0 6px; }
.foot-meta { margin: 0; color: #9fb0c6; font-size: 0.92rem; max-width: 40ch; }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a {
  color: #cdd8e6;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.18s ease;
}
.foot-links a:hover { color: #fff; }

/* ---------- reveal animation ---------- */
.section, .hero-stats .stat {
  opacity: 1;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid-2, .fleet-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .col-label { position: static; }
  .col-label .num { display: inline-block; margin-right: 12px; margin-bottom: 0; }
  .col-label .label { display: inline-block; }

  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-top: 1px solid var(--line); }
  .nav-menu a { display: block; padding: 14px var(--pad); }
  .nav-cta { border-bottom: none !important; }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }
  .hero-stats .stat:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .feature-list, .feature-list.four { grid-template-columns: 1fr; }
  .feature-list li,
  .feature-list li:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .req-grid { grid-template-columns: 1fr; gap: 16px; }
  .fleet-item {
    grid-template-columns: 72px 1fr;
    grid-template-areas: "photo meta" "photo price";
    gap: 6px 16px;
  }
  .fleet-photo { grid-area: photo; width: 72px; height: 54px; align-self: center; }
  .fleet-meta { grid-area: meta; }
  .fleet-price { grid-area: price; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }


/* === Этап 1: фундамент (авто-добавлено) === */
img { height: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 999;
  padding: 10px 18px; background: #111; color: #fff; border-radius: 6px;
  font-size: .9rem; text-decoration: none;
}
.skip-link:focus { left: 12px; }
:focus-visible { outline: 3px solid currentColor; outline-offset: 2px; }


/* === Этап 2: функциональность === */

/* Фильтр парка — тихие текстовые чипы */
.fleet-filter { display: flex; flex-wrap: wrap; gap: 24px; margin: 0 0 18px; }
.chip {
  background: none; border: none; cursor: pointer; font: inherit;
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  padding: 2px 0 4px; border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.chip:hover { color: var(--ink); }
.chip.is-active { color: var(--accent-ink); font-weight: 600; border-bottom-color: var(--accent); }
.fleet-item.is-filtered { display: none; }

/* Лайтбокс — тихая белая карточка */
.fleet-photo[role="button"] { cursor: pointer; }
.lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lb[hidden] { display: none; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(15, 32, 51, 0.55); }
.lb__panel {
  position: relative; background: var(--paper); width: 100%; max-width: 560px;
  border: 1px solid var(--line-strong); border-radius: 8px;
  box-shadow: 0 24px 60px -20px rgba(15, 32, 51, 0.35);
  max-height: calc(100vh - 40px); overflow: auto;
}
.lb__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; border-radius: 8px 8px 0 0; }
.lb__body { padding: 22px 26px 26px; }
.lb__cls {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
}
.lb__title { margin: 6px 0 4px; font-size: 1.35rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.lb__price { margin: 0 0 18px; font-weight: 600; color: var(--accent-ink); font-variant-numeric: tabular-nums; }
.lb__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border: 1px solid var(--line-strong); border-radius: 5px;
  background: rgba(255,255,255,0.92); color: var(--ink); font-size: 0.95rem; line-height: 1; cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.lb__close:hover { border-color: var(--accent); color: var(--accent-ink); }
.lb__cta { border: 1px solid transparent; }

/* Калькулятор — тихая строка-формула */
.calc-line { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; }
.calc-line select {
  font: inherit; font-size: 0.96rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: 5px;
  padding: 10px 12px; max-width: 100%;
}
.calc-line select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,111,176,0.14); }
.calc-x { color: var(--muted); font-size: 0.95rem; }
.calc-stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--line-strong); border-radius: 5px; overflow: hidden; }
.calc-stepper input {
  width: 58px; text-align: center; border: none; font: inherit; font-size: 0.96rem;
  color: var(--ink); background: var(--paper); font-variant-numeric: tabular-nums;
  -moz-appearance: textfield; appearance: textfield;
}
.calc-stepper input::-webkit-outer-spin-button, .calc-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-stepper input:focus { outline: none; background: #f2f6fb; }
.calc-step {
  background: var(--bg); border: none; cursor: pointer; width: 38px;
  font-size: 1.05rem; color: var(--accent-ink); padding: 9px 0;
  transition: background 0.18s ease;
}
.calc-step:hover { background: var(--line); }
.calc-sum { font-size: 1.28rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc-note { margin: 14px 0 22px; color: var(--muted); font-size: 0.85rem; }

/* FAQ */
.faq-list { margin-top: 26px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 34px 18px 0; position: relative;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-weight: 700; font-size: 1.1rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 0 20px; color: var(--muted); font-size: 0.96rem; max-width: 60ch; }

/* Липкая мобильная кнопка заявки */
.mcta { display: none; }
@media (max-width: 900px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  .mcta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    transition: transform 0.25s ease;
  }
  .mcta.mcta--off { transform: translateY(110%); }
  .mcta-btn {
    display: block; text-align: center; text-decoration: none;
    background: var(--accent); color: #fff; font-weight: 600; font-size: 0.95rem;
    padding: 13px; border-radius: 5px;
  }
  .mcta-btn:hover { background: var(--accent-ink); }
}

@media (max-width: 600px) {
  .calc-line { gap: 10px; }
  .calc-line select { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .mcta { transition: none; }
}

/* Печать реквизитов */
.req-print { margin-top: 26px; }
@media print {
  body.print-requisites > *:not(main) { display: none !important; }
  body.print-requisites main > *:not(.requisites-section) { display: none !important; }
  body.print-requisites { background: #fff !important; color: #000 !important; padding: 0 !important; }
  body.print-requisites .requisites-section { background: #fff; padding: 0; border: none; }
  body.print-requisites .requisites summary { color: #000; }
  body.print-requisites .requisites summary::before { content: ""; }
  body.print-requisites .req-grid span, body.print-requisites .req-grid p { color: #000; }
  body.print-requisites .req-print { display: none; }
}

/* === Этап 2: лайтбокс/CTA — база (доделка) === */
.gbzlb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.gbzlb[hidden] { display: none; }
.gbzlb__back { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.gbzlb__panel { position: relative; max-width: 720px; width: 100%; max-height: 90vh; overflow: auto; }
.gbzlb__img { width: 100%; display: block; }
.gbzlb__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.gbzlb__title { margin: 0; flex: 1 1 auto; }
.gbzlb__close { position: absolute; top: 10px; right: 10px; z-index: 2; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.gbzlb__cta { cursor: pointer; }
body.gbzlb-open { overflow: hidden; }
.gbzcta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); transition: transform .3s ease; }
.gbzcta--off { transform: translateY(110%); }
.gbzcta__btn { display: block; text-align: center; text-decoration: none; padding: 15px; font-weight: 700; }
@media (max-width: 900px) {
  .gbzcta { display: block; }
  body.gbzcta-on { padding-bottom: 76px; }
}
@media (prefers-reduced-motion: reduce) { .gbzcta { transition: none; } }

/* скин Гудвей Бизнес: минимал-навы (только CTA) */
.gbzcta { background: rgba(255,255,255,.97); border-top: 1px solid #d8e0ea; }
.gbzcta__btn { background: #2f6fb0; color: #fff; border-radius: 8px; }


/* === Этап 3: тонировка фото и микро-детали === */
#fleet img, .gbzlb__img, .car-modal__img, .lightbox__img {
  filter: saturate(.96);
}
::selection { background: #2f6fb0; color: #fff; }
html { scrollbar-color: #2f6fb0 #e8eef5; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #e8eef5; }
::-webkit-scrollbar-thumb { background: #2f6fb0; border-radius: 6px; border: 2px solid #e8eef5; }

/* === Этап 3: wow === */

.gbz-read { position: fixed; top:0; left:0; height:2px; width:0; background:#2f6fb0; z-index:300; pointer-events:none; }
@media (prefers-reduced-motion: reduce) { .gbz-read { display:none; } }


/* === Этап 4: отзывы === */
.gbzrev { padding: clamp(48px,6vw,76px) clamp(18px,4vw,48px); }
.gbzrev__wrap { max-width: 1200px; margin: 0 auto; }
.gbzrev__title { margin: 0 0 30px; }
.gbzrev__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gbzrev__item { margin: 0; padding: 24px 24px 20px; border-left: 3px solid #2f6fb0; position: relative; }
.gbzrev__item::before { content: "\201C"; position: absolute; top: 6px; right: 16px; font-size: 3rem; line-height: 1; color: #2f6fb0; opacity: .35; font-family: Georgia, serif; }
.gbzrev__item blockquote { margin: 0 0 14px; font-size: 1.02rem; line-height: 1.55; }
.gbzrev__item figcaption { font-size: .82rem; opacity: .75; }
.gbzrev__note { margin-top: 16px; font-size: .74rem; opacity: .5; }
@media (max-width: 900px) { .gbzrev__grid { grid-template-columns: 1fr; } }
.gbzrev__item { background: rgba(0,0,0,.025); }

/* === Этап 4: тап-таргеты === */
@media (max-width: 900px) {
  nav a, footer a { padding-top: 8px; padding-bottom: 8px; }
}

/* === Этап 4: анти-переполнение v2 === */
@media (max-width: 900px) {
  html, body { overflow-x: clip; }
}

/* === Этап 4: форма на мобиле (анти-min-content) === */
@media (max-width: 900px) {
  #lead * { min-width: 0; }
  #lead input, #lead select, #lead textarea { width: 100%; }
  #lead .gbzconsent input[type="checkbox"] { width: 16px; flex: 0 0 auto; }
}

/* === Этап 4: рекламный шоукейс === */
.gbzads { margin: 34px 0 0; }
.gbzads img { width: 100%; height: auto; display: block; border-radius: 6px;
  border: 1px solid #2f6fb0; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.gbzads figcaption { margin-top: 10px; font-size: .82rem; opacity: .75;
  padding-left: 12px; border-left: 3px solid #2f6fb0; }

/* === Этап 5: согласие ПДн === */
.gbzconsent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem;
  line-height: 1.5; opacity: .9; grid-column: 1 / -1; margin: 4px 0 2px; }
.gbzconsent input { margin-top: 3px; width: 16px; height: 16px; flex: 0 0 auto;
  accent-color: #2f6fb0; }
.gbzconsent a { text-decoration: underline; }

/* === Этап 6: аудит (доверие, форма, форматы) === */
.gbztrust { display:flex; flex-wrap:wrap; gap:8px 22px; justify-content:center; align-items:center;
  padding:14px 20px; font-size:.82rem; letter-spacing:.02em; opacity:.92;
  border-top:1px solid #2f6fb055; border-bottom:1px solid #2f6fb055; }
.gbztrust span { white-space:nowrap; }
.gbztrust span::before { content:"✓ "; color:#2f6fb0; font-weight:700; }
.gbzformats { list-style:none; margin:26px 0 0; padding:0; display:grid;
  grid-template-columns:repeat(6,1fr); gap:10px; }
.gbzformats li { display:flex; flex-direction:column; align-items:center; gap:8px;
  padding:14px 6px; font-size:.78rem; text-align:center; border:1px solid #2f6fb044;
  border-radius:8px; color:inherit; }
.gbzformats svg { color:#2f6fb0; }
.gbzmore { grid-column:1/-1; margin:2px 0; }
.gbzmore summary { cursor:pointer; font-size:.85rem; opacity:.8; padding:8px 0; }
.gbzmore summary:hover { opacity:1; }
.gbzmore__grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; padding-top:12px; }
.gbznote { grid-column:1/-1; font-size:.8rem; opacity:.65; margin:8px 0 0; line-height:1.5; }
@media (max-width:900px){ .gbzformats { grid-template-columns:repeat(3,1fr); } }
@media (max-width:600px){ .gbzmore__grid { grid-template-columns:1fr; } .gbzformats { grid-template-columns:repeat(2,1fr); } }

.gbzdocs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 18px 0 6px; }
.gbzdocs li { border: 1px solid #d8e0ea; border-radius: 8px; padding: 8px 14px; font-size: .82rem;
  background: #fff; color: #0f2033; box-shadow: 0 3px 0 #e8eef5; }
.gbzdocs li { padding-left: 34px; position: relative; }
.gbzdocs li::before { content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 13px; height: 16px; border: 1.5px solid #2f6fb0; border-radius: 2px; background: linear-gradient(#2f6fb0 0 0) no-repeat 2px 4px / 7px 1.5px, linear-gradient(#2f6fb0 0 0) no-repeat 2px 7px / 7px 1.5px, linear-gradient(#2f6fb0 0 0) no-repeat 2px 10px / 5px 1.5px; }

/* === P1: схема === */
.gbzscheme { display: flex; gap: 24px; flex-wrap: wrap; margin: 12px 0 4px; font-size: .85rem; color: #41546b; }
.gbzscheme strong { color: #0f2033; }

/* === P1: юрссылки в футере === */
footer a[href^="privacy"], footer a[href^="terms"], footer a[href^="mailto"] {
  opacity: .62; font-size: .86em; }
footer a[href^="privacy"]:hover, footer a[href^="terms"]:hover, footer a[href^="mailto"]:hover { opacity: 1; }

/* === Волна 1: интеграция === */

.gbztrust { border-top: 1px solid #d8e0ea; border-bottom: 1px solid #d8e0ea; font-size: .8rem; color: #41546b; }
.gbztrust span::before { content: ""; } .gbztrust span + span::before { content: "|  "; color: #c4d0de; }
.gbzformats li { border-color: #d8e0ea; border-radius: 6px; }
.gbzformats svg { color: #2f6fb0; }

/* === Волна 3: композиционный ритм === */
/* акт «Парк + Калькулятор»: секции сшиваются */
#fleet:has(+ #calc) { padding-bottom: clamp(14px, 2.2vw, 28px); }
#fleet + #calc { padding-top: clamp(14px, 2.2vw, 28px); }
/* акт «Отзывы + FAQ» */
#reviews:has(+ #faq) { padding-bottom: clamp(16px, 2.4vw, 30px); }
#reviews + #faq { padding-top: clamp(16px, 2.4vw, 30px); }
/* вдох перед актом отзывов */
* + #reviews { margin-top: clamp(8px, 1.6vw, 22px); }
/* сценарии/сравнение прижаты к trust-полосе */
.gbztrust + .gbzscen, .gbztrust + .gbzcompare { padding-top: clamp(18px, 2.6vw, 30px); }

/* === Волна 5: футер-подвал === */
.gbzfoot { margin-top: clamp(30px,4vw,54px); padding: clamp(28px,4vw,46px) clamp(20px,4vw,48px) 26px; border-top: 1px solid #2f6fb055; }
.gbzfoot__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; }
.gbzfoot__brand strong { font-size: 1.15rem; }
.gbzfoot__brand p { margin: 8px 0 0; font-size: .85rem; opacity: .7; max-width: 32ch; }
.gbzfoot__col { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; }
.gbzfoot__col span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; opacity: .55; }
.gbzfoot__col a { opacity: .85; } .gbzfoot__col a:hover { opacity: 1; color: #2f6fb0; }
.gbzfoot__legal { max-width: 1200px; margin: 26px auto 0; font-size: .74rem; opacity: .5; }
@media (max-width: 900px) { .gbzfoot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gbzfoot__grid { grid-template-columns: 1fr; } }


/* === Волна 6: доку-графика в hero === */
#top { position: relative; overflow: hidden; }
#top::after { content: ""; position: absolute; right: 4%; top: 12%; width: 220px; height: 300px;
  pointer-events: none; opacity: .5; z-index: 0;
  border: 1.5px solid #d8e0ea; border-radius: 6px; background:
    linear-gradient(#e8eef5 0 0) no-repeat 24px 46px / 130px 2px,
    linear-gradient(#e8eef5 0 0) no-repeat 24px 66px / 160px 2px,
    linear-gradient(#e8eef5 0 0) no-repeat 24px 86px / 110px 2px,
    linear-gradient(#e8eef5 0 0) no-repeat 24px 106px / 150px 2px,
    linear-gradient(#2f6fb0 0 0) no-repeat 24px 24px / 60px 4px, #fff;
  box-shadow: 14px 14px 0 -2px #f2f6fa, 14px 14px 0 0 #e2e9f1, 0 20px 44px rgba(15,32,51,.08);
  transform: rotate(3deg);
}
#top > * { position: relative; z-index: 1; }
@media (max-width: 1100px) { #top::after { display: none; } }

/* === Итерация 1: подстраницы === */

/* карточки-двери на главной */
.gbzdoors-head { margin-bottom: clamp(28px, 4vw, 46px); }
.gbzdoors { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 28px); }
.gbzdoor { display: flex; flex-direction: column; gap: 14px; padding: clamp(26px, 3.6vw, 46px);
  border: 1px solid var(--line-strong); border-radius: 10px; background: var(--paper);
  text-decoration: none; color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.gbzdoor:hover { border-color: var(--accent); box-shadow: 0 14px 34px rgba(15,32,51,.08);
  transform: translateY(-2px); }
.gbzdoor-eyebrow { color: var(--accent-ink); }
.gbzdoor-title { font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.2; }
.gbzdoor-text { color: var(--muted); font-size: .95rem; max-width: 52ch; }
.gbzdoor-cta { margin-top: auto; padding-top: 12px; font-weight: 600; font-size: .95rem;
  color: var(--accent-ink); }
.gbzdoor-arrow { display: inline-block; transition: transform .18s ease; }
.gbzdoor:hover .gbzdoor-arrow { transform: translateX(4px); }
@media (max-width: 760px) { .gbzdoors { grid-template-columns: 1fr; } }

/* компактный hero подстраниц */
.hero--sub { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6.5vw, 78px); }
.hero--sub .hero-title { font-size: clamp(1.9rem, 4.4vw, 3rem); max-width: 20ch; }
.hero--sub .gbzdocs { margin-bottom: 26px; }

/* текущий пункт навигации */
.nav-menu a[aria-current="page"] { color: var(--ink); }

/* юрссылки в футере подстраниц (пути через ../) */
footer a[href^="../privacy"], footer a[href^="../terms"] { opacity: .62; font-size: .86em; }
footer a[href^="../privacy"]:hover, footer a[href^="../terms"]:hover { opacity: 1; }

/* === Итерация 2: модули === */
/* цифры сотрудничества (вместо цитат) */
.gbzfacts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0; }
.gbzfacts__item { border-top: 2px solid var(--ink); padding-top: 16px; }
.gbzfacts__item dt { font-size: clamp(1.35rem, 2.6vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.gbzfacts__item dd { margin: 6px 0 0; font-size: .88rem; color: var(--muted); }
@media (max-width: 900px) { .gbzfacts__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gbzfacts__grid { grid-template-columns: 1fr; } }

/* футер-визитка */
.gbzfoot--card { margin-top: clamp(30px,4vw,54px); padding: clamp(24px,3.4vw,38px) var(--pad) 20px; border-top: 1px solid var(--line-strong); }
.gbzfoot--card .gbzfoot__line { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 10px 28px; }
.gbzfoot__id { margin: 0; font-size: .92rem; color: var(--muted); }
.gbzfoot__id strong { color: var(--ink); font-weight: 600; }
.gbzfoot__links { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.gbzfoot__links a[href] { color: var(--muted); font-size: .85rem; opacity: 1; text-decoration: none; }
.gbzfoot__links a[href]:hover { color: var(--accent-ink); }
.gbzfoot--card .gbzfoot__legal { max-width: var(--maxw); margin: 16px auto 0; font-size: .74rem; color: var(--muted); opacity: .8; }

/* === Итерация 3: легенда === */
/* «Документооборот» — строгий минимал-список */
.docflow-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.docflow-list li { display: grid; grid-template-columns: 220px 1fr; gap: 8px 24px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); }
.docflow-list b { font-weight: 600; color: var(--ink); font-size: .98rem; }
.docflow-list span { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .docflow-list li { grid-template-columns: 1fr; padding: 14px 0; } }
