:root {
  --bg: #f5f7fb;
  --bg-2: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f1f4f9;
  --surface-dark: #182234;
  --surface-dark-2: #243247;
  --text: #182234;
  --text-soft: #667285;
  --text-muted: #8791a1;
  --text-inverse: #ffffff;
  --border: #dbe3ee;
  --accent: #f05a28;
  --accent-hover: #db4d1d;
  --accent-soft: #fff1ea;
  --success: #28a56a;
  --danger: #d94b4b;
  --shadow-sm: 0 8px 20px rgba(24, 34, 52, 0.06);
  --shadow-md: 0 18px 48px rgba(24, 34, 52, 0.08);
  --shadow-lg: 0 28px 70px rgba(24, 34, 52, 0.14);
  --container: 1260px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-ui: Manrope, Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
h1, h2, h3, p { margin: 0; }

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
  backdrop-filter: blur(16px);
}
.topbar-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 250px; height: auto; }
.nav { display: flex; align-items: center; gap: 22px; color: var(--text-soft); font-size: 15px; font-weight: 800; }
.nav a { white-space: nowrap; }
.nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone { font-weight: 800; white-space: nowrap; }
.header-actions .btn { min-width: 280px; white-space: nowrap; flex-shrink: 0; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.topbar.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.topbar.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(240, 90, 40, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-1px); background: var(--accent-hover); }
.btn:disabled { opacity: .62; cursor: wait; transform: none; }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--surface-soft); color: var(--text); }
.btn-dark { background: var(--surface-dark); box-shadow: 0 16px 34px rgba(24, 34, 52, 0.22); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--text);
  background: transparent;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  filter: saturate(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 50px 0 24px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 24px;
  align-items: stretch;
}
.hero-copy {
  max-width: none;
  padding: 44px 30px;
  border-radius: 22px;
  background: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}
.hero .eyebrow { background: var(--accent-soft); }
h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 900;
}
.lead {
  margin-top: 18px;
  max-width: 680px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.48;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  padding-bottom: 58px;
}
.hero-point {
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.hero-point strong { display: block; font-size: 18px; }
.hero-point span { display: block; margin-top: 4px; color: var(--text-soft); font-size: 13px; }

.hero-media {
  min-height: 480px;
  border-radius: 22px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.hero-offer {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(220px, 1fr);
  gap: 16px;
  align-items: center;
}
.hero-cta-stack {
  display: grid;
  gap: 12px;
}
.hero-cta-stack .btn {
  width: 100%;
}

.offer-mini {
  min-height: 96px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
}
.offer-mini > div { min-width: 0; }

.offer-mini::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--accent) 0 4px, #dcf7ea 5px 100%);
}

.offer-mini strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  white-space: normal;
}
.offer-mini > div > span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.25;
}
.offer-mini [data-promo-month] {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}
.promo-note {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}
.promo-note a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.promo-note a:hover { color: var(--accent); }

.highlight { color: var(--accent); }

.lead-panel {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.modal-open { overflow: hidden; }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(12, 18, 28, .52);
  backdrop-filter: blur(8px);
}

.lead-modal[hidden] { display: none; }

.modal-dialog {
  position: relative;
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(460px, 1fr);
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal-content { padding: 28px; }
.modal-content h2 { margin: 8px 0 0; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.08; }
.modal-content p { margin-top: 8px; color: var(--text-soft); }
.modal-media {
  min-height: 460px;
  aspect-ratio: 1 / 1;
  height: 100%;
  background-image: var(--modal-image, url("/assets/img/modal-main.webp"));
  background-size: cover;
  background-position: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.consent-note {
  margin-top: -4px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
}
.consent-note a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.modal-continue {
  display: inline-flex;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-continue:hover { color: var(--accent); }
.modal-continue[hidden] { display: none; }
.lead-panel h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}
.lead-panel p { color: rgba(255,255,255,.76); font-size: 14px; }

.section { padding: 86px 0; }
.section.tight { padding: 56px 0; }
.section.dark { background: linear-gradient(180deg, var(--surface-dark), var(--surface-dark-2)); color: #fff; }
.section-header {
  max-width: 850px;
  margin-bottom: 30px;
}
h2 {
  margin-top: 16px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}
.section-header p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 18px;
}
.dark .section-header p { color: rgba(255,255,255,.72); }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 22px; line-height: 1.18; }
.card p { margin-top: 10px; color: var(--text-soft); }
.category-card {
  overflow: hidden;
}
.category-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-soft);
}
.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-media-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}
.category-media-carousel img.is-active {
  opacity: 1;
}
.category-tag {
  margin-bottom: 12px;
}
.price { margin-top: 18px; font-size: 32px; font-weight: 900; color: var(--accent); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.offer-band {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.offer-band strong { color: var(--accent); }
.offer-band p { margin-top: 6px; color: var(--text-soft); }

.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.program-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
}
.program-card ul, .list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.program-card li, .list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}
.program-card li + li, .list li + li { margin-top: 10px; }
.program-card li::before, .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px #fff1ea;
}

