:root {
  --color-ink: #101317;
  --color-graphite: #1c2229;
  --color-muted: #5e6670;
  --color-line: #dfe3e8;
  --color-surface: #ffffff;
  --color-soft: #f5f6f8;
  --color-dark: #111820;
  --color-accent: #2f6f9f;
  --color-accent-dark: #245878;
  --shadow-card: 0 18px 45px rgba(17, 24, 32, 0.08);
  --radius: 8px;
  --container: 1180px;
  --section-space: clamp(72px, 9vw, 128px);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

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

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 227, 232, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--color-dark);
  color: #fff;
  letter-spacing: 0;
}

.brand-name,
.brand-note {
  display: block;
}

.brand-note {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}

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

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  font-size: 14px;
  font-weight: 650;
}

.nav-toggle {
  display: none;
}

.section {
  padding-block: var(--section-space);
}

.section-muted {
  background: var(--color-soft);
}

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

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-grid,
.split-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.82);
}

.section-copy > p:not(.eyebrow),
.section-heading p,
.card p,
.form-note {
  color: var(--color-muted);
}

.section-dark .section-copy > p:not(.eyebrow),
.section-dark .trust-list {
  color: rgba(255, 255, 255, 0.78);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-accent);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.button:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.card,
.contact-form,
.image-placeholder,
.faq-item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.card,
.contact-form,
.faq-item {
  padding: 24px;
  box-shadow: var(--shadow-card);
}

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

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

.placeholder-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.image-placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--color-muted);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(47, 111, 159, 0.12), rgba(17, 24, 32, 0.04)),
    var(--color-soft);
}

.image-placeholder.small {
  min-height: 180px;
  margin: -8px -8px 20px;
}

.trust-list,
.check-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 8px 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-muted);
}

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

.faq-item summary {
  cursor: pointer;
  font-weight: 750;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.contact-grid {
  align-items: start;
}

.contact-data {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-style: normal;
  color: var(--color-muted);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 28px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
  }

  .nav-toggle-line,
  .nav-toggle-line::before,
  .nav-toggle-line::after {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--color-ink);
    content: "";
  }

  .nav-toggle-line::before {
    transform: translateY(-7px);
  }

  .nav-toggle-line::after {
    transform: translateY(5px);
  }

  .primary-nav {
    position: absolute;
    inset: 76px 20px auto;
    display: none;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav ul {
    display: grid;
    gap: 14px;
  }

  .hero-grid,
  .split-layout,
  .split-layout-reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: auto;
    padding-block: 96px 72px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .card-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

/* Step 3: Hero and navigation refinement */
body.nav-open {
  overflow: hidden;
}

.section {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 15, 22, 0.56), rgba(10, 15, 22, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(223, 227, 232, 0.88);
  box-shadow: 0 16px 50px rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  min-width: 0;
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(17, 24, 32, 0.1);
  background: var(--color-dark);
}

.brand-name {
  font-size: 15px;
  letter-spacing: 0;
}

.brand-note {
  color: rgba(255, 255, 255, 0.68);
}

.site-header.is-scrolled .brand-note,
.site-header.is-open .brand-note {
  color: var(--color-muted);
}

.primary-nav a {
  position: relative;
  color: currentColor;
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: currentColor;
  opacity: 1;
}

.primary-nav ul a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav ul a:hover::after,
.primary-nav ul a:focus-visible::after,
.primary-nav ul a.is-active::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.site-header .button-small {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .button-small,
.site-header.is-open .button-small {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-block: 132px 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(89, 142, 181, 0.22), transparent 34%),
    linear-gradient(135deg, #0b1118 0%, #111820 44%, #202833 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 14, 0.7), rgba(5, 9, 14, 0.28) 52%, rgba(5, 9, 14, 0.45)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 32%, rgba(0, 0, 0, 0.34));
  content: "";
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  inset: auto -12% -28% 42%;
  width: 64vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 158, 196, 0.22), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 7vw, 88px);
}

.hero .eyebrow {
  color: #b7d4e7;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: 0.96;
}

.hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.hero .button-row {
  margin: 34px 0 30px;
}

