:root {
  --yellow: #ffdd00;
  --yellow-strong: var(--yellow);
  --ink: #171717;
  --charcoal: #242424;
  --muted: #6c6f75;
  --line: #e7e2d7;
  --paper: #fffaf0;
  --white: #ffffff;
  --teal: #4a4a4a;
  --blue: #243c74;
  --shadow: 0 18px 45px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
p,
li,
summary,
label,
.button {
  overflow-wrap: break-word;
  word-break: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.section-grid > *,
.site-footer > *,
.calculator-layout > * {
  min-width: 0;
}

img,
iframe,
object {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: 190px;
  height: auto;
}

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

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  background: #f4f1e8;
  outline: none;
}

.main-nav .nav-cta {
  background: var(--yellow);
  color: var(--ink);
  margin-left: 6px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
}

.main-nav .social-button {
  width: 30px;
  min-height: 30px;
  height: 30px;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: none;
}

.main-nav .social-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.main-nav .social-button:hover,
.main-nav .social-button:focus-visible {
  background: #f4f1e8;
  outline: 2px solid rgba(23, 23, 23, 0.22);
  outline-offset: 2px;
}

.main-nav .social-button span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 8px 10px;
  font-weight: 800;
}

.hero {
  min-height: min(720px, 78svh);
  display: flex;
  align-items: end;
  padding: 100px clamp(18px, 5vw, 72px) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.18)),
    url("media/hero-renault-scenic.webp") center / cover no-repeat;
  background-position: 50% 58%;
}

.hero-inner {
  width: min(820px, 100%);
}

.page-hero {
  padding: 96px clamp(18px, 5vw, 72px) 70px;
  background: var(--charcoal);
  color: var(--white);
}

.page-hero > div {
  width: min(980px, 100%);
  margin: 0 auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
}

.location-page-hero {
  padding-top: 72px;
  padding-bottom: 50px;
}

.prices-hero {
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.band-dark .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 4.35rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: 1.22rem;
}

.hero-actions,
.store-buttons,
.document-actions,
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
}

.button svg,
.nav-toggle svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

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

.button.light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
  color: var(--ink);
}

.trust-band + .intro {
  padding-top: 112px;
}

.metric {
  padding: 32px clamp(18px, 4vw, 44px) 42px;
  border-right: 1px solid rgba(23, 23, 23, 0.16);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  font-weight: 800;
}

.section,
.intro {
  scroll-margin-top: 96px;
  padding: 86px clamp(18px, 5vw, 72px);
}

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

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

.section-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 52px;
}

.align-center {
  align-items: center;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.intro p,
.business-band p,
.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero p.hero-highlight {
  color: var(--yellow);
  font-weight: 900;
}

.inverted p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.benefit-card,
.step-card,
.tariff-card,
.vehicle-card,
.video-card,
.topic-card,
.location-card,
.document-card,
.note-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.06);
}

.benefit-card {
  padding: 24px;
}

.benefit-card-highlighted {
  border-color: var(--yellow-strong);
  background: linear-gradient(180deg, #fffdf4 0%, var(--white) 72%);
  box-shadow: 0 18px 45px rgba(255, 221, 0, 0.2);
}

.benefit-card-highlighted svg {
  color: var(--ink);
}

.topic-grid,
.location-grid,
.document-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.topic-card,
.document-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
}

.topic-card p,
.document-card p,
.location-card p,
.note-box p {
  color: var(--muted);
}

.document-card h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.22rem;
}

.topic-card svg,
.document-card svg,
.location-card > svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.topic-card:hover,
.topic-card:focus-visible,
.document-card:hover,
.document-card:focus-visible {
  border-color: var(--yellow-strong);
  outline: none;
}

.document-card span {
  font-weight: 900;
  color: var(--teal);
}

.location-card {
  padding: 24px;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.vehicle-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(74, 74, 74, 0.18);
  border-radius: 8px;
  background: #f4f4f2;
  color: var(--charcoal);
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 900;
}

