:root {
  --navy: #061d3d;
  --navy-2: #0b2d57;
  --blue: #1d5da8;
  --gold: #d8aa68;
  --gold-2: #efd3a5;
  --text: #10233f;
  --muted: #5b6980;
  --line: #dbe3ee;
  --soft: #f4f7fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(9, 31, 66, .1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: var(--white);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 56px, 1220px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 227, 238, .65);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 86px;
}

.logo-link img {
  width: 170px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.main-nav a {
  position: relative;
  padding-block: 31px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone {
  display: grid;
  gap: 1px;
  color: var(--navy);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.phone span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(6, 29, 61, .18);
}

.btn-light,
.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: #d7c2a3;
}

.btn-gold {
  width: 100%;
  color: var(--white);
  background: linear-gradient(180deg, #dfb878, #c99553);
}

.hero {
  overflow: hidden;
}

.hero-home {
  padding: 38px 0 18px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  gap: 18px;
  align-items: center;
  min-height: 500px;
}

.hero .container,
.kb-hero .container {
  width: min(100% - 56px, 1320px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Inter", Arial, sans-serif;
}

h1 {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 84px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -0.03168em;
  text-transform: uppercase;
}

.hero-home h1 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.lead {
  max-width: 500px;
  margin-bottom: 28px;
  color: #243b59;
  font-size: 16px;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 14px;
}

.hero-points li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 36px;
}

.hero-points img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  align-self: stretch;
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(1120px, 172%);
  max-width: none;
  margin-left: -300px;
  filter: saturate(1.02);
}

.section {
  padding: 34px 0;
}

.benefits-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #052b54);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefits-panel article {
  min-height: 145px;
  padding: 0 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .38);
}

.benefits-panel article:last-child {
  border-right: 0;
}

.benefits-panel h3 {
  color: var(--gold);
}

.benefits-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
}

.line-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  object-fit: contain;
  margin-inline: auto;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}

.process-steps article {
  position: relative;
}

.process-steps article:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: -22px;
  color: var(--gold);
  content: "→";
}

.step-icon {
  width: 62px;
  height: 58px;
  margin-bottom: 8px;
  object-fit: contain;
  margin-inline: auto;
}

.process-steps b {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 28px;
  margin: 0 auto 16px;
  color: var(--white);
  background: var(--gold);
  border-radius: 14px;
  font-size: 14px;
}

.process-steps p,
.check-list p,
.import-list p,
.mini-articles h3,
.faq p {
  color: var(--muted);
  font-size: 14px;
}

.notice {
  margin: 32px 0 0;
  padding: 20px 24px 20px 62px;
  color: #293f5d;
  background: var(--soft);
  border-radius: 8px;
  position: relative;
}

.notice::before {
  position: absolute;
  top: 19px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "i";
  font-weight: 800;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.car-card {
  padding: 18px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.car-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  margin-bottom: 10px;
}

.car-card:not(:last-child) img {
  transform: scale(1.08);
}

.car-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.car-card strong {
  color: var(--navy);
  font-size: 17px;
}

.footnote {
  max-width: 900px;
  margin: 16px 0 0;
  color: #2b3d57;
  font-size: 13px;
}

.split-section {
  padding-top: 48px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
}

.two-columns > div + div {
  padding-left: 58px;
  border-left: 1px solid var(--line);
}

.check-list,
.import-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.check-list article {
  position: relative;
  padding-left: 54px;
}

.check-list article::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "✓";
}

.import-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 16px;
  align-items: center;
}

.import-list img {
  height: 56px;
  object-fit: contain;
  justify-self: end;
}

.lower-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr .98fr;
  gap: 34px;
  align-items: start;
}

.article-preview,
.faq {
  min-width: 0;
}

.mini-articles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.mini-articles article {
  min-width: 0;
}

.mini-articles img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 8px;
}

