:root {
  --navy: #0b1726;
  --navy-soft: #14263a;
  --blue: #1668e3;
  --blue-dark: #0a54bd;
  --blue-light: #eaf2ff;
  --ice: #f4f7fb;
  --text: #142033;
  --muted: #637083;
  --white: #fff;
  --border: #dbe3ed;
  --green: #32d583;
  --shadow: 0 24px 65px rgba(11, 23, 38, .13);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 9px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #82b5ff;
  outline-offset: 3px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(219, 227, 237, .92);
  box-shadow: 0 4px 22px rgba(11, 23, 38, .04);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: 128px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav > a:not(.btn) {
  position: relative;
  color: #243247;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav > a:not(.btn):hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  color: var(--white) !important;
  background: var(--blue);
  box-shadow: 0 9px 20px rgba(22, 104, 227, .18);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(22, 104, 227, .26);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding: 9px 16px;
}

.btn-outline {
  border-color: #8e9caf;
  color: var(--navy) !important;
  background: rgba(255, 255, 255, .74);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--white) !important;
  background: var(--navy);
}

.btn-full { width: 100%; }

.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.65px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  background: linear-gradient(130deg, #fff 0%, #f7faff 55%, #edf4ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: linear-gradient(rgba(22, 104, 227, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 104, 227, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 66%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  right: -170px;
  top: -230px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(75, 142, 244, .2), rgba(75, 142, 244, 0) 69%);
}

.hero-orb-two {
  bottom: -220px;
  left: 28%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(22, 104, 227, .11), rgba(22, 104, 227, 0) 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(350px, .72fr);
  gap: clamp(46px, 7vw, 90px);
  align-items: center;
}

.hero-copy { max-width: 720px; }

.hero h1 {
  max-width: 760px;
  margin: 0 0 25px;
  color: var(--navy);
  font-size: clamp(48px, 6.1vw, 76px);
  font-weight: 850;
  letter-spacing: -3.6px;
  line-height: .99;
}

.hero h1 span { color: var(--blue); }

.hero-text {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 32px 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  position: relative;
  padding-left: 23px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.trust-row li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(150deg, var(--navy-soft), #07111d);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(22, 104, 227, .22);
  filter: blur(4px);
  pointer-events: none;
}

.hero-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.availability {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #d8e2ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(50, 213, 131, .13);
}

.hero-logo {
  width: 100%;
  height: 174px;
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, .48)) drop-shadow(0 14px 24px rgba(0, 0, 0, .22));
}

.hero-card h2 {
  position: relative;
  z-index: 1;
  margin: 24px 0 7px;
  font-size: 30px;
  line-height: 1.2;
}

.hero-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 21px;
  color: #bec9d7;
  font-size: 15px;
}

.quick-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.quick-contact a {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .055);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}

.quick-contact a:hover {
  border-color: rgba(130, 181, 255, .55);
  background: rgba(22, 104, 227, .2);
}

.quick-contact a > span {
  grid-row: 1 / 3;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #9ec2fb;
  background: rgba(22, 104, 227, .22);
  font-size: 11px;
  font-weight: 900;
}

.quick-contact strong { font-size: 14px; }
.quick-contact small { color: #aebccd; font-size: 12px; }

.stats {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.stats-grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .09); }
.stats strong { font-size: 23px; line-height: 1.2; }
.stats span { margin-top: 7px; color: #aebdce; font-size: 12px; line-height: 1.45; }

.section { padding: 100px 0; }
.section-alt { background: var(--ice); }

.section-head { max-width: 780px; margin-bottom: 44px; }
.section-head.centered-head { margin-inline: auto; text-align: center; }

.section-head h2,
.dark-section h2,
.quote-section h2,
.legal-shell h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(35px, 4.4vw, 52px);
  font-weight: 820;
  letter-spacing: -2px;
  line-height: 1.08;
}

.section-head p { margin: 0; color: var(--muted); font-size: 17px; }

.split-head {
  display: grid;
  max-width: none;
  grid-template-columns: 1.1fr .85fr;
  gap: 80px;
  align-items: end;
}

.split-head h2 { margin-bottom: 0; }

.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  min-height: 310px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 28px rgba(20, 40, 70, .055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
  border-color: #b8d1f7;
  box-shadow: 0 19px 46px rgba(20, 40, 70, .1);
  transform: translateY(-5px);
}

.line-icon {
  display: inline-flex;
  width: 61px;
  height: 61px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--blue);
  background: var(--blue-light);
}