.location-postal,
.muted-small {
  color: var(--muted);
  font-weight: 800;
}

.location-link-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.location-link-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.06);
  text-decoration: none;
}

.location-link-card:hover,
.location-link-card:focus-visible {
  border-color: var(--yellow-strong);
  outline: none;
}

.location-link-card svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.location-link-card span,
.location-link-card small {
  display: block;
}

.location-link-card strong {
  font-size: 1rem;
}

.location-link-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.location-landing-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
}

.location-detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.06);
}

.location-detail-card p:not(.eyebrow) {
  color: var(--muted);
}

.location-vehicle-list {
  margin: 22px 0 0;
  padding-left: 20px;
}

.location-vehicle-list li + li {
  margin-top: 8px;
}

.location-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.location-landing-map,
.location-landing-map .map-wrap,
.location-landing-map iframe {
  min-height: 100%;
}

.muted-small {
  font-size: 0.94rem;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-list strong {
  font-size: 1.05rem;
}

.feature-list span {
  color: var(--muted);
}

.club-promo-section {
  background: transparent;
}

.club-campaign {
  border-top: 8px solid var(--yellow);
  background: #f0f1f2;
}

.club-campaign > .section + .section {
  padding-top: 0;
}

.promotion-heading {
  margin-bottom: 40px;
}

.promotion-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.club-feature {
  align-items: center;
}

.club-intro-copy > p:not(.eyebrow):not(.club-promo-note) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.club-intro-copy .club-promo-note {
  color: var(--muted);
}

.club-intro-copy .club-activity-tags span {
  border-color: var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--charcoal);
}

.club-offer-card {
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.club-offer-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.club-offer-card img.club-offer-cutout {
  height: auto;
  object-fit: contain;
  padding: 16px;
  border-radius: 7px 7px 0 0;
  mix-blend-mode: darken;
}

.club-offer-visual {
  position: relative;
  container-type: inline-size;
  border-radius: 7px 7px 0 0;
  background: #f3f3f1;
}

.club-offer-badge {
  position: absolute;
  z-index: 1;
  top: -22px;
  right: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(126px, 30cqw, 170px);
  aspect-ratio: 1;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: none;
  text-align: center;
  transform: rotate(8deg);
}

.club-offer-badge span {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.25;
}

.club-offer-badge strong {
  display: block;
  margin: 5px 0;
  font-size: clamp(2.6rem, 9cqw, 3.4rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.club-offer-details {
  padding: 24px;
}

.club-offer-card ul {
  margin: 0;
  padding-left: 20px;
}

.club-offer-card li + li {
  margin-top: 8px;
}

.club-promo {
  position: relative;
  width: min(1180px, 100%);
  min-height: 540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.club-promo-copy {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 68px);
}

.club-promo-copy .eyebrow {
  color: var(--yellow);
}

.club-promo-copy h2 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.4vw, 4.35rem);
  line-height: 0.98;
}

.club-promo-copy > p:not(.eyebrow):not(.club-promo-note) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.club-activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 30px;
}

.club-activity-tags span {
  border: 1px solid rgba(255, 221, 0, 0.48);
  border-radius: 999px;
  background: rgba(255, 221, 0, 0.1);
  padding: 7px 11px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.club-promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.club-promo-actions .button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.club-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.club-phone-link svg {
  width: 19px;
  height: 19px;
  color: var(--yellow);
}

.club-promo-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.club-promo-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: end;
  padding: 210px 30px 42px 0;
  isolation: isolate;
}

.club-promo-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--yellow);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.club-promo-visual img {
  position: relative;
  z-index: 2;
  width: min(570px, 112%);
  max-width: none;
  margin-left: -42px;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
  transform: rotate(-1.5deg);
}

.club-price-seal {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 30px;
  width: 178px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 12px 0 var(--ink);
  transform: rotate(3deg);
}