.mini-articles h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 13px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.faq details + details {
  margin-top: 8px;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::after {
  content: "+";
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0;
  padding: 0 16px 16px;
}

.lead-card {
  padding: 28px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #03284e);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-lead-section {
  padding-top: 14px;
  padding-bottom: 14px;
}

.lead-card-wide {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(520px, 1.55fr);
  gap: 48px;
  align-items: center;
  max-width: none;
  padding: 34px 38px;
}

.lead-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-card h2,
.lead-card p {
  color: var(--white);
}

.lead-card h2 {
  font-size: 23px;
}

.lead-card-wide h2 {
  max-width: 500px;
  margin-bottom: 28px;
  font-size: 31px;
  line-height: 1.25;
}

.request-form {
  display: grid;
  gap: 12px;
}

.wide-request-form {
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 14px 30px;
  align-items: center;
}

.wide-request-form .form-grid,
.wide-request-form > label,
.wide-request-form .form-status {
  grid-column: 1;
}

.wide-request-form > label textarea {
  min-height: 88px;
}

.wide-form-actions {
  display: grid;
  gap: 18px;
  grid-column: 2;
  grid-row: 1 / span 3;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  font-size: 12px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--white);
}

.lead-card-wide input,
.lead-card-wide textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
}

.lead-card-wide input::placeholder,
.lead-card-wide textarea::placeholder {
  color: rgba(255, 255, 255, .55);
}

textarea {
  resize: vertical;
}

.agree {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.agree a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.agree input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-2);
  font-size: 13px;
}

.form-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  text-align: center;
}

.lead-card-wide .form-points {
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin-top: 0;
  text-align: left;
}