.subcategory-section {
  padding-top: 42px;
}
.subcategory-grid {
  align-items: stretch;
}
.subcategory-card {
  display: flex;
  flex-direction: column;
}
.subcategory-card .list {
  margin-top: 18px;
}
.subcategory-card .btn-row {
  margin-top: auto;
  padding-top: 24px;
}
.subcategory-card .btn {
  min-width: 0;
}

.tariffs-section {
  background: linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,0));
}
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.tariff-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.tariff-card {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.tariff-card:nth-child(1) {
  border-color: rgba(240, 90, 40, .35);
  box-shadow: 0 22px 54px rgba(240, 90, 40, .12);
}
.tariff-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}
.tariff-tag,
.tariff-badge {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.tariff-tag {
  background: var(--accent-soft);
  color: var(--accent);
}
.tariff-badge {
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid var(--border);
}
.tariff-card h3 {
  font-size: 25px;
  line-height: 1.1;
}
.tariff-price {
  margin-top: 18px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}
.tariff-ndfl {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}
.tariff-ndfl strong { color: var(--accent); }
.tariff-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.tariff-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 14px;
}
.tariff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(40, 165, 106, .12);
}
.tariff-actions {
  margin-top: auto;
  padding-top: 24px;
}
.tariff-actions .btn { width: 100%; }
.tariff-note {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.quiz {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
}
.quiz-copy {
  position: sticky;
  top: 126px;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(180deg, var(--surface-dark), var(--surface-dark-2));
}
.quiz-copy h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
}
.quiz-copy p {
  margin-top: 14px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
}
.quiz-how {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.quiz-how div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}
.quiz-how span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 900;
}
.quiz-how p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 800;
}
.quiz-promo {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}
.quiz-promo strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}
.quiz-promo p {
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.quiz-promo .btn {
  margin-top: 16px;
  min-height: 50px;
  width: 100%;
}
.quiz-panel {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.quiz-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.quiz-progress span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 900;
}
.quiz-progress div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-soft);
}
.quiz-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 180ms ease;
}
.quiz-options {
  display: grid;
  flex: 1;
}
.quiz-options[hidden] { display: none; }