.hero .button {
  min-height: 54px;
  padding-inline: 24px;
  border-color: #79aeca;
  background: #79aeca;
  color: #081018;
  box-shadow: 0 18px 40px rgba(28, 78, 108, 0.3);
}

.hero .button:hover {
  background: #9cc5d9;
  color: #081018;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.hero .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.hero .trust-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.hero .trust-list li::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #9cc5d9;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 48vw, 610px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 28%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 48% 42%, rgba(131, 168, 190, 0.32), transparent 25%),
    linear-gradient(160deg, #242d36 0%, #111820 54%, #070b10 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.16) 11%, transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 34%);
  content: "";
  opacity: 0.7;
}

.hero-visual::after {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  content: "";
}

.hero-visual-sheen {
  position: absolute;
  inset: 12% -20% auto auto;
  width: 78%;
  height: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(-17deg);
}

.vehicle-silhouette {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 21%;
  height: 42%;
}

.vehicle-body,
.vehicle-roof,
.vehicle-light,
.vehicle-wheel {
  position: absolute;
  display: block;
}

.vehicle-body {
  left: 0;
  right: 0;
  bottom: 28%;
  height: 28%;
  border-radius: 60px 72px 24px 24px;
  background: linear-gradient(180deg, #c1c9ce, #747f87 46%, #313941);
  box-shadow: inset 0 8px 12px rgba(255, 255, 255, 0.22), 0 22px 42px rgba(0, 0, 0, 0.35);
}

.vehicle-roof {
  left: 18%;
  right: 22%;
  bottom: 50%;
  height: 28%;
  border-radius: 90px 110px 16px 20px;
  background: linear-gradient(155deg, #dce2e5, #7a858d 64%, #2a3139);
  transform: skewX(-12deg);
}

.vehicle-light {
  right: 8%;
  bottom: 40%;
  width: 18%;
  height: 5px;
  border-radius: 999px;
  background: #d8f1ff;
  box-shadow: 0 0 22px rgba(156, 218, 255, 0.85);
}

.vehicle-wheel {
  bottom: 16%;
  width: 17%;
  aspect-ratio: 1;
  border: 12px solid #111820;
  border-radius: 50%;
  background: radial-gradient(circle, #9aa5ad 0 22%, #303943 23% 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.vehicle-wheel-left {
  left: 13%;
}

.vehicle-wheel-right {
  right: 13%;
}

.hero-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 13, 19, 0.62);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-visual-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual-caption strong {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.25;
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(9, 14, 20, 0.52);
    backdrop-filter: blur(12px);
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    background: rgba(255, 255, 255, 0.92);
  }

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

  .nav-toggle {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: currentColor;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    border-color: var(--color-line);
    background: #fff;
  }

  .nav-toggle-line,
  .nav-toggle-line::before,
  .nav-toggle-line::after {
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
    transform: translateY(0) rotate(90deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
    opacity: 0;
    transform: translateY(0);
  }

  .primary-nav {
    position: fixed;
    inset: 84px 20px auto;
    max-height: calc(100svh - 104px);
    overflow-y: auto;
    gap: 18px;
    padding: 22px;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .primary-nav ul {
    gap: 4px;
  }

  .primary-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }

  .primary-nav ul a::after {
    display: none;
  }

  .primary-nav .button-small {
    width: 100%;
    justify-content: center;
    background: var(--color-accent);
    color: #fff;
  }

  .hero {
    padding-block: 122px 72px;
  }

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

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

@media (max-width: 640px) {
  .section {
    scroll-margin-top: 78px;
  }

  .brand-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-note {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 112px 64px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
  }

  .hero .lead {
    font-size: 17px;
  }

  .hero .button-row {
    display: grid;
  }

  .hero .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .trust-list li {
    width: 100%;
  }

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

  .hero-visual-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .vehicle-wheel {
    border-width: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .primary-nav a,
  .primary-nav ul a::after,
  .nav-toggle-line,
  .nav-toggle-line::before,
  .nav-toggle-line::after {
    transition: none !important;
  }
}

/* Step 3 mobile hero clearance adjustment */
@media (max-width: 640px) {
  .hero {
    padding-block: 144px 64px;
  }
}

/* Step 3 final state corrections */
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--color-ink) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom-color: rgba(223, 227, 232, 0.9) !important;
  box-shadow: 0 16px 50px rgba(17, 24, 32, 0.08) !important;
  backdrop-filter: blur(18px);
}

@media (max-width: 640px) {
  .hero {
    padding-block: 168px 64px;
  }
}

/* Step 4: services and conversion areas */
.services-section {
  position: relative;
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 52%, #f4f6f8 100%);
}

.services-heading {
  max-width: 820px;
}

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

.service-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(17, 24, 32, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(47, 111, 159, 0), rgba(47, 111, 159, 0.62), rgba(47, 111, 159, 0));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 159, 0.28);
  box-shadow: 0 26px 62px rgba(17, 24, 32, 0.1);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-index {
  margin-bottom: 22px;
  color: rgba(16, 19, 23, 0.38);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(47, 111, 159, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(47, 111, 159, 0.14), rgba(255, 255, 255, 0)),
    #f8fafb;
  box-shadow: inset 0 0 0 8px rgba(47, 111, 159, 0.04);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--color-ink);
}

.service-card p {
  margin-bottom: 24px;
  color: var(--color-muted);
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--color-accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(47, 111, 159, 0.22);
  text-underline-offset: 5px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-ink);
  text-decoration-color: currentColor;
}