.lead-card-wide .form-points li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.form-points img {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.lead-card-wide .form-points img {
  width: 34px;
  height: 34px;
  margin: 0;
}

.site-footer {
  margin-top: 36px;
  padding: 48px 0;
  color: var(--white);
  background: radial-gradient(circle at 90% 10%, rgba(29, 93, 168, .5), transparent 30%), linear-gradient(135deg, #041a35, #062d57);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.35fr 1.3fr;
  gap: 48px;
}

.footer-grid > * + * {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.footer-grid img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-grid .footer-logo-mark {
  width: 64px;
  height: 64px;
  padding: 6px;
  background: var(--white);
  border-radius: 50%;
  object-fit: contain;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 16px;
  text-transform: none;
}

.footer-grid p,
.footer-grid a,
.footer-grid span,
.footer-grid small {
  display: block;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-style: normal;
}

.footer-grid a + a {
  margin-top: 8px;
}

/* Knowledge base */
.kb-hero {
  padding: 28px 0 18px;
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 15px;
}

.kb-hero-grid {
  grid-template-columns: 1fr;
  min-height: auto;
}

.kb-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

.kb-hero p {
  color: #1e395c;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.55;
}

.kb-hero .hero-visual {
  display: none;
}

.kb-hero img {
  width: min(560px, 100%);
  margin-left: 0;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-row a {
  color: var(--navy);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.article-card {
  display: grid;
  min-height: 410px;
  padding: 26px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.article-card p {
  color: var(--muted);
}

.article-card span {
  align-self: end;
  color: #31547a;
  font-size: 14px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 32px;
}

.filter-buttons button,
.filter-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.filter-buttons button.active,
.filter-buttons a.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.article-list {
  display: grid;
}

.list-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 112px 122px 34px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.list-item img {
  width: 210px;
  height: 105px;
  object-fit: contain;
}

.list-item p {
  max-width: 650px;
  margin-bottom: 8px;
  color: var(--muted);
}

.list-item a:not(.arrow-link) {
  color: var(--blue);
}

.list-item time,
.list-item span {
  color: #31547a;
}

.arrow-link {
  color: var(--navy);
  font-size: 34px;
}

.kb-cta {
  padding: 24px 0 22px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 92px 1fr 320px;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  background: #eef5ff;
  border-radius: 14px;
}

.cta-panel img {
  width: 78px;
}

.cta-panel h2 {
  margin-bottom: 6px;
  text-transform: none;
}

.cta-panel p {
  margin: 0;
  color: #243b59;
  font-size: 19px;
}

/* Article pages */
.article-hero {
  padding: 42px 0 34px;
  background: linear-gradient(180deg, #f6f9fd, #fff);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
}

.article-hero h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: none;
}

.article-hero p {
  max-width: 780px;
  color: #1e395c;
  font-size: 19px;
  line-height: 1.6;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-hero-grid > img {
  width: 360px;
  max-width: 100%;
  justify-self: end;
}

.article-category {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  background: #e8f1fb;
  border-radius: 999px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  color: #31547a;
  font-size: 14px;
}

.article-meta > * {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.article-meta > * + *::before {
  margin: 0 10px;
  content: "•";
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  gap: 56px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 112px;
  display: grid;
  width: 100%;
  max-width: 260px;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-toc strong {
  color: var(--navy);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 14px;
}

.article-toc a {
  color: var(--muted);
  font-size: 14px;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.25;
  text-transform: none;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin-top: 24px;
  font-size: 19px;
}

.article-content p,
.article-content li {
  color: #243b59;
  font-size: 17px;
  line-height: 1.75;
}

.article-content p {
  margin-bottom: 18px;
}

.article-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 24px;
}

.article-lead {
  padding: 22px 24px;
  color: var(--navy) !important;
  background: #eef5ff;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 22px 24px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  background: #fff7eb;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.article-faq {
  margin-top: 40px;
}

.article-faq details {
  border-color: var(--line);
}

.article-faq summary {
  font-size: 16px;
}

.article-sources {
  margin-top: 36px;
}

.article-sources a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 170px 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-bottom: 16px;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 18px;
  }

  .benefits-panel,
  .process-steps,
  .car-grid,
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-panel article:nth-child(2n) {
    border-right: 0;
  }

  .process-steps article::after {
    display: none;
  }

  .lower-grid,
  .two-columns,
  .hero-grid,
  .kb-hero-grid {
    grid-template-columns: 1fr;
  }

  .two-columns > div + div {
    padding-left: 0;
    border-left: 0;
  }

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

  .lead-card-wide {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .wide-request-form {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual,
  .kb-hero-grid {
    min-height: 360px;
  }

  .kb-hero-grid {
    min-height: auto;
  }

  .hero-visual img,
  .kb-hero img {
    width: min(920px, 120%);
    margin-left: max(-120px, -12vw);
    justify-self: center;
  }

  .list-item {
    grid-template-columns: 170px minmax(0, 1fr) 100px 112px 28px;
  }

  .list-item img {
    width: 160px;
  }

  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-hero img {
    width: 360px;
    max-width: 100%;
    justify-self: start;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    max-width: 320px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1220px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    min-height: auto;
    padding: 16px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .main-nav a {
    padding-block: 8px;
    white-space: nowrap;
  }

  .header-actions {
    margin-left: auto;
    padding-bottom: 0;
  }

  .phone {
    display: none;
  }

  .hero-home {
    padding-top: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual img,
  .kb-hero img {
    width: min(760px, 128%);
    margin-left: -18%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .benefits-panel,
  .process-steps,
  .car-grid,
  .popular-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefits-panel article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    padding: 22px 0;
  }

  .benefits-panel article:last-child {
    border-bottom: 0;
  }

  .wide-request-form {
    grid-template-columns: 1fr;
  }

  .wide-request-form .form-grid,
  .wide-request-form > label,
  .wide-request-form .form-status,
  .wide-form-actions {
    grid-column: 1;
  }

  .wide-form-actions {
    grid-row: auto;
  }

  .mini-articles {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > * + * {
    padding-left: 0;
    border-left: 0;
  }

  .kb-hero-grid {
    gap: 20px;
  }

  .list-item {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }

  .list-item time,
  .list-item span,
  .arrow-link {
    grid-column: 2;
  }

  .list-item img {
    width: 115px;
    height: 88px;
  }

  .cta-panel {
    grid-template-columns: 74px 1fr;
  }

  .cta-panel .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  .hero-home h1 {
    font-size: clamp(24px, 8vw, 32px);
  }

  h2 {
    font-size: 23px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    width: 100%;
  }

  .hero .container,
  .kb-hero .container {
    width: min(100% - 32px, 1320px);
  }

  .hero-visual,
  .kb-hero-grid {
    min-height: 245px;
  }

  .kb-hero-grid {
    min-height: auto;
  }

  .hero-visual img,
  .kb-hero img {
    width: 150%;
    margin-left: -34%;
  }

  .benefits-panel,
  .lead-card,
  .cta-panel {
    padding: 22px;
  }

  .form-grid,
  .form-points,
  .mini-articles,
  .import-list article {
    grid-template-columns: 1fr;
  }

  .import-list img {
    justify-self: start;
  }

  .article-card {
    min-height: auto;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-buttons button,
  .filter-buttons a {
    flex: 1 1 auto;
  }

  .article-hero {
    padding-top: 28px;
  }

  .article-hero h1 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .article-hero p,
  .article-content p,
  .article-content li {
    font-size: 16px;
  }
}

.legal-page {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 56px 0 72px;
}

.legal-page h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.legal-page h2 {
  margin-top: 34px;
}

.legal-page p,
.legal-page li {
  color: #243b59;
}

.legal-page a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