.quiz-result {
  flex: 1;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.quiz-result[hidden] { display: none; }

.quiz-result h3 { font-size: 26px; line-height: 1.15; }
.quiz-result p { margin-top: 8px; color: var(--text-soft); }
.quiz-step[hidden] { display: none; }
.quiz-step-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.quiz-group {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
}
.quiz-step h3 {
  margin-top: 16px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.12;
}
.quiz-step p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 16px;
}
.option-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.quiz-answer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
.quiz-custom-input {
  margin-top: 16px;
}
.quiz-custom-input label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 900;
}
.quiz-custom-input[hidden] { display: none; }
.option {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-soft);
  cursor: pointer;
  font-weight: 800;
}
.option-card {
  min-height: 86px;
  width: 100%;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  text-align: left;
}
.option-card strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}
.option-card span {
  display: block;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.35;
}
.option.is-selected {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(240, 90, 40, .34);
}
.option-card.is-selected strong { color: var(--accent); }
.quiz-nav {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(160px, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.quiz-nav .btn {
  width: 100%;
}
.quiz-nav .btn:disabled { cursor: not-allowed; }
.quiz-nav .btn[hidden] { display: none; }

.isolated-quiz-page {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
.isolated-quiz-page main {
  width: 100%;
  height: 100vh;
  display: grid;
  align-items: center;
  padding: 0;
  overflow-x: hidden;
}
.quiz-landing {
  width: min(1180px, 100%);
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.quiz-landing-copy {
  min-width: 0;
  max-width: 100%;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(180deg, var(--surface-dark), var(--surface-dark-2));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quiz-landing-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}
.quiz-landing-brand img {
  flex: 0 1 auto;
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}
.quiz-landing-brand span {
  color: rgba(255,255,255,.86);
  font-weight: 900;
  white-space: nowrap;
}
.quiz-landing-copy h1 {
  max-width: 100%;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 62px);
  overflow-wrap: anywhere;
}
.quiz-landing-copy > p {
  max-width: 100%;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}
.quiz-landing-panel {
  min-width: 0;
  max-width: 100%;
  min-height: 620px;
}
.quiz-landing .consent-note {
  color: var(--text-muted);
}
.quiz-landing,
.quiz-landing-copy,
.quiz-landing-panel,
.quiz-landing .quiz-panel,
.quiz-landing .quiz-options,
.quiz-landing .quiz-result,
.quiz-landing .quiz-step,
.quiz-landing .quiz-group,
.quiz-landing .option-grid,
.quiz-landing .option-card,
.quiz-landing .lead-form,
.quiz-landing .quiz-how,
.quiz-landing .quiz-how div,
.quiz-landing .quiz-promo {
  min-width: 0;
  max-width: 100%;
}
.quiz-landing-copy h1,
.quiz-landing-copy p,
.quiz-landing .quiz-how p,
.quiz-landing .quiz-promo strong,
.quiz-landing .quiz-promo p,
.quiz-landing .quiz-step h3,
.quiz-landing .quiz-step p,
.quiz-landing .option-card strong,
.quiz-landing .option-card span {
  overflow-wrap: anywhere;
}

.quiz-traffic {
  width: 100vw;
  max-width: none;
  height: 100vh;
  min-height: 0;
  margin: 0;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 0;
  background: #fff;
  box-shadow: none;
}
.quiz-landing-visual {
  height: 100vh;
  min-height: 0;
  overflow: hidden;
  background: #f05a28;
}
.quiz-landing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.quiz-landing-stage {
  position: relative;
  min-width: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: clamp(16px, 2.4vh, 24px) clamp(34px, 5vw, 82px) clamp(14px, 2.2vh, 22px);
  border-left: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.quiz-landing-brand-dark {
  margin: 0;
  justify-content: flex-start;
  color: var(--text);
}
.quiz-landing-brand-dark img {
  width: 68px;
  filter: none;
}
.quiz-landing-brand-dark span {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.quiz-intro {
  align-self: center;
  margin-top: 0;
  padding-bottom: clamp(44px, 10vh, 86px);
  max-width: 560px;
  display: grid;
  align-content: center;
  min-height: 0;
}
.quiz-intro h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(30px, 2.85vw, 42px);
  line-height: 1.12;
}
.quiz-hero-list {
  margin: clamp(14px, 2.2vh, 22px) 0 0;
  padding-left: 28px;
  color: #686f79;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 900;
}
.quiz-start-btn {
  width: min(320px, 100%);
  min-height: 54px;
  margin-top: clamp(14px, 2vh, 20px);
  border-radius: 22px;
  font-size: 20px;
}
.quiz-bonuses {
  margin-top: clamp(18px, 3vh, 26px);
}
.quiz-bonuses p {
  color: var(--text);
  font-size: 18px;
  letter-spacing: .04em;
}
.quiz-bonuses div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.quiz-bonuses span {
  min-height: 68px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: #d6d6d6;
  color: #68748b;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(24,34,52,.14);
}
.quiz-bonuses b {
  font-size: 30px;
  line-height: 1;
}
.quiz-landing-footer {
  position: absolute;
  left: clamp(34px, 5vw, 82px);
  right: clamp(34px, 5vw, 82px);
  bottom: clamp(16px, 2.6vh, 24px);
  margin-top: 0;
  color: var(--text-soft);
}
.quiz-landing-footer strong {
  display: block;
  color: var(--text);
  font-size: 17px;
}
.quiz-landing-footer span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}
.quiz-terms-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.quiz-terms-link:hover {
  color: var(--accent);
}
.quiz-traffic .quiz-panel {
  align-self: center;
  width: 100%;
  min-height: 0;
  max-height: calc(100vh - 44px);
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.quiz-traffic.is-quiz-active {
  grid-template-columns: 1fr;
}
.quiz-traffic.is-quiz-active .quiz-landing-visual {
  display: none;
}
.quiz-traffic.is-quiz-active .quiz-landing-stage {
  width: 100vw;
  height: 100vh;
  padding: clamp(24px, 4vh, 40px) clamp(80px, 12vw, 220px) clamp(18px, 3vh, 28px);
  border-left: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.quiz-traffic.is-quiz-active .quiz-landing-brand {
  display: none;
}
.quiz-traffic.is-quiz-active .quiz-panel {
  max-width: 1180px;
  max-height: none;
  margin: 0 auto;
  overflow: visible;
}
.quiz-traffic .quiz-progress {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 16px;
}
.quiz-traffic .quiz-progress div {
  grid-column: 1 / -1;
  height: 6px;
}
.quiz-traffic .quiz-progress b {
  color: var(--accent);
  font-size: 15px;
}
.quiz-traffic .quiz-progress i {
  background: linear-gradient(90deg, #f05a28, #ffb099);
}
.quiz-traffic .quiz-step h3 {
  margin-top: 12px;
  font-size: clamp(30px, 3vw, 46px);
}
.quiz-traffic .quiz-step p {
  margin-top: 8px;
  font-size: 16px;
}
.quiz-traffic .quiz-answer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.quiz-traffic .quiz-answer-grid .option-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.quiz-traffic .option-card {
  min-height: 86px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f6f7fa;
}
.quiz-traffic .option-card strong {
  font-size: 19px;
}
.quiz-traffic .option-card span {
  font-size: 14px;
}
.quiz-traffic .quiz-custom-input {
  margin-top: 10px;
}
.quiz-traffic .quiz-custom-input .input {
  min-height: 48px;
}
.quiz-traffic .quiz-nav {
  max-width: 420px;
  margin: 22px 0 0 auto;
}
.quiz-traffic .quiz-nav .btn {
  min-height: 54px;
}
.quiz-traffic.is-result-active .quiz-result {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}
.quiz-traffic.is-result-active .quiz-final-form {
  margin-top: 0;
}
.quiz-traffic.is-result-active .quiz-final-form .field {
  gap: 6px;
}
.quiz-traffic.is-result-active .quiz-final-form .input {
  min-height: 56px;
}
.quiz-traffic.is-result-active .quiz-final-form .btn {
  min-height: 58px;
}
.quiz-traffic .quiz-result {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.quiz-final-copy h3 {
  margin-top: 18px;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
}
.quiz-final-copy p,
.quiz-final-copy li {
  color: var(--text-soft);
  font-size: 19px;
}
.quiz-final-copy p {
  margin-top: 18px;
}
.quiz-final-copy ul {
  margin: 18px 0 0;
  padding-left: 24px;
}
.quiz-final-form .btn {
  border-radius: 24px;
}

.branches {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}
.branch-list {
  display: grid;
  gap: 10px;
}
.branch-item {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.branch-item strong { display: block; }
.branch-item span { display: block; margin-top: 4px; color: var(--text-soft); font-size: 14px; }

.contact-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-list { display: grid; gap: 14px; margin-top: 20px; }
.contact-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-row {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-soft);
}
.contact-row span { display: block; color: var(--text-soft); font-size: 13px; font-weight: 800; }
.contact-row strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  overflow-wrap: anywhere;
}
.contact-list.compact .contact-row strong { font-size: 16px; }
.contact-link-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.contact-link {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
}
.contact-link > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(35, 174, 119, .14);
  color: var(--success);
  font-weight: 900;
}
.contact-link strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}
.contact-link small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.35;
}
.contact-link:hover {
  border-color: rgba(240, 90, 40, .35);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.branch-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.branch-bullet {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
}
.branch-bullet span {
  min-width: 46px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(240, 90, 40, .1);
  color: var(--accent);
  font-weight: 900;
}
.branch-bullet strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}
.branch-bullet small {
  display: block;
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.35;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.info-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}
.info-card h3 { margin-top: 22px; font-size: 21px; line-height: 1.15; }
.info-card p { margin-top: 10px; color: var(--text-soft); }
.info-line {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 8px;
  border-radius: 999px;
  background: var(--surface-soft);
}
.info-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.tax-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.tax-stat-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.tax-stat-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.tax-stat-card h3 {
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.18;
}
.tax-stat-card p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 16px;
}

.article-block {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.article-block-head {
  max-width: 900px;
}
.article-block-head h2 {
  margin-top: 22px;
  max-width: 880px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}
.article-block-head p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.6vw, 21px);
}
.article-columns {
  margin-top: 34px;
  column-count: 2;
  column-gap: 44px;
}
.article-columns article {
  break-inside: avoid;
  margin-bottom: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.article-columns h3 {
  font-size: 23px;
  line-height: 1.2;
}
.article-columns p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}
.map-box {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-soft);
}
.map-box iframe { width: 100%; height: 100%; min-height: 470px; border: 0; }
.map-gate-link {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 40px);
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transform: translate(-50%, -50%);
}
.map-gate-link:hover {
  color: var(--accent);
  background: #fff;
}
.map-gate-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: rgba(245, 247, 251, .42);
  backdrop-filter: blur(2px);
}
.map-gate-overlay span,
.map-gate-overlay strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}
.map-gate-overlay span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 900;
}
.map-gate-overlay strong {
  margin-top: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 16px 34px rgba(240, 90, 40, .24);
}
.map-gate-overlay:hover strong { background: var(--accent-hover); }

