:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-dark: #111318;
  --text: #17191d;
  --muted: #626a76;
  --line: #dfe4eb;
  --yellow: #ffd12f;
  --yellow-deep: #e7a900;
  --cyan: #72d9ff;
  --success: #168a51;
  --shadow: 0 24px 70px rgba(14, 18, 25, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.74), rgba(9, 10, 12, 0));
}

.brand,
.header-phone,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: #111318;
  background: var(--yellow);
}

.main-nav {
  gap: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.header-phone {
  justify-content: end;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background: #0c0e12;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 209, 47, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.78) 42%, rgba(8, 9, 12, 0.44) 100%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.1) 0%, rgba(8, 9, 12, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  min-height: 820px;
  margin: 0 auto;
  padding: 92px 0 60px;
}

.hero-copy h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary,
.button-submit {
  color: #111318;
  background: var(--yellow);
}

.button-primary:hover,
.button-submit:hover {
  background: #ffe16c;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 44px 0 0;
}

.quick-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 16px;
}

.quick-facts dt {
  font-weight: 900;
}

.quick-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.35;
}

.lead-card {
  scroll-margin-top: 88px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px 26px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lead-card h2 {
  margin: 0;
  font-size: 25px;
}

.lead-card > p {
  margin: 7px 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

.lead-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 800;
}

.lead-card input,
.lead-card select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.lead-card input:focus,
.lead-card select:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(255, 209, 47, 0.24);
}

.car-choice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  border: 0 !important;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
}

.car-choice legend {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 900;
}

.car-choice label {
  display: block;
  margin: 0;
  min-width: 0;
  font-size: 13px;
}

.car-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.car-choice span {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 8px;
  background: #fff;
  color: var(--text);
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 1px 2px rgba(14, 18, 25, 0.04);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.car-choice input:checked + span {
  border-color: var(--yellow-deep);
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(231, 169, 0, 0.18);
}

.car-choice label:hover span {
  border-color: #cfd7e2;
  transform: translateY(-1px);
}

.car-choice input:focus-visible + span {
  outline: 2px solid var(--yellow-deep);
  outline-offset: 2px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.consent a {
  color: #2f6f91;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent input {
  min-height: 18px;
  margin-top: 1px;
}

.button-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
}

.form-status {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1200px, calc(100% - 40px));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(14, 18, 25, 0.12);
}

.proof-strip div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 17px;
}

.proof-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p,
.final-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}

.benefit-list .icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: #111318;
  color: var(--yellow);
  font-weight: 900;
}

.benefit-list h3,
.steps h3 {
  margin: 0;
  font-size: 20px;
}

.benefit-list p,
.steps p {
  margin: 0;
}

.routes-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
}

.route-dark {
  color: #fff;
  background: #111318;
  border-color: #111318;
}

.route-card p {
  margin: 18px 0 28px;
}

.route-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.route-card a {
  font-weight: 900;
  color: var(--yellow-deep);
}

.route-dark a {
  color: var(--yellow);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  border-top: 4px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px;
  background: var(--surface);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: #111318;
  background: var(--yellow);
  font-weight: 900;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 78px;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 209, 47, 0.18), transparent 38%),
    #111318;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 22px;
  align-items: center;
  padding: 30px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.74);
  background: #0d0f13;
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: #fff;
}

.mobile-action-bar {
  display: none;
}

.legal-document {
  max-width: 920px;
}

.legal-document h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.legal-document h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-document p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-document a:not(.button) {
  color: #2f6f91;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-date {
  font-weight: 800;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  font-weight: 900;
}

.thanks-page {
  min-height: 100vh;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 209, 47, 0.16), transparent 34%),
    #0d0f13;
}

.thanks-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.thanks-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 56px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.thanks-card h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
}

.thanks-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.6;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.thanks-card .button-secondary {
  min-height: 50px;
}

.admin-page {
  background: #eef2f6;
}

.admin-lock {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
}

.admin-lock-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(14, 18, 25, 0.12);
}

.admin-lock-card h1 {
  margin: 0;
}

.admin-lock-card p,
.admin-lock-card output {
  color: var(--muted);
}

.admin-lock-card label {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  font-weight: 800;
}

.admin-lock-card input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  font: inherit;
}

.admin-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.admin-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.admin-header p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 8px;
}

