:root {
  color-scheme: light;
  --color-canvas: #f6f8fa;
  --color-surface: #ffffff;
  --color-surface-alt: #eef2f4;
  --color-surface-elevated: #ffffff;
  --color-text: #111820;
  --color-text-secondary: #4b5966;
  --color-primary: #0e6f73;
  --color-primary-hover: #095a5e;
  --color-on-primary: #ffffff;
  --color-secondary: #1e3a56;
  --color-brand-bright: #31c8c3;
  --color-brand-deep: #128e90;
  --color-industrial: #a55f00;
  --color-border: #d3dce3;
  --color-border-interactive: #8695a2;
  --color-focus: #006d77;
  --color-contrast: #10232e;
  --color-contrast-deep: #071015;
  --color-on-contrast: #f3f6f8;
  --ink: var(--color-text);
  --ink-2: var(--color-secondary);
  --graphite: var(--color-text-secondary);
  --muted: #52606d;
  --line: var(--color-border);
  --soft: var(--color-surface-alt);
  --paper: var(--color-canvas);
  --accent: var(--color-primary);
  --accent-2: var(--color-primary-hover);
  --warm: var(--color-industrial);
  --focus: var(--color-focus);
  --shadow: 0 18px 50px rgba(17, 24, 32, .1);
  --radius: 10px;
  --container: 1180px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --color-canvas: #0b1117;
  --color-surface: #121a22;
  --color-surface-alt: #18242e;
  --color-surface-elevated: #1e2c37;
  --color-text: #f3f6f8;
  --color-text-secondary: #b5c0ca;
  --color-primary: #39c5c0;
  --color-primary-hover: #56d4d0;
  --color-on-primary: #07191b;
  --color-secondary: #8fb8d8;
  --color-industrial: #e3a14a;
  --color-border: #2c3a46;
  --color-border-interactive: #526879;
  --color-focus: #65d6d1;
  --color-contrast: #071015;
  --color-contrast-deep: #050b0f;
  --color-on-contrast: #f3f6f8;
  --ink: var(--color-text);
  --ink-2: var(--color-secondary);
  --graphite: var(--color-text-secondary);
  --muted: #a7b3be;
  --line: var(--color-border);
  --soft: var(--color-surface-alt);
  --paper: var(--color-canvas);
  --accent: var(--color-primary);
  --accent-2: var(--color-primary-hover);
  --warm: var(--color-industrial);
  --focus: var(--color-focus);
  --shadow: 0 18px 50px rgba(0, 0, 0, .4);
}

[data-theme="dark"] body {
  color: var(--ink);
  background: var(--paper);
}

[data-theme="dark"] .site-header {
  background: rgba(13, 17, 23, .96);
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .review,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .step {
  background: #161c24;
  border-color: var(--line);
}

[data-theme="dark"] .form {
  background: #161c24;
  border-color: var(--line);
}

[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea {
  color: var(--ink);
  background: #1c232d;
  border-color: #2a3240;
}

[data-theme="dark"] .statement-band {
  background: #161c24;
  border-color: var(--line);
}

[data-theme="dark"] .comparison {
  background: #161c24;
  border-color: var(--line);
}

[data-theme="dark"] .comparison td {
  border-color: var(--line);
}

[data-theme="dark"] .brand-band {
  background: #0d1117;
  border-color: var(--line);
}

[data-theme="dark"] .brand-rail span {
  background: #161c24;
  border-color: var(--line);
  color: var(--ink);
}

[data-theme="dark"] .pill-list li {
  background: #161c24;
  border-color: var(--line);
  color: var(--ink);
}

[data-theme="dark"] .page-hero {
  background: var(--soft);
}

[data-theme="dark"] .trust-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .018));
}

[data-theme="dark"] .experience-card {
  background: linear-gradient(135deg, rgba(38, 185, 182, .06), rgba(255, 255, 255, .02));
  border-color: rgba(38, 185, 182, .12);
}

[data-theme="dark"] .brand-showcase {
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .14), transparent 28%),
    linear-gradient(145deg, rgba(20, 28, 36, .98), rgba(9, 13, 18, .96));
  border-color: rgba(38, 185, 182, .16);
}

[data-theme="dark"] .brand-showcase__card {
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .18), transparent 56%),
    linear-gradient(160deg, rgba(20, 29, 36, .98), rgba(9, 13, 18, .98));
}

[data-theme="dark"] .button--ghost {
  color: var(--ink);
  border-color: var(--line);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-route-loading,
html.is-route-loading body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .38s ease, visibility 0s linear .38s;
}

html.is-route-loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .24s ease, visibility 0s linear 0s;
}

.page-loader__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(38, 185, 182, .16), transparent 24%),
    linear-gradient(180deg, rgba(7, 11, 16, .9), rgba(7, 11, 16, .96));
  backdrop-filter: blur(16px);
}

.page-loader__shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 20px;
  width: min(100% - 32px, 360px);
  padding: 34px 28px 28px;
  background:
    linear-gradient(180deg, rgba(20, 29, 36, .92), rgba(10, 14, 19, .98));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  transform: translateY(12px) scale(.985);
  transition: transform .42s cubic-bezier(.2, .7, .2, 1);
}

html.is-route-loading .page-loader__shell {
  transform: translateY(0) scale(1);
}

.page-loader__gauge {
  position: relative;
  width: min(100%, 252px);
  aspect-ratio: 1;
}

.page-loader__gauge::before,
.page-loader__gauge::after {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

.page-loader__gauge::before {
  width: 82%;
  height: 82%;
  background:
    radial-gradient(circle, rgba(38, 185, 182, .16), rgba(38, 185, 182, 0) 62%);
  filter: blur(10px);
}

.page-loader__gauge::after {
  width: 54%;
  height: 54%;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 26px rgba(38, 185, 182, .08);
}

.page-loader__dial {
  width: 100%;
  height: 100%;
}

.page-loader__dial-core {
  fill: rgba(15, 22, 30, .9);
  stroke: rgba(255, 255, 255, .06);
  stroke-width: 1.4;
}

.page-loader__dial-track {
  fill: none;
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 8;
  stroke-linecap: round;
}

.page-loader__dial-arc {
  fill: none;
  stroke: url(#loader-accent-arc);
  stroke-width: 8.5;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  animation: loaderArcCharge 1.4s cubic-bezier(.22, .61, .36, 1) infinite;
}

.page-loader__ticks line {
  stroke: rgba(233, 239, 245, .52);
  stroke-width: 2.6;
  stroke-linecap: round;
}

.page-loader__needle-wrap {
  transform-origin: 120px 120px;
  animation: loaderNeedleCharge 1.4s cubic-bezier(.22, .61, .36, 1) infinite;
}

.page-loader__needle {
  stroke: #f4f7fa;
  stroke-width: 3.8;
  stroke-linecap: round;
  opacity: .9;
  filter: drop-shadow(0 0 8px rgba(123, 223, 242, .24));
}

.page-loader__needle-cap {
  fill: #f4f7fa;
  stroke: rgba(38, 185, 182, .42);
  stroke-width: 4;
}

.page-loader__meta {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.page-loader__eyebrow {
  color: #f4f7fa;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.page-loader__label {
  color: rgba(232, 236, 240, .72);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@keyframes loaderNeedleCharge {
  0%,
  8% {
    transform: rotate(150deg);
  }

  80%,
  88% {
    transform: rotate(390deg);
  }

  100% {
    transform: rotate(150deg);
  }
}

@keyframes loaderArcCharge {
  0%,
  8% {
    stroke-dasharray: 0 100;
    opacity: .78;
  }

  80%,
  88% {
    stroke-dasharray: 100 100;
    opacity: 1;
  }

  100% {
    stroke-dasharray: 0 100;
    opacity: .78;
  }
}

.progress-rail {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  height: 2px;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.progress-rail__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 60%, white 40%), #f4f6f8);
  box-shadow: 0 0 20px rgba(38, 185, 182, .35);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

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

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

.section {
  padding: 92px 0;
}

.section--compact {
  padding: 68px 0;
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 185, 182, .16), transparent 26%),
    linear-gradient(135deg, #10151b 0%, #182028 52%, #222a33 100%);
}

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

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

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

h1,
.display {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.lead {
  max-width: 760px;
  color: #d9dde2;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.section .lead,
.page-hero .lead {
  color: var(--graphite);
}

.section--dark .lead {
  color: #dfe4e9;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(16, 21, 27, .08);
  backdrop-filter: blur(16px);
  transition: background-color 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  border-color: rgba(16, 21, 27, .1);
  box-shadow: 0 18px 46px rgba(16, 21, 27, .12);
}

[data-theme="dark"] .site-header {
  background: rgba(16, 21, 27, .96);
  border-bottom-color: rgba(255, 255, 255, .08);
}

[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(9, 13, 18, .985);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
}

.topbar {
  border-bottom: 1px solid rgba(16, 21, 27, .08);
}

.topbar__inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  color: var(--graphite);
  font-size: .82rem;
}

[data-theme="dark"] .topbar {
  border-bottom-color: rgba(255, 255, 255, .08);
}

[data-theme="dark"] .topbar__inner {
  color: #dfe4e9;
}

.topbar__links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  white-space: nowrap;
}

.topbar__social-link {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(16, 21, 27, .12);
  border-radius: 50%;
}

.topbar__social-link svg {
  width: 15px;
  height: 15px;
}

[data-theme="dark"] .topbar__social-link {
  color: #dfe4e9;
  border-color: rgba(255, 255, 255, .14);
}

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

.nav__mobile-switcher {
  display: none;
}

.nav__mobile-switcher-trigger,
.nav__mobile-switcher-option {
  font: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(228px, 24vw, 290px);
  min-width: 228px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  overflow: visible;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  width: 100%;
}

.nav__links {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #f4f6f8;
  font-size: .88rem;
  font-weight: 700;
}

.nav__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.language-switcher {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 4px;
  background: rgba(16, 21, 27, .04);
  border: 1px solid rgba(16, 21, 27, .08);
  border-radius: 999px;
}

.language-switcher__button {
  min-height: 30px;
  padding: 6px 10px;
  color: rgba(16, 21, 27, .76);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.language-switcher__button.is-active {
  color: #fff;
  background: var(--ink);
}

.nav__links a {
  position: relative;
  padding: 8px 0;
  color: rgba(16, 21, 27, .74);
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
}

[data-theme="dark"] .language-switcher {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .1);
}

[data-theme="dark"] .language-switcher__button {
  color: rgba(255, 255, 255, .8);
}

[data-theme="dark"] .language-switcher__button.is-active {
  color: #10151b;
  background: #fff;
}

[data-theme="dark"] .nav__links a {
  color: rgba(255, 255, 255, .82);
}

[data-theme="dark"] .nav__links a:hover,
[data-theme="dark"] .nav__links a[aria-current="page"] {
  color: #fff;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  content: "";
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(16, 21, 27, .18);
  border-radius: var(--radius);
}

[data-theme="dark"] .nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 19px;
  color: #fff;
  background: var(--ink);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 21, 27, .18);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.button--secondary {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border-color: rgba(255, 255, 255, .24);
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  background: linear-gradient(135deg, rgba(38, 185, 182, .28), rgba(255, 255, 255, .12));
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: .82rem;
  white-space: nowrap;
}

.nav__menu > .button {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide:nth-of-type(1) {
  --hero-focus-x: 72%;
  --hero-focus-y: 52%;
}

.hero-slide:nth-of-type(2) {
  --hero-focus-x: 60%;
  --hero-focus-y: 44%;
}

.hero-slide:nth-of-type(3) {
  --hero-focus-x: 56%;
  --hero-focus-y: 40%;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus-x, 50%) var(--hero-focus-y, 50%);
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(var(--hero-scale, 1.06));
  transform-origin: center center;
  transition: transform 720ms cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 21, 27, .78) 0%, rgba(16, 21, 27, .58) 42%, rgba(16, 21, 27, .14) 100%),
    linear-gradient(0deg, rgba(16, 21, 27, .72) 0%, rgba(16, 21, 27, .05) 42%);
  content: "";
}