.lead-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.field { display: grid; gap: 7px; }
.field label, .label { color: inherit; font-size: 13px; font-weight: 800; }
.input, .select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.lead-panel .input, .lead-panel .select {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.96);
}
.input:focus, .select:focus {
  border-color: rgba(240, 90, 40, .7);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, .12);
}
.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.76);
  font-size: 12px;
}
.section .checkbox { color: var(--text-soft); }
.checkbox input { margin-top: 3px; }
.error-text { min-height: 16px; color: #ffb4a2; font-size: 12px; font-weight: 800; }
.section .error-text { color: var(--danger); }
.field-error .input { border-color: var(--danger); }
.form-status { min-height: 20px; font-size: 13px; font-weight: 800; }
.form-status.is-success { color: #9af0bc; }
.section .form-status.is-success { color: var(--success); }
.form-status.is-error { color: #ffb4a2; }
.section .form-status.is-error { color: var(--danger); }

.cta-strip {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface-dark), var(--surface-dark-2));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-strip p { margin-top: 8px; color: rgba(255,255,255,.74); }

.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { margin-top: 12px; color: var(--text-soft); }

.footer {
  padding: 48px 0;
  background: #111827;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 24px;
}
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer strong { display: block; margin-bottom: 8px; }
.legal-page {
  padding: 72px 0;
}
.legal-page .card { max-width: 900px; margin: 0 auto; }
.legal-page p, .legal-page li { color: var(--text-soft); }
.legal-policy h2 {
  margin-top: 30px;
  margin-bottom: 14px;
}
.promo-terms .eyebrow {
  margin-top: 28px;
}
.promo-terms .eyebrow:first-child { margin-top: 0; }
.promo-terms h2 {
  margin-top: 14px;
  margin-bottom: 12px;
}
.promo-terms p { margin: 0 0 12px; color: var(--text-soft); line-height: 1.7; }
.promo-terms .list { margin-top: 0; }
.legal-policy h2:first-child { margin-top: 0; }
.legal-policy p { margin: 0 0 12px; line-height: 1.7; }
.legal-policy .list { margin: 0 0 18px; }
.policy-table {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}
.policy-table > div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f8fafc;
}
.policy-table strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}
.policy-table p { margin: 0; }

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs + .hero-inner {
  padding-top: 30px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.step-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-dark);
  color: #fff;
  font-weight: 900;
}
.step-card h3 { margin-top: 18px; font-size: 21px; line-height: 1.15; }
.step-card p { margin-top: 10px; color: var(--text-soft); }