.service-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 174, 202, 0.18), transparent 35%),
    linear-gradient(135deg, #111820, #202833);
  color: #fff;
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.18);
}

.service-cta-panel .eyebrow {
  color: #b7d4e7;
}

.service-cta-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.service-cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.conversion-section {
  background: #fff;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.conversion-visual {
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 35% 38%, rgba(121, 174, 202, 0.24), transparent 28%),
    linear-gradient(160deg, #252d35 0%, #111820 54%, #f3f5f7 54%, #ffffff 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.16);
}

.conversion-visual span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.conversion-visual strong {
  max-width: 320px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.22;
}

.conversion-copy {
  max-width: 620px;
}

.premium-check-list {
  padding-left: 0;
  list-style: none;
}

.premium-check-list li {
  position: relative;
  padding-left: 26px;
}

.premium-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
}

.compact-actions {
  margin-top: 28px;
}

.button-muted {
  border-color: rgba(16, 19, 23, 0.18);
  background: #fff;
  color: var(--color-ink);
  box-shadow: none;
}

.button-muted:hover,
.button-muted:focus-visible {
  border-color: var(--color-accent);
  background: #f7fafc;
  color: var(--color-ink);
}

.advisory-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.advisory-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.advisory-steps {
  display: grid;
  gap: 14px;
}

.advisory-steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  padding: 22px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(17, 24, 32, 0.05);
}

.advisory-steps span {
  grid-row: span 2;
  color: rgba(47, 111, 159, 0.82);
  font-weight: 850;
}

.advisory-steps h3 {
  margin-bottom: 6px;
}

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

.advisory-footer {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

@media (max-width: 980px) {
  .services-grid,
  .conversion-panel,
  .advisory-panel {
    grid-template-columns: 1fr;
  }

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

  .service-cta-actions {
    justify-content: flex-start;
  }

  .advisory-footer {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-cta-actions,
  .service-cta-actions .button,
  .compact-actions,
  .compact-actions .button,
  .advisory-footer,
  .advisory-footer .button {
    width: 100%;
  }

  .conversion-visual {
    min-height: 300px;
  }

  .advisory-steps article {
    grid-template-columns: 1fr;
  }

  .advisory-steps span {
    grid-row: auto;
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card::before {
    transition: none !important;
  }
}

/* Step 5: vehicles, finance, purchase and test drive */
.vehicles-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.vehicle-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  margin-bottom: 34px;
}

.vehicle-heading {
  margin-bottom: 0;
}

.vehicle-note {
  padding: 22px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 32, 0.06);
}

.vehicle-note strong {
  display: block;
  margin-bottom: 6px;
}

.vehicle-note p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.vehicle-filter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(17, 24, 32, 0.05);
}

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