.club-price-seal strong {
  font-size: 3.35rem;
  line-height: 0.9;
}

.club-price-seal span {
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 950;
}

.club-price-seal b {
  font-size: 0.78rem;
}

.club-price-seal small {
  margin-top: 8px;
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.2;
}

.note-box {
  padding: 28px;
}

.benefit-card svg,
.step-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.steps {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  position: relative;
  min-height: 236px;
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--yellow);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
}

.memo {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid #d5c98f;
  border-radius: 8px;
  background: #fff8d7;
}

.memo ul,
.tariff-card ul,
.vehicle-card ul {
  margin: 0;
  padding-left: 20px;
}

.memo li + li,
.tariff-card li + li,
.vehicle-card li + li {
  margin-top: 8px;
}

.cta-strip {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: 8px;
  background: var(--yellow);
}

.cta-strip p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-strip .button.primary {
  background: var(--ink);
  color: var(--white);
}

.compact-download-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.compact-download {
  display: flex;
  justify-content: center;
}

.calculator-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
}

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

.calculator,
.result-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

.simulation-calculator {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.calculator label,
.calculator .datetime-field,
.calculator fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.calculator fieldset {
  grid-column: 1 / -1;
  border: 0;
  padding: 0;
}

.calculator legend {
  padding: 0;
  margin-bottom: 8px;
}

.calculator input,
.calculator select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
}

.datetime-field,
.date-time-button,
.datetime-field input,
.datetime-field select,
.datetime-field input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.datetime-field input {
  caret-color: transparent;
}

.field-label {
  font-weight: 800;
}

.date-time-picker {
  position: relative;
  display: block;
}

.date-time-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.date-time-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--teal);
}

.date-time-button span {
  min-width: 0;
  white-space: normal;
  hyphens: none;
}

.date-time-picker.open .date-time-button,
.date-time-button:focus-visible {
  border-color: var(--yellow);
  outline: 3px solid rgba(255, 221, 0, 0.2);
  outline-offset: 2px;
}

.date-time-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  width: 310px;
  max-width: 100%;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.date-time-picker.open .date-time-panel {
  display: grid;
}

.calculator .date-time-panel input,
.calculator .date-time-panel select {
  min-height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.time-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 78px));
  gap: 8px;
}

.calculator .time-pair select {
  min-width: 0;
  padding: 10px;
}

.calculator .time-pair select + select {
  border-left: 1px solid #d9d9d9;
}

.input-with-unit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.calculator .input-with-unit input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
}

.input-with-unit span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-left: 1px solid #d9d9d9;
  color: var(--muted);
  font-weight: 900;
}

.calc-button {
  align-self: end;
  min-height: 48px;
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
}

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