[data-theme="dark"] .hero::before {
  background:
    linear-gradient(90deg, rgba(16, 21, 27, .94) 0%, rgba(16, 21, 27, .76) 42%, rgba(16, 21, 27, .2) 100%),
    linear-gradient(0deg, rgba(16, 21, 27, .9) 0%, rgba(16, 21, 27, .08) 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 720px;
  padding: 86px 0 144px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.hero__footer {
  display: flex;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  max-width: 700px;
}

.hero-copy__viewport {
  position: relative;
  min-height: 520px;
}

.hero-copy__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity .24s ease,
    transform .32s ease,
    visibility 0s linear .32s;
}

.hero-copy__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity .56s ease .16s,
    transform .78s ease .16s,
    visibility 0s linear 0s;
}

.hero-copy__slide h1,
.hero-copy__slide .lead,
.hero-copy__slide .eyebrow {
  animation: none;
}

.hero-copy__slide h1 {
  max-width: 10.2ch;
  font-size: clamp(2.65rem, 4.45vw, 4.45rem);
  line-height: 1.02;
}

.hero-copy__slide:nth-of-type(2) h1 {
  max-width: 13.4ch;
  font-size: clamp(2.45rem, 4.1vw, 4.05rem);
}

.hero-copy__slide:nth-of-type(3) h1 {
  max-width: 14.8ch;
  font-size: clamp(2.42rem, 4.15vw, 4rem);
}

.hero-copy__slide:nth-of-type(3) .lead {
  max-width: 35ch;
}

.hero-copy__slide .lead {
  max-width: 640px;
}

.hero-copy__slide.is-active .eyebrow {
  animation: heroCopyIn .88s .2s both;
}

.hero-copy__slide.is-active h1 {
  animation: heroCopyIn .96s .28s both;
}

.hero-copy__slide.is-active .lead {
  animation: heroCopyIn 1s .38s both;
}

.hero-copy__nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-copy__dot {
  width: 42px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, .28);
  border: 0;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}

.hero-copy__dot.is-active {
  background: var(--accent);
  transform: scaleX(1.08);
}

.service-hero-panel,
.experience-card,
.statement-band,
.showcase-card__body,
.social-card__body {
  border-radius: var(--radius);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  padding: 18px 0 8px;
  background: rgba(16, 21, 27, .92);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

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

.trust-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 204px;
  padding: 28px 28px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, .94);
}

.trust-item__icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: clamp(1.26rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.trust-item span {
  color: #cbd2da;
  max-width: 28ch;
  font-size: 1rem;
  line-height: 1.45;
}

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

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

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-frame::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
}

.media-frame--tall img {
  min-height: 520px;
}

.media-frame--experience img {
  min-height: 390px;
  object-position: center;
}

.media-frame--wide img {
  min-height: 440px;
}

.statement-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .9fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.statement-band h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.statement-band p:last-child {
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 1.05rem;
}

.experience-stack {
  display: grid;
  gap: 18px;
}

.experience-card {
  padding: 24px;
  background: linear-gradient(135deg, rgba(38, 185, 182, .08), rgba(16, 21, 27, .03));
  border: 1px solid rgba(38, 185, 182, .18);
  box-shadow: var(--shadow);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric {
  padding: 24px;
  background: #fff;
}

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

.metric span {
  color: var(--muted);
  font-size: .9rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.service-card,
.review,
.faq-item,
.contact-card,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  min-height: 230px;
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 185, 182, .38);
  box-shadow: var(--shadow);
}

.service-focus-shell {
  display: grid;
  gap: 24px;
}

.service-focus-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 24px;
  align-items: end;
}

.service-focus-intro__aside {
  display: grid;
  gap: 16px;
  justify-items: start;
}

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

.service-focus-panel {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 380px;
  color: #fff;
  background: var(--ink);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.service-focus-panel--primary {
  grid-column: span 6;
  min-height: 460px;
}

.service-focus-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-focus-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 16, .08) 0%, rgba(7, 11, 16, .36) 32%, rgba(7, 11, 16, .94) 100%),
    linear-gradient(135deg, rgba(38, 185, 182, .2), transparent 42%);
  content: "";
}

.service-focus-panel__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: inherit;
  padding: 24px;
}

.service-focus-panel__body p:not(.eyebrow),
.service-focus-panel__body li {
  color: #d9dde2;
}

.service-focus-panel__body h3 {
  max-width: 12ch;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.02;
}

.service-focus-panel__body .plain-list {
  margin-top: 4px;
}

.service-focus-panel__body .button {
  margin-top: auto;
}

.service-card__icon,
.mini-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--graphite));
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 900;
}

.mini-icon svg,
.service-card__icon svg,
.button__icon svg {
  width: 22px;
  height: 22px;
}

.service-card p,
.card p,
.step p,
.review p,
.contact-card p {
  color: var(--muted);
}

.showcase-grid,
.service-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.showcase-card,
.service-stage__card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-card img,
.service-stage__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card::before,
.service-stage__card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 21, 27, .18) 0%, rgba(16, 21, 27, .42) 36%, rgba(16, 21, 27, .94) 100%),
    linear-gradient(135deg, rgba(38, 185, 182, .18), transparent 40%);
  content: "";
}

.showcase-card__body,
.service-stage__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 410px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(16, 21, 27, 0) 0%, rgba(16, 21, 27, .24) 24%, rgba(16, 21, 27, .74) 100%);
}

.showcase-card__body::before,
.service-stage__body::before {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  top: 42%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 14, 18, .05), rgba(10, 14, 18, .58) 40%, rgba(10, 14, 18, .8) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  content: "";
}

.showcase-card__body p:not(.eyebrow),
.service-stage__body p:not(.eyebrow) {
  color: #d9dde2;
}

.service-stage__body .eyebrow {
  color: #65d6d1;
}

.showcase-card__body h3,
.service-stage__body h3 {
  max-width: 12ch;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.service-stage__body h3 {
  max-width: 90%;
}

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

.social-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.social-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 21, 27, .04), rgba(16, 21, 27, .9)),
    linear-gradient(135deg, rgba(38, 185, 182, .16), transparent 36%);
  content: "";
}