.vehicle-placeholder-card,
.mini-vehicle-card,
.premium-info-card,
.appointment-card {
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 58px rgba(17, 24, 32, 0.08);
}

.vehicle-placeholder-card {
  overflow: hidden;
}

.vehicle-card-media {
  min-height: 210px;
  display: grid;
  place-items: end start;
  padding: 20px;
  background:
    radial-gradient(circle at 38% 34%, rgba(121, 174, 202, 0.22), transparent 30%),
    linear-gradient(145deg, #252d35 0%, #111820 52%, #edf1f4 52%, #ffffff 100%);
  color: rgba(255, 255, 255, 0.74);
}

.vehicle-card-media span,
.vehicle-card-label,
.mini-vehicle-card span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vehicle-card-body {
  padding: 24px;
}

.vehicle-card-label,
.mini-vehicle-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent-dark);
}

.vehicle-card-category {
  color: var(--color-muted);
}

.vehicle-specs,
.request-data-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.vehicle-specs div,
.request-data-list div {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 24, 32, 0.08);
}

.vehicle-specs dt,
.request-data-list dt {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 750;
}

.vehicle-specs dd,
.request-data-list dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
}


.vehicle-empty-state {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 58px rgba(17, 24, 32, 0.08);
}

.vehicle-empty-state h3 {
  margin-top: 0;
}

.vehicle-empty-visual {
  min-height: 230px;
  border-radius: calc(var(--radius) - 4px);
}

.vehicle-title-row {
  display: grid;
  gap: 10px;
  align-items: start;
}

.vehicle-status-badge {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(47, 111, 159, 0.1);
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vehicle-status-reserved {
  background: rgba(159, 116, 47, 0.14);
  color: #7a551f;
}

.vehicle-card-description {
  color: var(--color-muted);
}

@media (max-width: 760px) {
  .vehicle-empty-state {
    grid-template-columns: 1fr;
  }
}
.finance-section,
.testdrive-section {
  background:
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
}

.purchase-section {
  background: #fff;
}

.premium-split {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.premium-split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
}

.premium-split-copy {
  max-width: 650px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.process-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.process-list span {
  color: var(--color-accent-dark);
  font-weight: 850;
}

.process-list p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.premium-info-card,
.appointment-card {
  padding: clamp(26px, 4vw, 42px);
}

.premium-info-card h3,
.appointment-card h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.dark-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 174, 202, 0.18), transparent 34%),
    linear-gradient(135deg, #111820, #242d35);
  box-shadow: 0 30px 70px rgba(17, 24, 32, 0.22);
}

.dark-card .vehicle-card-label,
.dark-card dt {
  color: #b7d4e7;
}

.dark-card dd,
.dark-card h3 {
  color: #fff;
}

.dark-card .request-data-list div {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.appointment-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(47, 111, 159, 0.08), rgba(255, 255, 255, 0) 34%),
    #fff;
}

.appointment-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.appointment-lines span {
  padding: 13px 14px;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  color: var(--color-muted);
  background: #f7f8fa;
  font-weight: 700;
}

