:root {
  --ink: #17201d;
  --ink-soft: #34423d;
  --forest: #1d2b26;
  --paper: #f7f4ed;
  --paper-deep: #ede8de;
  --white: #fffdf8;
  --orange: #c2410c;
  --orange-dark: #9a3412;
  --line: rgba(23, 32, 29, 0.14);
  --muted: #56615d;
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 24px 70px rgba(23, 32, 29, 0.14);
  --shadow-card: 0 4px 18px rgba(23, 32, 29, 0.05);
  --shadow-soft: 0 18px 48px rgba(23, 32, 29, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 32, 29, 0.08);
  background: rgba(247, 244, 237, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  background: var(--orange);
  color: white;
  font-size: 13px;
  letter-spacing: -0.02em;
  box-shadow: 0 9px 22px rgba(242, 97, 44, 0.25);
}

.brand-name {
  font-size: 21px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.language-switch {
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.5);
}

.language-switch a {
  min-width: 34px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switch a[aria-current="page"] {
  background: var(--orange);
  color: white;
}

.main-nav a,
.site-footer a,
.text-link {
  transition: color 160ms ease;
}

.main-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--orange);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 21px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 12px;
  font-size: 14px;
}

.button-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 30px rgba(242, 97, 44, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 38px rgba(194, 65, 12, 0.28);
}

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

