/* ============================================
   МАГИСТРАЛЬ — Светлый европейский стиль
   v2 (2026-05-15) — navy blue + white, minimal
   ============================================ */

:root {
  --bg: #FFFFFF;
  --bg-2: #F7F7F4;
  --bg-3: #FFFFFF;
  --bg-card-alt: #FFFFFF;
  --bg-tag: #F4F4F1;
  --border: #E5E5DF;
  --border-strong: #D4D4CB;
  --text: #0B1220;
  --text-2: #334155;
  --text-3: #64748B;
  --accent: #0A3D62;
  --accent-2: #155A8A;
  --accent-soft: #1E5A8A;
  --accent-dim: #E8EEF5;
  --accent-bg: #F2F6FA;
  --warning: #B45309;
  --warning-bg: #FEF7EC;
  --success: #15803D;
  --danger: #B91C1C;
  --radius: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 8px 28px rgba(15, 23, 42, 0.09);
  --max-w: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(2.25rem, 4.5vw, 3.5rem);
  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--accent-2); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 3.8vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.35rem, 2.8vw, 1.95rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }
h4 { font-size: clamp(0.95rem, 1.5vw, 1.1rem); }

p { color: var(--text-2); }

ul { list-style: none; }

/* ============ CONTAINER ============ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-2); }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
}
.logo:hover { color: var(--text); }

.logo__mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-display);
}

.logo__mark-img {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 1.85rem;
  align-items: center;
}

.nav a {
  color: var(--text-2);
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--accent); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone {
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.phone:hover { color: var(--accent); }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
}

/* ============ BUTTON ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 61, 98, 0.20);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--bg-2);
  color: var(--accent);
  border-color: var(--accent);
}

.btn--lg {
  padding: 1rem 1.8rem;
  font-size: 0.98rem;
}

.btn--block { width: 100%; }

/* ============ HERO (фото-фон, светлый overlay, контрастный белый текст) ============ */
.hero {
  position: relative;
  min-height: clamp(440px, 70vh, 660px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0F172A;
  border-bottom: 1px solid var(--border);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.92) contrast(0.97);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(7, 11, 22, 0.78) 0%,
      rgba(7, 11, 22, 0.55) 50%,
      rgba(7, 11, 22, 0.35) 100%
    );
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 65%, rgba(7, 11, 22, 0.40) 100%);
  pointer-events: none;
}

.hero h1 {
  color: #FFFFFF;
  font-weight: 900;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.7),
    0 6px 30px rgba(0,0,0,0.85);
}
.hero h1 span {
  color: #FFE066;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.55),
    0 4px 22px rgba(255, 224, 102, 0.40);
}
.hero__lead {
  color: #FFFFFF;
  font-weight: 500;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.7),
    0 3px 18px rgba(0,0,0,0.8);
  overflow-wrap: anywhere;
  hyphens: auto;
  max-width: 56ch;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vh, 5rem) var(--container-pad);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.hero__content {
  position: relative;
  max-width: 760px;
  isolation: isolate;
}