.admin-kpis span {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.admin-kpis strong {
  color: var(--text);
  font-size: 26px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(14, 18, 25, 0.06);
}

.admin-panel h2 {
  margin: 0 0 18px;
}

.admin-panel label,
.admin-panel fieldset {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
}

.admin-panel textarea {
  resize: vertical;
}

.admin-details {
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #f8fafc;
}

.admin-details summary {
  cursor: pointer;
  font-weight: 900;
}

.admin-panel fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.admin-panel legend {
  padding: 0 6px;
}

.admin-panel fieldset label {
  grid-template-columns: 18px 1fr;
  align-items: center;
  margin: 0;
  font-weight: 700;
}

.admin-panel fieldset input {
  min-height: auto;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.warnings-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.warnings-list p {
  margin: 0;
  border-left: 3px solid var(--yellow-deep);
  padding: 8px 10px;
  background: #fff8dc;
}

.admin-help {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.ad-preview {
  display: grid;
  gap: 7px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #f8fafc;
}

.ad-preview strong {
  color: #234f9d;
  font-size: 18px;
  line-height: 1.25;
}

.ad-preview span {
  color: #17823b;
  font-size: 13px;
}

.ad-preview p {
  margin: 0;
  color: var(--text);
  line-height: 1.42;
}

.ad-preview small {
  color: #315c9c;
}

.preview-panel {
  margin-top: 18px;
}

.stats-panel {
  margin-top: 18px;
}

.stats-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.inline-control {
  display: flex !important;
  width: min(240px, 100%);
  align-items: center;
  gap: 10px !important;
  margin: 0 !important;
}

.inline-control input {
  min-width: 110px;
}

.stats-summary {
  margin-bottom: 14px;
  border: 1px solid #d8ecdf;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #f2fbf5;
  color: #244b31;
  font-size: 14px;
  line-height: 1.55;
}

.creative-preview {
  display: grid;
  gap: 14px;
}

.creative-preview canvas {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #111318;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.preview-header span {
  color: var(--muted);
  font-size: 12px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

#ads-preview,
#stats-preview {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

#ads-preview {
  min-width: 1600px;
}

#stats-preview {
  min-width: 980px;
}

#ads-preview th,
#ads-preview td,
#stats-preview th,
#stats-preview td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

#ads-preview th,
#stats-preview th {
  position: sticky;
  top: 0;
  background: #f6f8fb;
  color: var(--text);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .lead-card {
    max-width: 620px;
  }

  .quick-facts,
  .proof-strip,
  .split-section,
  .routes-section,
  .section-heading,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(9, 10, 12, 0.88);
    backdrop-filter: blur(14px);
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    display: block;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
  }

  .header-phone {
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    overflow: visible;
  }

  .hero-media {
    height: 610px;
    overflow: hidden;
  }

  .hero-media img {
    object-position: 58% top;
  }

  .hero-shade {
    height: 610px;
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.9) 48%, rgba(8, 9, 12, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 9, 12, 0.96), rgba(8, 9, 12, 0.36));
  }

  .hero-content,
  .section,
  .proof-strip,
  .final-cta {
    width: min(100% - 24px, 1200px);
  }

  .hero-content {
    gap: 22px;
    padding: 86px 0 0;
  }

  .hero-copy h1 {
    max-width: 360px;
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 350px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions,
  .field-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .quick-facts div {
    border-top: 0;
    padding: 14px 0;
  }

  .quick-facts div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .quick-facts dt {
    font-size: 15px;
  }

  .quick-facts dd {
    font-size: 13px;
  }

  .lead-card {
    scroll-margin-top: 72px;
    width: 100%;
    margin-top: 2px;
    padding: 20px 16px 18px;
    border-color: rgba(17, 19, 24, 0.08);
    background: #fff;
    box-shadow: 0 16px 44px rgba(14, 18, 25, 0.2);
    backdrop-filter: none;
  }

  .lead-card h2 {
    font-size: 24px;
    line-height: 1.1;
  }

  .lead-card > p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .lead-card label {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .lead-card input,
  .lead-card select {
    min-height: 46px;
    font-size: 16px;
  }

  .car-choice {
    grid-template-columns: 1fr 1fr;
  }

  .car-choice span {
    min-height: 46px;
  }

  .car-choice label:last-child {
    grid-column: 1 / -1;
  }

  .consent {
    grid-template-columns: 20px 1fr;
    font-size: 11px;
  }

  .proof-strip {
    margin-top: 18px;
    box-shadow: none;
  }

  .proof-strip div {
    padding: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .split-section {
    gap: 24px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 29px;
    line-height: 1.12;
  }

  .section p,
  .final-cta p {
    font-size: 15px;
    line-height: 1.55;
  }

  .benefit-list article {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .benefit-list .icon {
    width: 42px;
    height: 42px;
  }

  .routes-section {
    gap: 12px;
    padding-top: 0;
  }

  .route-card {
    padding: 22px 18px;
  }

  .route-card p {
    margin: 14px 0 22px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 22px;
  }

  .steps {
    gap: 12px;
  }

  .steps li {
    padding: 18px;
  }

  .steps span {
    margin-bottom: 16px;
  }

  summary {
    padding: 17px 18px;
    font-size: 15px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .final-cta {
    margin-bottom: 24px;
    padding: 24px 18px;
  }

  .site-footer {
    gap: 14px;
    padding: 24px 14px;
  }

  .legal-document h1 {
    font-size: 32px;
  }

  .legal-document h2 {
    margin-top: 26px;
    font-size: 21px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(13, 15, 19, 0.92);
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-call {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
  }

  .mobile-lead {
    color: #111318;
    background: var(--yellow);
  }

  .thanks-shell {
    width: min(100% - 24px, 980px);
    padding: 70px 0;
  }

  .thanks-card p {
    font-size: 16px;
  }

  .thanks-actions {
    display: grid;
  }

  .admin-shell {
    width: min(100% - 24px, 1440px);
    padding-top: 22px;
  }

  .admin-header,
  .admin-grid,
  .admin-kpis {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 16px;
  }

  .admin-actions {
    display: grid;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    display: none;
  }

  .hero-copy h1 {
    font-size: 33px;
  }
}