.example-vehicles-section {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

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

.mini-vehicle-card {
  padding: 26px;
}

.mini-vehicle-card p {
  color: var(--color-muted);
}

@media (max-width: 980px) {
  .vehicle-intro-grid,
  .vehicle-filter,
  .vehicle-placeholder-grid,
  .premium-split,
  .premium-split-reverse,
  .example-vehicle-strip {
    grid-template-columns: 1fr;
  }

  .vehicle-filter {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .vehicle-filter,
  .vehicle-card-body,
  .mini-vehicle-card,
  .premium-info-card,
  .appointment-card {
    padding: 22px;
  }

  .vehicle-filter .button,
  .vehicle-placeholder-card .button,
  .premium-split .button {
    width: 100%;
  }

  .vehicle-specs div,
  .request-data-list div,
  .process-list article {
    grid-template-columns: 1fr;
  }

  .vehicle-card-media {
    min-height: 180px;
  }

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

/* Step 6: trust, about, testimonials and region */
.trust-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.trust-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.trust-data-placeholder,
.trust-card,
.team-placeholder-grid article,
.testimonial-placeholder-card {
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 52px rgba(17, 24, 32, 0.07);
}

.trust-data-placeholder {
  padding: 24px;
}

.trust-data-placeholder ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
}

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

.trust-card {
  min-height: 250px;
  padding: 26px;
}

.trust-card span {
  display: inline-block;
  margin-bottom: 26px;
  color: rgba(47, 111, 159, 0.82);
  font-weight: 850;
}

.trust-card h3 {
  margin-bottom: 12px;
}

.trust-card p,
.team-placeholder-grid p,
.testimonial-placeholder-card p,
.region-disclaimer {
  color: var(--color-muted);
}

.about-section {
  background: #fff;
}

.about-grid,
.region-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.team-visual-placeholder,
.map-placeholder {
  min-height: 470px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 30px 74px rgba(17, 24, 32, 0.16);
}

.team-visual-placeholder {
  background:
    radial-gradient(circle at 34% 28%, rgba(121, 174, 202, 0.24), transparent 30%),
    linear-gradient(145deg, #26313b 0%, #111820 58%, #f4f6f8 58%, #ffffff 100%);
}

.team-visual-placeholder span,
.map-placeholder span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.team-visual-placeholder strong,
.map-placeholder strong {
  max-width: 340px;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.14;
}

.about-copy {
  max-width: 680px;
}

.team-placeholder-grid {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.team-placeholder-grid article {
  padding: 22px;
}

.team-placeholder-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.testimonials-section {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

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

.testimonial-placeholder-card {
  min-height: 250px;
  padding: 26px;
}

.testimonial-placeholder-card h3 {
  margin-bottom: 12px;
}

.region-section {
  background: #fff;
}

.region-copy {
  max-width: 680px;
}

.region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 18px;
}

.region-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 999px;
  background: #f7f8fa;
  color: var(--color-ink);
  font-weight: 750;
}

.map-placeholder {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 70% 25%, rgba(121, 174, 202, 0.28), transparent 28%),
    linear-gradient(145deg, #111820 0%, #26313b 100%);
}

.map-placeholder::before {
  width: 64%;
  height: 42%;
  align-self: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.18) 49%, rgba(255,255,255,0.18) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255,255,255,0.18) 49%, rgba(255,255,255,0.18) 51%, transparent 52%);
  content: "";
}

@media (max-width: 980px) {
  .trust-intro,
  .trust-card-grid,
  .about-grid,
  .testimonial-placeholder-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .trust-data-placeholder,
  .trust-card,
  .team-placeholder-grid article,
  .testimonial-placeholder-card {
    padding: 22px;
  }

  .team-visual-placeholder,
  .map-placeholder {
    min-height: 330px;
    padding: 22px;
  }

  .region-pills span {
    max-width: 100%;
  }
}

/* Step 7: FAQ, contact and footer */
.faq-section {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.premium-faq-list {
  gap: 12px;
}

.premium-faq-item {
  padding: 0;
  overflow: hidden;
  border-color: rgba(17, 24, 32, 0.1);
  box-shadow: 0 16px 42px rgba(17, 24, 32, 0.06);
}

.premium-faq-item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--color-ink);
  list-style: none;
}

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

.premium-faq-item summary::after {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: 50%;
  color: var(--color-accent-dark);
  content: "+";
  font-weight: 800;
}

.premium-faq-item[open] summary::after {
  content: "-";
}

.premium-faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(121, 174, 202, 0.1), transparent 28%),
    #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.contact-copy {
  max-width: 680px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-info-grid article {
  padding: 20px;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(17, 24, 32, 0.05);
}

.contact-info-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-info-grid p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.premium-contact-form {
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(17, 24, 32, 0.1);
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.1);
}

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

.premium-contact-form input,
.premium-contact-form select,
.premium-contact-form textarea {
  border-color: rgba(17, 24, 32, 0.14);
  background: #fbfcfd;
}

.premium-contact-form input:focus,
.premium-contact-form select:focus,
.premium-contact-form textarea:focus {
  outline: 3px solid rgba(47, 111, 159, 0.28);
  border-color: var(--color-accent);
  background: #fff;
}

