:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5f6963;
  --line: #d9dfda;
  --soft: #f4f7f5;
  --paper: #ffffff;
  --orange: #d6a842;
  --orange-dark: #9a6a16;
  --orange-soft: #fbf4df;
  --green: #21634f;
  --green-dark: #174839;
  --green-soft: #e9f2ee;
  --navy: #1b4b8f;
  --navy-soft: #e8eef8;
  --amber: #9a6a16;
  --amber-soft: #fbf4df;
  --silver: #cbd5e1;
  --silver-dark: #64748b;
  --danger: #9b3131;
  --shadow: 0 8px 24px rgba(23, 32, 28, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px max(24px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid #e7eaf0;
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 215px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-domain {
  color: var(--orange-dark);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green);
}

.header-action,
.primary-button,
.contact-button,
.card-action {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.header-action {
  padding: 10px 15px;
  background: var(--navy);
  color: white;
  font-size: 13px;
}

.intro-band {
  min-height: 720px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.hero-shell {
  width: min(1240px, calc(100% - 48px));
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 64px;
  margin: 0 auto;
  padding: 62px 0;
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 14px;
  border: 1px solid rgba(214, 168, 66, 0.55);
  border-radius: 18px;
  color: #f4d78d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-copy h1 {
  max-width: 730px;
  margin: 0 0 22px;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(214, 168, 66, 0.3);
  text-decoration-thickness: 8px;
  text-underline-offset: 4px;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-actions .primary-button,
.secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.hero-actions .primary-button {
  background: var(--orange);
  color: var(--ink);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--orange);
  color: #f4d78d;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.hero-stats div {
  min-width: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-disclosure {
  max-width: 700px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(214, 168, 66, 0.45);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.hero-disclosure strong {
  color: #f4d78d;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(510px, 100%);
  height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.25));
}

.criteria-tag {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.criteria-tag b {
  color: var(--orange-dark);
  font-size: 15px;
}

.tag-terrain { right: 0; bottom: 110px; }
.tag-cost { left: 16px; bottom: 70px; }
.tag-usage { right: 60px; top: 58px; }

.method-band {
  background: white;
  border-bottom: 1px solid var(--line);
}

.method-band-grid {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
}

.method-band article {
  min-height: 172px;
  padding: 30px 28px;
  border-left: 1px solid var(--line);
}

.method-band article:last-child {
  border-right: 1px solid var(--line);
}

.method-band article > span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.method-band h2 {
  margin: 7px 0 6px;
  font-size: 17px;
}

.method-band p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.methodology-section .eyebrow,
.reviews-section .eyebrow {
  color: #f4d78d;
}

.contact-band .eyebrow {
  color: var(--green-dark);
}

.advisor-section,
.results-section,
.catalogue-section,
.brands-section,
.guides-section,
.faq-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 58px 24px;
}

#conseiller,
#resultats,
#methodologie,
#catalogue,
#marques,
#guides,
#avis,
#faq {
  scroll-margin-top: 76px;
}

.brands-section {
  padding-top: 74px;
  padding-bottom: 42px;
}

.brands-heading {
  max-width: 900px;
  align-items: flex-start;
  margin-bottom: 0;
}

.section-intro {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 26px;
}

.brand-chip {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid #d7dde5;
  border-radius: 20px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.brand-chip:hover,
.brand-chip:focus-visible,
.brand-chip.active {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.brand-chip.tracked {
  border-style: dashed;
  background: #fbfcfb;
  color: #6d7883;
}

.brand-chip.catalogued {
  border-color: #b8c7d8;
  background: #f4f7fa;
}

.brand-chip sup {
  margin-left: 2px;
  color: var(--orange-dark);
  font-size: 9px;
}

.brand-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.advisor-section {
  padding-top: 44px;
  padding-bottom: 42px;
}

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

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-note {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.advisor-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.advisor-form label,
.search-field {
  display: grid;
  gap: 7px;
}

.advisor-form label > span {
  color: #46514b;
  font-size: 12px;
  font-weight: 700;
}

select,
input[type="search"],
input[type="password"],
input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #cbd4ce;
  border-radius: 6px;
  outline: none;
  background: white;
  color: var(--ink);
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(33, 99, 79, 0.14);
}

.primary-button {
  min-height: 46px;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--green);
  color: white;
}

.primary-button:hover,
.primary-button:focus-visible,
.header-action:hover,
.contact-button:hover,
.card-action:hover {
  background: var(--green-dark);
}

.method-details {
  margin-top: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.method-details summary {
  width: fit-content;
  padding: 7px 0 12px;
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
}

.method-details > p {
  margin: 0 0 16px;
}

.weight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 10px;
}

.weight-pill {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
}

.results-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - 1220px) / 2));
  padding-left: max(24px, calc((100vw - 1220px) / 2));
  background: var(--soft);
}