.line-icon svg { width: 33px; height: 33px; }
.line-icon path, .line-icon circle { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.5; }

.card-number {
  position: absolute;
  top: 28px;
  right: 29px;
  color: #c3cddd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.card h3, .vehicle-card h3 {
  margin: 27px 0 9px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.card p, .vehicle-card p { margin: 0; color: var(--muted); }

.vehicle-grid { padding-top: 9px; }

.vehicle-card {
  position: relative;
  overflow: hidden;
  padding: 31px 28px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(20, 40, 70, .05);
  text-align: center;
}

.vehicle-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 20px 45px rgba(22, 104, 227, .12);
  transform: translateY(-9px);
}

.vehicle-card.featured::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #eef5ff;
}

.vehicle-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 6px 11px;
  border-radius: 99px;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.vehicle-drawing {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 110px;
  margin: 22px auto 5px;
  color: #273a50;
}

.vehicle-drawing path { fill: currentColor; }
.vehicle-drawing .window { fill: #b9d4f8; }
.vehicle-drawing circle { fill: #f7f9fc; stroke: currentColor; stroke-width: 8; }
.vehicle-drawing.truck { color: #1e324a; }
.vehicle-card h3 { margin-top: 17px; }

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.dark-section::before {
  content: "";
  position: absolute;
  top: -250px;
  left: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 104, 227, .28), transparent 69%);
}

.dark-section h2 { color: var(--white); }
.dark-section p { color: #b9c6d5; font-size: 18px; }
.eyebrow.light { color: #82b5ff; }

.europe-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(55px, 8vw, 100px);
  align-items: center;
}

.europe-grid > div:first-child > p { margin: 0 0 28px; }

.country-panel {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
}

.country-panel .panel-label {
  margin: 0 0 18px;
  color: #8293a8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.country-grid span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  color: #e4ebf3;
  background: rgba(255, 255, 255, .045);
  font-size: 14px;
  font-weight: 650;
}

.country-panel .other-countries { margin: 19px 0 0; color: #9eacbd; font-size: 13px; }
.other-countries a { color: #9fc3ff; font-weight: 800; }

.process-section { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 210px;
  padding: 29px 26px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: var(--white);
}

.steps li:first-child { border-radius: 18px 0 0 18px; }
.steps li:last-child { border-right: 1px solid var(--border); border-radius: 0 18px 18px 0; }

.steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 35px;
  right: -15px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  font-weight: 900;
}

.steps b {
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 1px;
}

.steps h3 { margin: 36px 0 7px; color: var(--navy); font-size: 20px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.faq-grid .section-head { position: sticky; top: 118px; margin-bottom: 0; }

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 23px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details { border-bottom: 1px solid var(--border); }

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  font-size: 22px;
  font-weight: 500;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 52px 23px 0; color: var(--muted); }

.quote-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #edf4ff, #f9fbfe);
}

.quote-section::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 104, 227, .14), transparent 70%);
  pointer-events: none;
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .77fr 1.23fr;
  gap: clamp(55px, 8vw, 95px);
  align-items: start;
}

.quote-copy { padding-top: 22px; }
.quote-copy > p { color: var(--muted); font-size: 17px; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 29px;
}

.contact-list a, .contact-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-items: center;
  padding: 13px 0;
  color: var(--text);
  text-decoration: none;
}

.contact-list a > span, .contact-list > div > span {
  grid-row: 1 / 3;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 6px 17px rgba(20, 40, 70, .08);
  font-size: 12px;
  font-weight: 900;
}

.contact-list b { font-size: 15px; }
.contact-list small { color: var(--muted); font-size: 12px; }

.quote-form {
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid rgba(219, 227, 237, .9);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border);
}

.form-heading h3 { margin: 0; color: var(--navy); font-size: 24px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 12px; }

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

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
}

label > span { color: #344054; font-size: 13px; font-weight: 800; }

input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cfd9e5;
  border-radius: 9px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}

input, select { min-height: 48px; }
textarea { min-height: 125px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(22, 104, 227, .12);
}

.privacy-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.privacy-note a { color: var(--blue-dark); font-weight: 700; }