.segment {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.segment.active {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.check-row {
  grid-column: 1 / -1;
  display: flex;
  grid-template-columns: unset;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 20px;
  height: 20px;
  min-height: 20px;
}

.result-panel {
  padding: 28px;
}

.simulation-result {
  overflow: hidden;
}

.result-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.result-head h3 {
  margin-bottom: 0;
  color: var(--white);
}

.result-head .result-title {
  font-size: 1rem;
  line-height: 1.5;
}

.calculator-disclaimer {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.6;
}

.result-total {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.result-head .result-total {
  margin-bottom: 0;
  text-align: right;
}

.result-table-wrap {
  overflow-x: auto;
  margin-bottom: 0;
}

.price-breakdown {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--white);
}

.price-breakdown th,
.price-breakdown td {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: right;
  vertical-align: top;
}

.price-breakdown th:first-child,
.price-breakdown td:first-child {
  text-align: left;
}

.tariff-row-label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.tariff-row-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88em;
  font-weight: 600;
}

.price-breakdown thead th {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.price-breakdown tfoot th,
.price-breakdown tfoot td {
  border-bottom: 0;
  color: var(--yellow);
  font-weight: 950;
}

.result-lines {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}

.result-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.result-lines dt {
  color: rgba(255, 255, 255, 0.68);
}

.result-lines dd {
  margin: 0;
  font-weight: 900;
}

.calculator-section-light {
  background: var(--white);
  color: var(--ink);
}

.calculator-section-light .calculator,
.calculator-section-light .result-panel {
  background: var(--charcoal);
  color: var(--white);
}

.calculator-section-light .result-panel .eyebrow {
  color: var(--yellow);
}

.prices-tariffs .compact-download {
  margin-top: 38px;
}

.tariff-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tariff-card {
  position: relative;
  padding: 24px;
}

.tariff-card > h3,
.tariff-card-heading {
  min-height: 32px;
  margin: 0 0 10px;
}

.tariff-card > h3 {
  display: flex;
  align-items: center;
}

.tariff-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tariff-card-heading h3,
.tariff-card-heading .badge {
  margin: 0;
}

.tariff-card.highlighted {
  border-color: var(--yellow-strong);
  box-shadow: 0 18px 45px rgba(255, 221, 0, 0.2);
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 950;
}

.price span {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 800;
}

.map-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

.location-map-section {
  padding-top: 48px;
}

.location-map-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.location-sidebar {
  position: sticky;
  top: 96px;
  min-height: 700px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.location-sidebar h2 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.location-sidebar > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.location-picker {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.location-option {
  width: 100%;
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.location-option:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.location-option:focus-visible {
  outline: 3px solid rgba(74, 74, 74, 0.24);
  outline-offset: 2px;
}

.location-option.active {
  border-color: var(--yellow-strong);
  background: var(--yellow);
}

.location-option-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
}

.location-option-name svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.location-option > span:last-child {
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.location-map-panel {
  min-width: 0;
  min-height: 700px;
}

.location-map-panel .map-wrap {
  width: 100%;
  height: 100%;
}

.location-map-panel .map-wrap iframe {
  height: 100%;
}

.location-list {
  width: min(1180px, 100%);
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 900;
}

.location-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.fleet-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fleet-grid.wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fleet-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 60px;
}

.vehicle-card {
  position: relative;
  overflow: visible;
}

.vehicle-visual {
  position: relative;
  height: 168px;
  min-height: 0;
  overflow: visible;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfaf5 0%, #f1efe7 100%);
}

.vehicle-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f2efe6;
}

.vehicle-card img.vehicle-cutout {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: min(92%, 360px);
  max-width: none;
  max-height: 202px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0;
  background: transparent;
  transform: translateX(-50%);
  transform-origin: center bottom;
  pointer-events: none;
}

.vehicle-card img.vehicle-cutout-9seater {
  left: 48.5%;
  width: min(102%, 410px);
  max-height: 216px;
  transform: translateX(-50%) perspective(900px) rotateY(-8deg) rotateZ(-0.6deg);
  transform-origin: 60% 62%;
}

.vehicle-card > div:not(.vehicle-visual) {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 22px 20px 20px;
}

.vehicle-name-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.vehicle-name-row h3,
.vehicle-name-row h4 {
  margin-bottom: 0;
}

.ev-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--charcoal);
}

.ev-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.4;
}

.vehicle-class {
  margin-bottom: 8px;
  color: var(--teal);
  font-weight: 900;
}

.vehicle-location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.vehicle-location-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f6f1;
  color: var(--charcoal);
  padding: 5px 9px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.vehicle-location-links a:hover,
.vehicle-location-links a:focus-visible {
  border-color: var(--yellow-strong);
  background: var(--yellow);
  outline: none;
  transform: translateY(-1px);
}

.vehicle-location-links svg {
  width: 14px;
  height: 14px;
  color: var(--charcoal);
}

.class-proposal {
  border-top: 1px solid var(--line);
}

.class-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.class-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.class-panel:first-child {
  padding-top: 0;
  border-top: 0;
}

.class-intro {
  align-self: start;
  position: sticky;
  top: 112px;
}

