/* СТРИЛАЙН — GOV-MODERN на бренде клиента (спецайти.рф).
   Ощущение современного гос/тендерного портала: светло, чисто, «успешно» —
   каталог скруглённых карточек, мягкие тени, воздух, паспорт организации
   с источниками. «Мощь» из первого макета сохранена точечно: мотив растущих
   столбиков из ИХ логотипа + фирменный градиент (жёлтый→оранж→маджента) на
   hero-баре, крупных цифрах и результате калькулятора.
   Бренд СТРИЛАЙН: cyan-доверие #0e7cb0 (вордмарк) + growth-градиент (логотип). */

:root {
  --bg: #eef2f6;
  --bg-soft: #f6f9fc;
  --surface: #ffffff;
  --ink: #11202e;
  --ink-soft: #51607a;
  --ink-faint: #8794a8;

  --brand: #0e7cb0;
  --brand-deep: #0a6291;
  --brand-soft: #e4f2f9;

  --amber: #ff7a00;
  --amber-deep: #e56a00;
  --amber-soft: #fff2e2;
  --magenta: #e5007d;

  --grad: linear-gradient(90deg, #e7d000 0%, #ff7a00 50%, #e5007d 100%);

  --line: #e2e8f0;
  --line-soft: #eef2f7;

  --font-main: "Golos Text", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;

  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(17, 32, 46, 0.04), 0 4px 14px rgba(17, 32, 46, 0.05);
  --sh-2: 0 12px 34px rgba(17, 32, 46, 0.1);

  --maxw: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

/* ===== Типографика ===== */

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 {
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.04;
}

h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.1;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.28;
}

p {
  max-width: 66ch;
}

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  font-weight: 400;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sec {
  padding-top: clamp(64px, 8vw, 112px);
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.sec-head .lead {
  margin-top: 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow.is-amber {
  color: var(--amber-deep);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.src {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ===== Топбар ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-in {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand:hover {
  text-decoration: none;
}
.brand svg {
  width: 42px;
  height: auto;
}

.nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav a:hover {
  color: var(--brand);
  background: var(--brand-soft);
  text-decoration: none;
}

.topbar-phone {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ===== Кнопки ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-main);
  font-size: 15.5px;
  font-weight: 600;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition:
    background 0.16s,
    color 0.16s,
    border-color 0.16s,
    transform 0.16s,
    box-shadow 0.16s;
}
.btn-solid {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14, 124, 176, 0.25);
}
.btn-solid:hover {
  background: var(--brand-deep);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.28);
}
.btn-accent:hover {
  background: var(--amber-deep);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-line {
  background: var(--surface);
  color: var(--brand);
  border-color: var(--line);
}
.btn-line:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  text-decoration: none;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ===== Hero ===== */

.hero {
  padding-top: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.hero-bars {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 62%;
  padding-right: 4vw;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.hero-bars span {
  width: 26px;
  border-radius: 6px 6px 0 0;
  background: var(--grad);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero h1 {
  margin: 20px 0 22px;
}
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero .lead {
  margin-bottom: 32px;
  max-width: 44ch;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-deep);
  background: var(--amber-soft);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sketch-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  font-size: 13px;
  color: var(--ink-soft);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.sketch-note .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
}

/* Паспорт организации */
.passport {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.passport-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
}
.passport-head svg {
  width: 40px;
  flex: none;
}
.passport table {
  width: 100%;
  border-collapse: collapse;
}
.passport td {
  padding: 15px 24px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  vertical-align: top;
}
.passport tr:last-child td {
  border-bottom: none;
}
.passport td:first-child {
  font-size: 13.5px;
  color: var(--ink-faint);
  width: 42%;
}
.passport td b {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.passport .psrc {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 3px;
}
.passport .up {
  color: var(--amber-deep);
  font-weight: 700;
}

/* ===== Плитки-категории ===== */
.cats {
  padding-top: clamp(44px, 5vw, 72px);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 18px 22px;
  box-shadow: var(--sh-1);
  transition:
    transform 0.16s,
    box-shadow 0.16s,
    border-color 0.16s;
}
.cat:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.cat-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  flex: none;
}
.cat:nth-child(2n) .cat-ic {
  background: var(--amber-soft);
  color: var(--amber-deep);
}
.cat-ic svg {
  width: 26px;
  height: 26px;
}
.cat b {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.cat span {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ===== Карточный каталог ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 30px;
  box-shadow: var(--sh-1);
  transition:
    transform 0.16s,
    box-shadow 0.16s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.card-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 18px;
}
.card:nth-child(2n) .card-ic {
  background: var(--amber-soft);
  color: var(--amber-deep);
}
.card-ic svg {
  width: 27px;
  height: 27px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.card .meta {
  margin-top: 16px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* ===== Процесс (5 шагов) ===== */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px 24px;
  box-shadow: var(--sh-1);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--brand);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step:last-child::before {
  background: var(--amber);
}
.step h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===== Калькулятор экономии (WOW-1) ===== */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.calc-form,
.calc-out {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  padding: clamp(26px, 3vw, 40px);
}
.calc-form {
  background: var(--surface);
  border: 1px solid var(--line);
}
.calc-field {
  margin-bottom: 26px;
}
.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.calc-field label b {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(14, 124, 176, 0.4);
  cursor: pointer;
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  cursor: pointer;
}
.calc-note {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-faint);
  margin-top: 4px;
}
.calc-out {
  background: linear-gradient(160deg, #15263a, #11202e);
  border: 1px solid #11202e;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.calc-out-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.calc-big {
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 10px 0 6px;
  white-space: nowrap;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.calc-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
}
.calc-rows {
  margin-top: auto;
  padding-top: 24px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14.5px;
}
.calc-row span {
  color: rgba(255, 255, 255, 0.7);
}
.calc-row b {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.calc-row.is-total b {
  color: #fff;
}
.calc-row.is-band b {
  color: var(--amber);
}

/* ===== Кейсы доверия ===== */
.cases {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.case {
  display: flex;
  flex-direction: column;
}
.case .tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.case h3 {
  margin-bottom: 8px;
}
.case p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.case-hero {
  background: linear-gradient(160deg, #15263a, #11202e);
  border-color: #11202e;
  color: #fff;
}
.case-hero .tag {
  color: var(--amber);
  background: rgba(255, 122, 0, 0.16);
}
.case-hero h3 {
  color: #fff;
}
.case-hero p {
  color: rgba(255, 255, 255, 0.74);
}
.case-hero .big-num {
  font-size: clamp(52px, 7vw, 78px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Автопарк (WOW-2) ===== */
.fleet-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.chip {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.unit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--sh-1);
  transition:
    transform 0.16s,
    box-shadow 0.16s;
}
.unit.is-hidden {
  display: none;
}
.unit:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.unit-media {
  height: 150px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}
.unit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unit-media--light {
  background: #fff;
  border: 1px solid var(--line-soft);
}
.unit-media--light img {
  object-fit: contain;
  padding: 8px;
}
.unit-icon {
  width: 84px;
  height: 84px;
}
.unit-cat {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand);
}
.unit h3 {
  font-size: 17px;
  margin: 6px 0 6px;
}
.unit p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===== Roadmap «эскиз → боевая версия» ===== */
.roadmap-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.roadmap-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  box-shadow: var(--sh-1);
}
.roadmap-item .rnum {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-deep);
  margin-bottom: 14px;
}
.roadmap-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.roadmap-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== Аннотации спецайти.рф ===== */
.anno {
  position: relative;
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  background: var(--surface);
  box-shadow: var(--sh-1);
  border-radius: var(--r-md);
  padding: 18px 22px 18px 58px;
  margin: 24px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 820px;
}
.anno::before {
  content: "i";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-deep);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anno b {
  color: var(--amber-deep);
  font-weight: 700;
}
body.anno-off .anno {
  display: none;
}
.anno-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 18px;
  cursor: pointer;
  border: none;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
}
.anno-toggle .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
}
body.anno-off .anno-toggle .dot {
  background: #6b7686;
}

/* ===== CTA-панель студии ===== */
.studio {
  margin-top: clamp(64px, 8vw, 112px);
}
.studio-in {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  position: relative;
  overflow: hidden;
}
.studio-bars {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70%;
  padding: 0 32px 0 0;
  opacity: 0.16;
  pointer-events: none;
}
.studio-bars span {
  width: 20px;
  border-radius: 5px 5px 0 0;
  background: var(--grad);
}
.studio h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}
.studio p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}
.studio .eyebrow {
  color: #ffb066;
  position: relative;
  z-index: 1;
}
.studio-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  padding: 30px;
  position: relative;
  z-index: 1;
}
.studio-card .src {
  color: rgba(255, 255, 255, 0.55);
}
.studio-card p {
  margin-top: 0;
  color: #fff;
  font-size: 16px;
}
.studio-card a {
  color: #fff;
  font-weight: 600;
}

/* ===== Футер ===== */
.footer {
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line);
}
.footer-in {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0 22px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.footer-col p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand svg {
  width: 34px;
}
.footer-brand span {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.footer-legal {
  border-top: 1px solid var(--line);
  padding: 18px 0 32px;
  font-size: 12.5px;
  color: var(--ink-faint);
  max-width: none;
}

/* ===== Адаптив ===== */
@media (max-width: 1020px) {
  .nav {
    display: none;
  }
  .hero-grid,
  .studio-in {
    grid-template-columns: 1fr;
  }
  .hero-bars {
    display: none;
  }
  .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards,
  .cards.cards-4,
  .roadmap-items,
  .calc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
  }
  .cases {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding: 0 18px;
  }
  .topbar-phone {
    display: none;
  }
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards,
  .cards.cards-4,
  .process,
  .roadmap-items,
  .calc-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .footer-in {
    flex-direction: column;
  }
}

/* ===== Печать ===== */
@media print {
  .anno-toggle {
    display: none;
  }
  .hero-bars,
  .studio-bars {
    display: none;
  }
}