.social-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 340px;
  padding: 24px;
}

.social-card__body p:not(.eyebrow) {
  color: #d9dde2;
}

.service-explorer-section {
  color: #fff;
  background:
    linear-gradient(180deg, #10151b 0%, #182028 64%, #10151b 100%);
}

.service-explorer-section .section-heading p {
  color: #cbd2da;
}

.vehicle-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, .72fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
}

.vehicle-explorer__visual {
  position: relative;
  min-height: 430px;
  padding: clamp(20px, 4vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 74px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
}

.vehicle-explorer__visual::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  content: "";
}

.vehicle-real {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(102%, 860px);
  pointer-events: none;
  transform: translate(-50%, -44%);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .34));
}

.vehicle-real::before {
  position: absolute;
  right: 9%;
  bottom: 5%;
  left: 9%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .42), transparent 68%);
  content: "";
}

.vehicle-real img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  animation: vehicleFloat 6s ease-in-out infinite;
}

@keyframes vehicleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.vehicle-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  cursor: pointer;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px 7px 8px;
  touch-action: manipulation;
  color: #fff;
  background: rgba(16, 21, 27, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
  transform: translate(-50%, -50%);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.vehicle-hotspot:hover,
.vehicle-hotspot.is-active {
  z-index: 8;
  background: rgba(19, 142, 144, .94);
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 18px 34px rgba(38, 185, 182, .24);
  transform: translate(-50%, -50%) scale(1.04);
}

.vehicle-hotspot__dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(38, 185, 182, .18);
}

.vehicle-hotspot.is-active .vehicle-hotspot__dot {
  background: #fff;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, .18);
}

.vehicle-hotspot__label {
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 850;
}

.vehicle-hotspot__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 9;
  width: min(200px, 60vw);
  padding: 10px 12px;
  color: #dfe4e9;
  background: rgba(16, 21, 27, .96);
  border: 1px solid rgba(38, 185, 182, .44);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .28);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.vehicle-hotspot__tip::after {
  position: absolute;
  left: var(--tip-arrow, 50%);
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: rgba(16, 21, 27, .96);
  border-right: 1px solid rgba(38, 185, 182, .44);
  border-bottom: 1px solid rgba(38, 185, 182, .44);
  transform: translateX(-50%) rotate(45deg);
  content: "";
}

.vehicle-hotspot:hover .vehicle-hotspot__tip,
.vehicle-hotspot:focus-visible .vehicle-hotspot__tip,
.vehicle-hotspot.is-active .vehicle-hotspot__tip,
.vehicle-hotspot[aria-pressed="true"] .vehicle-hotspot__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vehicle-hotspot--left .vehicle-hotspot__tip {
  left: 50%;
  transform: translateX(-50%) translateY(6px);
}

.vehicle-hotspot--left:hover .vehicle-hotspot__tip,
.vehicle-hotspot--left:focus-visible .vehicle-hotspot__tip,
.vehicle-hotspot--left.is-active .vehicle-hotspot__tip,
.vehicle-hotspot--left[aria-pressed="true"] .vehicle-hotspot__tip {
  transform: translateX(-50%) translateY(0);
}

.vehicle-hotspot--left .vehicle-hotspot__tip::after {
  left: 50%;
}

.vehicle-hotspot--right .vehicle-hotspot__tip {
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(6px);
}

.vehicle-hotspot--right:hover .vehicle-hotspot__tip,
.vehicle-hotspot--right:focus-visible .vehicle-hotspot__tip,
.vehicle-hotspot--right.is-active .vehicle-hotspot__tip,
.vehicle-hotspot--right[aria-pressed="true"] .vehicle-hotspot__tip {
  transform: translateX(-50%) translateY(0);
}

.vehicle-hotspot--right .vehicle-hotspot__tip::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%) rotate(45deg);
}

.vehicle-panel {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(38, 185, 182, .12), rgba(255, 255, 255, .04)),
    rgba(16, 21, 27, .94);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  transition: opacity .18s ease, transform .18s ease;
}

.vehicle-panel.is-switching {
  opacity: .55;
  transform: translateY(6px);
}

.vehicle-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.vehicle-panel p:not(.eyebrow) {
  color: #dfe4e9;
}

.vehicle-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.vehicle-panel li {
  position: relative;
  padding-left: 25px;
  color: #cbd2da;
}

.vehicle-panel li::before {
  position: absolute;
  left: 0;
  top: .68em;
  width: 10px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.brand-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-rail {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.brand-rail span {
  display: grid;
  min-height: 72px;
  padding: 14px;
  place-items: center;
  color: var(--graphite);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16, 21, 27, .05);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  color: var(--graphite);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 750;
}

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

.section-heading p {
  max-width: 520px;
  color: var(--muted);
}

.experience-layout {
  display: grid;
  gap: 22px;
}

.experience-layout__copy {
  display: grid;
  gap: 0;
}

.brand-showcase {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(38, 185, 182, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .12), transparent 28%),
    linear-gradient(145deg, rgba(20, 28, 36, .98), rgba(9, 13, 18, .96));
  box-shadow: 0 24px 54px rgba(16, 21, 27, .18);
}

.brand-showcase::before,
.brand-showcase::after {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  content: "";
  pointer-events: none;
}

.brand-showcase::before {
  top: -64px;
  right: -44px;
  width: 180px;
  height: 180px;
  background: rgba(38, 185, 182, .1);
}

.brand-showcase::after {
  left: -36px;
  bottom: -64px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, .045);
}

.brand-showcase__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.brand-showcase__copy {
  display: grid;
  gap: 8px;
}

.brand-showcase__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-showcase__title {
  margin: 0;
  color: #f4f7fa;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 850;
  line-height: 1.18;
}

.brand-showcase__body {
  margin: 0;
  color: #d7e0e8;
  font-size: .96rem;
}

.brand-showcase__count {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 118px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
}

.brand-showcase__count-value {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.brand-showcase__count-label {
  color: #c7d2db;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-showcase__grid--logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-showcase__card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: space-between;
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .16), transparent 56%),
    linear-gradient(160deg, rgba(20, 29, 36, .98), rgba(9, 13, 18, .98));
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.brand-showcase__card::before {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: rgba(255, 255, 255, .07);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  content: "";
}

.brand-showcase__card:nth-child(1)::before { content: "01"; }
.brand-showcase__card:nth-child(2)::before { content: "02"; }
.brand-showcase__card:nth-child(3)::before { content: "03"; }
.brand-showcase__card:nth-child(4)::before { content: "04"; }
.brand-showcase__card:nth-child(5)::before { content: "05"; }
.brand-showcase__card:nth-child(6)::before { content: "06"; }
.brand-showcase__card:nth-child(7)::before { content: "07"; }

.brand-showcase__card::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(38, 185, 182, 0));
  opacity: .3;
  content: "";
  transform-origin: left center;
  transform: scaleX(.52);
  transition: transform .24s ease, opacity .24s ease;
}

.brand-showcase__card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 185, 182, .28);
  box-shadow: 0 22px 42px rgba(0, 0, 0, .24);
}

.brand-showcase__card:hover::after,
.brand-showcase__card--feature::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand-showcase__card--feature {
  grid-column: span 2;
  min-height: 156px;
  border-color: rgba(38, 185, 182, .22);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .24);
}

.brand-showcase__card--logo-only {
  min-height: 116px;
  place-items: center;
  padding: 20px;
}

.brand-showcase__card--logo-only::before {
  content: none;
}

.brand-showcase__index {
  color: rgba(237, 245, 250, .7);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.brand-showcase__logo-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
}

.brand-showcase__card--logo-only .brand-showcase__logo-shell {
  justify-content: center;
  width: 100%;
  min-height: 0;
}

.brand-showcase__logo-shell img {
  display: block;
  width: auto;
  max-width: 128px;
  max-height: 50px;
  filter: drop-shadow(0 10px 18px rgba(38, 185, 182, .16));
}

.brand-showcase__card--logo-only .brand-showcase__logo-shell img {
  max-width: 138px;
  max-height: 46px;
}

.brand-showcase__name {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: .02em;
}

.brand-showcase--expandable {
  display: flex;
  flex-direction: column;
}

.brand-showcase__extra {
  order: 3;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .32s ease, opacity .24s ease;
}

.brand-showcase__extra > .brand-showcase__grid {
  overflow: hidden;
}

.brand-showcase[open] .brand-showcase__extra {
  grid-template-rows: 1fr;
  opacity: 1;
}

.brand-showcase__summary {
  order: 4;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 12px 16px;
  color: #f4f7fa;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  list-style: none;
  transition: border-color .24s ease, background .24s ease, transform .24s ease;
}

.brand-showcase__summary::-webkit-details-marker {
  display: none;
}

.brand-showcase__summary::marker {
  content: "";
}

.brand-showcase__summary::after {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  content: "+";
  transition: transform .24s ease;
}