.premium-checkbox label {
  color: var(--color-muted);
  font-weight: 650;
}

.premium-footer {
  padding: clamp(56px, 8vw, 86px) 0 42px;
  background:
    radial-gradient(circle at 85% 0%, rgba(121, 174, 202, 0.15), transparent 30%),
    #0e151d;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(160px, 0.7fr) minmax(190px, 0.9fr) minmax(170px, 0.8fr);
  gap: clamp(26px, 5vw, 58px);
}

.footer-brand-block p,
.footer-contact-placeholders p,
.footer-legal p {
  color: rgba(255, 255, 255, 0.66);
}

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

.footer-brand .brand-note {
  color: rgba(255, 255, 255, 0.56);
}

.footer-nav,
.footer-contact-placeholders,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-layout h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-layout a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: #fff;
}

@media (max-width: 980px) {
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .premium-faq-item summary {
    min-height: 58px;
    padding: 18px 20px;
  }

  .premium-faq-item p {
    padding: 0 20px 20px;
  }

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

  .premium-contact-form {
    padding: 22px;
  }

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

/* Step 8: premium visual refinement */
:root {
  --color-platinum: #e8ecef;
  --color-silver: #c8d0d6;
  --color-steel: #6f7b86;
  --surface-glass: rgba(255, 255, 255, 0.84);
  --line-soft: rgba(17, 24, 32, 0.09);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-premium: 0 24px 70px rgba(17, 24, 32, 0.09);
  --shadow-premium-strong: 0 36px 94px rgba(17, 24, 32, 0.16);
  --section-space: clamp(86px, 9.4vw, 144px);
}

html {
  background: #0e151d;
}

body {
  min-width: 320px;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 42%, #ffffff 100%);
}

.section {
  position: relative;
}

.section:not(.hero)::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 24, 32, 0.1), transparent);
  content: "";
  pointer-events: none;
}

.section-heading {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.section-heading p,
.section-copy > p:not(.eyebrow) {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent-dark);
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.54;
}

.hero .eyebrow::before,
.service-cta-panel .eyebrow::before {
  background: currentColor;
}

h1,
h2,
h3 {
  font-weight: 760;
  text-wrap: balance;
}

p,
li,
dd,
label,
summary {
  text-wrap: pretty;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 7px;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 70%);
  content: "";
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 160ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 24, 32, 0.16);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(12%);
}

.card,
.service-card,
.vehicle-placeholder-card,
.mini-vehicle-card,
.premium-info-card,
.appointment-card,
.trust-card,
.trust-data-placeholder,
.team-placeholder-grid article,
.testimonial-placeholder-card,
.contact-info-grid article,
.premium-contact-form,
.premium-faq-item,
.vehicle-note {
  border-color: var(--line-soft);
  box-shadow: var(--shadow-premium);
}

.card,
.service-card,
.vehicle-placeholder-card,
.mini-vehicle-card,
.premium-info-card,
.appointment-card,
.trust-card,
.trust-data-placeholder,
.team-placeholder-grid article,
.testimonial-placeholder-card,
.contact-info-grid article,
.premium-contact-form,
.premium-faq-item,
.vehicle-note,
.vehicle-filter {
  backdrop-filter: blur(10px);
}

.service-card,
.vehicle-placeholder-card,
.mini-vehicle-card,
.trust-card,
.testimonial-placeholder-card,
.contact-info-grid article,
.premium-faq-item {
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.service-card:hover,
.vehicle-placeholder-card:hover,
.mini-vehicle-card:hover,
.trust-card:hover,
.testimonial-placeholder-card:hover,
.contact-info-grid article:hover,
.premium-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 159, 0.24);
  box-shadow: var(--shadow-premium-strong);
}

.hero {
  min-height: min(100svh, 920px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06));
  content: "";
  pointer-events: none;
}