.review-summary {
  margin-bottom: 20px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.review-summary strong { color: var(--accent); font-size: 42px; line-height: 1; }
.review-summary span { color: var(--text-soft); font-weight: 800; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.review-card p { margin-top: 10px; color: var(--text-soft); }
.review-card span { display: block; margin-top: 14px; color: var(--text-muted); font-size: 13px; font-weight: 900; }
.stars { color: var(--accent); letter-spacing: 0; font-weight: 900; }

.trust-panel,
.fleet-panel {
  padding: 30px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.trust-panel p { margin-top: 12px; color: var(--text-soft); }
.requisites-grid,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.requisites-grid div,
.mini-card {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.requisites-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
}
.requisites-grid strong { display: block; margin-top: 5px; }

.people-grid,
.branch-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.person-card,
.branch-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.person-photo {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface-soft));
  position: relative;
}
.person-photo::after {
  content: "";
  position: absolute;
  inset: 18px 20px 14px;
  border-radius: 50% 50% 42% 42%;
  background: var(--accent);
  opacity: .9;
}
.person-card h3,
.branch-card h3 { font-size: 21px; line-height: 1.16; }
.person-card p,
.branch-card p,
.mini-card p { margin-top: 8px; color: var(--text-soft); }
.person-card span { display: block; margin-top: 12px; color: var(--accent); font-size: 13px; font-weight: 900; }
.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.branch-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}
.branch-actions a:last-child { color: var(--accent); }

