:root {
  --ink: #111317;
  --paper: #f7f4ed;
  --white: #ffffff;
  --muted: #aeb3bb;
  --line: #d8d4ca;
  --accent: #ff5a00;
  --accent-dark: #d94700;
  --dark: #0c0e11;
  --panel: #111419;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.2;
}

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

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

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 10px max(24px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: rgba(10, 12, 15, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.header-brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 250px;
  height: 58px;
  background: transparent;
}

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

.header-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-brand strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.header-brand em {
  color: var(--accent);
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 1.8vw, 30px);
  font-weight: 600;
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.desktop-nav a.is-active {
  color: var(--accent);
}

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

.mobile-guide-link {
  display: none;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-menu-toggle,
.mobile-nav,
.mobile-nav-backdrop {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  z-index: 43;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle:focus-visible {
  outline: 3px solid rgba(255, 90, 0, 0.5);
  outline-offset: 3px;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.language-toggle {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  color: var(--white);
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(255, 90, 0, 0.24);
  font-weight: 800;
  transition: 0.2s;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.button-outline {
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  box-shadow: none;
}

.button-ghost {
  background: rgba(8, 10, 12, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: url("images/hero-car.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 9, 0.96) 0%,
      rgba(5, 7, 9, 0.82) 42%,
      rgba(5, 7, 9, 0.32) 70%,
      rgba(5, 7, 9, 0.76) 100%
    ),
    linear-gradient(0deg, rgba(5, 7, 9, 0.9), transparent 52%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.7fr);
  gap: 68px;
  align-items: center;
  padding-block: 70px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: Oswald, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--accent);
}

.hero-text {
  max-width: 660px;
  margin: 0 0 28px;
  color: #e6e8eb;
  font-size: 1.2rem;
}

.quick-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 30px;
}

.quick-benefits span {
  position: relative;
  padding-left: 25px;
  font-weight: 600;
}

.quick-benefits span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Trust cards */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 32px;
}

.trust-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

.trust-card:hover {
  border-color: rgba(255, 90, 0, 0.55);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(255, 90, 0, 0.08);
  transform: translateY(-4px);
}

.trust-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--accent);
  background: rgba(255, 90, 0, 0.1);
  border: 1px solid rgba(255, 90, 0, 0.4);
  border-radius: 12px;
}

.trust-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  margin: 2px 0 8px;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 800;
}

.trust-card p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Service panel */
.service-panel {
  padding: 30px;
  background: linear-gradient(145deg, rgba(18, 21, 26, 0.97), rgba(8, 10, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.46);
}

.panel-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto 18px;
  object-fit: contain;
  object-position: center;
}

.panel-divider {
  height: 1px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.service-panel h2 {
  margin: 0 0 10px;
  font-family: Oswald, sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.panel-intro {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.panel-mission {
  margin: 0;
  padding: 17px 0 17px 18px;
  border-left: 3px solid var(--accent);
  font-size: 1rem;
  line-height: 1.7;
}

.button-panel {
  width: 100%;
  margin-top: 22px;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  box-shadow: none;
}

/* Main sections */
.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.22;
  text-transform: uppercase;
}

.section-heading p:last-child {
  max-width: 650px;
  color: #484b50;
}

.service-heading {
  display: block;
  max-width: 820px;
}

.service-heading__copy {
  max-width: 820px;
  min-width: 0;
}

/* Service packages */
.plans-section {
  scroll-margin-top: 88px;
}

.plans-heading {
  margin-inline: auto;
  text-align: center;
}

.plans-heading p:last-child {
  margin-inline: auto;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 40px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(17, 19, 23, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.plan-card:hover {
  border-color: rgba(255, 90, 0, 0.55);
  box-shadow: 0 24px 58px rgba(17, 19, 23, 0.13);
  transform: translateY(-4px);
}

.plan-card.is-selected {
  border-color: var(--accent);
  box-shadow:
    0 24px 58px rgba(17, 19, 23, 0.13),
    0 0 0 3px rgba(255, 90, 0, 0.1);
}

.plan-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 90, 0, 0.16), transparent 38%),
    linear-gradient(145deg, #15191f, #090b0e);
  border-color: rgba(255, 90, 0, 0.7);
  box-shadow:
    0 28px 66px rgba(17, 19, 23, 0.2),
    0 0 0 1px rgba(255, 90, 0, 0.12);
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 32px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--accent);
  border-radius: 0 0 10px 10px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__header {
  padding-right: 4px;
}

.plan-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card-featured .plan-kicker {
  color: var(--accent);
}

.plan-card h3 {
  margin: 0 0 13px;
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.plan-card__header > p:last-child {
  min-height: 52px;
  margin: 0;
  color: #5d6168;
  line-height: 1.55;
}

.plan-card-featured .plan-card__header > p:last-child {
  color: #c0c4ca;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 28px 0 25px;
  padding: 22px 0;
  border-block: 1px solid #e3ded4;
}

.plan-card-featured .plan-price {
  border-color: rgba(255, 255, 255, 0.13);
}

.plan-price strong {
  color: var(--accent);
  font-family: Oswald, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.plan-price span {
  color: #777b82;
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-card-featured .plan-price span {
  color: #aeb3bb;
}

.plan-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 30px;
  color: #35383e;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.42;
}

.plan-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.plan-card-featured .plan-list li {
  color: #e2e5e9;
}

.plan-list .plan-list-highlight {
  color: var(--ink);
  font-weight: 850;
}

.plan-card-featured .plan-list-highlight {
  color: var(--white);
}

.plan-note {
  margin: -4px 0 24px;
  padding: 14px 16px;
  color: #b6bac1;
  background: rgba(255, 255, 255, 0.055);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.76rem;
  line-height: 1.5;
}

.button-plan {
  width: 100%;
  margin-top: auto;
  cursor: pointer;
}

.button-plan-secondary {
  color: var(--accent-dark);
  background: transparent;
  border: 1px solid var(--accent);
  box-shadow: none;
}

.button-plan-secondary:hover {
  color: var(--white);
}

.plans-disclaimer {
  max-width: 840px;
  margin: 24px auto 0;
  color: #6f7379;
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: center;
}

.feature-grid-intro {
  margin: 28px 0 18px;
  color: #4f545a;
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card.is-open {
  border-color: rgba(255, 90, 0, 0.62);
  box-shadow: 0 16px 36px rgba(25, 27, 30, 0.09);
}

.feature-card__toggle {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 238px;
  padding: 28px;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.feature-card__toggle:focus-visible {
  outline: 3px solid rgba(255, 90, 0, 0.38);
  outline-offset: -4px;
}

@media (hover: hover) {
  .feature-card:hover {
    border-color: rgba(255, 90, 0, 0.55);
    box-shadow: 0 14px 32px rgba(25, 27, 30, 0.08);
    transform: translateY(-2px);
  }
}

.feature-title {
  display: block;
  margin-bottom: 12px;
}

.feature-title__heading {
  display: block;
  color: var(--accent);
  font-family: Oswald, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
}

.feature-card__summary {
  display: block;
  color: #555a61;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.feature-card__action {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  color: var(--accent-dark);
  border-top: 1px solid #ece8e2;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-card__action-open {
  display: none;
}

.feature-card.is-open .feature-card__action-closed {
  display: none;
}

.feature-card.is-open .feature-card__action-open {
  display: inline;
}

.feature-card__chevron {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 220ms ease;
}

.feature-card.is-open .feature-card__chevron {
  transform: rotate(180deg);
}

.feature-card__details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 180ms ease;
}

.feature-card.is-open .feature-card__details {
  grid-template-rows: 1fr;
  opacity: 1;
}

.feature-card__details-inner {
  min-height: 0;
  overflow: hidden;
}

.feature-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 28px 28px;
  list-style: none;
}

.feature-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #34383e;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.32;
}

.feature-points li::before {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.38em;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.09);
}

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

.section-heading.light p:last-child {
  color: var(--muted);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: center;
  max-width: none;
}

.process-heading__copy {
  max-width: 650px;
}

.process-heading__copy h2 {
  margin: 0;
}

.process-visual {
  display: grid;
  width: min(100%, 320px);
  min-height: 230px;
  justify-self: end;
  place-items: center;
  color: var(--accent);
  background: radial-gradient(circle, rgba(255, 90, 0, 0.1), transparent 66%);
}

.process-visual svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(255, 90, 0, 0.16));
}