.hero-visual,
.conversion-visual,
.team-visual-placeholder,
.map-placeholder,
.vehicle-card-media {
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-visual,
.conversion-visual,
.team-visual-placeholder,
.map-placeholder {
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-visual-caption,
.conversion-visual strong,
.team-visual-placeholder strong,
.map-placeholder strong {
  text-wrap: balance;
}

.trust-section,
.vehicles-section,
.about-section,
.region-section,
.contact-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(121, 174, 202, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.services-section,
.finance-section,
.testdrive-section,
.example-vehicles-section,
.testimonials-section,
.faq-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(111, 123, 134, 0.08), transparent 30%),
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
}

.purchase-section,
.advisory-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafb 52%, #ffffff 100%);
}

.service-cta-panel,
.dark-card,
.premium-footer {
  border-top: 1px solid var(--line-dark);
}

.placeholder-label,
.vehicle-card-label,
.mini-vehicle-card span,
.team-placeholder-grid span,
.contact-info-grid span {
  letter-spacing: 0.02em;
}

.vehicle-filter,
.premium-contact-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,252,253,0.9));
}

input,
select,
textarea {
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(47, 111, 159, 0.32);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 5px rgba(47, 111, 159, 0.1);
}

.premium-faq-item[open] {
  border-color: rgba(47, 111, 159, 0.24);
}

.footer-layout {
  padding-top: 10px;
}

.footer-layout h2,
.footer-brand .brand-name {
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  :root {
    --section-space: clamp(72px, 10vw, 112px);
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 72px;
  }

  .container,
  .narrow {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding-block: 142px 58px;
  }

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

  .hero .lead {
    font-size: 16.5px;
  }

  .hero-visual,
  .conversion-visual,
  .team-visual-placeholder,
  .map-placeholder {
    min-height: 300px;
  }

  .service-card,
  .vehicle-placeholder-card,
  .mini-vehicle-card,
  .trust-card,
  .testimonial-placeholder-card,
  .premium-faq-item,
  .contact-info-grid article {
    box-shadow: 0 16px 42px rgba(17, 24, 32, 0.07);
  }

  .button:hover,
  .button:focus-visible,
  .service-card:hover,
  .vehicle-placeholder-card:hover,
  .mini-vehicle-card:hover,
  .trust-card:hover,
  .testimonial-placeholder-card:hover,
  .contact-info-grid article:hover,
  .premium-faq-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::after,
  .service-card,
  .vehicle-placeholder-card,
  .mini-vehicle-card,
  .trust-card,
  .testimonial-placeholder-card,
  .contact-info-grid article,
  .premium-faq-item,
  input,
  select,
  textarea {
    transition: none !important;
  }
}

/* Step 8 mobile hero proportion adjustment */
@media (max-width: 640px) {
  .hero {
    padding-block: 126px 52px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.2vw, 44px);
  }

  .hero .button-row {
    margin: 24px 0 22px;
  }

  .hero .trust-list {
    gap: 8px;
  }

  .hero .trust-list li {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 14px;
  }

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

/* Responsive mandatory pass: desktop, laptop and tablet balance */
.primary-nav ul a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.primary-nav .button-small {
  min-height: 44px;
}

.hero {
  min-height: 100svh;
  padding-block: clamp(104px, 10vh, 124px) clamp(54px, 7vh, 72px);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1;
}

.hero .lead {
  max-width: 660px;
}

.hero-visual {
  min-height: clamp(400px, 42vw, 560px);
}