.brand-showcase__summary:hover,
.brand-showcase__summary:focus-visible {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(38, 185, 182, .32);
  transform: translateY(-1px);
}

.brand-showcase__summary:focus-visible {
  outline: 2px solid rgba(38, 185, 182, .42);
  outline-offset: 4px;
}

.brand-showcase__summary-label--open {
  display: none;
}

.brand-showcase[open] .brand-showcase__summary::after {
  transform: rotate(45deg);
}

.brand-showcase[open] .brand-showcase__summary-label--closed {
  display: none;
}

.brand-showcase[open] .brand-showcase__summary-label--open {
  display: inline;
}

.brand-showcase--minimal {
  gap: 14px;
  padding: 0;
  margin-top: 34px;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-showcase--minimal::before,
.brand-showcase--minimal::after,
.brand-showcase--minimal .brand-showcase__card::before,
.brand-showcase--minimal .brand-showcase__card::after {
  content: none;
}

.brand-showcase--minimal .brand-showcase__grid--logos {
  gap: 14px;
}

.brand-showcase--minimal .brand-showcase__card--logo-only {
  min-height: 112px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, .045);
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

.brand-showcase--minimal .brand-showcase__card--logo-only:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .065);
  box-shadow: none;
}

.brand-showcase--minimal .brand-showcase__logo-shell {
  justify-content: center;
  min-height: 0;
}

.brand-showcase--minimal .brand-showcase__logo-shell img {
  max-width: 152px;
  max-height: 58px;
  filter: none;
}

.brand-showcase--minimal .brand-showcase__summary {
  width: 100%;
  margin-top: 2px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  justify-content: center;
  gap: 10px;
}

.brand-showcase--minimal .brand-showcase__summary:hover,
.brand-showcase--minimal .brand-showcase__summary:focus-visible {
  background: none;
  border-color: transparent;
  transform: none;
}

.brand-showcase--minimal .brand-showcase__summary:focus-visible {
  outline: none;
}

.brand-showcase--logo-wall {
  position: relative;
  gap: 0;
  margin-top: 34px;
  padding: 24px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(49, 60, 74, .97), rgba(26, 34, 44, .99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .03),
    0 30px 72px rgba(7, 11, 16, .26);
  isolation: isolate;
}

.brand-showcase--logo-wall::before,
.brand-showcase--logo-wall::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-showcase--logo-wall::before {
  inset: 18px 26px auto;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .12), rgba(255, 255, 255, 0));
}

.brand-showcase--logo-wall::after {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .08), transparent 24%),
    radial-gradient(circle at center, rgba(255, 255, 255, .035), transparent 54%);
}

.brand-showcase--logo-wall .brand-showcase__eyebrow {
  position: relative;
  z-index: 1;
  padding: 18px 26px 24px;
  margin: 0;
  color: rgba(236, 240, 244, .82);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-align: center;
}

.brand-showcase__grid--logo-wall {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  background:
    linear-gradient(180deg, rgba(112, 124, 140, .16), rgba(84, 96, 110, .08));
}

.brand-showcase__tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 16px 12px;
  background: transparent;
  box-shadow:
    inset -1px 0 0 rgba(255, 255, 255, .05),
    inset 0 -1px 0 rgba(255, 255, 255, .05);
  transition: transform .24s ease, background .24s ease;
}

.brand-showcase__tile::after {
  content: "";
  display: none;
}

.brand-showcase__tile.is-hidden-row {
  display: none;
}

.brand-showcase__tile:hover {
  transform: none;
  background: rgba(255, 255, 255, .022);
}

.brand-showcase--logo-wall .brand-showcase__logo-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 184px);
  min-width: 0;
  min-height: 112px;
  margin-inline: auto;
  padding: 0;
}

.brand-showcase--logo-wall .brand-showcase__logo-shell img {
  display: block;
  width: 100%;
  max-width: 184px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: drop-shadow(0 8px 16px rgba(8, 13, 18, .12));
  transition: transform .24s ease;
}

.brand-showcase__tile--badge .brand-showcase__logo-shell img {
  width: 100%;
  max-width: 184px;
  height: 88px;
}

.brand-showcase__tile--wide .brand-showcase__logo-shell img {
  width: 100%;
  max-width: 184px;
  height: 88px;
}

.brand-showcase__tile:hover .brand-showcase__logo-shell img {
  transform: scale(1.02);
}

.brand-showcase__fade {
  position: absolute;
  right: 0;
  bottom: 102px;
  left: 0;
  z-index: 1;
  height: 104px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 13, 18, 0), rgba(9, 13, 18, .95) 84%);
  transition: opacity .24s ease;
}

.brand-showcase--logo-wall.is-collapsed .brand-showcase__fade {
  opacity: 1;
}

.brand-showcase__actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 20px 26px 26px;
  background: linear-gradient(180deg, rgba(27, 36, 46, .92), rgba(19, 25, 33, .98));
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.brand-showcase__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 360px);
  padding: 16px 26px;
  color: #f4f7fa;
  background: rgba(16, 21, 27, .62);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.brand-showcase__toggle::after {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  content: "+";
}

.brand-showcase__toggle:hover,
.brand-showcase__toggle:focus-visible {
  background: rgba(22, 29, 37, .84);
  border-color: rgba(38, 185, 182, .34);
  transform: translateY(-1px);
}

.brand-showcase__toggle:focus-visible {
  outline: 2px solid rgba(38, 185, 182, .34);
  outline-offset: 4px;
}

.brand-showcase--logo-wall.is-expanded .brand-showcase__toggle::after {
  content: "−";
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.check {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 900;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(38, 185, 182, .12), transparent 28%),
    linear-gradient(180deg, #10151b 0%, #15202a 42%, #0e1318 100%);
}

.journey-heading p {
  max-width: 60ch;
  color: #d9dde2;
}

.journey-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 24px;
  margin-bottom: 38px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .22);
}

.journey-summary__copy h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.journey-summary__copy p:last-child {
  margin-bottom: 0;
  color: #d7e0e8;
}

.journey-summary__tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.journey-summary__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 6px 0;
}

.journey-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(38, 185, 182, .15), rgba(38, 185, 182, .75), rgba(38, 185, 182, .15));
  content: "";
  transform: translateX(-50%);
}

.journey-step {
  position: relative;
  min-height: 138px;
}

.journey-step--left {
  padding-right: calc(50% + 34px);
}

.journey-step--right {
  padding-left: calc(50% + 34px);
}

.journey-step__node {
  position: absolute;
  left: 50%;
  top: 30px;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 4px solid #10151b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(38, 185, 182, .14);
}

.journey-step__node::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(38, 185, 182, .5);
  border-radius: 50%;
  content: "";
  animation: pulseNode 2.5s ease-in-out infinite;
}

.journey-step__card {
  position: relative;
  padding: 24px 24px 22px;
  color: #fff;
  background: linear-gradient(150deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: 0 24px 42px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.journey-step__card::before {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
}

.journey-step__card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 185, 182, .32);
  box-shadow: 0 28px 52px rgba(0, 0, 0, .28);
}

.journey-step__index {
  display: inline-block;
  margin-bottom: 12px;
  padding-top: 12px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.journey-step__card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.08;
}

.journey-step__card p {
  margin-bottom: 0;
  color: #d9e2ea;
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(1);
    opacity: .85;
  }

  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: process;
}

.process-stage {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(244, 246, 248, .96));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 12px);
  box-shadow: var(--shadow);
}

.process-stage__header {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.process-stage__copy h2 {
  max-width: 12ch;
}

.process-stage__copy .muted {
  max-width: 54ch;
}

.process-stage__aside {
  height: 100%;
}

.process-stage__aside h3 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.04;
}

.process-stage__aside .lead {
  margin-bottom: 22px;
}

.process-stage__timeline {
  margin-top: 4px;
}

.process-stage__timeline .journey-step__node {
  border-color: #f4f6f8;
}

.process-stage__timeline .journey-step__card {
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .1), transparent 42%),
    linear-gradient(155deg, #19232d, #233140 58%, #273748 100%);
  border-color: rgba(123, 223, 242, .12);
}

.process-stage__timeline .journey-step__card p {
  color: #cdd8e3;
}

.step {
  position: relative;
  min-height: 238px;
  padding: 28px;
  overflow: hidden;
  counter-increment: process;
}

.step::before {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .14em;
  content: "STEP " counter(process, decimal-leading-zero);
}

.step::after {
  position: absolute;
  right: -28px;
  bottom: -58px;
  color: rgba(16, 21, 27, .06);
  font-size: 9rem;
  font-weight: 900;
  content: counter(process);
}

.dark-panel {
  padding: clamp(28px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .18), transparent 26%),
    linear-gradient(145deg, rgba(15, 21, 27, .98), rgba(8, 12, 16, .98));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  box-shadow: 0 26px 56px rgba(0, 0, 0, .28);
}

.dark-panel p {
  color: #edf2f7;
}

.dark-panel--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