.process-visual__halo {
  opacity: 0.12;
  stroke-dasharray: 4 10;
}

.process-visual__ring {
  opacity: 0.28;
  stroke-width: 1.4;
}

.process-visual__face {
  fill: rgba(255, 90, 0, 0.045);
  stroke-width: 3;
}

.process-visual__hand {
  stroke-width: 5;
}

.process-visual__center {
  fill: var(--accent);
  stroke: var(--dark);
  stroke-width: 3;
}

.process-visual__speed {
  opacity: 0.52;
  stroke-width: 3;
}

.process-visual__accent {
  opacity: 0.8;
  stroke-width: 4;
}

@media (max-width: 900px) {
  .process-heading {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 32px;
  }

  .process-visual {
    width: 240px;
    min-height: 180px;
  }
}

@media (max-width: 760px) {
  .process-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-visual {
    width: 220px;
    min-height: 0;
    justify-self: start;
  }
}

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

.steps article {
  padding: 30px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.steps strong {
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.25rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

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

.area-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  padding: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.area-panel h2 {
  margin: 0 0 14px;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  padding: 11px 16px;
  border: 1px solid #d6d2c8;
  border-radius: 999px;
  font-weight: 700;
}

/* Booking */
.booking-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.booking-copy h2 {
  margin: 0 0 18px;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.booking-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0;
  padding: 20px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
}

.booking-price strong {
  color: var(--accent);
  font-size: 2rem;
}

.small-note {
  color: #777;
  font-size: 0.86rem;
}

.booking-form {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(17, 19, 23, 0.08);
}

.booking-plan-picker {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.booking-plan-picker legend {
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-plan-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-plan-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 15px;
  background: #faf8f3;
  border: 1px solid #d6d1c7;
  border-radius: 11px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.booking-plan-option:hover {
  border-color: rgba(255, 90, 0, 0.65);
  transform: translateY(-1px);
}

.booking-plan-option:has(input:checked) {
  background: rgba(255, 90, 0, 0.075);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.09);
}

.booking-plan-option input {
  width: auto;
  margin: 0;
  accent-color: var(--accent);
}

.booking-plan-option > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.booking-plan-option strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

.booking-plan-option small {
  color: #757980;
  font-size: 0.68rem;
  font-weight: 550;
  line-height: 1.35;
}

.booking-plan-option b {
  color: var(--accent-dark);
  font-family: Oswald, sans-serif;
  font-size: 1.12rem;
  white-space: nowrap;
}

.booking-plan-picker > .field-error {
  margin-top: 8px;
}

.form-subheading {
  display: grid;
  gap: 4px;
  margin: 0 0 15px;
  padding-top: 2px;
}

.form-subheading strong {
  font-size: 0.9rem;
}

.form-subheading span {
  color: #777b82;
  font-size: 0.76rem;
  line-height: 1.4;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: #111;
  background: var(--white);
  border: 1px solid #cfcac0;
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.86rem;
}

.checkbox input {
  width: auto;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
}

.form-status.error {
  color: #b22222;
}

.form-status.success {
  color: #18794e;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 0;
  color: #666;
}

/* Footer */
footer {
  padding: 38px 0;
  color: var(--white);
  background: #090b0e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 250px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand em {
  color: var(--accent);
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  text-transform: uppercase;
}

footer p {
  color: #abb0b7;
}

.footer-meta {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
}

.footer-meta p { margin: 0; }

.footer-meta a {
  color: #d8dbe0;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 90, 0, 0.55);
  text-underline-offset: 4px;
}

/* Outil d’acquisition — version 1 */
.acquisition-preview {
  padding: 88px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 92% 5%, rgba(255, 90, 0, 0.18), transparent 31%),
    #0b0e12;
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.acquisition-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 72px;
  align-items: center;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.acquisition-heading h2 {
  max-width: 720px;
  margin: 10px 0 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.8rem, 4.25vw, 4.35rem);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

.acquisition-heading__note {
  position: relative;
  padding: 10px 0 10px 28px;
  border-left: 3px solid var(--accent);
}

.acquisition-heading__note > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c4c9d0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.acquisition-heading__note > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
}

.acquisition-carousel { margin-top: 38px; }

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

.acquisition-carousel__toolbar > p {
  margin: 0;
  color: #b8bec7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.acquisition-carousel__controls { display: flex; gap: 8px; align-items: center; }
.acquisition-carousel__counter { margin-right: 8px; color: var(--accent); font-size: 0.78rem; font-weight: 850; }
.acquisition-carousel__controls .acquisition-carousel__guide-link {
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 7px;
  font-size: 0.73rem;
}

.acquisition-carousel__controls button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: #171b21;
  border: 1px solid #343a44;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.acquisition-carousel__controls button:hover:not(:disabled) { color: var(--accent); border-color: var(--accent); }
.acquisition-carousel__controls button:disabled { opacity: 0.38; cursor: default; }

.acquisition-track {
  display: grid;
  grid-auto-columns: minmax(292px, 31%);
  grid-auto-flow: column;
  gap: 18px;
  padding: 2px 2px 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #464d57 transparent;
  overscroll-behavior-x: contain;
}

.acquisition-card {
  position: relative;
  display: flex;
  min-height: 326px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  background: linear-gradient(145deg, #15191f, #101318);
  border: 1px solid #303640;
  border-radius: 18px;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.acquisition-card::after {
  position: absolute;
  top: 0;
  left: 28px;
  width: 44px;
  height: 3px;
  content: "";
  background: var(--accent);
}

.acquisition-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #191e25, #111419);
  border-color: rgba(255, 90, 0, 0.65);
}

.acquisition-card > span { display: block; color: var(--accent); font-family: Oswald, sans-serif; font-size: 2.6rem; font-weight: 700; }
.acquisition-card > p:first-of-type { margin: 25px 0 9px; color: #929aa5; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.acquisition-card h3 { max-width: 290px; margin: 0; font-family: Oswald, sans-serif; font-size: 1.82rem; line-height: 1.06; text-transform: uppercase; text-wrap: balance; }
.acquisition-card > p:last-of-type { margin: 18px 0 0; color: #b7bdc5; font-size: 0.88rem; line-height: 1.62; }
.acquisition-card > a { display: inline-flex; margin-top: auto; padding-top: 24px; color: var(--accent); font-size: 0.78rem; font-weight: 850; }

.acquisition-carousel__dots { display: flex; gap: 7px; margin-top: 12px; }
.acquisition-carousel__dots button { width: 24px; height: 3px; padding: 0; background: #3c424b; border: 0; border-radius: 99px; cursor: pointer; }
.acquisition-carousel__dots button.is-active { background: var(--accent); }

.acquisition-cta {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(230px, auto);
  gap: 30px;
  align-items: center;
  margin-top: 54px;
  padding: 28px 32px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 90, 0, 0.08), transparent 40%),
    #15191f;
  border: 1px solid #343a44;
  border-top: 3px solid var(--accent);
  border-radius: 16px;
}

.acquisition-cta__marker {
  display: flex;
  width: 82px;
  height: 82px;
  padding: 13px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aeb5bf;
  background: #101318;
  border: 1px solid #3b424d;
  border-radius: 12px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.acquisition-cta__marker strong { color: var(--accent); font-family: Oswald, sans-serif; font-size: 2.25rem; line-height: 1; }

.acquisition-kicker { margin: 0 0 8px; color: var(--accent); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }

.acquisition-cta__copy h3,
.guide-access-gate__copy h2 { margin: 0; font-family: Oswald, sans-serif; font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.02; text-transform: uppercase; }

.acquisition-cta__copy h3 { font-size: clamp(1.8rem, 2.6vw, 2.55rem); }

.acquisition-cta__copy > p:last-child { max-width: 650px; margin: 10px 0 0; color: #b8bec7; font-size: 0.9rem; line-height: 1.55; }

.acquisition-cta__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.acquisition-cta__benefits li {
  position: relative;
  padding-left: 19px;
  color: #d2d6dc;
  font-size: 0.78rem;
  font-weight: 800;
}

.acquisition-cta__benefits li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.acquisition-cta__actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
  min-width: 250px;
}

.acquisition-cta__guide-link {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.guide-lead-dialog {
  width: min(calc(100% - 32px), 690px);
  max-height: calc(100dvh - 32px);
  padding: 34px;
  overflow: auto;
  color: var(--ink);
  background: #f6f3ec;
  border: 1px solid #d8d1c6;
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.guide-lead-dialog::backdrop {
  background: rgba(5, 7, 9, 0.78);
  backdrop-filter: blur(5px);
}

.guide-lead-dialog__close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: #52575e;
  background: transparent;
  border: 1px solid #cbc5bb;
  border-radius: 50%;
  font-size: 1.45rem;
  cursor: pointer;
}

.guide-lead-dialog__heading { padding-right: 42px; }
.guide-lead-dialog__heading h2 { margin: 0; font-family: Oswald, sans-serif; font-size: clamp(2.2rem, 7vw, 3.5rem); line-height: 1; text-transform: uppercase; }
.guide-lead-dialog__heading > p:last-child { max-width: 550px; margin: 16px 0 24px; color: #62676f; line-height: 1.55; }
.guide-lead-form--dialog { padding: 24px; }

.guide-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #ddd7cd;
  border-radius: 14px;
}

.guide-lead-form > label:not(.guide-lead-form__consent):not(.form-trap) { display: grid; gap: 8px; font-size: 0.78rem; font-weight: 750; }
.guide-lead-form input[type="email"], .guide-lead-form select { width: 100%; min-height: 50px; padding: 0 14px; color: var(--ink); background: #faf9f6; border: 1px solid #cac5bc; border-radius: 9px; font: inherit; }
.guide-lead-form__consent, .guide-lead-form__privacy, .guide-lead-form > button, .guide-lead-form__status { grid-column: 1 / -1; }
.guide-lead-form__consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #5d6269; font-size: 0.72rem; line-height: 1.5; }
.guide-lead-form__consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--accent); }
.guide-lead-form__privacy { margin: 0; color: #747981; font-size: 0.69rem; line-height: 1.55; }
.guide-lead-form__privacy a { margin-left: 5px; color: var(--accent-dark); font-weight: 750; text-decoration: underline; }
.guide-lead-form__status { min-height: 1.4em; margin: 0; font-size: 0.76rem; font-weight: 700; }
.guide-lead-form__status[data-status="error"] { color: #b42318; }
.guide-lead-form__status[data-status="success"] { color: #187144; }
.guide-lead-form__status[data-status="loading"] { color: #5e646d; }
.guide-lead-form button:disabled { opacity: 0.65; cursor: wait; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Tablet */
@media (max-width: 980px) {
  .acquisition-heading,
  .acquisition-cta,
  .guide-access-gate {
    grid-template-columns: 1fr;
  }

  .acquisition-heading { gap: 36px; }
  .acquisition-track { grid-auto-columns: minmax(290px, 44%); }

  .desktop-nav {
    display: none;
  }

  .mobile-guide-link {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 54px;
  }

  .hero-copy {
    max-width: none;
  }

  .service-panel {
    max-width: 620px;
  }

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

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

  .booking-section,
  .footer-grid,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .trust-cards {
    grid-template-columns: 1fr;
  }

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

  .trust-card p {
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .acquisition-preview { width: 100%; max-width: 100vw; padding: 66px 0; overflow: hidden; }
  .acquisition-preview .section-shell { min-width: 0; }
  .acquisition-heading { gap: 28px; padding-bottom: 34px; }
  .acquisition-heading h2 { font-size: clamp(2.45rem, 11.5vw, 3.4rem); line-height: 1.03; }
  .acquisition-heading__note { padding: 6px 0 6px 20px; }
  .acquisition-heading__note > p { font-size: 0.9rem; }
  .acquisition-carousel { margin-top: 38px; }
  .acquisition-track { width: 100%; min-width: 0; max-width: 100%; grid-auto-columns: 88%; gap: 13px; }
  .acquisition-card { min-height: 312px; padding: 25px; }
  .acquisition-card::after { left: 25px; }
  .acquisition-card > p:first-of-type { margin-top: 24px; }
  .acquisition-carousel__toolbar { align-items: center; }
  .acquisition-carousel__toolbar > p { max-width: 150px; font-size: 0.72rem; }
  .acquisition-carousel__controls { flex-wrap: nowrap; justify-content: flex-end; }
  .acquisition-carousel__controls .acquisition-carousel__guide-link { display: none; }
  .acquisition-carousel__counter { width: auto; margin-right: 3px; text-align: right; }
  .acquisition-carousel__controls button { width: 38px; height: 38px; }
  .acquisition-cta { grid-template-columns: 1fr; gap: 20px; margin-top: 42px; padding: 25px 22px; border-radius: 15px; }
  .acquisition-cta__marker { display: none; }
  .acquisition-cta__actions { min-width: 0; }
  .acquisition-cta__benefits { display: grid; gap: 11px; }
  .acquisition-cta__actions .button { width: 100%; }
  .guide-lead-dialog { padding: 24px 18px 18px; }
  .guide-lead-dialog__heading { padding-right: 38px; }
  .guide-lead-form--dialog { padding: 18px; }
  .guide-lead-form { grid-template-columns: 1fr; padding: 20px; }
  .guide-lead-form__consent,
  .guide-lead-form__privacy,
  .guide-lead-form > button,
  .guide-lead-form__status { grid-column: 1; }

  .site-header {
    padding-inline: 14px;
  }

  .hero {
    background-color: #050709;
    background-image: url("images/hero-car.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto clamp(500px, 72svh, 620px);
  }

  .hero::before {
    content: none;
  }

  .hero-overlay {
    z-index: auto;
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 9, 0.34) 0,
        rgba(5, 7, 9, 0.42) 260px,
        rgba(5, 7, 9, 0.64) 500px,
        rgba(5, 7, 9, 0.88) 680px,
        rgba(5, 7, 9, 0.97) 820px,
        #050709 100%
      ),
      linear-gradient(90deg, rgba(5, 7, 9, 0.64), rgba(5, 7, 9, 0.18), rgba(5, 7, 9, 0.64));
  }

  .hero-inner {
    z-index: auto;
    width: min(calc(100% - 28px), var(--max));
    min-width: 0;
  }

  .hero-copy,
  .service-panel,
  .trust-cards {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .header-brand span {
    display: none;
  }

  .header-brand img {
    width: 100%;
    height: 100%;
  }

  .header-brand {
    width: clamp(145px, 42vw, 185px);
    height: 54px;
  }

  .header-brand img {
    display: block;
    object-fit: contain;
  }

  .button-small {
    display: none;
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-inner {
    gap: 34px;
  }

  .quick-benefits {
    display: grid;
    gap: 10px;
  }

  .hero-actions {
    display: grid;
  }

  .service-panel {
    padding: 22px;
  }

  .plan-card {
    padding: 30px 24px;
  }

  .plan-card-featured {
    padding-top: 62px;
  }

  .plans-heading h2 {
    font-size: clamp(1.7rem, 8.8vw, 2.25rem);
  }

  .plan-card h3 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .plan-badge {
    right: 22px;
  }

  .plan-card__header > p:last-child {
    min-height: 0;
  }

  .booking-plan-options {
    grid-template-columns: 1fr;
  }

  .panel-logo {
    width: min(100%, 320px);
    height: auto;
  }

  .section {
    padding-block: 70px;
  }

  .feature-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-title {
    min-height: 0;
    padding-right: 0;
  }

  .feature-card__toggle {
    min-height: 0;
    padding: 24px;
  }

  .feature-card__summary {
    margin-bottom: 22px;
  }

  .feature-points {
    padding: 0 24px 24px;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .area-panel {
    padding: 28px;
  }

  .booking-form {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .trust-card {
    padding: 21px 18px;
  }

  .trust-card__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}

/* Multi-step inspection request */
.form-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.form-kicker {
  margin: 0 0 5px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-intro h3 {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.form-time {
  flex: none;
  padding: 8px 11px;
  color: #62666d;
  background: #f4f1ea;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.progress-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 0 32px;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: #dedad1;
}

.progress-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 0 3px;
  color: #8b8e94;
  background: none;
  border: 0;
  cursor: pointer;
}

.progress-step:disabled {
  cursor: default;
}

.progress-step span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #777b82;
  background: var(--white);
  border: 2px solid #d4d0c7;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.progress-step small {
  font-size: 0.68rem;
  font-weight: 700;
}

.progress-step.is-active,
.progress-step.is-complete {
  color: var(--ink);
}

.progress-step.is-active span {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 90, 0, 0.12);
}

.progress-step.is-complete span {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.form-step {
  display: none;
  min-height: 260px;
  animation: formStepIn 180ms ease-out;
}

.form-step.is-active {
  display: block;
}

@keyframes formStepIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.field-help {
  color: #74777d;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
}

.seller-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.seller-type legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-size: 0.9rem;
  font-weight: 700;
}

.choice-card {
  display: flex !important;
  grid-template-columns: auto 1fr !important;
  align-items: center;
  gap: 10px !important;
  padding: 15px;
  background: #faf8f3;
  border: 1px solid #d6d1c7;
  border-radius: 10px;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  background: rgba(255, 90, 0, 0.07);
  border-color: var(--accent);
}

.choice-card input {
  width: auto;
  accent-color: var(--accent);
}

.seller-detail {
  display: none !important;
}

.seller-detail.is-visible {
  display: grid !important;
}

.coordination-note {
  margin: 0;
  padding: 14px 16px;
  color: #50545a;
  background: #f5f2eb;
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.why-info {
  margin-top: 20px;
  padding: 17px 18px;
  background: #f7f4ed;
  border: 1px solid #e0dbd1;
  border-radius: 10px;
}

.why-info strong {
  display: block;
  margin-bottom: 5px;
}

.why-info p {
  margin: 0;
  color: #666a70;
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e2ded5;
}

.button-secondary {
  color: var(--ink);
  background: #ece8df;
}

.button-secondary:hover {
  background: #ddd8cd;
}

.form-back {
  margin-right: auto;
}

.form-back[hidden],
.form-next[hidden],
.form-submit[hidden] {
  display: none;
}

.form-submit {
  width: auto;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-success {
  padding: 38px 20px 24px;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  color: var(--white);
  background: #18794e;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
}

.form-success h3 {
  margin: 0 0 10px;
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.form-success p {
  max-width: 480px;
  margin: 0 auto;
  color: #666a70;
  line-height: 1.55;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b22222;
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
}

@media (max-width: 720px) {
  .progress-step small {
    display: none;
  }

  .progress-steps {
    margin-bottom: 26px;
  }

  .progress-steps::before {
    right: 8%;
    left: 8%;
  }
}

@media (max-width: 640px) {
  .form-intro {
    display: grid;
  }

  .form-time {
    width: max-content;
  }

  .form-step {
    min-height: 0;
  }

  .seller-type {
    grid-template-columns: 1fr;
  }

  .seller-type legend {
    grid-column: auto;
  }

  .form-navigation {
    flex-wrap: wrap;
  }

  .form-navigation .button {
    flex: 1 1 130px;
  }

  .form-back {
    margin-right: 0;
  }
}

/* Formulaire premium v0.4 */
.step-lead {
  max-width: 540px;
  margin: 7px 0 0;
  color: #666a70;
  font-size: 0.86rem;
  line-height: 1.45;
}

.progress-steps {
  position: relative;
}

.progress-steps::after {
  position: absolute;
  z-index: 0;
  top: 15px;
  left: 8%;
  width: var(--form-progress, 0%);
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 320ms ease;
}

.progress-step {
  z-index: 1;
}

.progress-step span {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.progress-step.is-complete span {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.9rem;
}

.progress-step.is-complete:hover span {
  transform: scale(1.08);
}

.form-step {
  animation: none;
}

.form-step.enter-forward {
  animation: stepForward 320ms cubic-bezier(.2,.75,.3,1);
}

.form-step.enter-back {
  animation: stepBack 320ms cubic-bezier(.2,.75,.3,1);
}

@keyframes stepForward {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes stepBack {
  from { opacity: 0; transform: translateX(-22px); }
  to { opacity: 1; transform: translateX(0); }
}

.field-error {
  display: block;
  grid-column: 1 / -1;
  margin-top: -2px;
  color: #a62323;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
  animation: errorIn 160ms ease-out;
}

.seller-type > .field-error {
  margin-top: 1px;
}

.checkbox .field-error {
  flex-basis: 100%;
  margin-left: 28px;
}

@keyframes errorIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-status.error {
  margin-top: 14px;
  padding: 11px 13px;
  color: #8f1f1f;
  background: #fff3f1;
  border: 1px solid #edcbc5;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 650;
}

.form-navigation .button {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-navigation .button:hover {
  transform: translateY(-2px);
}

.form-navigation .form-next:hover,
.form-navigation .form-submit:hover {
  box-shadow: 0 12px 24px rgba(255, 90, 0, 0.2);
}

.success-greeting {
  margin-bottom: 8px !important;
  color: var(--ink) !important;
  font-size: 1.05rem;
}

.form-success {
  animation: successIn 450ms cubic-bezier(.2,.8,.3,1);
}

@keyframes successIn {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .form-step.enter-forward,
  .form-step.enter-back,
  .form-success,
  .field-error {
    animation: none;
  }

  .progress-steps::after,
  .progress-step span,
  .form-navigation .button,
  .feature-card,
  .feature-card__chevron,
  .feature-card__details,
  .mobile-menu-toggle span,
  .mobile-nav,
  .mobile-nav-backdrop {
    transition: none;
  }
}

/* Expérience intelligente v0.5 */
.request-reassurance {
  display: grid;
  gap: 13px;
  margin: 25px 0 21px;
}

.request-reassurance span {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
}

.request-reassurance span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  content: "✓";
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 640px) {
  .process-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-visual {
    width: 190px;
    min-height: 0;
    justify-self: start;
  }

  .request-reassurance span {
    font-size: 1rem;
  }
}

.form-meta {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.draft-status {
  min-height: 16px;
  color: #747980;
  font-size: 0.7rem;
  font-weight: 650;
}

.request-summary {
  margin: 22px 0;
  padding: 18px;
  background: #f7f7f5;
  border: 1px solid #e4e4df;
  border-radius: 12px;
}

.summary-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.summary-kicker {
  margin: 0 0 3px;
  color: var(--accent-dark, #d94d00);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-heading h4 {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.summary-edit {
  padding: 0;
  color: var(--accent-dark, #d94d00);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.summary-edit:hover {
  text-decoration: underline;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
}

.summary-item {
  min-width: 0;
}

.summary-item.full {
  grid-column: 1 / -1;
}

.summary-item dt {
  margin-bottom: 2px;
  color: #777b81;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.summary-item dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .form-meta {
    justify-items: start;
  }

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

  .summary-item.full {
    grid-column: auto;
  }
}

/* Raffinement visuel v0.6 — en-tête du formulaire */
.form-intro {
  margin-bottom: 38px;
}

.form-intro > div:first-child {
  display: grid;
  align-content: start;
}

.form-kicker {
  margin-bottom: 12px;
}

.form-intro h3 {
  line-height: 1.04;
}

.step-lead {
  margin-top: 13px;
  line-height: 1.55;
}

.form-meta {
  padding-top: 2px;
}

@media (max-width: 640px) {
  .form-intro {
    gap: 20px;
    margin-bottom: 30px;
  }

  .form-kicker {
    margin-bottom: 10px;
  }

  .step-lead {
    margin-top: 10px;
  }

  .form-meta {
    padding-top: 0;
  }
}

/* Guide d'achat */
[hidden] {
  display: none !important;
}

.guide-page {
  background: #f3f0e8;
}

.privacy-page { background: #f3f0e8; }
.privacy-hero { padding: 88px 0 60px; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(255, 90, 0, 0.18), transparent 30%), #0b0e12; }
.privacy-hero h1 { max-width: 920px; margin: 10px 0 18px; font-family: Oswald, sans-serif; font-size: clamp(3rem, 6vw, 5.6rem); line-height: 0.98; text-transform: uppercase; }
.privacy-hero p:last-child { color: #aeb4bc; }
.privacy-content { max-width: 900px; padding-block: 66px 90px; }
.privacy-content > div { display: grid; gap: 16px; }
.privacy-content section { padding: 30px; background: var(--white); border: 1px solid #ddd8cf; border-radius: 14px; }
.privacy-content h2 { margin: 0 0 12px; font-family: Oswald, sans-serif; font-size: 1.5rem; text-transform: uppercase; }
.privacy-content p, .privacy-content li { color: #545961; font-size: 0.9rem; line-height: 1.7; }
.privacy-content p { margin: 0; }
.privacy-content p + p { margin-top: 12px; }
.privacy-content ul { display: grid; gap: 8px; margin: 0; padding-left: 20px; }
.privacy-content a { color: var(--accent-dark); font-weight: 750; text-decoration: underline; }

.guide-page .site-header {
  position: sticky;
}

.guide-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 90, 0, 0.2), transparent 28%),
    linear-gradient(120deg, rgba(7, 9, 12, 0.98), rgba(12, 15, 19, 0.91)),
    url("images/hero-car.jpg") center 55% / cover no-repeat;
}

.guide-hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 90, 0, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 90, 0, 0.035),
    0 0 0 110px rgba(255, 90, 0, 0.025);
}

.guide-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  width: min(calc(100% - 40px), 1320px);
  min-height: 590px;
  padding-block: 78px;
}

.guide-hero__copy {
  min-width: 0;
  max-width: 880px;
}

.guide-hero__copy h1 {
  max-width: 880px;
  margin: 14px 0 24px;
  font-family: Oswald, sans-serif;
  font-size: clamp(3.6rem, 6.2vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
}

.guide-hero__copy > p:last-of-type {
  max-width: 680px;
  margin: 0;
  color: #c8ccd2;
  font-size: 1.05rem;
  line-height: 1.65;
}

.guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
}

.guide-text-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.guide-text-link:hover {
  color: var(--accent);
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: end;
  width: min(calc(100% - 40px), 1320px);
  padding-block: 88px 64px;
  scroll-margin-top: 104px;
}

.guide-intro h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 3.7rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.guide-intro > p {
  margin: 0;
  color: #60646b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.guide-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  width: min(calc(100% - 40px), 1320px);
  padding-bottom: 100px;
}

.guide-toc {
  position: sticky;
  top: 102px;
  padding: 36px;
  background: #111419;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(17, 19, 23, 0.14);
}

.guide-toc > p {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-toc nav {
  display: grid;
  gap: 7px;
}

.guide-toc nav a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 13px 12px;
  color: #aeb3bb;
  border-radius: 9px;
  font-size: 0.97rem;
  font-weight: 650;
  line-height: 1.35;
  transition: 160ms ease;
}

.guide-toc nav a > span:first-child {
  color: #686e77;
  font-family: Oswald, sans-serif;
  font-size: 0.92rem;
}

.guide-toc nav a:hover,
.guide-toc nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.guide-toc nav a.is-active > span:first-child {
  color: var(--accent);
}

.guide-toc__cta {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  padding: 25px;
  color: var(--white);
  background: rgba(255, 90, 0, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}

.guide-toc__cta strong {
  font-size: 0.97rem;
  line-height: 1.4;
}

.guide-toc__cta a {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.guide-articles {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.guide-access-gate {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  color: var(--white);
  background: radial-gradient(circle at 0 0, rgba(255, 90, 0, 0.18), transparent 33%), #111419;
  border: 1px solid #303640;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(17, 19, 23, 0.12);
  scroll-margin-top: 105px;
}

.guide-download-invite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 38px;
  color: var(--white);
  background: radial-gradient(circle at 0 0, rgba(255, 90, 0, 0.18), transparent 33%), #111419;
  border: 1px solid #303640;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(17, 19, 23, 0.12);
}

.guide-download-invite__button { white-space: nowrap; }

.guide-access-gate__copy h2 { font-size: clamp(2rem, 3.7vw, 3.25rem); }
.guide-access-gate__copy > p:not(.eyebrow) { margin: 18px 0 0; color: #bec3ca; font-size: 0.86rem; line-height: 1.65; }
.guide-access-gate__copy ul { display: grid; gap: 10px; margin: 23px 0 0; padding: 0; list-style: none; }
.guide-access-gate__copy li { position: relative; padding-left: 24px; color: #e6e8eb; font-size: 0.8rem; font-weight: 650; }
.guide-access-gate__copy li::before { position: absolute; left: 0; color: var(--accent); content: "✓"; font-weight: 900; }
.guide-lead-form--gate { color: var(--ink); }
.guide-is-unlocked .guide-toc::after { display: block; margin-top: 18px; color: #77d6a2; content: "Guide complet déverrouillé ✓"; font-size: 0.72rem; font-weight: 750; text-align: center; }

html[lang="en"] .guide-is-unlocked .guide-toc::after {
  content: "Complete guide unlocked ✓";
}

@media (max-width: 980px) {
  .guide-access-gate,
  .guide-download-invite { grid-template-columns: 1fr; }

  .guide-download-invite__button { justify-self: start; }
}

.guide-article {
  scroll-margin-top: 102px;
  min-width: 0;
  padding: 48px;
  background: var(--white);
  border: 1px solid #ded9cf;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(17, 19, 23, 0.07);
}

.guide-article__header {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e4dfd5;
}

.guide-article__header > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--accent);
  background: #fff3ec;
  border: 1px solid #ffc6a7;
  border-radius: 14px;
  font-family: Oswald, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.guide-article__header > div {
  min-width: 0;
}

.guide-article__kicker {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.guide-article h2 {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.16;
  text-transform: uppercase;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
}

.guide-article h3 {
  margin: 26px 0 10px;
  font-size: 1rem;
}

.guide-lead {
  margin: 0 0 26px;
  color: #41454b;
  font-size: 1rem;
  line-height: 1.7;
}

.guide-checklist {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-checklist li {
  position: relative;
  padding-left: 31px;
  color: #3f4349;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.guide-checklist li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
}

.guide-callout {
  margin-top: 28px;
  padding: 21px 23px;
  background: #f4f5f5;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}

.guide-callout strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.87rem;
}

.guide-callout p {
  margin: 0;
  color: #5c6067;
  font-size: 0.82rem;
  line-height: 1.6;
}

.guide-callout--warning {
  background: #fff6ed;
}

.guide-callout--dark {
  color: var(--white);
  background: #111419;
}

.guide-callout--dark p {
  color: #c0c4ca;
}

.guide-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-two-column section {
  padding: 22px;
  background: #f7f6f2;
  border: 1px solid #e3ded4;
  border-radius: 12px;
}

.guide-two-column h3 {
  margin: 0 0 9px;
}

.guide-two-column p,
.guide-source-note {
  color: #62666d;
  font-size: 0.83rem;
  line-height: 1.6;
}

.guide-source-note {
  margin: 22px 0 0;
}

.guide-source-note a {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(217, 71, 0, 0.3);
  text-underline-offset: 3px;
}

.guide-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.guide-steps li {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 60px;
  padding: 12px 14px 12px 64px;
  counter-increment: guide-step;
}

.guide-steps li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  content: counter(guide-step);
  place-items: center;
  color: var(--accent);
  background: #fff3ec;
  border-radius: 11px;
  font-family: Oswald, sans-serif;
  font-weight: 700;
}

.guide-steps li strong {
  font-size: 0.91rem;
}

.guide-steps li span {
  color: #646870;
  font-size: 0.82rem;
  line-height: 1.55;
}

.article-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 20px 22px;
  color: var(--white);
  background: #111419;
  border-radius: 11px;
  transition: 180ms ease;
}

.article-cta:hover {
  background: #1b2027;
  transform: translateY(-2px);
}

.article-cta span {
  color: #bdc1c8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-cta strong {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.78rem;
}

.loan-calculator {
  margin-top: 28px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 90, 0, 0.14), transparent 34%),
    #101318;
  border: 1px solid rgba(255, 90, 0, 0.45);
  border-radius: 15px;
}

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

.calculator-fields label {
  display: grid;
  gap: 8px;
  color: #c5c9cf;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.calculator-fields input,
.calculator-fields select {
  min-height: 50px;
  color: var(--white);
  background: #1a1e24;
  border-color: #343942;
}

.calculator-fields select {
  appearance: auto;
}

.calculator-input {
  position: relative;
}

.calculator-input input {
  padding-right: 42px;
}

.calculator-input > span {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--accent);
  font-weight: 850;
  transform: translateY(-50%);
  pointer-events: none;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.calculator-result {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 17px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.calculator-result span {
  color: #abb0b8;
  font-size: 0.71rem;
  font-weight: 650;
}

.calculator-result strong {
  overflow-wrap: anywhere;
  font-family: Oswald, sans-serif;
  font-size: 1.65rem;
}

.calculator-result--primary {
  background: var(--accent);
  border-color: var(--accent);
}

.calculator-result--primary span,
.calculator-result--primary strong {
  color: var(--white);
}

.calculator-disclaimer {
  margin: 13px 2px 0;
  color: #777b82;
  font-size: 0.7rem;
  line-height: 1.55;
}

.guide-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 27px;
}

.guide-stat-row > div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px;
  background: #f7f6f2;
  border-top: 3px solid var(--accent);
  border-radius: 9px;
}

.guide-stat-row strong {
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.guide-stat-row span {
  color: #646870;
  font-size: 0.75rem;
  line-height: 1.5;
}

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

.risk-grid section {
  position: relative;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  background: #f7f6f2;
  border: 1px solid #e3ded4;
  border-radius: 12px;
}

.risk-grid section > span {
  position: absolute;
  top: 10px;
  right: 14px;
  color: rgba(255, 90, 0, 0.15);
  font-family: Oswald, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.risk-grid h3 {
  position: relative;
  max-width: 75%;
  margin: 0 0 10px;
}

.risk-grid p {
  position: relative;
  margin: 0;
  color: #646870;
  font-size: 0.79rem;
  line-height: 1.55;
}

.seller-questions {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid #e3ded4;
}

.seller-questions li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid #e3ded4;
}

.seller-questions li:last-child {
  border-bottom: 0;
}

.seller-questions li > span {
  color: var(--accent);
  font-family: Oswald, sans-serif;
  font-weight: 700;
}

.seller-questions p {
  margin: 0;
  color: #5d6168;
  font-size: 0.82rem;
  line-height: 1.55;
}

.seller-questions strong {
  color: var(--ink);
}

.transaction-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.transaction-timeline section {
  padding: 22px;
  background: #f7f6f2;
  border: 1px solid #e3ded4;
  border-radius: 12px;
}

.transaction-timeline section > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--accent);
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transaction-timeline h3 {
  margin: 0 0 13px;
}

.transaction-timeline ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 17px;
  color: #62666d;
  font-size: 0.75rem;
  line-height: 1.5;
}

.guide-sources {
  padding: 44px 48px;
  color: var(--white);
  background: #111419;
  border-radius: 18px;
}

.guide-sources h2 {
  max-width: 680px;
  margin: 8px 0 22px;
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.guide-sources > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-sources a {
  padding: 10px 13px;
  color: #e6e8eb;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  font-size: 0.74rem;
  font-weight: 750;
}

.guide-sources a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.guide-sources > p:last-child {
  max-width: 780px;
  margin: 22px 0 0;
  color: #9ea3ab;
  font-size: 0.72rem;
  line-height: 1.6;
}

@media (max-width: 1280px) {
  .desktop-nav {
    gap: 16px;
    font-size: 0.86rem;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    gap: 4px;
    align-content: center;
  }

  .mobile-nav {
    position: fixed;
    z-index: 41;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    width: min(88vw, 390px);
    min-height: 100vh;
    min-height: 100dvh;
    padding: 105px 28px calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
    color: var(--white);
    background: #0c0e11;
    box-shadow: -24px 0 55px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms;
  }

  body.mobile-nav-open .mobile-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav__eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .mobile-nav > a:not(.mobile-nav__cta) {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 1.02rem;
    font-weight: 750;
  }

  .mobile-nav > a:not(.mobile-nav__cta):hover,
  .mobile-nav > a.is-active {
    color: var(--accent);
  }

  .mobile-nav__cta {
    width: 100%;
    margin-top: auto;
    text-align: center;
  }

  .mobile-nav-backdrop {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.64);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms;
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1080px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-toc {
    position: static;
  }

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

  .guide-toc__cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 980px) {
  .guide-hero__inner,
  .guide-intro {
    grid-template-columns: 1fr;
  }

  .guide-hero__inner {
    min-height: auto;
    gap: 42px;
    padding-block: 62px;
  }

  .guide-intro {
    gap: 24px;
  }

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

  .guide-toc {
    position: static;
  }

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

  .guide-toc__cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .guide-article {
    padding: 30px;
  }

  .guide-two-column,
  .risk-grid,
  .transaction-timeline,
  .guide-stat-row {
    grid-template-columns: 1fr;
  }

  .calculator-fields,
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .article-cta {
    display: grid;
    gap: 8px;
  }

  .article-cta strong {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .guide-hero__inner {
    padding-block: 48px;
  }

  .guide-hero__copy h1 {
    font-size: clamp(2.7rem, 11.5vw, 3.6rem);
  }

  .guide-hero__actions {
    display: grid;
    align-items: stretch;
  }

  .guide-text-link {
    padding-block: 8px;
    text-align: center;
  }

  .guide-intro {
    padding-block: 64px 38px;
  }

  .guide-intro h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .guide-toc {
    padding: 20px;
  }

  .guide-toc nav {
    grid-template-columns: 1fr;
  }

  .guide-toc__cta {
    grid-template-columns: 1fr;
  }

  .guide-access-gate { gap: 25px; padding: 24px; border-radius: 14px; }

  .guide-article {
    scroll-margin-top: 82px;
    padding: 23px;
    border-radius: 14px;
  }

  .guide-article__header {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .guide-article__header > span {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .guide-article h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  html[lang="en"] .guide-article h2 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }

  .loan-calculator {
    margin-inline: -8px;
    padding: 20px;
  }

  .calculator-result strong {
    font-size: 1.45rem;
  }

  .seller-questions li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .guide-sources {
    padding: 30px 24px;
  }
}