.button-dark:hover {
  background: #2a3632;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(23, 32, 29, 0.3);
  background: var(--white);
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.button-on-dark:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  padding: 86px 0 92px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -250px;
  top: -140px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(242, 97, 44, 0.09);
  filter: blur(4px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.fleet-copy h2,
.practice-copy h2,
.faq-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(54px, 6.1vw, 84px);
  line-height: 0.97;
}

.hero h1 em {
  color: var(--orange);
  font-weight: 500;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

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

.hero-points {
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.hero-points span {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(242, 97, 44, 0.14);
  color: var(--orange-dark);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  position: absolute;
  inset: 0 17% 0 12%;
  transform: rotate(2deg);
}

.hero-photo-car {
  position: absolute;
  width: 49%;
  height: 41%;
  right: 0;
  bottom: 8%;
  border: 8px solid var(--paper);
  transform: rotate(-3deg);
}

.hero-photo-car img {
  object-position: 50% 66%;
}

.hero-sticker {
  position: absolute;
  left: 0;
  top: 14%;
  width: 124px;
  height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  transform: rotate(-9deg);
  box-shadow: 0 18px 34px rgba(23, 32, 29, 0.22);
}

.hero-sticker::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.sticker-top {
  margin-bottom: 5px;
  color: #ff8b61;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-note {
  position: absolute;
  right: 3%;
  top: 5%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 14px;
  background: var(--white);
  padding: 13px 16px;
  box-shadow: 0 12px 30px rgba(23, 32, 29, 0.13);
  transform: rotate(3deg);
}

.hero-note strong {
  font-size: 14px;
}

.hero-note span {
  color: var(--muted);
  font-size: 10px;
}

.facts {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

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

.facts-grid > div {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.facts-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.fact-icon {
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(23, 32, 29, 0.06);
}

.facts p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.facts strong {
  color: var(--ink);
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--paper);
}

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

.section-heading h2,
.fleet-copy h2,
.practice-copy h2,
.faq-intro h2,
.contact-card h2 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p,
.centered-heading > p,
.fleet-copy > p,
.practice-copy > p,
.faq-intro > p,
.contact-card > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.split-heading > p {
  margin: 0 0 5px;
}

.benefit-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(23, 32, 29, 0.09);
}

.benefit-card-accent {
  background: var(--orange);
  color: white;
}

.card-number {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.benefit-card h3 {
  margin: auto 0 15px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Same specificity as `.benefit-card p` above, so this must stay declared
   after it in source order to win the cascade on the orange accent card. */
.benefit-card-accent .card-number,
.benefit-card-accent p {
  color: var(--white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: center;
}

.fleet-gallery {
  position: relative;
  min-height: 650px;
}

.fleet-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-photo-wide {
  left: 0;
  top: 4%;
  width: 84%;
  height: 57%;
  transform: rotate(-2deg);
}

.fleet-photo-tall {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 61%;
  border: 8px solid var(--forest);
  transform: rotate(4deg);
}

.eyebrow-on-dark {
  color: rgba(255, 255, 255, 0.64);
}

.fleet-copy > p {
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.68);
}

.model-list {
  margin: 30px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.model-list li {
  padding: 14px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.fleet-caption {
  font-size: 13px !important;
}

.fleet-header {
  max-width: 640px;
}

.fleet-cards {
  margin: 46px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.fleet-card {
  flex: 0 1 calc((100% - 3 * 20px) / 4);
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
  border-color: rgba(194, 65, 12, 0.35);
}

.fleet-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.fleet-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 75%;
  transition: transform 450ms ease;
}

.fleet-card:hover .fleet-card-media img {
  transform: scale(1.05);
}

.fleet-card-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 20px;
}

.fleet-card-name {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.fleet-card-spec {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fleet-card-price {
  margin: 0;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.fleet-footer {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
}

.fleet-footer .fleet-caption {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p {
  margin: 22px auto 0;
  max-width: 650px;
}

.steps {
  position: relative;
  margin: 62px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 26px;
  height: 1px;
  background: var(--line);
}

.steps li {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.steps h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.terms-section {
  padding: 96px 0;
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.terms-grid {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.term-card {
  position: relative;
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.term-card::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
}

.term-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(194, 65, 12, 0.28);
}

.term-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--orange-dark);
}

.term-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.practice-section {
  padding: 0 0 112px;
  background: var(--paper);
}

.practice-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  overflow: hidden;
  border-radius: 34px;
  background: #dce5db;
}

.practice-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 82px);
}

.practice-copy > p {
  max-width: 600px;
  margin: 24px 0;
  color: #4d5b55;
}

.practice-card figure {
  min-height: 520px;
  margin: 0;
}

.practice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-color: rgba(194, 65, 12, 0.4);
  text-underline-offset: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(54px, 9vw, 120px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p {
  margin: 24px 0 28px;
}

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

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

.faq-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 750;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-deep);
  color: var(--orange-dark);
  font-size: 20px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -6px 55px 28px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-section {
  padding: 0 0 100px;
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  border-radius: 34px;
  background: var(--ink);
  color: white;
  padding: clamp(40px, 7vw, 78px);
}

.contact-card > div > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.contact-card .contact-alternative {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 14px;
}

.contact-phone {
  color: white;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.contact-phone:hover {
  text-decoration-color: white;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 97, 44, 0.48);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .fleet-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
  }

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

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

  .fleet-card {
    flex-basis: calc((100% - 2 * 20px) / 3);
  }

  .fleet-gallery {
    min-height: 570px;
  }

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

  .facts-grid > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .facts-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

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

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .fleet-grid,
  .split-heading,
  .practice-card,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 600px;
    margin-top: 18px;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p {
    max-width: 620px;
  }

  .fleet-grid {
    gap: 62px;
  }

  .fleet-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .fleet-gallery {
    order: 2;
    min-height: 620px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 52px;
  }

  .steps::before {
    display: none;
  }

  .practice-copy {
    padding-bottom: 52px;
  }

  .practice-card figure {
    min-height: 430px;
  }

  .faq-intro {
    position: static;
  }

  .contact-actions {
    max-width: 470px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .header-inner .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch a {
    min-width: 31px;
  }

  .hero {
    padding: 48px 0 70px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
  }

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

  .hero-photo-main {
    inset: 0 10% 0 8%;
  }

  .hero-photo-car {
    width: 52%;
    height: 37%;
    right: -2%;
  }

  .hero-sticker {
    width: 104px;
    height: 104px;
    left: -3%;
  }

  .hero-note {
    display: none;
  }

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

  .facts-grid > div,
  .facts-grid > div:first-child,
  .facts-grid > div:nth-child(2) {
    min-height: 100px;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .fleet-copy h2,
  .practice-copy h2,
  .faq-intro h2,
  .contact-card h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

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

  .benefit-card {
    min-height: 250px;
  }

  .fleet-card {
    flex-basis: 100%;
  }

  .fleet-gallery {
    min-height: 500px;
  }

  .fleet-photo-wide {
    width: 94%;
    height: 52%;
  }

  .fleet-photo-tall {
    width: 49%;
    height: 58%;
  }

  .model-list {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .steps li {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    text-align: left;
  }

  .step-number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .steps h3 {
    margin-top: 2px;
  }

  .practice-section {
    padding-bottom: 82px;
  }

  .practice-card {
    width: calc(100% - 20px);
    border-radius: 26px;
  }

  .practice-card figure {
    min-height: 390px;
  }

  .faq-list summary {
    min-height: 80px;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact-section {
    padding-bottom: 72px;
  }

  .contact-card {
    width: calc(100% - 20px);
    gap: 34px;
    border-radius: 26px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  /* On phones the header CTA is replaced by the always-reachable bottom bar. */
  .header-actions .button {
    display: none;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(247, 244, 237, 0.92);
    backdrop-filter: blur(20px) saturate(120%);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(23, 32, 29, 0.12);
  }

  .mobile-cta .button {
    min-height: 48px;
  }

  .mobile-cta .button-primary {
    flex: 1;
  }

  .mobile-cta .mobile-call {
    flex: 0 0 auto;
    width: 54px;
    padding: 0;
    font-size: 20px;
  }
}

/* Landing links into the content pages. */
.terms-more {
  margin: 30px 0 0;
  text-align: center;
}

.faq-more {
  margin: 16px 0 0;
}

.fleet-caption a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.fleet-caption a:hover {
  color: white;
  text-decoration-color: white;
}

/* Content pages (terms, long-term rental, useful information). */
.main-nav a[aria-current="page"] {
  color: var(--orange);
}

.page-hero {
  padding: 52px 0 60px;
}

.breadcrumbs {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.breadcrumbs li:not(:first-child)::before {
  content: "›";
  margin-right: 7px;
  color: rgba(23, 32, 29, 0.35);
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(38px, 4.8vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.page-lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.checked-line {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.page-section {
  padding: 56px 0;
}

.page-section h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
}

.prose {
  max-width: 760px;
}

.prose p,
.prose ul {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose p:last-child,
.prose ul:last-child {
  margin-bottom: 0;
}

.prose a,
.info-card a {
  color: var(--orange-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(194, 65, 12, 0.35);
  text-underline-offset: 3px;
}

.prose a:hover,
.info-card a:hover {
  text-decoration-color: var(--orange-dark);
}

.info-list {
  max-width: 860px;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 24px 26px;
  box-shadow: var(--shadow-card);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card .source-line {
  color: var(--muted);
  font-size: 13px;
}

.note-card {
  max-width: 860px;
  margin-top: 22px;
  border: 1px solid rgba(194, 65, 12, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(242, 97, 44, 0.07);
  padding: 18px 22px;
}

.note-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .page-hero {
    padding: 36px 0 46px;
  }

  .page-section {
    padding: 42px 0;
  }

  .related-links .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