[data-theme="dark"] .process-stage {
  background:
    radial-gradient(circle at top right, rgba(38, 185, 182, .12), transparent 24%),
    linear-gradient(145deg, rgba(17, 22, 28, .98), rgba(10, 14, 19, .98));
  border-color: var(--line);
  box-shadow: 0 26px 56px rgba(0, 0, 0, .34);
}

[data-theme="dark"] .process-stage__timeline .journey-step__node {
  border-color: #141a22;
}

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

.review {
  padding: 28px;
}

.review__stars {
  margin-bottom: 16px;
  color: var(--warm);
  letter-spacing: .12em;
}

.review cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

.page-hero {
  position: relative;
  padding: 92px 0 68px;
  overflow: hidden;
  background: var(--soft);
}

.page-hero--image {
  min-height: 430px;
  color: #fff;
  background: var(--ink);
}

.page-hero--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.05);
  transform-origin: center center;
  transition: transform 720ms cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.page-hero--image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(16, 21, 27, .92), rgba(16, 21, 27, .45));
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero--service {
  min-height: 520px;
}

.page-hero--service h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
  line-height: 1.02;
}

.page-hero--image .lead {
  color: #e7ebef;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.page-hero--image .breadcrumb {
  color: #d9dde2;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 28px;
  align-items: end;
}

.service-hero-panel {
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(38, 185, 182, .16), rgba(255, 255, 255, .06)),
    rgba(16, 21, 27, .74);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .24);
  backdrop-filter: blur(8px);
}

.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.service-detail ul,
.plain-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
}

.plain-list--light {
  color: #d9dde2;
}

.section-heading--tight {
  align-items: center;
}

.section--social .section-heading p {
  max-width: 560px;
}

.reveal-on-scroll,
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(.99);
  transition:
    opacity var(--reveal-duration, 560ms) cubic-bezier(.2, .7, .2, 1),
    transform var(--reveal-duration, 560ms) cubic-bezier(.2, .7, .2, 1),
    border-color 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison th,