.class-intro h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.class-intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.class-carousel {
  --class-offset: 0px;
  --class-gap: 14px;
  position: relative;
  min-width: 0;
  padding-inline: 54px;
}

.class-carousel.is-slider {
  --class-offset: 0px;
}

.class-vehicles {
  overflow: hidden;
  padding: 0;
}

.class-carousel.is-slider .class-vehicles {
  margin: 0;
}

.class-pages {
  display: flex;
  gap: var(--class-gap);
  transform: translateX(var(--class-offset));
  transition: transform 420ms ease;
}

.class-carousel.is-resetting .class-pages {
  transition: none;
}

.class-page {
  flex: 0 0 calc((100% - var(--class-gap)) / 2);
  min-width: 0;
  display: block;
  padding: 12px 0 4px;
}

.class-page .class-model {
  height: 100%;
}

.class-carousel:not([data-class-carousel]) .class-vehicles {
  overflow: visible;
}

.class-carousel:not([data-class-carousel]) .class-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--class-gap);
  transform: none;
  transition: none;
}

.class-carousel-mobile .class-vehicles {
  overflow: visible;
}

.class-carousel-mobile .class-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--class-gap);
  transform: none;
  transition: none;
}

.class-carousel-mobile .class-page {
  display: block;
  padding: 12px 0 4px;
}

.class-carousel-mobile .class-carousel-control {
  display: none;
}

.class-model {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.06);
}

.class-model-visual {
  --vehicle-image-width: 86%;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
  border-bottom: 1px solid var(--line);
  background: #f3f3f1;
}

.class-model-visual img {
  position: absolute;
  left: 50%;
  bottom: -4%;
  display: block;
  width: var(--vehicle-image-width);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  /* The supplied studio images have a light, opaque background. */
  mix-blend-mode: darken;
}

.class-model-visual.photo {
  overflow: hidden;
}

.class-model-visual.photo img {
  width: 100%;
  height: 100%;
  padding: 0;
  margin-top: 0;
  object-fit: cover;
  object-position: center 58%;
  transform: none;
}

.class-model-visual-small {
  --vehicle-image-width: 72%;
}

.class-model-visual-compact {
  --vehicle-image-width: 80%;
}

.class-model-visual-wide {
  --vehicle-image-width: 96%;
}

.class-model-placeholder {
  overflow: hidden;
}

.class-model-placeholder img {
  width: 100%;
  height: 100%;
  margin-top: 0;
  object-fit: cover;
  transform: none;
}

.class-model-content {
  position: relative;
  z-index: 0;
  padding: 18px;
}

.class-model-visual:not(.photo) + .class-model-content {
  padding-top: 30px;
}

.class-model h4 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.class-model p {
  color: var(--charcoal);
}

.class-model ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.class-model li + li {
  margin-top: 7px;
}

.class-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  box-shadow:
    0 8px 18px rgba(23, 23, 23, 0.18);
  transform: translateY(-50%);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.class-carousel-control:hover,
.class-carousel-control:focus-visible {
  background: var(--yellow);
  box-shadow:
    0 10px 22px rgba(23, 23, 23, 0.24);
  transform: translateY(-50%) scale(1.04);
  outline: none;
}

.class-carousel-control:active {
  transform: translateY(-50%) scale(0.96);
}

.class-carousel-control svg {
  width: 18px;
  height: 18px;
}

.class-carousel-prev {
  left: 4px;
}

.class-carousel-next {
  right: 4px;
}

.band-app {
  background: #e8f4f2;
}

.store-badges {
  align-items: center;
  margin-top: 20px;
}

.store-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  overflow: hidden;
  line-height: 0;
}

.store-badges .app-store-badge {
  width: 156px;
}

.store-badges .google-play-badge {
  width: 175px;
}

.store-badges .app-store-badge img {
  display: block;
  height: 52px;
  width: auto;
}