@media (max-width: 1120px) and (min-width: 981px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav ul {
    gap: 12px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .hero-grid {
    gap: clamp(30px, 4vw, 48px);
  }

  .hero h1 {
    font-size: clamp(40px, 5vw, 58px);
    max-width: 620px;
  }

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

@media (max-width: 980px) {
  .hero {
    padding-block: 118px 66px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 7.2vw, 60px);
  }

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

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

  .hero h1 {
    font-size: clamp(34px, 9.6vw, 42px);
  }

  .hero .lead {
    font-size: 16px;
  }

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

/* Responsive mandatory pass: final hero compaction */
.hero h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.01;
}

.hero .lead {
  font-size: clamp(17px, 1.55vw, 20px);
}

.hero .button-row {
  margin: 26px 0 24px;
}

.hero .trust-list li {
  min-height: 36px;
  padding: 7px 11px;
}

.hero-visual {
  min-height: clamp(380px, 38vw, 520px);
}

@media (max-width: 1120px) and (min-width: 981px) {
  .hero h1 {
    font-size: clamp(38px, 4.4vw, 52px);
    max-width: 560px;
  }

  .hero .lead {
    font-size: 17px;
  }

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

@media (max-width: 980px) {
  .hero h1 {
    font-size: clamp(38px, 6.4vw, 54px);
  }

  .hero .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .trust-list li {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(32px, 8.8vw, 38px);
  }

  .hero .lead {
    font-size: 15.5px;
  }

  .hero .button {
    min-height: 50px;
  }

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

  .hero .trust-list li {
    align-items: flex-start;
    min-height: 44px;
    font-size: 13px;
    line-height: 1.25;
  }

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

/* Step 9: accessibility and performance stabilization */
.hero {
  overflow: clip;
}

.hero-ambient {
  max-width: 100%;
}

.text-link,
.footer-layout a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-nav,
.footer-legal {
  gap: 4px;
}

.checkbox-field input {
  width: 22px;
  height: 22px;
}

.checkbox-field label {
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .text-link {
    width: 100%;
  }
}

/* Step 9: contain decorative hero ambient layer */
.hero-ambient {
  inset: auto 0 -28% auto;
  width: min(58vw, 720px);
}

/* Step 10: controlled image integration */
.hero-image-panel,
.vehicle-card-image,
.location-image-card {
  position: relative;
  padding: 0;
  isolation: isolate;
  background: #0e151d;
}

.hero-image-panel img,
.vehicle-card-image img,
.location-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-image-panel {
  display: block;
  min-height: clamp(420px, 42vw, 610px);
  margin: 0;
}

.hero-image-panel img {
  position: absolute;
  inset: 0;
  object-position: center center;
}

.hero-image-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 13, 19, 0.06), rgba(8, 13, 19, 0.68)),
    linear-gradient(90deg, rgba(8, 13, 19, 0.16), transparent 46%, rgba(8, 13, 19, 0.18));
  content: "";
  pointer-events: none;
}

.hero-image-panel::after {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  pointer-events: none;
}

.hero-image-panel .hero-visual-caption {
  z-index: 2;
}

.vehicle-card-image {
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  color: #fff;
}

.vehicle-card-image img {
  min-height: 210px;
  aspect-ratio: 16 / 10;
}

.vehicle-card-image::after,
.location-image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 13, 19, 0.74));
  content: "";
  pointer-events: none;
}

.vehicle-card-image figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.location-image-card {
  margin: 0;
  display: block;
  min-height: 470px;
}

.location-image-card img {
  position: absolute;
  inset: 0;
}

.location-image-card figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.location-image-card-small img {
  object-position: center center;
}

.map-placeholder.location-image-card::before {
  display: none;
}

@media (max-width: 980px) {
  .hero-image-panel {
    min-height: 420px;
  }

  .hero-image-panel img {
    object-position: center 42%;
  }
}

@media (max-width: 640px) {
  .hero-image-panel {
    min-height: 360px;
  }

  .hero-image-panel::after {
    inset: 10px;
  }

  .vehicle-card-image,
  .vehicle-card-image img {
    min-height: 190px;
  }

  .location-image-card {
    min-height: 330px;
  }

  .location-image-card figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
}

.vehicle-visualization-panel {
  margin-top: clamp(30px, 5vw, 56px);
  padding-top: clamp(24px, 4vw, 42px);
  border-top: 1px solid rgba(17, 24, 32, 0.1);
}

.vehicle-visualization-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.vehicle-visualization-card,
.consultation-visual-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 58px rgba(17, 24, 32, 0.08);
}

.vehicle-visualization-card img,
.consultation-visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #111820;
}

.vehicle-visualization-card div {
  padding: 16px;
}

.vehicle-visualization-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
}

.vehicle-visualization-card p,
.consultation-visual-card figcaption {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.consultation-visual-card {
  margin: 0;
}

.consultation-visual-card figcaption {
  padding: 14px 16px 16px;
  background: #fff;
}

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

@media (max-width: 640px) {
  .vehicle-visualization-grid {
    grid-template-columns: 1fr;
  }
}