.form-status {
  min-height: 0;
  margin: 12px 0 0;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.form-status:empty { display: none; }
.form-status.error { color: #b42318; }

.footer {
  padding: 68px 0 22px;
  color: #b9c6d5;
  background: #07121f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: 65px;
}

.footer-intro { max-width: 310px; }
.footer-logo {
  width: 170px;
  height: 82px;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, .38));
}
.footer-intro p { max-width: 300px; margin-top: 17px; }
.footer h2 { margin: 7px 0 17px; color: var(--white); font-size: 15px; letter-spacing: .2px; }
.footer address { font-style: normal; }
.footer p { margin: 11px 0; }
.footer a { color: #c9d5e2; }
.footer a:hover { color: var(--white); }

.footer-links { display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #7f90a4;
  font-size: 12px;
}

/* Pages légales */
.legal-page { background: var(--ice); }
.legal-header { position: static; }
.back-link { color: var(--blue); font-weight: 800; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

.legal-main { padding: 65px 0 90px; }

.legal-shell {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(11, 23, 38, .08);
}

.legal-shell h1 { font-size: clamp(38px, 5vw, 58px); }
.legal-lead { margin: 0 0 35px; color: var(--muted); font-size: 17px; }
.legal-shell section { padding: 26px 0; border-top: 1px solid var(--border); }
.legal-shell h2 { margin: 0 0 12px; color: var(--navy); font-size: 21px; }
.legal-shell h3 { margin: 20px 0 8px; color: var(--navy); font-size: 16px; }
.legal-shell p, .legal-shell li { color: #4f5d70; }
.legal-shell ul { padding-left: 22px; }
.legal-shell a { color: var(--blue-dark); }

.notice {
  padding: 16px 18px;
  border: 1px solid #f7c66a;
  border-radius: 11px;
  color: #7a4b00 !important;
  background: #fff8e8;
}

.legal-updated { margin: 27px 0 0; color: #7d8999; font-size: 12px; }

@media (max-width: 1000px) {
  .nav { gap: 18px; }
  .nav > a:not(.btn) { font-size: 14px; }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .8fr); gap: 42px; }
  .hero h1 { font-size: clamp(48px, 6.5vw, 66px); }
  .split-head { gap: 50px; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 880px) {
  html { scroll-padding-top: 78px; }
  .nav-wrap { min-height: 70px; }
  .brand-logo { width: 112px; height: 52px; }
  .menu-toggle { display: block; }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease, opacity .2s ease, border-color .2s ease;
  }

  .nav.open {
    max-height: 450px;
    padding: 13px 24px 22px;
    border-color: var(--border);
    box-shadow: 0 18px 30px rgba(11, 23, 38, .08);
    opacity: 1;
    pointer-events: auto;
  }

  .nav > a:not(.btn) { padding: 12px 4px; }
  .nav > a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 10px; }

  .hero { padding: 70px 0; }
  .hero-grid, .europe-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-card { max-width: 580px; }
  .hero-logo { height: 200px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div:nth-child(2) { border-right: 1px solid rgba(255, 255, 255, .09); }
  .stats-grid > div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .09); }
  .section { padding: 80px 0; }
  .cards.three { grid-template-columns: 1fr 1fr; }
  .cards.three > :last-child { grid-column: 1 / -1; }
  .vehicle-card.featured { transform: none; }
  .vehicle-grid > :last-child { max-width: calc(50% - 11px); margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps li, .steps li:first-child, .steps li:last-child { border: 1px solid var(--border); border-radius: 16px; }
  .steps li:not(:last-child)::after { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .section-head { position: static; }
  .quote-copy { padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 30px, 1180px); }
  .hero { padding: 55px 0 58px; }
  .hero h1 { font-size: clamp(43px, 13.3vw, 58px); letter-spacing: -2.6px; }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 23px; border-radius: 21px; }
  .hero-logo { height: 155px; }
  .hero-card h2 { font-size: 26px; }
  .trust-row { gap: 10px 17px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div { min-height: 92px; padding: 20px 22px; border-right: 1px solid rgba(255, 255, 255, .09); border-bottom: 1px solid rgba(255, 255, 255, .09); }
  .section { padding: 68px 0; }
  .section-head h2, .dark-section h2, .quote-section h2 { font-size: 36px; letter-spacing: -1.5px; }
  .split-head { grid-template-columns: 1fr; gap: 18px; }
  .cards.three { grid-template-columns: 1fr; }
  .cards.three > :last-child { grid-column: auto; }
  .card { min-height: 0; }
  .vehicle-grid > :last-child { max-width: none; }
  .country-panel { padding: 20px; }
  .country-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; }
  .steps h3 { margin-top: 22px; }
  .faq-list summary { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { flex-direction: column; gap: 4px; }
  .quote-form { border-radius: 19px; }
  .footer { padding-top: 55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .legal-main { padding: 30px 0 60px; }
  .legal-shell { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