.comparison td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison th {
  color: #fff;
  background: var(--ink);
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.comparison td:nth-child(2) {
  font-weight: 800;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  color: var(--ink);
  text-align: left;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  inset: 9px 2px auto;
  height: 2px;
  background: var(--accent);
  content: "";
}

.faq-item__icon::after {
  transform: rotate(90deg);
  transition: transform .18s ease;
}

.faq-item[open] .faq-item__icon::after {
  transform: rotate(0);
}

.faq-item__answer {
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.contact-card {
  padding: 24px;
}

.contact-card h2 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.form h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: .92rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd2da;
  border-radius: var(--radius);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.map-panel {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(38, 185, 182, .74), rgba(16, 21, 27, .72)),
    url("../images/hero-workshop-teal.webp") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel p {
  max-width: 440px;
  color: #f4f6f8;
}

.site-footer {
  color: #dbe4ec;
  background:
    radial-gradient(circle at top left, rgba(38, 185, 182, .12), transparent 26%),
    linear-gradient(180deg, #0f141a 0%, #090d11 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
  padding: 58px 0;
}

.footer-main img {
  width: min(100%, 220px);
  height: auto;
  margin-bottom: 18px;
}

.footer-main h2,
.footer-main h3 {
  color: #fff;
  font-size: 1rem;
}

.footer-main p,
.footer-main li {
  color: #dbe4ec;
}

.footer-main ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-main a {
  color: #eef3f8;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #aeb7c1;
  font-size: .9rem;
}

@media (prefers-reduced-motion: reduce) {
  .journey-step__node::after {
    animation: none;
  }

  .hero__media,
  .page-hero--image img,
  .reveal-on-scroll,
  [data-reveal] {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .progress-rail {
    display: none;
  }
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  gap: 10px;
}

.sticky-cta a {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(16, 21, 27, .24);
}

.sticky-cta a.sticky-cta__whatsapp {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

.sticky-cta a.sticky-cta__whatsapp:hover {
  color: #fff;
  background: #1fba59;
  border-color: #1fba59;
}

.sticky-cta__whatsapp svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

@media (max-width: 720px) {
  .brand-showcase {
    padding: 18px;
  }

  .brand-showcase__hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .brand-showcase__summary {
    width: 100%;
  }

  .brand-showcase--minimal {
    padding: 0;
  }

  .brand-showcase--minimal .brand-showcase__card--logo-only {
    min-height: 98px;
    padding: 20px 18px;
  }

  .brand-showcase--logo-wall {
    padding: 22px 0 20px;
  }

  .brand-showcase--logo-wall .brand-showcase__eyebrow {
    padding: 16px 20px 22px;
  }

  .brand-showcase__grid--logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .brand-showcase__tile {
    min-height: 148px;
    padding: 16px 12px;
  }

  .brand-showcase--logo-wall .brand-showcase__logo-shell {
    min-width: 0;
    min-height: 96px;
    width: min(100%, 160px);
    padding: 0;
  }

  .brand-showcase--logo-wall .brand-showcase__logo-shell img {
    width: 100%;
    max-width: 160px;
    height: 78px;
  }

  .brand-showcase__tile--badge .brand-showcase__logo-shell img {
    width: 100%;
    max-width: 160px;
    height: 78px;
  }

  .brand-showcase__tile--wide .brand-showcase__logo-shell img {
    width: 100%;
    max-width: 160px;
    height: 78px;
  }

  .brand-showcase__fade {
    bottom: 96px;
    height: 92px;
  }

  .brand-showcase__actions {
    padding: 18px 18px 22px;
    background: linear-gradient(180deg, rgba(27, 36, 46, .94), rgba(19, 25, 33, .98));
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 10px;
    min-height: 74px;
  }

  .nav__mobile-switcher {
    min-width: 0;
  }

  .nav__mobile-switcher-trigger {
    min-height: 36px;
    padding: 0 10px 0 12px;
    gap: 6px;
    font-size: .68rem;
  }

  .nav__mobile-switcher-menu {
    min-width: 136px;
    padding: 8px;
  }

  .nav__mobile-switcher-option {
    min-height: 36px;
    padding: 0 10px;
    font-size: .76rem;
  }

  .brand {
    width: clamp(166px, 42vw, 208px);
  }

  .brand-showcase__count {
    width: 100%;
    justify-items: start;
  }

  .brand-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .brand-showcase__card,
  .brand-showcase__card--feature {
    min-height: 118px;
    padding: 16px;
  }

  .brand-showcase__card--feature {
    grid-column: span 2;
  }

  .brand-showcase__logo-shell img {
    max-width: 110px;
    max-height: 40px;
  }

  .brand-showcase__card--logo-only .brand-showcase__logo-shell img {
    max-width: 118px;
    max-height: 38px;
  }

  .brand-showcase__summary {
    padding: 11px 14px;
    font-size: .74rem;
    letter-spacing: .12em;
  }

  .brand-showcase--minimal .brand-showcase__summary {
    padding: 0;
  }

  .brand-showcase--minimal .brand-showcase__logo-shell img {
    max-width: 118px;
    max-height: 42px;
  }

  .brand-showcase__grid--logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .brand-showcase__tile {
    min-height: 126px;
    padding: 14px 10px;
  }

  .brand-showcase--logo-wall .brand-showcase__logo-shell {
    min-height: 78px;
    width: min(100%, 128px);
    padding: 0;
  }

  .brand-showcase--logo-wall .brand-showcase__logo-shell img {
    width: 100%;
    max-width: 128px;
    height: 66px;
  }

  .brand-showcase__tile--badge .brand-showcase__logo-shell img {
    width: 100%;
    max-width: 128px;
    height: 66px;
  }

  .brand-showcase__tile--wide .brand-showcase__logo-shell img {
    width: 100%;
    max-width: 128px;
    height: 66px;
  }

  .brand-showcase__fade {
    bottom: 84px;
    height: 78px;
  }

  .brand-showcase__actions {
    padding: 14px 14px 18px;
    background: linear-gradient(180deg, rgba(27, 36, 46, .95), rgba(19, 25, 33, .98));
  }

  .brand-showcase__toggle {
    width: 100%;
    min-width: 0;
    padding: 12px 18px;
    font-size: .74rem;
  }
}

@media (max-width: 980px) {
  html {
    scrollbar-width: none;
  }

  body {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  .topbar {
    display: none;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    min-height: 78px;
  }

  .nav__mobile-switcher {
    position: relative;
    display: inline-flex;
    justify-self: start;
  }

  .nav__mobile-switcher-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px 0 14px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

.nav__mobile-switcher-code {
  line-height: 1;
}

.nav__mobile-switcher-flag {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 0 0 1px rgba(10, 10, 10, .18);
}

.nav__mobile-switcher-flag[data-lang-flag="it"] {
  background: linear-gradient(90deg, #009246 0 33.333%, #f7f7f7 33.333% 66.666%, #ce2b37 66.666% 100%);
}

.nav__mobile-switcher-flag[data-lang-flag="en"] {
  background: #012169 url("/assets/icons/flag-uk.svg") center / cover no-repeat;
}

.nav__mobile-switcher-flag[data-lang-flag="es"] {
  background: linear-gradient(180deg, #aa151b 0 26%, #f1bf00 26% 74%, #aa151b 74% 100%);
}

.nav__mobile-switcher-chevron {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  line-height: 1;
  transition: transform .22s ease, color .22s ease;
}

.nav__mobile-switcher.is-open .nav__mobile-switcher-chevron {
  color: #fff;
  transform: rotate(180deg);
}

  .nav__mobile-switcher-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: grid;
    gap: 6px;
    min-width: 148px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(15, 21, 29, .96);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }

  .nav__mobile-switcher.is-open .nav__mobile-switcher-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
  }

.nav__mobile-switcher-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
    gap: 10px;
    min-height: 38px;
    padding: 0 12px;
    color: rgba(255, 255, 255, .84);
    border-radius: 12px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .01em;
  }

  .nav__mobile-switcher-option:hover,
  .nav__mobile-switcher-option:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .06);
  }

  .nav__mobile-switcher-option.is-active {
    color: #081017;
    background: linear-gradient(180deg, #ffffff, #dfe8ef);
  }

  .nav__mobile-switcher-option-copy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .nav__mobile-switcher-option-code {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .brand {
    width: clamp(190px, 40vw, 238px);
    min-width: 0;
    justify-self: center;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    justify-self: end;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    display: none;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    padding: 108px 24px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    background:
      radial-gradient(circle at top right, rgba(38, 185, 182, .14), transparent 24%),
      linear-gradient(180deg, rgba(16, 21, 27, .995), rgba(24, 32, 40, .995));
    border: 0;
    border-radius: 0;
    box-shadow: none;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    z-index: 2;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .site-header[data-open="true"] .nav__menu {
    display: grid;
    align-content: start;
    gap: 28px;
  }

  .site-header[data-open="true"] .nav {
    position: relative;
    z-index: 3;
  }

  .site-header[data-open="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header[data-open="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-open="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__links {
    display: grid;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .nav__links a {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 18px 0;
    color: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: clamp(1.15rem, 3vw, 1.4rem);
  }

  .nav__links a::after {
    right: auto;
    bottom: 0;
    width: 44px;
  }

  .nav__menu > .button {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
    margin-inline: auto;
  }

  .nav__tools {
    display: none;
  }

  .hero,
  .hero__content {
    min-height: 680px;
  }

  .hero-slide:nth-of-type(1) {
    --hero-focus-x: 76%;
    --hero-focus-y: 66%;
    --hero-scale: 1.02;
  }

  .hero-slide:nth-of-type(2) {
    --hero-focus-x: 59%;
    --hero-focus-y: 60%;
    --hero-scale: 1.01;
  }

  .hero-slide:nth-of-type(3) {
    --hero-focus-x: 58%;
    --hero-focus-y: 54%;
    --hero-scale: 1.01;
  }

  .hero-copy__viewport {
    min-height: 560px;
  }

  .hero-copy__slide h1 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 4.65vw, 4rem);
  }

  .hero-copy__slide:nth-of-type(2) h1 {
    max-width: 12.8ch;
    font-size: clamp(2.25rem, 4.15vw, 3.5rem);
  }

  .hero-copy__slide:nth-of-type(3) h1 {
    max-width: 14.1ch;
    font-size: clamp(2.2rem, 4.05vw, 3.45rem);
  }

  .trust-strip {
    position: relative;
  }

  .trust-strip__inner,
  .grid--3,
  .grid--4,
  .process,
  .reviews,
  .showcase-grid,
  .social-grid,
  .service-stage,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-explorer {
    grid-template-columns: 1fr;
  }

  .vehicle-explorer__visual {
    min-height: 390px;
  }

  .split,
  .split--reverse,
  .contact-layout,
  .hero__grid,
  .service-focus-intro,
  .statement-band,
  .service-hero-layout,
  .dark-panel--split,
  .process-stage__header {
    grid-template-columns: 1fr;
  }

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

  .journey-summary__tags {
    justify-content: flex-start;
  }

  .journey-timeline::before {
    left: 9px;
    transform: none;
  }

  .journey-step--left,
  .journey-step--right {
    padding-right: 0;
    padding-left: 42px;
  }

  .journey-step__node {
    left: 9px;
  }

  .split--reverse .media-frame {
    order: 2;
  }

  .process-stage__copy h2,
  .process-stage__copy .muted {
    max-width: none;
  }

  .hero-copy__slide {
    width: 100%;
  }

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

  .section-heading {
    display: block;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .service-focus-panel,
  .service-focus-panel--primary {
    grid-column: span 1;
    min-height: 380px;
  }

  .showcase-card,
  .showcase-card__body {
    min-height: 360px;
  }

  .process-stage {
    padding: 28px 24px;
  }
}

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

  .section {
    padding: 64px 0;
  }

  .brand {
    width: 220px;
    min-width: 220px;
  }

  .hero,
  .hero__content {
    min-height: 610px;
  }

  .hero-slide:nth-of-type(1) {
    --hero-focus-x: 74%;
    --hero-focus-y: 72%;
    --hero-scale: 1.01;
  }

  .hero-slide:nth-of-type(2) {
    --hero-focus-x: 58%;
    --hero-focus-y: 68%;
    --hero-scale: 1;
  }

  .hero-slide:nth-of-type(3) {
    --hero-focus-x: 58%;
    --hero-focus-y: 56%;
    --hero-scale: 1;
  }

  .hero__content {
    padding: 58px 0 92px;
  }

  .hero__grid {
    justify-items: center;
    align-items: start;
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
    width: min(100%, 34rem);
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy__viewport {
    min-height: 360px;
    width: 100%;
  }

  .hero-copy__slide h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(1.92rem, 6.9vw, 2.7rem);
    line-height: 1.05;
  }

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

  .service-focus-panel,
  .service-focus-panel--primary {
    min-height: 360px;
  }

  .service-focus-panel__body {
    padding: 22px;
  }

  .service-focus-panel__body h3 {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .trust-item {
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .trust-item__icon {
    width: 50px;
    height: 50px;
  }

  .trust-item__icon svg {
    width: 38px;
    height: 38px;
  }

  .trust-item strong {
    font-size: 1.18rem;
  }

  .trust-item span {
    max-width: none;
    font-size: .98rem;
  }

  .hero-copy__slide:nth-of-type(2) h1 {
    max-width: 12.1ch;
    font-size: clamp(1.72rem, 5.9vw, 2.25rem);
  }

  .hero-copy__slide:nth-of-type(3) h1 {
    max-width: 13.8ch;
    font-size: clamp(1.84rem, 6.15vw, 2.42rem);
  }

  .hero-copy__slide .lead {
    max-width: 32ch;
    margin-inline: auto;
    font-size: .98rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(16, 21, 27, .62) 0%, rgba(16, 21, 27, .42) 100%),
      linear-gradient(0deg, rgba(16, 21, 27, .58) 0%, rgba(16, 21, 27, .04) 52%);
  }

  [data-theme="dark"] .hero::before {
    background:
      linear-gradient(90deg, rgba(16, 21, 27, .76) 0%, rgba(16, 21, 27, .5) 100%),
      linear-gradient(0deg, rgba(16, 21, 27, .72) 0%, rgba(16, 21, 27, .05) 52%);
  }

  .hero-copy__slide .eyebrow,
  .hero-copy__slide .lead {
    text-shadow: 0 8px 22px rgba(5, 8, 12, .28);
  }

  .hero-copy__slide h1 {
    text-shadow: 0 12px 28px rgba(5, 8, 12, .34);
  }

  .hero__actions,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__footer {
    width: 100%;
    justify-content: center;
  }

  .hero-copy__nav {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .trust-strip__inner,
  .grid--3,
  .grid--4,
  .process,
  .reviews,
  .showcase-grid,
  .social-grid,
  .service-stage,
  .metric-row,
  .brand-rail,
  .footer-main,
  .form__grid {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    min-height: 300px;
  }

  .media-frame--experience img {
    min-height: 248px;
    object-position: center;
  }

  .showcase-card,
  .showcase-card__body {
    min-height: 300px;
  }

  .showcase-card__body,
  .journey-step__card,
  .journey-summary {
    padding: 20px;
  }

  .showcase-card__body h3 {
    max-width: none;
    font-size: 1.5rem;
  }

  .process-stage {
    padding: 22px 18px;
  }

  .process-stage__aside h3 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

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

  .journey-step__node {
    top: 26px;
  }

  .journey-summary__tags span {
    width: 100%;
    justify-content: center;
  }

  .vehicle-explorer__visual {
    min-height: 340px;
    padding: 18px;
  }

  .vehicle-real {
    width: 126%;
    transform: translate(-50%, -43%);
  }

  .vehicle-hotspot {
    min-height: 34px;
    padding: 7px;
  }

  .vehicle-hotspot__tip {
    bottom: calc(100% + 10px);
    width: min(205px, 72vw);
    font-size: .74rem;
  }

  .vehicle-hotspot__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .vehicle-panel {
    padding: 24px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .form {
    padding: 22px;
  }

.sticky-cta {
  display: flex;
}
}

@media (max-width: 560px) {
  .page-loader__shell {
    width: min(100% - 26px, 340px);
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .page-loader__gauge {
    width: min(100%, 220px);
  }

  .page-loader__eyebrow {
    font-size: .7rem;
    letter-spacing: .2em;
  }

  .page-loader__label {
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader__shell {
    transition: none;
  }

  .page-loader__dial-arc,
  .page-loader__needle-wrap {
    animation: none;
  }
}

.vehicle-hotspot.is-active > .vehicle-hotspot__tip,
.vehicle-hotspot[aria-pressed="true"] > .vehicle-hotspot__tip {
  opacity: 1 !important;
  visibility: visible;
  transform: translateX(-50%) translateY(0) !important;
}

.vehicle-hotspot--left.is-active > .vehicle-hotspot__tip,
.vehicle-hotspot--left[aria-pressed="true"] > .vehicle-hotspot__tip,
.vehicle-hotspot--right.is-active > .vehicle-hotspot__tip,
.vehicle-hotspot--right[aria-pressed="true"] > .vehicle-hotspot__tip {
  transform: translateX(-50%) translateY(0) !important;
}

/* PU.RO. CAR design system: semantic surfaces, accessible actions and technical rhythm. */
body {
  color: var(--color-text);
  background: var(--color-canvas);
}

::selection {
  color: var(--color-on-primary);
  background: var(--color-primary);
}

.section {
  padding-block: clamp(72px, 8vw, 104px);
}

.section--compact {
  padding-block: clamp(56px, 6vw, 72px);
}

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

.section--showcase {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section--dark,
.service-explorer-section {
  color: var(--color-on-contrast);
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 200, 195, .12), transparent 28%),
    linear-gradient(135deg, var(--color-contrast) 0%, #16313f 56%, var(--color-contrast-deep) 100%);
}

.section--dark .eyebrow,
.dark-panel .eyebrow,
.hero .eyebrow,
.page-hero--image .eyebrow {
  color: #65d6d1;
}

.section--dark .lead,
.section--dark .section-heading > p,
.dark-panel .lead {
  color: #d5dfe6;
}

.site-header {
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  border-bottom-color: color-mix(in srgb, var(--color-text) 10%, transparent);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-surface) 98%, transparent);
  border-color: color-mix(in srgb, var(--color-text) 12%, transparent);
  box-shadow: 0 16px 38px rgba(17, 24, 32, .1);
}

[data-theme="dark"] .site-header,
[data-theme="dark"] .site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-canvas) 96%, transparent);
  border-color: var(--color-border);
}

.brand {
  position: relative;
  width: clamp(184px, 18vw, 202px);
  min-width: 184px;
  padding: 4px 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: none;
  transition: transform .2s ease;
}

.brand__logo {
  display: block;
}

.brand__logo--dark {
  display: none;
}

.brand:hover,
.brand:active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: scale(1.015);
}

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

[data-theme="dark"] .brand,
[data-theme="dark"] .brand:hover,
[data-theme="dark"] .brand:active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

[data-theme="dark"] .brand__logo--light {
  display: none;
}

[data-theme="dark"] .brand__logo--dark {
  display: block;
}

.theme-toggle {
  display: inline-grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  color: var(--color-text);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-interactive);
  border-radius: 50%;
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

.theme-toggle--mobile {
  display: none;
}

.nav__mobile-actions {
  display: contents;
}

.language-switcher {
  background: var(--color-surface-alt);
  border-color: var(--color-border);
}

.language-switcher__button {
  color: var(--color-text-secondary);
}

.language-switcher__button.is-active {
  color: #fff;
  background: var(--color-secondary);
}

.nav__links a {
  color: var(--color-text-secondary);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--color-text);
}

.nav-toggle {
  color: var(--color-text);
  border-color: var(--color-border-interactive);
}

.button {
  color: #fff;
  background: var(--color-secondary);
  border-radius: var(--radius);
}

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

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

.button--ghost {
  color: var(--color-text);
  background: transparent;
  border-color: var(--color-border-interactive);
}

.button--ghost:hover {
  background: var(--color-surface-alt);
  border-color: var(--color-primary);
}

.section--dark .button--secondary,
.dark-panel .button--secondary,
.hero .button--secondary,
.page-hero--image .button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .36);
}

.card,
.service-card,
.review,
.faq-item,
.contact-card,
.step,
.form,
.statement-band,
.comparison {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .review,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .step,
[data-theme="dark"] .form,
[data-theme="dark"] .statement-band,
[data-theme="dark"] .comparison {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.section--dark .card,
.section--dark .service-card {
  color: var(--color-on-contrast);
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.section--dark .card p,
.section--dark .service-card p {
  color: #c8d4dc;
}

.service-card__icon,
.mini-icon {
  color: var(--color-on-primary);
  background: var(--color-primary);
}

.field input,
.field select,
.field textarea {
  color: var(--color-text);
  background: var(--color-surface);
  border-color: var(--color-border-interactive);
}

[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea {
  color: var(--color-text);
  background: var(--color-surface-elevated);
  border-color: var(--color-border-interactive);
}

.faq-item summary {
  color: var(--color-text);
  background: var(--color-surface);
}

.comparison th {
  color: var(--color-on-contrast);
  background: var(--color-contrast);
}

.brand-band {
  background: var(--color-surface-alt);
  border-color: var(--color-border);
}

.brand-rail span,
[data-theme="dark"] .brand-rail span {
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border-color: var(--color-border);
}

.dark-panel {
  color: var(--color-on-contrast);
  background:
    radial-gradient(circle at top right, rgba(49, 200, 195, .14), transparent 28%),
    linear-gradient(145deg, var(--color-contrast), var(--color-contrast-deep));
  border-color: rgba(255, 255, 255, .12);
}

.process-stage {
  background:
    radial-gradient(circle at top right, rgba(14, 111, 115, .07), transparent 25%),
    var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="dark"] .process-stage {
  background:
    radial-gradient(circle at top right, rgba(57, 197, 192, .1), transparent 25%),
    var(--color-surface);
}

.hero {
  min-height: 0;
  color: var(--color-on-contrast);
  background: var(--color-contrast-deep);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(7, 16, 21, .9) 0%, rgba(7, 16, 21, .64) 45%, rgba(7, 16, 21, .18) 100%),
    linear-gradient(0deg, rgba(7, 16, 21, .76) 0%, rgba(7, 16, 21, .04) 44%);
}

.hero__content {
  min-height: 630px;
  padding: 78px 0 92px;
}

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

.hero-copy__dot.is-active {
  background: var(--color-brand-bright);
}

.trust-strip {
  margin-top: 0;
  padding: 20px 0;
  background: rgba(7, 16, 21, .96);
  border-color: rgba(255, 255, 255, .1);
}

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

.trust-item {
  min-height: 162px;
  padding: 20px;
  gap: 8px;
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .1);
}

.trust-item__icon {
  width: 42px;
  height: 42px;
  color: #65d6d1;
}

.trust-item__icon svg {
  width: 34px;
  height: 34px;
}

.trust-item strong {
  font-size: 1.05rem;
}

.trust-item span {
  color: #c8d4dc;
  font-size: .88rem;
}

.service-focus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.service-focus-panel,
.service-focus-panel--primary {
  display: grid;
  grid-template-rows: 270px 1fr;
  grid-column: auto;
  min-height: 0;
  height: 100%;
  color: var(--color-text);
  background: var(--color-surface);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(17, 24, 32, .09);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-focus-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(17, 24, 32, .12);
}

[data-theme="dark"] .service-focus-panel,
[data-theme="dark"] .service-focus-panel--primary {
  background: var(--color-surface);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

.service-focus-panel img {
  position: static;
  inset: auto;
  width: 100%;
  height: 270px;
  object-fit: cover;
  filter: none;
}

.service-focus-panel::before {
  display: none;
}

.service-focus-panel__body {
  z-index: auto;
  align-content: start;
  gap: 10px;
  min-height: 420px;
  padding: 28px;
  color: var(--color-text);
  background: var(--color-surface);
}

.service-focus-panel__body p:not(.eyebrow),
.service-focus-panel__body li {
  color: var(--color-text-secondary);
}

.service-focus-panel__body .eyebrow {
  color: var(--color-primary-hover);
  font-weight: 900;
  letter-spacing: .13em;
}

[data-theme="dark"] .service-focus-panel__body .eyebrow {
  color: var(--color-primary);
}

.service-focus-panel__body h3 {
  max-width: 90%;
  color: var(--color-text);
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
}

.service-focus-panel__marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.service-focus-panel__icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #07191b;
  background: #65d6d1;
  border-radius: 12px;
}

.service-focus-panel__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.service-focus-panel .button--secondary {
  width: auto;
  justify-self: start;
  color: var(--color-on-primary);
  background: var(--color-primary);
  border-color: transparent;
  backdrop-filter: none;
}

.service-focus-panel .button--secondary:hover {
  color: var(--color-on-primary);
  background: var(--color-primary-hover);
  border-color: transparent;
}

.section--showcase .section-heading > p,
.section--showcase > .container > .muted {
  color: var(--color-text-secondary);
}

.showcase-card,
.social-card,
.service-stage__card {
  background: var(--color-contrast);
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 14px;
}

.showcase-card::before,
.social-card::before,
.service-stage__card::before {
  z-index: 1;
}

.showcase-card__body,
.social-card__body,
.service-stage__body {
  z-index: 2;
}

.page-hero--image {
  color: var(--color-on-contrast);
  background: var(--color-contrast);
}

.page-hero--image::before {
  background: linear-gradient(90deg, rgba(7, 16, 21, .93), rgba(7, 16, 21, .48));
}

.page-hero--service img {
  object-position: center 48%;
}

.service-detail {
  border-color: var(--color-border);
}

.brand-showcase--logo-wall {
  margin-top: 34px;
  padding: 22px 22px 20px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(17, 24, 32, .08);
}

.brand-showcase--logo-wall::before,
.brand-showcase--logo-wall::after {
  display: none;
}

.brand-showcase--logo-wall .brand-showcase__eyebrow {
  padding: 4px 4px 20px;
  color: var(--color-text-secondary);
  font-weight: 750;
}

.brand-showcase__grid--logo-wall {
  gap: 1px;
  padding: 1px;
  background: var(--color-border);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

.brand-showcase__tile {
  min-height: 138px;
  padding: 16px;
  background: var(--color-surface);
  box-shadow: none;
}

.brand-showcase__tile:hover {
  background: color-mix(in srgb, var(--color-surface) 88%, var(--color-brand-bright) 12%);
}

.brand-showcase--logo-wall .brand-showcase__logo-shell {
  width: min(100%, 132px);
  min-height: 72px;
}

.brand-showcase--logo-wall .brand-showcase__logo-shell img,
.brand-showcase__tile--badge .brand-showcase__logo-shell img,
.brand-showcase__tile--wide .brand-showcase__logo-shell img {
  width: 100%;
  max-width: 124px;
  height: 58px;
  filter: none;
  transform: scale(var(--logo-scale, 1));
}

.brand-showcase__tile[aria-label="Lancia"],
.brand-showcase__tile[aria-label="Renault"] {
  --logo-scale: 1.18;
}

.brand-showcase__tile[aria-label="Lancia"] .brand-showcase__logo-shell img {
  filter: brightness(0) saturate(100%) opacity(.82);
}

.brand-showcase__tile[aria-label="Dacia"],
.brand-showcase__tile[aria-label="Jeep"] {
  --logo-scale: .9;
}

.brand-showcase__tile:hover .brand-showcase__logo-shell img {
  transform: scale(var(--logo-scale, 1));
}

.brand-showcase__fade {
  bottom: 94px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--color-surface-alt) 88%);
}

.brand-showcase__actions {
  padding: 18px 0 0;
  background: transparent;
  border: 0;
}

.brand-showcase__toggle {
  min-width: min(100%, 320px);
  padding: 13px 22px;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border-interactive);
  box-shadow: none;
}

.brand-showcase__toggle:hover,
.brand-showcase__toggle:focus-visible {
  color: var(--color-primary-hover);
  background: var(--color-surface);
  border-color: var(--color-primary);
}

.brand-showcase__toggle:focus-visible {
  outline: 3px solid var(--color-focus);
}

[data-theme="dark"] .brand-showcase--logo-wall {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="dark"] .brand-showcase__tile {
  background: #f7f9fa;
}

[data-theme="dark"] .brand-showcase__tile:hover {
  background: #edf8f7;
}

[data-theme="dark"] .brand-showcase__fade {
  background: linear-gradient(180deg, transparent, var(--color-surface) 88%);
}

[data-theme="dark"] .brand-showcase__toggle {
  color: var(--color-primary);
  background: var(--color-surface-elevated);
}

.check {
  color: var(--color-on-primary);
  background: var(--color-primary);
}

.site-footer {
  color: #dbe4ec;
  background:
    radial-gradient(circle at top left, rgba(49, 200, 195, .1), transparent 28%),
    linear-gradient(180deg, var(--color-contrast-deep), #050a0d);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a {
  color: #dbe4ec;
  text-underline-offset: 4px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #ffffff;
}

.legal-hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 82px);
  background:
    radial-gradient(circle at 80% 18%, rgba(38, 185, 182, .2), transparent 24rem),
    var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

.legal-hero__inner {
  max-width: 940px;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
}

.legal-hero .lead {
  max-width: 850px;
  color: var(--color-text-secondary);
}

.legal-updated {
  margin-top: 24px;
  color: var(--color-text-secondary);
  font-size: .92rem;
}

.legal-section-wrap {
  background: var(--color-surface);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 9px;
  padding: 24px;
  color: var(--color-text-secondary);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.legal-summary img {
  width: min(100%, 190px);
  height: auto;
  margin-bottom: 12px;
}

.legal-summary strong {
  color: var(--color-text);
}

.legal-summary a,
.legal-links a {
  color: var(--color-primary);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.legal-document {
  min-width: 0;
  max-width: 860px;
}

.legal-notice {
  padding: 16px 18px;
  margin: 0 0 34px;
  color: var(--color-text);
  background: var(--color-surface-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.legal-block + .legal-block {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--color-border);
}

.legal-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.legal-block p,
.legal-block li {
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.legal-block p + p {
  margin-top: 12px;
}

.legal-block ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 16px 0 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
}

.legal-table-wrap {
  max-width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.legal-table th {
  color: var(--color-text);
  background: var(--color-surface-alt);
  font-size: .88rem;
}

.legal-table td {
  color: var(--color-text-secondary);
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table code {
  color: var(--color-text);
  white-space: nowrap;
}

.not-found {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(38, 185, 182, .22), transparent 24rem),
    var(--color-surface-alt);
}

.not-found__inner {
  max-width: 820px;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
}

.not-found .lead {
  max-width: 680px;
  margin-inline: auto;
}

.not-found .cta-row {
  justify-content: center;
}

.not-found__languages {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.not-found__languages a {
  color: var(--color-primary);
  font-weight: 800;
}

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

  .legal-summary {
    position: static;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .nav__mobile-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
  }

  .theme-toggle--mobile {
    display: inline-grid;
    width: 40px;
    height: 40px;
  }

  .nav__mobile-switcher-trigger {
    color: var(--color-text);
    background: var(--color-surface-alt);
    border-color: var(--color-border-interactive);
    box-shadow: none;
  }

  .nav__mobile-switcher-chevron {
    color: var(--color-text-secondary);
  }

  .nav__mobile-switcher.is-open .nav__mobile-switcher-chevron {
    color: var(--color-primary);
  }

  .site-header .nav__menu .nav__links a {
    color: #dbe4ec;
  }

  .site-header .nav__menu .nav__links a:hover,
  .site-header .nav__menu .nav__links a:focus-visible,
  .site-header .nav__menu .nav__links a[aria-current="page"] {
    color: #ffffff;
  }

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

  .service-focus-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-focus-panel,
  .service-focus-panel--primary {
    min-height: 500px;
  }

  .brand-showcase--logo-wall {
    padding: 20px;
  }

  .brand-showcase__tile {
    min-height: 124px;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 64px;
  }

  .hero__content {
    min-height: 590px;
    padding: 64px 0 72px;
  }

  .hero-copy__viewport {
    min-height: 410px;
  }

  .trust-strip__inner {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-bottom: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .trust-item {
    min-width: 0;
    min-height: 176px;
    padding: 18px 16px;
    scroll-snap-align: none;
  }

  .trust-item__icon {
    width: 38px;
    height: 38px;
  }

  .trust-item__icon svg {
    width: 30px;
    height: 30px;
  }

  .trust-item strong {
    font-size: .98rem;
  }

  .trust-item span {
    font-size: .82rem;
  }

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

  .service-focus-panel,
  .service-focus-panel--primary {
    grid-template-rows: 220px auto;
    min-height: 0;
  }

  .service-focus-panel img {
    height: 220px;
  }

  .service-focus-panel__body {
    min-height: 470px;
  }

  .service-focus-panel__body h3 {
    max-width: none;
  }

  .service-focus-panel .button--secondary {
    width: 100%;
    justify-self: stretch;
  }

  .brand-showcase__grid--logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-showcase__tile {
    min-height: 104px;
    padding: 10px;
  }

  .brand-showcase--logo-wall .brand-showcase__logo-shell {
    min-height: 62px;
  }

  .brand-showcase--logo-wall .brand-showcase__logo-shell img,
  .brand-showcase__tile--badge .brand-showcase__logo-shell img,
  .brand-showcase__tile--wide .brand-showcase__logo-shell img {
    max-width: 94px;
    height: 46px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: clamp(142px, 36vw, 166px);
    min-width: 0;
    padding: 3px 6px;
    border-radius: 9px;
  }

  .nav {
    gap: 8px;
  }

  .nav__mobile-actions {
    gap: 6px;
  }

  .theme-toggle--mobile,
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .brand-showcase--logo-wall {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .service-focus-panel__body {
    padding: 22px;
  }
}