.store-badges .google-play-badge img {
  display: block;
  width: 175px;
  height: auto;
  max-width: none;
}

.app-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.referral-offer {
  font-size: 1.3rem;
  font-weight: 800;
}

.referral-steps {
  display: grid;
  gap: 20px;
  padding-left: 24px;
  margin: 28px 0;
}

.referral-steps li::marker {
  font-weight: 900;
}

.referral-steps strong,
.referral-steps span {
  display: block;
}

.referral-steps span {
  margin-top: 4px;
  color: var(--muted);
}

.referral-image {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.legal-content {
  width: min(820px, 100%);
  margin: 0 auto;
  line-height: 1.7;
}

.legal-title {
  -webkit-hyphens: manual;
  hyphens: manual;
}

.legal-content h2 {
  margin: 44px 0 18px;
  font-size: 1.7rem;
  line-height: 1.25;
}

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

.legal-content h3 {
  margin-top: 30px;
  line-height: 1.35;
}

.legal-content h4,
.legal-content h5 {
  margin: 24px 0 10px;
  font-size: 1rem;
}

.legal-content a {
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.business-band {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.9), rgba(23, 23, 23, 0.72)),
    url("media/hero-app.webp") center / cover no-repeat;
  color: var(--white);
}

.business-band p {
  color: rgba(255, 255, 255, 0.76);
}

.business-band > div {
  max-width: 720px;
}

.video-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  overflow: hidden;
  text-decoration: none;
}

.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  font-weight: 900;
}

.video-card svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.documents .document-actions {
  justify-content: center;
  margin-bottom: 24px;
}

.documents .document-grid {
  margin-bottom: 28px;
}

.documents .document-card {
  border-color: #eadfbd;
  background: linear-gradient(180deg, #fffdf4 0%, #f7f3e8 100%);
}

.newsletter-layout {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 52px;
  align-items: start;
}

.newsletter-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.newsletter-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.newsletter-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.newsletter-points svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--teal);
}