.hero__content::before {
  content: '';
  position: absolute;
  inset: -2.5rem -4rem -2rem -3rem;
  background: radial-gradient(ellipse at 25% 50%, rgba(7, 11, 22, 0.55) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero__chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #FFC23D;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 194, 61, 0.6);
}

.hero__stats { border-top-color: rgba(255, 255, 255, 0.32); }
.hero .stat__num {
  color: #FFFFFF;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.55), 0 4px 18px rgba(0,0,0,0.65);
}
.hero .stat__num span { color: #FFD43D; }
.hero .stat__label {
  color: #F1F5F9;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 10px rgba(0,0,0,0.55);
}

.hero .btn--ghost { border-color: rgba(255, 255, 255, 0.40); color: #fff; }
.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
  color: #fff;
}

.hero h1 {
  max-width: 19ch;
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 58ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 760px;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat__num span { color: var(--accent); }

.stat__label {
  font-size: 0.85rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

/* ============ SECTION HEADER ============ */
.section__head {
  margin-bottom: 1.75rem;
  max-width: 760px;
}

.section__eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.section__head p {
  margin-top: 1rem;
  font-size: 1.02rem;
  max-width: 60ch;
  color: var(--text-2);
}

/* ============ GRID ============ */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--compact-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.card--compact {
  padding: 1.1rem 1rem 1rem;
}
.card--compact h3 {
  font-size: 1rem;
  margin: 0.6rem 0 0.4rem;
  line-height: 1.25;
}
.card--compact p {
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0 0 0.7rem;
}
.card--compact .card__price {
  font-size: 0.78rem;
  top: 0.7rem;
  right: 0.7rem;
  padding: 0.2rem 0.5rem;
}
.card--compact .card__price span { font-size: 0.72rem; }
.card--compact .card__icon { width: 40px; height: 40px; }
.card--compact .card__icon svg { width: 22px; height: 22px; }
.card--compact .card__link { font-size: 0.82rem; }
@media (max-width: 1180px) {
  .grid--compact-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .grid--compact-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid--compact-6 { grid-template-columns: 1fr; }
}
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.7rem;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.section--alt .card { background: var(--bg-card-alt); }

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ic-from, #0A3D62), var(--ic-to, #155A8A));
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1.3rem;
  color: #fff;
  box-shadow: 0 6px 16px var(--ic-shadow, rgba(10, 61, 98, 0.30));
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Цветные акценты по категориям */
.card__icon--orange { --ic-from: #F97316; --ic-to: #EA580C; --ic-shadow: rgba(249, 115, 22, 0.30); }
.card__icon--blue   { --ic-from: #0A3D62; --ic-to: #155A8A; --ic-shadow: rgba(10, 61, 98, 0.30); }
.card__icon--green  { --ic-from: #15803D; --ic-to: #166534; --ic-shadow: rgba(21, 128, 61, 0.30); }
.card__icon--amber  { --ic-from: #D97706; --ic-to: #B45309; --ic-shadow: rgba(217, 119, 6, 0.30); }
.card__icon--violet { --ic-from: #6D28D9; --ic-to: #5B21B6; --ic-shadow: rgba(109, 40, 217, 0.30); }
.card__icon--rose   { --ic-from: #BE185D; --ic-to: #9D174D; --ic-shadow: rgba(190, 24, 93, 0.30); }
.card__icon--teal   { --ic-from: #0D9488; --ic-to: #0F766E; --ic-shadow: rgba(13, 148, 136, 0.30); }
.card__icon--slate  { --ic-from: #475569; --ic-to: #334155; --ic-shadow: rgba(71, 85, 105, 0.30); }

.card--with-image { padding: 0; overflow: hidden; }
.card--with-image .card__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-2);
}
.card--with-image .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card--with-image:hover .card__img img { transform: scale(1.04); }
.card--with-image .card__body { padding: 1.6rem 1.7rem 1.85rem; }

/* ============ PHOTO STRIP / GALLERY ============ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-strip__item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  overflow: hidden;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip__item:hover img { transform: scale(1.06); }

.photo-strip__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.1rem 0.9rem;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 22, 0.82) 60%, rgba(7, 11, 22, 0.96) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ============ SPLIT (image + text side-by-side) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-2);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split--reverse .split__media { order: 2; }

.card h3 { margin-bottom: 0.7rem; color: var(--text); }
.card p { font-size: 0.95rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.card__link:hover { gap: 0.65rem; }

/* ============ FLEET COUNTERS ============ */
.fleet-counters {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 1180px) { .fleet-counters { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .fleet-counters { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .fleet-counters { grid-template-columns: 1fr; } }

.counter {
  background: var(--bg);
  padding: 0.95rem 0.65rem;
  text-align: center;
  transition: background 0.2s ease;
}
.section--alt .counter { background: var(--bg-card-alt); }
.counter:hover { background: var(--accent-bg); }

.counter__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}

.counter__label {
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
}

.counter__sub {
  font-size: 0.68rem;
  color: var(--text-3);
  margin-top: 0.15rem;
  line-height: 1.25;
}

/* ============ FEATURE ============ */
.feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.feature__num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--accent-bg);
  border: 1px solid #D5E0EC;
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.feature__body h4 { margin-bottom: 0.5rem; color: var(--text); }
.feature__body p { font-size: 0.95rem; }

/* ============ FLEET ROWS ============ */
.fleet-list { display: grid; gap: 0.85rem; }

.fleet-row {
  display: grid;
  grid-template-columns: 160px auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem 1.4rem 1.1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  overflow: hidden;
}

.fleet-row__photo {
  width: 160px;
  height: 110px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}

.fleet-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fleet-row:hover .fleet-row__photo img {
  transform: scale(1.05);
}

.section--alt .fleet-row { background: var(--bg-card-alt); }

.fleet-row:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.fleet-row__count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--accent);
  min-width: 70px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.fleet-row__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
}

.fleet-row__desc {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fleet-row__type {
  color: var(--text-3);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0.3rem 0.7rem;
  background: var(--bg-tag);
  border-radius: 4px;
}

/* ============ FORM ============ */
.form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.section--alt .form { background: var(--bg-card-alt); }

.form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.78rem 0.95rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.15s ease;
  width: 100%;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}

.form__consent {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 1rem;
}

.form__consent a { text-decoration: underline; }

.form__success {
  display: none;
  padding: 1rem 1.25rem;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: var(--success);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.form__success.is-visible { display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.25rem 0 1.25rem;
  margin-top: var(--section-pad);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__about p {
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  max-width: 36ch;
}

.footer h5 {
  color: var(--text);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer__list { display: grid; gap: 0.65rem; }
.footer__list a {
  color: var(--text-2);
  font-size: 0.92rem;
}
.footer__list a:hover { color: var(--accent); }

.footer__contact { display: grid; gap: 0.85rem; }
.footer__contact-item {
  font-size: 0.9rem;
  color: var(--text-2);
}
.footer__contact-item strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-3);
  font-size: 0.85rem;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-banner h3 {
  margin-bottom: 0.5rem;
  max-width: 24ch;
  color: #fff;
}

.cta-banner p {
  max-width: 50ch;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner .btn--primary {
  background: #fff;
  color: var(--accent);
}
.cta-banner .btn--primary:hover {
  background: var(--bg-2);
  color: var(--accent);
}

.cta-banner .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.cta-banner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.cta-banner__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ============ CALCULATOR ============ */
.calc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.calc__form { display: grid; gap: 1.1rem; }

.calc__result {
  background: var(--accent-bg);
  border: 1px solid #D5E0EC;
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc__result-label {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.calc__result-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.calc__breakdown {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #D5E0EC;
  font-size: 0.88rem;
  color: var(--text-2);
}

.calc__breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 0.32rem 0;
}

.calc__breakdown div span:last-child {
  color: var(--text);
  font-weight: 600;
}

.calc__note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ============ INDUSTRY TAGS ============ */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.industry-tag {
  padding: 0.65rem 1.05rem;
  background: var(--bg-tag);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ============ PROCESS STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.4;
  letter-spacing: -0.03em;
}

.step h4 { margin-bottom: 0.45rem; }
.step p { font-size: 0.92rem; }

/* ============ INNER HERO ============ */
.page-hero {
  position: relative;
  padding: clamp(2rem, 5vh, 3rem) 0 clamp(1.5rem, 3vh, 2rem);
  border-bottom: 1px solid var(--border);
  background-color: #0F172A;
  background-image: var(--page-hero-img, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(7, 11, 22, 0.78) 0%,
      rgba(7, 11, 22, 0.55) 50%,
      rgba(7, 11, 22, 0.35) 100%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 65%,
      rgba(7, 11, 22, 0.40) 100%
    );
  z-index: 0;
  pointer-events: none;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  max-width: 24ch;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.55), 0 4px 22px rgba(0,0,0,0.7);
}
.page-hero__lead {
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  max-width: 62ch;
  color: #F1F5F9;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 12px rgba(0,0,0,0.6);
}

.page-hero .crumbs { color: rgba(255, 255, 255, 0.78); font-weight: 500; }
.page-hero .crumbs a { color: rgba(255, 255, 255, 0.78); }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs span { color: rgba(255, 255, 255, 0.45); }

.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.page-hero__chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #FFC23D;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 194, 61, 0.6);
}

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 760px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.page-hero__stats .stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #F8FAFC;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.page-hero__stats .stat__num span { color: #FFD43D; }
.page-hero__stats .stat__label {
  font-size: 0.85rem;
  color: #CBD5E1;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.crumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 1.4rem;
}
.crumbs a { color: var(--text-3); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { opacity: 0.5; }

/* ============ CONTACT GRID ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.contact-card__label {
  color: var(--text-3);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.contact-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.contact-card__value a { color: var(--text); }
.contact-card__value a:hover { color: var(--accent); }

/* ============ NOTICE ============ */
.notice {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.95rem 1.2rem;
  background: var(--warning-bg);
  border: 1px solid #F5D9A8;
  border-radius: var(--radius);
  color: #78350F;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.notice strong { color: var(--warning); }

/* ============ HEADER CHANNELS (телефон + WA + TG + email) ============ */
.header__channels {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.channel {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  line-height: 1;
  transition: all 0.15s ease;
}
.channel:hover { transform: translateY(-1px); border-color: var(--accent); color: var(--accent); }
.channel svg { width: 18px; height: 18px; }
.channel--wa { color: #25D366; }
.channel--wa:hover { border-color: #25D366; color: #1ebe5d; }
.channel--tg { color: #2AABEE; }
.channel--tg:hover { border-color: #2AABEE; color: #1e9bd9; }
.channel--max { color: #6B5BFE; }
.channel--max:hover { border-color: #6B5BFE; color: #5746E5; }

/* ============ FAB (Floating Action Button — мессенджеры) ============ */
.fab {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.5rem);
  bottom: clamp(0.9rem, 2vw, 1.5rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.fab__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(217,119,6,0.35), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}
.fab__btn:hover { background: #B45309; transform: translateY(-2px); }
.fab__btn svg { width: 24px; height: 24px; }
.fab__icon-close { display: none; }
.fab.is-open .fab__icon-msg { display: none; }
.fab.is-open .fab__icon-close { display: block; }

.fab__panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.fab.is-open .fab__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab__link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  box-shadow: 0 3px 10px rgba(0,0,0,0.14);
  transition: transform 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fab__link:hover { transform: scale(1.08); border-color: var(--accent); }
.fab__link svg { width: 20px; height: 20px; }
.fab__link--phone { color: #16A34A; }
.fab__link--phone:hover { border-color: #16A34A; }
.fab__link--wa { color: #25D366; }
.fab__link--wa:hover { border-color: #25D366; }
.fab__link--tg { color: #2AABEE; }
.fab__link--tg:hover { border-color: #2AABEE; }
.fab__link--max { color: #6B5BFE; }
.fab__link--max:hover { border-color: #6B5BFE; }
.fab__link--mail { color: var(--text-2); }
.fab__link--mail:hover { border-color: var(--accent); color: var(--accent); }

/* На мобиле sticky-bar занимает низ — поднимаем fab/cookie выше */
@media (max-width: 720px) {
  .fab { bottom: 76px; }
  .cookie-banner {
    left: 0; right: 0; bottom: 64px;
    max-width: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ============ CARD PRICE BADGE (плашка цены в карточке услуги) ============ */
.card__price {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  padding: 0.35rem 0.7rem;
  background: var(--accent-bg);
  border: 1px solid #D5E0EC;
  border-radius: 20px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}
.card__price span {
  font-weight: 500;
  color: var(--text-3);
  font-size: 0.74rem;
}

/* ============ SEGMENTS (тёмные карточки сегментов с моноценами) ============ */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #0F172A;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 1180px) { .segments-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .segments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .segments-grid { grid-template-columns: 1fr; } }
.segment-card {
  background: #1E293B;
  padding: 0.9rem 0.85rem;
  color: #F1F5F9;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: background 0.2s ease;
}
.segment-card:hover { background: #243044; }
.segment-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.segment-card__price {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-weight: 600;
  font-size: 0.82rem;
  color: #FFC23D;
  letter-spacing: -0.01em;
}
.segment-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.segment-card__desc {
  color: #CBD5E1;
  font-size: 0.76rem;
  line-height: 1.45;
}
.segment-card__items {
  margin-top: 0.35rem;
  display: none;
}
.segment-card__items span {
  font-size: 0.82rem;
  color: #94A3B8;
  padding-left: 1rem;
  position: relative;
}
.segment-card__items span::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFC23D;
}

/* ============ COMPARE BLOCK (две колонки сравнения) ============ */
.compare-block {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.25rem;
  align-items: stretch;
}
.compare-card {
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 280px;
}
.compare-card--a { background: linear-gradient(135deg, #16A34A 0%, #15803D 100%); }
.compare-card--b { background: linear-gradient(135deg, #0A3D62 0%, #155A8A 100%); }
.compare-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.compare-card__items {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}
.compare-card__items span strong { color: #fff; }
.compare-card__price {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.compare-card__price small {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.15rem;
}
.compare-summary {
  width: 260px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.compare-summary__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.compare-summary__body { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; }
.compare-summary__cta { margin-top: auto; }

@media (max-width: 900px) {
  .compare-block { grid-template-columns: 1fr; }
  .compare-summary { width: auto; }
}

/* ============ GEO MAP ============ */
.geo {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
}
.geo__map {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.geo__map svg { width: 100%; height: 100%; display: block; }
.geo__map .pin { fill: var(--accent); }
.geo__map .pin--hub { fill: #B45309; }
.geo__map .region { fill: #E5E5DF; stroke: #fff; stroke-width: 1; transition: fill 0.2s ease; }
.geo__map .region:hover { fill: var(--accent-dim); }
.geo__map .region--core { fill: #D5E0EC; }
.geo__legend {
  display: grid;
  gap: 1rem;
}
.geo__legend__item {
  display: grid;
  gap: 0.3rem;
}
.geo__legend__item__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.geo__legend__item__name::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.geo__legend__item--hub .geo__legend__item__name::before { background: #B45309; }
.geo__legend__item__sub {
  font-size: 0.85rem;
  color: var(--text-3);
  padding-left: 1.5rem;
}

@media (max-width: 900px) {
  .geo { grid-template-columns: 1fr; }
}

/* ============ GEO2 — карта-инфографика ЦФО ============ */
.geo2__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.geo2__head h2 { margin: 0.4rem 0 0.6rem; }
.geo2__lead { color: var(--text-2); max-width: 640px; line-height: 1.6; margin: 0; }
.geo2__cta { white-space: nowrap; }

.geo2__kpi {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.geo2__kpi__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem 0.8rem;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.geo2__kpi__item:hover { border-color: var(--accent); transform: translateY(-2px); }
.geo2__kpi__item--accent { background: linear-gradient(180deg, #FEF3C7 0%, #FDE68A 100%); border-color: #F59E0B; }
.geo2__kpi__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.geo2__kpi__num span { font-size: 0.6em; font-weight: 700; opacity: 0.7; }
.geo2__kpi__item--accent .geo2__kpi__num { color: #92400E; }
.geo2__kpi__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.geo2__kpi__sub { font-size: 0.78rem; color: var(--text-3); line-height: 1.4; }

.geo2__main {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.25rem;
  align-items: start;
}
.geo2__map, .geo2__below-map { grid-column: 1; }
.geo2__sidebar { grid-column: 2; grid-row: 1 / span 2; }
.geo2__below-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.geo2__map {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.geo2__map__inner { display: flex; flex-direction: column; gap: 0.75rem; }
.geo2__map__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
}
.geo2__map svg { width: 100%; height: auto; display: block; border-radius: var(--radius); }

.geo2__map__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
  padding-top: 0.85rem;
}
.geo2__map__legend-items { display: flex; flex-wrap: wrap; gap: 0.6rem 0.9rem; align-items: center; }
.geo2__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 600;
}
.geo2__dot { width: 10px; height: 10px; border-radius: 50%; }
.geo2__dot--pin { width: 8px; height: 8px; background: #DC2626; border: 1.5px solid #fff; box-shadow: 0 0 0 1px #DC2626; }
.geo2__map__legend-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.geo2__map__legend-link:hover { text-decoration: underline; }

.geo2__map__footnote {
  font-size: 0.72rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
}
.geo2__map__footnote a { color: var(--text-2); text-decoration: underline; }

/* ============ Виджеты под картой ============ */
.geo2__widget {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.geo2__widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.geo2__widget__title {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.geo2__widget__meta {
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.geo2__widget__footnote {
  font-size: 0.7rem;
  color: var(--text-3);
  text-align: center;
  margin: 0.75rem 0 0;
  line-height: 1.5;
}

.geo2__live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
  animation: geo2-pulse 1.6s ease-out infinite;
}
@keyframes geo2-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Условия дорог */
.geo2__roads {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.geo2__road {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.45rem 0.45rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.geo2__road--warn { background: #FEF3C7; border-color: #FCD34D; }
.geo2__road__name { font-size: 0.74rem; font-weight: 700; color: var(--text); margin: 0; }
.geo2__road__status { display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem; font-size: 0.74rem; color: var(--text-2); }
.geo2__road__hint { font-size: 0.66rem; font-weight: 700; margin: 0; }
.geo2__road__hint--ok { color: #16A34A; }
.geo2__road__hint--accent { color: #B45309; }
.geo2__road__eta { padding-top: 0.4rem; margin-top: 0.1rem; border-top: 1px solid #E2E8F0; }
.geo2__road--warn .geo2__road__eta { border-top-color: #FCD34D; }
.geo2__road__eta-label { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); }
.geo2__road__eta-val { font-size: 0.78rem; font-weight: 800; }
.geo2__road__eta-val--ok { color: #16A34A; }
.geo2__road__eta-val--warn { color: #B45309; }

/* Ограничения */
.geo2__limits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.geo2__limits--wide {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.geo2__limit {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
}
.geo2__limits--wide .geo2__limit__head { font-size: 0.85rem; }
.geo2__limits--wide .geo2__limit__sub  { font-size: 0.73rem; }
.geo2__limit--warn { background: #FEF3C7; border-color: #FCD34D; }
.geo2__limit--info { background: #DBEAFE; border-color: #93C5FD; }
.geo2__limit--bad  { background: #FEE2E2; border-color: #FCA5A5; }
.geo2__limit--good { background: #DCFCE7; border-color: #86EFAC; }
.geo2__limit__tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  margin: 0 0 0.3rem;
}
.geo2__limit--warn .geo2__limit__tag { color: #B45309; }
.geo2__limit--info .geo2__limit__tag { color: #1D4ED8; }
.geo2__limit--bad  .geo2__limit__tag { color: #B91C1C; }
.geo2__limit--good .geo2__limit__tag { color: #15803D; }
.geo2__limit__head { font-size: 0.85rem; font-weight: 700; color: var(--text); margin: 0 0 0.3rem; line-height: 1.3; }
.geo2__limit__sub  { font-size: 0.72rem; color: var(--text-2); line-height: 1.5; margin: 0; }

.geo2__pin {
  fill: #DC2626;
  stroke: #FFFFFF;
  stroke-width: 1.8;
  transition: r 0.18s ease, fill 0.18s ease;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.geo2__pin-group:hover .geo2__pin { fill: #B91C1C; r: 6; }
.geo2__pin-label {
  font-size: 9px;
  font-weight: 700;
  fill: #0F172A;
  stroke: #FFFFFF;
  stroke-width: 2.5;
  paint-order: stroke;
  pointer-events: none;
  letter-spacing: 0.01em;
}

.geo2__city-pin {
  fill: #D97706;
  stroke: #FFFFFF;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
}
.geo2__city-label {
  font-size: 11px;
  font-weight: 800;
  fill: #0F172A;
  stroke: #FFFFFF;
  stroke-width: 3.5;
  paint-order: stroke;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.geo2__zone-label text {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  fill: #FFFFFF;
  pointer-events: none;
}

.geo2__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Региональные карточки */
.geo2__region-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 4px solid #16A34A;
  border-radius: var(--radius-lg);
  padding: 0.7rem 0.85rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.geo2__region-card--main { border-left-color: #16A34A; }
.geo2__region-card--accent { border-left-color: #F59E0B; }
.geo2__region-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.geo2__region-card__head h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.geo2__region-card__head h3 span {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.geo2__region-card__price {
  font-size: 0.74rem;
  font-weight: 700;
  color: #16A34A;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.geo2__region-card--accent .geo2__region-card__price { color: #B45309; }
.geo2__region-card__list {
  font-size: 0.75rem;
  color: var(--text-2);
  margin: 0.45rem 0 0.45rem;
  line-height: 1.5;
}
.geo2__region-card__note {
  font-size: 0.68rem;
  font-weight: 700;
  color: #15803D;
  margin: 0;
  letter-spacing: 0.01em;
}
.geo2__region-card--accent .geo2__region-card__note { color: #B45309; }

/* Live feed */
.geo2__live-feed {
  background: #0F172A;
  color: #F1F5F9;
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  border: 1px solid #1E293B;
}
.geo2__live-feed__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FBBF24;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.geo2__live-feed__list { display: flex; flex-direction: column; gap: 0.4rem; }
.geo2__live-feed__list > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
}
.geo2__live-feed__date { color: #64748B; font-size: 0.66rem; width: 2.6rem; flex-shrink: 0; }
.geo2__live-feed__to { color: #94A3B8; margin-left: auto; font-size: 0.7rem; }
.geo2__live-feed__to--accent { color: #FBBF24; font-weight: 600; }
.geo2__live-feed__foot {
  font-size: 0.65rem;
  color: #64748B;
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid #1E293B;
}

/* Тарифы */
.geo2__tariffs {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.geo2__tariffs__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin: 0 0 0.75rem;
}
.geo2__tariffs__list { display: flex; flex-direction: column; gap: 0.35rem; }
.geo2__tariffs__list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}
.geo2__tariffs__list span { color: var(--text-2); }
.geo2__tariffs__list strong { font-weight: 800; color: var(--text); }
.geo2__tariffs__price--ok { color: #16A34A !important; }
.geo2__tariffs__price--accent { color: #B45309 !important; }
.geo2__tariffs__foot {
  font-size: 0.65rem;
  color: var(--text-3);
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* CTA-калькулятор */
.geo2__calc-cta {
  display: block;
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  text-decoration: none;
  transition: filter 0.18s ease;
  box-shadow: 0 4px 12px rgba(217,119,6,0.25);
}
.geo2__calc-cta:hover { filter: brightness(1.08); }
.geo2__calc-cta__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
  margin: 0 0 0.25rem;
}
.geo2__calc-cta__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.geo2__calc-cta__sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1180px) {
  .geo2__roads { grid-template-columns: repeat(3, 1fr); }
  .geo2__limits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .geo2__kpi { grid-template-columns: repeat(3, 1fr); }
  .geo2__main { grid-template-columns: 1fr; }
  .geo2__map, .geo2__below-map, .geo2__sidebar { grid-column: 1; grid-row: auto; }
}
@media (max-width: 720px) {
  .geo2__head { grid-template-columns: 1fr; }
  .geo2__cta { width: 100%; text-align: center; }
  .geo2__kpi { grid-template-columns: repeat(2, 1fr); }
  .geo2__roads { grid-template-columns: repeat(2, 1fr); }
  .geo2__limits { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .geo2__kpi { grid-template-columns: 1fr; }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: clamp(0.5rem, 2vw, 1.5rem);
  bottom: clamp(0.5rem, 2vw, 1.5rem);
  z-index: 90;
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: none;
  align-items: flex-start;
  gap: 1rem;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-2);
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}
.cookie-banner button {
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-banner button.primary {
  background: var(--accent);
  color: #fff;
}
.cookie-banner button.ghost {
  background: transparent;
  color: var(--text-3);
  border: 1px solid var(--border-strong);
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    left: 0.5rem; right: 0.5rem;
    bottom: calc(64px + env(safe-area-inset-bottom) + 0.5rem);
    max-width: none;
  }
  .cookie-banner__actions { flex-direction: row; width: 100%; }
  .cookie-banner button { flex: 1; padding: 0.65rem; }
}

/* ============ BLOG ARTICLE HERO (с миникальком справа) ============ */
.page-hero--with-calc { padding-bottom: clamp(2.5rem, 6vh, 4rem); }
.page-hero--with-calc .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: end;
}
.page-hero--with-calc .qc-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.65rem 1.55rem 1.3rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
  color: var(--text);
}
.page-hero--with-calc .qc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-family: var(--font-display);
}
.page-hero--with-calc .qc-card__sub {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}

/* Price strip под hero блог-статьи */
.blog-price-strip {
  background: var(--accent-bg);
  border-bottom: 1px solid #D5E0EC;
  padding: 0.9rem var(--container-pad);
}
.blog-price-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--text-2);
}
.blog-price-strip strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Related articles внизу */
.related-articles {
  margin: 3rem 0 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.related-articles h3 {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
}
.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.related-card {
  display: block;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  text-decoration: none;
  transition: all 0.15s ease;
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.related-card__cat {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.related-card__title {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .page-hero--with-calc .container { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============ HERO QUICK CALC (правая колонка в hero) ============ */
.hero--with-calc .hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.hero__quickcalc {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.85rem 1.7rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.hero__quickcalc h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-family: var(--font-display);
}

.hero__quickcalc__sub {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 1.2rem;
}

.qc__field { display: grid; gap: 0.3rem; margin-bottom: 0.85rem; }
.qc__field label {
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.qc__field select, .qc__field input {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
  width: 100%;
}
.qc__field select:focus, .qc__field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.qc__field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.qc__field--row > div { display: grid; gap: 0.3rem; }

.qc__result {
  margin: 1rem 0 0.85rem;
  padding: 0.95rem 1.1rem;
  background: var(--accent-bg);
  border: 1px solid #D5E0EC;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qc__result__label {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.qc__result__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.qc__note {
  font-size: 0.74rem;
  color: var(--text-3);
  margin-top: 0.65rem;
  line-height: 1.4;
}

.qc__cta {
  width: 100%;
  margin-top: 0.5rem;
}

/* ============ HERO MINI-PRICES (полоска под hero) ============ */
.hero-prices {
  background: rgba(7, 11, 22, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
  margin-top: -1px;
}
.hero-prices__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.05rem var(--container-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
  color: #fff;
}
.hero-prices__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-prices__item__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFC23D;
  box-shadow: 0 0 10px rgba(255, 194, 61, 0.6);
}
.hero-prices__item__name {
  font-size: 0.85rem;
  color: #CBD5E1;
  font-weight: 500;
}
.hero-prices__item__price {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
  white-space: nowrap;
}
.hero-prices__item__price span {
  font-weight: 500;
  color: #94A3B8;
  font-size: 0.78rem;
}

/* ============ STICKY MOBILE BAR ============ */
.sticky-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.55rem 0.8rem calc(0.55rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  gap: 0.6rem;
  align-items: stretch;
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}
.sticky-bar a svg { width: 18px; height: 18px; }
.sticky-bar__call {
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.sticky-bar__cta {
  background: var(--accent);
  color: #fff;
}
.sticky-bar__cta:hover { background: var(--accent-2); }

/* ============ FAQ ============ */
.faq {
  max-width: 820px;
  display: grid;
  gap: 0.85rem;
}

.faq__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: border-color 0.15s ease;
}

.faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item summary:hover { color: var(--accent); }

.faq__answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-2);
  line-height: 1.7;
}

.faq__answer p { margin-bottom: 0.85rem; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ============ Calculator option groups ============ */
.field select optgroup {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-2);
}

.field select option {
  color: var(--text);
  background: var(--bg);
}

/* ============ RESPONSIVE ============ */
/* На промежуточных размерах поджимаем header чтобы 5 каналов + nav + телефон не разъезжались */
@media (max-width: 1280px) {
  .header__inner { gap: 1.25rem; }
  .nav { gap: 1.1rem; }
}
@media (max-width: 1100px) {
  .header .phone { display: none; }
  .header__channels { gap: 0.4rem; }
  .channel { width: 36px; height: 36px; }
  .channel svg { width: 16px; height: 16px; }
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-banner { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .fleet-row {
    grid-template-columns: 100px auto 1fr;
    gap: 1rem;
  }
  .fleet-row__photo { width: 100px; height: 75px; }
  .fleet-row__type { grid-column: 1 / -1; justify-self: start; margin-top: 0.5rem; }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .split--reverse .split__media { order: 0; }
  .hero--with-calc .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .header__channels .channel { display: none; }
  .header__channels .channel--phone,
  .header__channels .channel--wa,
  .header__channels .channel--tg { display: grid; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--container-pad);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    box-shadow: var(--shadow);
  }
  .nav.is-open a.active::after { display: none; }
  .burger { display: flex; }
  .phone { display: none; }
  .header__channels { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; min-width: 0; }
  body { padding-bottom: 64px; }
  .sticky-bar { display: flex; }
}

/* Предотвращаем горизонтальный скролл от внутренних блоков.
   overflow-x: clip — не ломает position: sticky (в отличие от hidden) */
html, body { overflow-x: clip; max-width: 100%; }
.hero, .section, .container { max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }

@media (max-width: 480px) {
  .header__inner { gap: 0.85rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .form__grid { grid-template-columns: 1fr; }
}