.fleet-media {
  min-height: 360px;
  border-radius: var(--radius-lg);
  background-image: url("/assets/img/fleet-b.webp");
  background-size: cover;
  background-position: center;
}
.fleet-panel .eyebrow { margin-bottom: 16px; }
.fleet-panel h2 { margin-bottom: 18px; }

.seo-copy .card { box-shadow: none; }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-sticky-cta {
  display: none;
}

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(219, 227, 238, .95);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.cookie-notice .btn-small {
  min-height: 42px;
  min-width: 110px;
  padding: 0 18px;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .topbar-inner {
    position: relative;
    min-height: 68px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 44px;
    gap: 8px;
    align-items: center;
    padding: 10px 0;
  }
  .brand { order: 1; }
  .brand img { width: 168px; }
  .header-actions { display: contents; }
  .phone {
    order: 2;
    grid-column: 2;
    justify-self: end;
    max-width: 100%;
    margin-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 900;
  }
  .menu-toggle {
    order: 3;
    display: inline-flex;
    position: static;
    grid-column: 3;
    justify-self: end;
    z-index: 120;
  }
  .header-actions .btn {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 50px;
    min-width: 0;
    display: none;
  }
  .topbar.is-menu-open .header-actions .btn { display: inline-flex; }
  .nav {
    order: 5;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }
  .topbar.is-menu-open .nav { display: grid; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
  }
  .hero-inner, .branches, .quiz, .footer-grid, .modal-dialog { grid-template-columns: 1fr; }
  .quiz-landing { grid-template-columns: 1fr; }
  .quiz-copy { position: static; }
  .hero-points, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tax-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-columns { column-count: 1; }
  .lead-panel { max-width: 520px; }
  .infographic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modal-media { min-height: 220px; aspect-ratio: 16 / 9; order: -1; }
  .step-grid,
  .review-grid,
  .people-grid,
  .branch-directory,
  .tariff-grid,
  .tariff-grid-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-summary,
  .trust-panel,
  .fleet-panel { grid-template-columns: 1fr; }
  .quiz-traffic {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }
  .quiz-landing-visual {
    min-height: 260px;
    max-height: 380px;
    height: 34vh;
  }
  .quiz-landing-stage {
    height: auto;
    min-height: 66vh;
    border-left: 0;
    padding: 22px 28px 42px;
    overflow: visible;
  }
  .quiz-traffic.is-quiz-active .quiz-landing-stage {
    width: 100%;
    padding: 34px 42px 28px;
    overflow-y: auto;
  }
  .quiz-traffic.is-result-active .quiz-result {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  body.isolated-quiz-page {
    height: auto;
    min-height: 100svh;
    padding-bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .container { width: min(100% - 28px, var(--container)); }
  .topbar-inner {
    position: relative;
    min-height: 64px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 40px;
    gap: 6px;
    align-items: center;
    padding: 8px 0;
  }
  .brand { order: 1; align-self: center; }
  .brand img { width: 116px; }
  .header-actions { display: contents; }
  .phone {
    order: 2;
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-top: 0;
    font-size: 11px;
    font-weight: 900;
  }
  .menu-toggle {
    order: 3;
    display: inline-flex;
    position: static;
    grid-column: 3;
    justify-self: end;
    z-index: 120;
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
  .header-actions .btn {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
    min-width: 0;
    display: none;
    margin-top: 2px;
  }
  .topbar.is-menu-open .header-actions .btn { display: inline-flex; }
  .nav {
    order: 5;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 2px 0 0;
  }
  .topbar.is-menu-open .nav { display: grid; }
  .nav a {
    min-height: 40px;
    justify-content: center;
    padding: 0 10px;
    font-size: 14px;
  }
  .hero { min-height: auto; }
  .hero-inner { padding: 36px 0 14px; gap: 22px; }
  .hero-points, .hero-offer, .grid-2, .grid-3, .grid-4, .program-row, .offer-band, .cta-strip, .infographic-grid, .tax-stat-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .offer-band, .cta-strip { align-items: start; }
  .btn { width: 100%; min-height: 56px; white-space: normal; text-align: center; }
  .map-box, .map-box iframe { min-height: 360px; }
  .quiz { gap: 16px; }
  .isolated-quiz-page {
    width: 100%;
    height: auto;
    min-height: 100svh;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
  }
  .isolated-quiz-page main {
    display: block;
    height: auto;
    min-height: 100svh;
    width: 100%;
    max-width: 100vw;
    padding: 0;
    align-items: start;
    overflow: visible;
  }
  .quiz-landing {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .quiz-traffic {
    height: auto;
    min-height: 100svh;
    box-shadow: none;
    background: #fff;
    overflow: visible;
  }
  .quiz-traffic.is-quiz-active {
    height: auto;
    min-height: 100svh;
  }
  .quiz-landing-visual {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    border-bottom: 1px solid var(--border);
  }
  .quiz-landing-visual img {
    object-position: center top;
  }
  .quiz-landing-stage {
    height: auto;
    min-height: calc(100svh - 64px);
    display: block;
    padding: 16px 24px 18px;
    overflow: visible;
  }
  .quiz-traffic.is-quiz-active .quiz-landing-stage {
    width: 100%;
    height: auto;
    min-height: 100svh;
    padding: 16px 16px 18px;
    overflow-y: auto;
  }
  .quiz-traffic.is-quiz-active .quiz-panel {
    max-height: none;
    overflow: visible;
  }
  .quiz-landing-brand-dark {
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }
  .quiz-landing-brand-dark img {
    width: 48px;
  }
  .quiz-landing-brand-dark span {
    display: block;
    white-space: normal;
    font-size: 13px;
  }
  .quiz-intro {
    max-width: none;
  }
  .quiz-intro h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.14;
  }
  .quiz-hero-list {
    margin-top: 16px;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.28;
  }
  .quiz-start-btn {
    width: 100%;
    min-height: 54px;
    margin-top: 16px;
    border-radius: 24px;
    font-size: 18px;
  }
  .quiz-bonuses {
    margin-top: 18px;
  }
  .quiz-bonuses p {
    font-size: 16px;
  }
  .quiz-bonuses div {
    gap: 10px;
  }
  .quiz-bonuses span {
    min-height: 58px;
    grid-template-columns: 38px 1fr;
    padding: 8px;
    font-size: 12px;
  }
  .quiz-bonuses b {
    font-size: 26px;
  }
  .quiz-landing-footer {
    position: static;
    margin-top: 14px;
  }
  .quiz-terms-link {
    margin-top: 4px;
  }
  .quiz-copy,
  .quiz-panel,
  .quiz-landing-copy { border-radius: 24px; }
  .quiz-copy { padding: 24px 20px; }
  .quiz-landing-copy,
  .quiz-landing-panel {
    width: 100%;
    max-width: 100%;
  }
  .quiz-landing-copy { padding: 22px 16px; }
  .quiz-landing-panel { margin-top: 14px; }
  .quiz-traffic .quiz-landing-panel { margin-top: 0; }
  .quiz-landing-brand { margin-bottom: 22px; }
  .quiz-landing-brand img { width: 132px; }
  .quiz-landing-brand span { display: none; }
  .quiz-landing-copy h1 { max-width: 318px; font-size: 27px; line-height: 1.12; }
  .quiz-landing-copy > p { font-size: 16px; }
  .quiz-landing-copy h1,
  .quiz-landing-copy p,
  .quiz-how p,
  .quiz-promo p,
  .quiz-promo strong {
    overflow-wrap: anywhere;
  }
  .quiz-copy h2 { font-size: 31px; }
  .quiz-copy p { font-size: 15px; }
  .quiz-how { margin-top: 20px; }
  .quiz-how div { grid-template-columns: 42px minmax(0, 1fr); }
  .quiz-panel { min-height: 0; padding: 18px; }
  .quiz-traffic .quiz-panel { padding: 0; }
  .quiz-progress { margin-bottom: 12px; }
  .quiz-traffic.is-quiz-active .quiz-step h3 {
    margin-top: 8px;
    font-size: 25px;
    line-height: 1.12;
  }
  .quiz-traffic.is-quiz-active .quiz-step p {
    font-size: 14px;
    line-height: 1.35;
  }
  .quiz-traffic .quiz-answer-grid { grid-template-columns: 1fr; }
  .quiz-traffic.is-quiz-active .quiz-answer-grid {
    gap: 8px;
    margin-top: 12px;
  }
  .quiz-traffic.is-quiz-active .option-card {
    min-height: 60px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .quiz-traffic.is-quiz-active .option-card strong { font-size: 16px; }
  .quiz-traffic.is-quiz-active .option-card span { font-size: 12px; }
  .quiz-traffic.is-quiz-active .quiz-custom-input .input { min-height: 46px; }
  .quiz-traffic.is-result-active .quiz-result {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quiz-traffic.is-result-active .quiz-final-copy h3 {
    margin-top: 10px;
    font-size: 24px;
  }
  .quiz-traffic.is-result-active .quiz-final-copy p,
  .quiz-traffic.is-result-active .quiz-final-copy li {
    font-size: 13px;
    line-height: 1.35;
  }
  .quiz-traffic.is-result-active .quiz-final-copy p,
  .quiz-traffic.is-result-active .quiz-final-copy ul { margin-top: 10px; }
  .quiz-traffic.is-result-active .quiz-final-form .field { gap: 4px; }
  .quiz-traffic.is-result-active .quiz-final-form .input { min-height: 48px; }
  .quiz-traffic.is-result-active .quiz-final-form .btn { min-height: 52px; }
  .quiz-traffic.is-result-active .consent-note { font-size: 10px; }
  .option-card { min-height: 78px; padding: 14px; }
  .option-card strong { font-size: 17px; }
  .quiz-nav {
    position: sticky;
    bottom: 76px;
    z-index: 2;
    grid-template-columns: 1fr 1.3fr;
    padding-top: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 28%);
  }
  .isolated-quiz-page .quiz-nav { bottom: 0; }
  h1 { font-size: clamp(34px, 10vw, 42px); }
  .lead { font-size: 17px; }
  .hero-copy { padding: 28px 20px; }
  .tax-stat-card { min-height: 0; padding: 24px 20px; }
  .tax-stat-card strong { font-size: 38px; }
  .tax-stat-card h3 { margin-top: 22px; font-size: 22px; }
  .article-block { padding: 24px 20px; border-radius: 24px; }
  .article-block-head h2 { font-size: 33px; }
  .article-columns { margin-top: 26px; }
  .article-columns article { margin-bottom: 22px; padding-top: 18px; }
  .article-columns h3 { font-size: 21px; }
  .article-columns p { font-size: 16px; }
  .hero-media { min-height: 320px; }
  .hero-points { padding-bottom: 40px; }
  .breadcrumbs + .hero-inner { padding-top: 24px; }
  .contact-list.compact { grid-template-columns: 1fr; }
  .branch-bullets { grid-template-columns: 1fr; }
  .branch-bullet { min-height: 0; }
  .contact-link { min-height: 78px; padding: 13px; }
  .map-gate-link {
    top: 36%;
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }
  .modal-content { padding: 22px 18px; }
  .modal-content .eyebrow { min-height: 32px; font-size: 13px; }
  .modal-content h2 { font-size: 28px; }
  .modal-content p { font-size: 14px; }
  .modal-media { min-height: 150px; aspect-ratio: 16 / 9; }
  .lead-modal { padding: 12px; }
  .step-grid,
  .review-grid,
  .people-grid,
  .branch-directory,
  .tariff-grid,
  .tariff-grid-wide,
  .requisites-grid,
  .mini-grid { grid-template-columns: 1fr; }
  .review-summary { align-items: start; }
  .review-summary .btn-row { width: 100%; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: .78fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(219, 227, 238, .9);
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
  }
  .mobile-sticky-cta a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 900;
  }
  .mobile-sticky-cta a:first-child { background: var(--surface-soft); color: var(--text); }
  .mobile-sticky-cta a:last-child { background: var(--accent); color: #fff; }
  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 78px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }
  .cookie-notice p { font-size: 11px; line-height: 1.35; }
  .cookie-notice .btn-small {
    width: 100%;
    min-height: 36px;
    font-size: 13px;
  }
}