.newsletter-form {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.newsletter-form .form-field {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #a7a7a7;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.newsletter-form input[type="email"]:focus-visible,
.newsletter-consent input:focus-visible {
  outline: 3px solid rgba(74, 74, 74, 0.24);
  outline-offset: 2px;
  border-color: var(--teal);
}

.newsletter-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.newsletter-consent a,
.newsletter-note a {
  color: var(--teal);
  font-weight: 800;
}

.newsletter-form .button {
  width: 100%;
  cursor: pointer;
}

.newsletter-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: flex-start;
  gap: 32px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: #111111;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  display: grid;
  justify-items: start;
  align-content: start;
}

.site-footer .footer-brand img {
  display: block;
  width: 170px;
  height: auto;
  filter: none;
}

.site-footer p {
  max-width: 430px;
  margin: 14px 0 0;
}

.footer-support {
  display: grid;
  justify-self: stretch;
  justify-items: center;
  align-content: start;
  gap: 10px;
  max-width: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
}

.footer-support p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.footer-support-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 900;
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1400px) {
  .main-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: calc(100svh - 100px);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .nav-cta {
    margin-left: 0;
  }

  .nav-social {
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1040px) {
  .two-col,
  .calculator-layout,
  .newsletter-layout,
  .location-landing-layout {
    grid-template-columns: 1fr;
  }

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

  .location-sidebar {
    position: static;
    min-height: 0;
    height: auto;
  }

  .location-map-panel {
    min-height: 0;
    height: 540px;
  }

  .location-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .club-promo {
    grid-template-columns: 1fr;
  }

  .club-promo-visual {
    min-height: 440px;
    padding-top: 160px;
  }

  .club-promo-visual::before {
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .club-promo-visual img {
    width: min(680px, 88%);
    margin: 0 auto;
  }

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

  .steps,
  .tariff-grid,
  .fleet-grid,
  .fleet-grid.wide,
  .fleet-grid-three,
  .topic-grid,
  .location-grid,
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .class-panel {
    gap: 22px;
  }

  .cta-strip {
    display: grid;
  }
}

@media (max-width: 720px) {
  .club-offer-visual {
    padding-top: 40px;
  }

  .brand img {
    width: 150px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: 78svh;
    padding: 92px 18px 46px;
    background-position: 58% 50%;
  }

  .page-hero {
    padding: 70px 18px 54px;
  }

  .location-page-hero {
    padding-top: 54px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .trust-band,
  .benefit-grid,
  .steps,
  .tariff-grid,
  .fleet-grid,
  .fleet-grid.wide,
  .fleet-grid-three,
  .video-grid,
  .topic-grid,
  .location-grid,
  .location-link-grid,
  .document-grid,
  .simulation-calculator,
  .calculator,
  .segmented {
    grid-template-columns: 1fr;
  }

  .result-head {
    display: grid;
  }

  .result-head .result-total {
    text-align: left;
  }

  .class-panel {
    grid-template-columns: 1fr;
  }

  .class-intro {
    position: static;
  }

  .class-carousel.is-slider,
  .class-carousel-mobile {
    padding-inline: 42px;
  }

  .class-carousel.is-slider .class-vehicles {
    margin: 0;
  }

  .class-carousel-mobile .class-vehicles {
    overflow: hidden;
  }

  .class-carousel:not([data-class-carousel]) .class-pages {
    grid-template-columns: 1fr;
  }

  .class-carousel.is-slider .class-pages,
  .class-carousel-mobile .class-pages {
    display: flex;
    gap: 0;
    transform: translateX(var(--class-offset));
    transition: transform 420ms ease;
  }

  .class-carousel.is-slider .class-page,
  .class-carousel-mobile .class-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 4px 4px;
  }

  .class-carousel-mobile .class-carousel-control {
    display: grid;
  }

  .class-carousel-prev {
    left: 2px;
  }

  .class-carousel-next {
    right: 2px;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.16);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section,
  .intro {
    padding: 64px 18px;
  }

  .trust-band + .intro {
    padding-top: 86px;
  }

  .memo {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .calculator-layout {
    gap: 16px;
  }

  .result-total {
    font-size: 2.35rem;
  }

  .map-wrap iframe {
    height: 460px;
  }

  .location-picker {
    grid-template-columns: 1fr;
  }

  .location-sidebar {
    padding: 20px;
  }

  .location-map-panel .map-wrap iframe {
    height: 460px;
  }

  .location-map-panel {
    min-height: 0;
    height: 460px;
  }

  .club-promo-copy {
    padding: 34px 24px 22px;
  }

  .club-promo-copy h2 {
    font-size: 2.55rem;
  }

  .club-promo-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .club-promo-visual {
    min-height: 380px;
    padding: 150px 16px 32px;
  }

  .club-promo-visual img {
    width: 100%;
    border-width: 5px;
  }

  .club-price-seal {
    top: 18px;
    right: 20px;
    width: 142px;
    border-width: 3px;
    box-shadow: 0 8px 0 var(--ink);
  }

  .club-price-seal strong {
    font-size: 2.75rem;
  }

  .club-price-seal small {
    font-size: 0.54rem;
  }

  .business-band,
  .site-footer,
  .cta-strip {
    display: grid;
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-contact-row {
    justify-content: flex-start;
  }

  .newsletter-form {
    padding: 24px 18px;
  }

  .vehicle-visual {
    height: 154px;
  }

  .vehicle-card img.vehicle-cutout {
    width: min(94%, 350px);
    max-height: 186px;
    transform: translateX(-50%);
  }

  .vehicle-card img.vehicle-cutout-9seater {
    width: min(102%, 390px);
    max-height: 198px;
    transform: translateX(-50%) perspective(900px) rotateY(-8deg) rotateZ(-0.6deg);
  }

}

@media (max-width: 420px) {
  .legal-title {
    font-size: 2.5rem;
  }

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