.top-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-card,
.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.result-card:first-child {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f8faf8;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.card-media img.cover {
  object-fit: cover;
}

.score-badge,
.type-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.score-badge {
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: white;
}

.type-badge {
  top: 12px;
  left: 12px;
  background: var(--navy-soft);
  color: var(--navy);
}

.source-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.result-card-body,
.vehicle-card-body {
  padding: 18px;
}

.card-rank {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-brand {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.result-card h3,
.vehicle-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.card-summary {
  min-height: 63px;
  margin: 9px 0 13px;
  color: var(--muted);
  font-size: 13px;
}

.reason-list {
  display: grid;
  gap: 8px;
  min-height: 105px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.reason-list li {
  position: relative;
  padding-left: 18px;
  color: #39463f;
  font-size: 12px;
}

.reason-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.price-label span {
  display: block;
}

.price-label > span:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.budget-display {
  display: grid !important;
  gap: 5px;
}

.budget-coins {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.budget-coin {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.3), inset 0 -3px 4px rgba(16, 24, 32, 0.14), 0 2px 4px rgba(16, 24, 32, 0.12);
}

.budget-coin::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(16, 24, 32, 0.22);
  border-radius: 50%;
}

.budget-coin.gold {
  border: 1px solid #9a6a16;
  background: var(--orange);
}

.budget-coin.silver {
  border: 1px solid #7c8999;
  background: var(--silver);
}

.budget-tier-label,
.budget-unconfirmed {
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 800;
  line-height: 1.2;
}

.budget-tier-label sup {
  margin-left: 2px;
  color: var(--orange-dark);
  font-size: 10px;
}

.card-action {
  min-height: 38px;
  padding: 8px 12px;
  background: var(--green);
  color: white;
  font-size: 12px;
}

.methodology-section {
  padding: 56px max(24px, calc((100vw - 1220px) / 2));
  background: var(--navy);
  color: white;
}

.light-heading .section-note {
  color: rgba(255, 255, 255, 0.68);
}

.footnote-marker {
  color: #f4d78d;
  font-size: 18px;
  vertical-align: top;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.strength-item {
  min-height: 132px;
  padding: 22px 24px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.strength-item:not(:nth-child(3n + 1)) {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.strength-item h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.strength-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.method-footnote {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.catalogue-tools {
  display: flex;
  gap: 10px;
  width: min(100%, 460px);
}

.search-field {
  flex: 1;
}

.catalogue-tools select {
  width: 190px;
}

.catalogue-count {
  margin: -8px 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.catalogue-estimate-note {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalogue-more {
  min-height: 44px;
  display: block;
  margin: 24px auto 0;
  padding: 10px 18px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background: white;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.catalogue-more[hidden] {
  display: none;
}

.catalogue-more:hover {
  background: var(--navy-soft);
}

.vehicle-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.vehicle-card .card-media {
  height: 175px;
}

.vehicle-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.vehicle-card h3 {
  font-size: 17px;
}

.vehicle-card .card-summary {
  min-height: 58px;
  margin: 8px 0 12px;
  font-size: 12px;
}

.catalogue-source {
  min-height: 30px;
  margin: 0 0 10px;
  color: #667487;
  font-size: 10px;
  line-height: 1.4;
}

.vehicle-card .price-row {
  margin-top: auto;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px max(24px, calc((100vw - 1220px) / 2));
  background: var(--orange);
  color: var(--ink);
}

.contact-band h2 {
  margin-bottom: 7px;
}

.contact-band p:last-child {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

.contact-button {
  flex: 0 0 auto;
  padding: 13px 18px;
  background: white;
  color: var(--navy);
}

.contact-button:hover {
  background: #eef5f2;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px max(24px, calc((100vw - 1220px) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.guides-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - 1220px) / 2));
  padding-left: max(24px, calc((100vw - 1220px) / 2));
  background: var(--soft);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 8px solid var(--navy);
  border-radius: var(--radius);
  background: white;
}

.guide-choice,
.guide-finance { border-top-color: var(--orange); }
.guide-care { border-top-color: #27836f; }
.guide-pro { border-top-color: #b4233c; }
.guide-budget { border-top-color: #3a4657; }

.guide-card > span {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 4px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 18px 0 9px;
  font-size: 18px;
  line-height: 1.3;
}

.guide-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.guide-card small {
  margin-top: auto;
  color: #7a8492;
  font-size: 11px;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 70px;
  padding: 68px max(24px, calc((100vw - 1220px) / 2));
  background: var(--navy);
  color: white;
}

.reviews-copy h2 {
  max-width: 540px;
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.15;
}

.reviews-copy > p:last-of-type {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.review-rules {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.review-rules span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.review-rules b {
  color: #f4d78d;
}

.review-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.review-form h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.review-form label {
  display: grid;
  gap: 6px;
}

.review-form label > span {
  color: #46514b;
  font-size: 12px;
  font-weight: 700;
}

.review-form-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12px;
}

.review-form textarea {
  min-height: 110px;
  resize: vertical;
}

.review-form .primary-button {
  align-self: auto;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.faq-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 21px 52px 21px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 18px;
}

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

.faq-list details p {
  max-width: 860px;
  margin: -5px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.contact-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 11px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 30px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.24);
  cursor: pointer;
  text-align: left;
}

.contact-fab > span:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  font-weight: 800;
}

.contact-fab strong,
.contact-fab small {
  display: block;
}

.contact-fab strong {
  font-size: 12px;
}

.contact-fab small {
  font-size: 9px;
}

.site-footer strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 14px;
}

.site-footer span {
  display: block;
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  text-align: right;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 17, 14, 0.66);
}

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

.vehicle-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-modal {
  position: relative;
  width: min(660px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.contact-modal-heading {
  padding: 30px 70px 0 30px;
}

.contact-modal-heading h2 {
  margin: 2px 0 7px;
  font-size: 27px;
}

.contact-modal-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px 30px 30px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label:not(.contact-consent):not(.contact-honeypot) {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  color: #46514b;
  font-size: 12px;
  font-weight: 700;
}

.contact-form label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  cursor: pointer;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.contact-consent span {
  color: var(--muted) !important;
  line-height: 1.45;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form-status.error {
  color: var(--danger);
}

.contact-form .primary-button {
  width: 100%;
}

.contact-success {
  padding: 54px 30px 38px;
  text-align: center;
}

.contact-success[hidden],
.contact-form[hidden] {
  display: none;
}

.contact-success strong {
  display: block;
  font-size: 24px;
}

.contact-success p {
  margin: 7px auto 22px;
  color: var(--muted);
  font-size: 13px;
}

.contact-success .secondary-button {
  min-height: 44px;
  border-color: var(--line);
  color: var(--ink);
}

.contact-success .secondary-button:hover,
.contact-success .secondary-button:focus-visible {
  border-color: var(--orange-dark);
  color: var(--orange-dark);
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(300px, 42%) 1fr;
}

.modal-visual {
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--soft);
}

.modal-visual img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

.modal-details {
  padding: 38px 34px 32px;
}

.modal-details h2 {
  margin: 2px 0 8px;
  padding-right: 30px;
  font-size: 28px;
}

.modal-summary {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.modal-price {
  margin: 0 0 18px;
}

.modal-price .budget-display {
  width: fit-content;
}

.modal-price .budget-coin {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.modal-price .budget-tier-label {
  font-size: 16px !important;
}

.modal-price small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--soft);
  color: #3f4b45;
  font-size: 11px;
  font-weight: 600;
}

.breakdown {
  display: grid;
  gap: 9px;
  margin: 16px 0 20px;
}

.catalogue-notice {
  margin: 16px 0 20px;
  padding: 13px 14px;
  border-left: 3px solid var(--orange);
  background: var(--orange-soft);
}

.catalogue-notice strong {
  font-size: 12px;
}

.catalogue-notice p {
  margin: 4px 0 0;
  color: #5e5546;
  font-size: 11px;
  line-height: 1.5;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 110px 1fr 32px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.breakdown-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 3px;
  background: #e4e9e6;
}

.breakdown-bar span {
  display: block;
  height: 100%;
  background: var(--green);
}

.modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.modal-columns h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.modal-columns ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
}

.modal-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45px;
  margin-top: 22px;
  border-radius: 6px;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.official-source {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 50px 20px;
  border: 1px dashed #bdc8c1;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1050px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
  }

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

  .reviews-section {
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
    padding: 9px 16px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .header-action {
    padding: 9px 11px;
    font-size: 11px;
  }

  .intro-band,
  .hero-shell {
    min-height: 0;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 48px 0 26px;
  }

  .hero-copy h1 {
    max-width: 680px;
    font-size: 46px;
  }

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

  .hero-visual img { height: 250px; }
  .tag-terrain { bottom: 70px; }
  .tag-cost { bottom: 32px; }
  .tag-usage { top: 26px; }

  .method-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-band article:nth-child(3) { border-top: 1px solid var(--line); }
  .method-band article:nth-child(4) { border-top: 1px solid var(--line); }

  .advisor-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-results,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .strength-item,
  .strength-item:not(:nth-child(3n + 1)) {
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-section {
    grid-template-columns: 1fr;
  }

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

  .modal-visual {
    min-height: 270px;
  }

  .modal-visual img {
    height: 270px;
  }

  .modal-details {
    padding: 26px 24px;
  }
}

@media (max-width: 580px) {
  .top-strip {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 9px;
  }

  .header-action {
    max-width: 118px;
    text-align: center;
  }

  .brand small {
    font-size: 9px;
  }

  .hero-shell {
    width: calc(100% - 32px);
    padding: 26px 0 18px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    padding: 7px 10px;
    font-size: 9px;
  }

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

  .hero-lead {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 8px;
    margin: 20px 0;
  }

  .hero-actions .primary-button,
  .secondary-button {
    min-height: 50px;
    padding: 9px 10px;
    font-size: 11px;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-stats strong {
    font-size: 26px;
  }

  .hero-stats span {
    font-size: 7px;
  }

  .hero-disclosure {
    padding: 10px 11px;
    font-size: 10px;
  }

  .hero-visual {
    display: none;
  }

  .method-band-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .method-band article,
  .method-band article:nth-child(3),
  .method-band article:nth-child(4) {
    min-height: 0;
    padding: 20px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .advisor-section,
  .results-section,
  .catalogue-section,
  .methodology-section,
  .brands-section,
  .guides-section,
  .faq-section,
  .reviews-section {
    padding: 40px 16px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading h2,
  .contact-band h2 {
    font-size: 25px;
  }

  .advisor-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .top-results,
  .vehicle-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .review-form-row {
    grid-template-columns: 1fr;
  }

  .card-media,
  .vehicle-card .card-media {
    height: 210px;
  }

  .catalogue-tools {
    width: 100%;
    flex-direction: column;
  }

  .catalogue-tools select {
    width: 100%;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 20px;
  }

  .site-footer p {
    text-align: left;
  }

  .contact-fab {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 7px 11px 7px 8px;
  }

  .contact-fab > span:first-child {
    width: 32px;
    height: 32px;
  }

  .contact-fab > span:last-child {
    display: none;
  }

  .modal-backdrop {
    padding: 0;
  }

  .vehicle-modal {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .contact-modal {
    width: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .contact-modal-heading {
    padding: 26px 64px 0 20px;
  }

  .contact-modal-heading h2 {
    font-size: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .modal-columns {
    grid-template-columns: 1fr;
  }
}
