:root {
  --navy-950: #041126;
  --navy-900: #071a3d;
  --navy-800: #0d2854;
  --navy-700: #173b72;
  --violet: #4947a4;
  --cyan: #19b5f5;
  --cyan-strong: #00aaf2;
  --cyan-soft: #c8f1ff;
  --ice-50: #f7fafc;
  --ice-100: #edf4f7;
  --ice-200: #dae6ec;
  --ink: #081c35;
  --muted: #586979;
  --white: #fff;
  --line-light: rgba(255,255,255,.16);
  --line-dark: rgba(8,28,53,.14);
  --shadow: 0 22px 70px rgba(5,24,53,.14);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --section-space: clamp(92px, 10vw, 160px);
  --radius-sm: 8px;
  --radius: 16px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-950);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { position: fixed; width: 100%; overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
p, h1, h2, h3, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.045em; }
h1, h2 { text-wrap: balance; }
svg { display: block; width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.shell { width: var(--shell); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--cyan);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 21px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.btn-primary { color: var(--navy-950); background: var(--cyan); box-shadow: 0 12px 34px rgba(25,181,245,.2); }
.btn-primary:hover { background: #54ccff; box-shadow: 0 16px 38px rgba(25,181,245,.3); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-dark { color: var(--white); background: var(--navy-900); }
.btn-dark:hover { background: var(--navy-700); }
.btn-outline-dark { color: var(--navy-900); border-color: rgba(7,26,61,.35); background: transparent; }
.btn-outline-dark:hover { border-color: var(--navy-900); background: rgba(7,26,61,.05); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 5px;
  font-family: var(--font-display);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.text-link.light { color: var(--white); }
.text-link.dark { color: var(--navy-900); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 1px; background: var(--cyan); }
.eyebrow.dark { color: var(--navy-700); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(4,17,38,.92);
  border-color: var(--line-light);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(18px);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 34px; }
.brand { width: 154px; align-self: stretch; display: grid; place-items: center; overflow: hidden; }
.brand img { width: 150px; height: 74px; object-fit: cover; object-position: center; border-radius: 0 0 10px 10px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 32px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding-block: 30px;
  color: rgba(255,255,255,.78);
  font-family: var(--font-display);
  font-size: .83rem;
  font-weight: 700;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 20px;
  height: 2px;
  background: var(--cyan);
  transition: right .2s ease;
}
.desktop-nav a:hover, .desktop-nav a[aria-current] { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current]::after { right: 0; }
.header-cta { min-height: 44px; padding: 10px 18px; margin-left: 4px; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line-light); border-radius: 8px; background: rgba(255,255,255,.06); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 6px auto; background: var(--white); }

.mobile-menu {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px max(24px, calc((100vw - 1240px)/2));
  color: var(--white);
  background: var(--navy-950);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-light); padding-bottom: 20px; }
.mobile-menu-label { color: rgba(255,255,255,.6); font: 700 .75rem var(--font-display); letter-spacing: .16em; text-transform: uppercase; }
.icon-button { width: 48px; height: 48px; border: 1px solid var(--line-light); border-radius: 50%; color: var(--white); background: none; font-size: 2rem; cursor: pointer; }
.mobile-menu nav { display: grid; margin-top: 30px; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: center; min-height: 66px; border-bottom: 1px solid var(--line-light); font: 700 clamp(1.45rem, 6vw, 2.2rem) var(--font-display); letter-spacing: -.04em; }
.mobile-menu nav a span { color: var(--cyan); font-size: .7rem; letter-spacing: .1em; }
.mobile-menu-actions { margin-top: auto; display: grid; gap: 18px; padding-top: 30px; }
.mobile-menu-actions .text-link { width: max-content; }

.section-dark { position: relative; color: var(--white); background: var(--navy-950); overflow: hidden; }
.atmosphere-1 { background: linear-gradient(180deg, var(--ice-100), #f5f8fa); }
.atmosphere-2 { background: var(--ice-50); }
.atmosphere-3 { background: #fff; }

.hero { min-height: 860px; padding: calc(var(--header-h) + 70px) 0 86px; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(7,26,61,.25), transparent 42%),
    repeating-linear-gradient(105deg, transparent 0 92px, rgba(255,255,255,.018) 93px 94px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -15vw; top: 8%;
  width: 72vw; height: 72vw;
  max-width: 1080px; max-height: 1080px;
  border: 1px solid rgba(39,190,249,.11);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(25,181,245,.03);
  pointer-events: none;
}
.hero-glow { position: absolute; width: 50vw; height: 60vw; right: 0; top: 0; background: radial-gradient(circle at 50% 32%, rgba(25,181,245,.18), transparent 62%); filter: blur(20px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .72fr); align-items: center; gap: clamp(54px, 8vw, 120px); }
.hero-copy { padding-top: 16px; }
.hero h1 { max-width: 760px; margin-bottom: 30px; font-size: clamp(3.4rem, 5.25vw, 5.8rem); line-height: .98; font-weight: 600; }
.hero h1 em, .section-heading h2 em, .method h2 em, .interior h2 em, .protection h2 em, .eco h2 em, .fleet-copy h2 em, .location h2 em, .faq h2 em, .final-cta h2 em, .full-wash h2 em { color: var(--cyan); font-style: normal; font-weight: 800; }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts { display: flex; gap: 42px; margin-top: 58px; padding-top: 25px; border-top: 1px solid var(--line-light); }
.hero-facts > div { display: flex; align-items: center; gap: 13px; }
.hero-facts svg { width: 24px; height: 24px; color: var(--cyan); }
.hero-facts span { display: grid; color: rgba(255,255,255,.56); font-size: .76rem; line-height: 1.5; }
.hero-facts strong { color: var(--white); font-family: var(--font-display); font-size: .85rem; }
.hero-media { position: relative; width: min(100%, 500px); justify-self: end; padding: 0 18px 54px 0; }
.video-frame { position: relative; overflow: hidden; background: var(--navy-800); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-frame { aspect-ratio: 9 / 14.3; border: 1px solid rgba(255,255,255,.18); border-radius: 140px 12px 12px 12px; box-shadow: 28px 36px 0 rgba(73,71,164,.32), 0 34px 80px rgba(0,0,0,.35); }
.hero-video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,17,38,.05), transparent 55%, rgba(4,17,38,.64)); pointer-events: none; }
.process-badge { position: absolute; z-index: 2; top: 30px; right: 25px; display: flex; align-items: center; gap: 9px; padding: 9px 12px; color: var(--white); background: rgba(4,17,38,.68); border: 1px solid rgba(255,255,255,.18); border-radius: 5px; backdrop-filter: blur(10px); font: 700 .7rem var(--font-display); text-transform: uppercase; letter-spacing: .08em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(25,181,245,.16); }
.frame-index { position: absolute; z-index: 2; bottom: 18px; right: 22px; color: rgba(255,255,255,.65); font: 700 .65rem var(--font-display); letter-spacing: .14em; }
.video-toggle { position: absolute; z-index: 4; left: 20px; bottom: 20px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--white); background: rgba(4,17,38,.62); cursor: pointer; backdrop-filter: blur(8px); }
.video-toggle svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.video-toggle:hover { background: var(--cyan); color: var(--navy-950); }
.hero-highlights { position: absolute; right: -20px; top: 30%; z-index: 3; display: grid; gap: 8px; }
.hero-highlights span { width: max-content; margin-left: auto; padding: 8px 11px; border-left: 2px solid var(--cyan); color: var(--white); background: rgba(4,17,38,.76); font: 700 .67rem var(--font-display); letter-spacing: .025em; backdrop-filter: blur(8px); }
.hero-message { position: absolute; z-index: 3; left: -58px; bottom: 0; margin: 0; padding: 17px 22px; color: var(--navy-950); background: var(--white); box-shadow: var(--shadow); font: 600 1rem var(--font-display); letter-spacing: -.03em; }
.hero-message strong { color: var(--violet); }
.wet-line { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,.08); overflow: hidden; }
.wet-line span { display: block; width: 35%; height: 100%; background: linear-gradient(90deg, transparent, var(--cyan), #fff, transparent); animation: wetLine 5s linear infinite; }
@keyframes wetLine { from { transform: translateX(-100%); } to { transform: translateX(400%); } }

.trust-bar { position: relative; z-index: 4; color: var(--white); background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 112px; display: flex; align-items: center; gap: 15px; padding: 20px clamp(18px, 2vw, 32px); border-left: 1px solid rgba(255,255,255,.09); }
.trust-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.09); }
.trust-grid svg { flex: 0 0 27px; width: 27px; height: 27px; color: var(--cyan); }
.trust-grid span { display: grid; color: rgba(255,255,255,.66); font-size: .76rem; line-height: 1.45; }
.trust-grid strong { color: var(--white); font: 700 .83rem var(--font-display); }

.campera-advantage, .services, .full-wash, .interior, .protection, .eco, .gallery, .booking, .location, .faq { padding-block: var(--section-space); }
.section-heading { margin-bottom: clamp(52px, 6vw, 88px); }
.section-heading h2, .full-wash h2, .method h2, .interior h2, .protection h2, .eco h2, .fleet-copy h2, .location h2, .faq h2, .final-cta h2 { margin-bottom: 0; color: var(--navy-900); font-size: clamp(2.6rem, 4.8vw, 5rem); font-weight: 600; line-height: 1.03; }
.section-heading > p, .split-heading > p { max-width: 500px; color: var(--muted); font-size: 1.02rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); align-items: end; gap: 60px; }
.split-heading > p { margin: 0 0 7px; }
.split-heading.light h2 { color: var(--white); }
.split-heading.light > p { color: rgba(255,255,255,.62); }
.section-heading.centered { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p { margin: 20px auto 0; }

.route { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 74px 0 58px; }
.route-line { position: absolute; z-index: 0; left: 12.5%; right: 12.5%; top: 59px; height: 2px; background: var(--ice-200); }
.route-line span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan)); transition: width 1.4s cubic-bezier(.22,1,.36,1); }
.route.is-visible .route-line span { width: 100%; }
.route-stop { position: relative; z-index: 1; padding-right: clamp(18px, 3vw, 46px); }
.route-number { color: var(--violet); font: 800 .7rem var(--font-display); letter-spacing: .1em; }
.route-marker { width: 38px; height: 38px; display: grid; place-items: center; margin: 19px 0 30px; border: 1px solid var(--violet); border-radius: 50%; background: var(--ice-100); }
.route-marker span { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(25,181,245,.15); }
.route-kicker { margin-bottom: 10px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.route-stop h3 { margin-bottom: 10px; color: var(--navy-900); font-size: 1.28rem; }
.route-stop p:last-child { max-width: 220px; color: var(--muted); font-size: .87rem; line-height: 1.6; }

.services { border-top: 1px solid var(--line-dark); }
.service-explorer { border-top: 1px solid var(--line-dark); }
.service-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line-dark); }
.service-tabs button { min-height: 76px; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border: 0; border-left: 1px solid var(--line-dark); color: var(--muted); background: transparent; font: 700 .88rem var(--font-display); cursor: pointer; }
.service-tabs button:last-child { border-right: 1px solid var(--line-dark); }
.service-tabs button span { color: #8995a0; font-size: .65rem; }
.service-tabs button[aria-selected="true"] { color: var(--white); background: var(--navy-900); }
.service-tabs button[aria-selected="true"] span { color: var(--cyan); }
.service-panel { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 430px; }
.service-panel[hidden] { display: none; }
.service-panel > article { display: flex; flex-direction: column; min-height: 360px; padding: clamp(28px, 3.3vw, 52px); border-left: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.4); }
.service-panel > article:last-child { border-right: 1px solid var(--line-dark); }
.service-panel .service-featured { color: var(--white); background: var(--violet); }
.service-panel .service-featured + .service-card { border-left: 0; }
.service-panel:has(> article:nth-child(4)) { grid-template-columns: repeat(4, 1fr); }
.service-panel:has(> article:nth-child(4)) > article { padding: clamp(25px, 2.5vw, 40px); }
.service-meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: auto; color: var(--muted); font: 700 .65rem var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.service-featured .service-meta { color: rgba(255,255,255,.63); }
.service-panel h3 { margin: 50px 0 18px; color: var(--navy-900); font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.08; }
.service-featured h3 { color: var(--white); }
.service-panel p { margin-bottom: 20px; color: var(--muted); font-size: .88rem; }
.service-featured p { color: rgba(255,255,255,.72); }
.service-panel strong { color: var(--navy-800); font-size: .75rem; }
.service-featured strong { color: var(--cyan-soft); }
.service-link { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 48px; margin-top: 30px; padding: 13px 0 0; border: 0; border-top: 1px solid var(--line-dark); color: var(--navy-900); background: transparent; font: 800 .78rem var(--font-display); text-align: left; cursor: pointer; }
.service-featured .service-link { color: var(--white); border-color: rgba(255,255,255,.25); }
.service-link svg { transition: transform .2s ease; }
.service-link:hover svg { transform: translateX(5px); }
.service-with-media { grid-column: span 2; display: grid !important; grid-template-columns: 1fr .72fr; gap: 32px; padding-right: 0 !important; overflow: hidden; }
.service-with-media img { width: 100%; height: 100%; max-height: 450px; object-fit: cover; object-position: center; }

.full-wash { padding-top: 40px; }
.full-wash-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.full-wash-copy .lead { max-width: 510px; margin: 28px 0 34px; color: var(--muted); }
.car-care-map { position: relative; padding: clamp(32px, 4vw, 56px); color: var(--white); background: var(--navy-900); overflow: hidden; }
.car-care-map::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.025) 80px); }
.car-silhouette { position: relative; z-index: 1; border-bottom: 1px solid var(--line-light); padding-bottom: 24px; }
.car-silhouette svg { width: 100%; height: auto; fill: none; stroke: rgba(255,255,255,.54); stroke-width: 2; }
.car-silhouette circle { fill: var(--navy-900); }
.care-pulse { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 8px rgba(25,181,245,.13); }
.pulse-1 { left: 22%; top: 42%; }.pulse-2 { left: 56%; top: 30%; }.pulse-3 { right: 9%; top: 58%; }
.care-columns { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; padding-top: 34px; }
.care-label { display: block; margin-bottom: 18px; color: var(--cyan); font: 800 .67rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 9px; color: rgba(255,255,255,.72); font-size: .79rem; }
.check-list svg { flex: 0 0 15px; width: 15px; height: 15px; margin-top: 5px; color: var(--cyan); }

.method { padding-block: var(--section-space); }
.method::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 40%, rgba(73,71,164,.28), transparent 37%); }
.method-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(60px, 10vw, 150px); }
.method-media { position: relative; max-width: 480px; padding-left: 42px; }
.editorial-number { position: absolute; left: -10px; top: -70px; color: rgba(255,255,255,.08); font: 800 9rem var(--font-display); line-height: 1; }
.method-video-frame { aspect-ratio: 9 / 16; border: 1px solid var(--line-light); box-shadow: -28px 28px 0 rgba(25,181,245,.12); }
.media-caption { display: block; margin-top: 20px; color: rgba(255,255,255,.5); font: 700 .64rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.method h2 { color: var(--white); }
.method .lead { max-width: 610px; margin: 28px 0 42px; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.principles { border-top: 1px solid var(--line-light); }
.principles article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line-light); }
.principles article > span { color: var(--cyan); font: 800 .7rem var(--font-display); }
.principles h3 { margin-bottom: 6px; color: var(--white); font-size: 1.12rem; }
.principles p { margin: 0; color: rgba(255,255,255,.58); font-size: .86rem; }

.interior-grid { display: grid; grid-template-columns: 1.05fr .75fr; align-items: center; gap: clamp(60px, 10vw, 150px); }
.interior .lead, .protection .lead, .eco .lead, .fleet-copy .lead { max-width: 610px; margin: 28px 0; color: var(--muted); font-size: 1rem; }
.feature-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 36px; padding: 0; list-style: none; }
.feature-cloud li { padding: 8px 13px; border: 1px solid var(--line-dark); color: var(--navy-700); background: rgba(255,255,255,.55); font: 700 .7rem var(--font-display); }
.interior blockquote { max-width: 540px; margin: 0 0 34px; padding: 22px 0 22px 24px; border-left: 3px solid var(--cyan); color: var(--navy-700); font: 500 1.1rem/1.5 var(--font-display); }
.interior blockquote strong { color: var(--violet); }
.interior-media { position: relative; width: min(100%, 430px); justify-self: end; padding: 0 34px 38px 0; }
.interior-video-frame { aspect-ratio: 9 / 16; border-radius: 8px; box-shadow: 26px 30px 0 var(--violet), var(--shadow); }
.interior-video-frame video { object-position: center; }
.interior-note { position: absolute; right: 0; bottom: 0; min-width: 208px; display: flex; gap: 14px; padding: 16px; color: var(--white); background: var(--navy-900); }
.interior-note span { color: var(--cyan); font: 800 .65rem var(--font-display); }
.interior-note p { margin: 0; font: 700 .75rem/1.4 var(--font-display); }

.results { padding-block: var(--section-space); background: linear-gradient(145deg, var(--navy-950), #0a2450 75%, #15376a); }
.results-grid { display: grid; grid-template-columns: 1fr; }
.comparison-wrap { width: min(100%, 900px); margin-inline: auto; }
.comparison { --position: 50%; position: relative; aspect-ratio: 900 / 732; overflow: hidden; border: 1px solid var(--line-light); background: #020916; touch-action: pan-y; }
.comparison-base, .comparison-after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.comparison-after { clip-path: inset(0 0 0 var(--position)); }
.comparison-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,14,34,.28), transparent); pointer-events: none; }
.comparison-line { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); width: 2px; background: var(--white); transform: translateX(-1px); pointer-events: none; }
.comparison-line > span { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--navy-950); background: var(--white); transform: translate(-50%,-50%); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.comparison-line svg { width: 13px; height: 13px; transform: rotate(90deg); }
.comparison-line svg:first-child { transform: rotate(-90deg); }
.comparison-label { position: absolute; z-index: 2; top: 20px; padding: 7px 11px; color: var(--white); background: rgba(4,17,38,.7); font: 800 .67rem var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.comparison-label.before { left: 20px; }.comparison-label.after { right: 20px; color: var(--navy-950); background: var(--cyan); }
.comparison input { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.comparison-caption { margin: 14px 0 0; color: rgba(255,255,255,.46); font-size: .72rem; }

.protection-grid { display: grid; grid-template-columns: 1.1fr .8fr; align-items: center; gap: clamp(60px, 10vw, 150px); }
.paint-visual { min-width: 0; }
.paint-surface { position: relative; height: clamp(430px, 52vw, 660px); overflow: hidden; background: linear-gradient(145deg, #030b1b 4%, #0d3269 37%, #235ca1 52%, #071b3f 70%, #020916 100%); box-shadow: var(--shadow); }
.paint-surface::before { content: ""; position: absolute; inset: -30% -50%; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.65) 45%, rgba(25,181,245,.15) 48%, transparent 58%); transform: rotate(-8deg); filter: blur(4px); }
.paint-surface::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: 8%; height: 46%; border: 2px solid rgba(255,255,255,.22); border-radius: 50% 55% 0 0; transform: rotate(8deg); }
.reflection { position: absolute; display: block; height: 2px; background: rgba(255,255,255,.4); box-shadow: 0 0 18px rgba(255,255,255,.35); transform: rotate(-12deg); }
.r1 { width: 65%; left: 8%; top: 33%; }.r2 { width: 37%; right: 4%; top: 58%; }
.drop { position: absolute; display: block; border: 1px solid rgba(255,255,255,.7); border-radius: 54% 46% 55% 45%; background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.92) 0 4%, rgba(120,216,255,.35) 18%, rgba(0,0,0,.15) 70%); box-shadow: inset -5px -8px 14px rgba(0,0,0,.25), 4px 9px 12px rgba(0,0,0,.3); }
.d1 { width: 46px; height: 58px; left: 18%; top: 14%; }.d2 { width: 28px; height: 35px; left: 64%; top: 23%; }.d3 { width: 58px; height: 72px; right: 9%; top: 44%; }.d4 { width: 22px; height: 28px; left: 35%; bottom: 14%; }
.paint-caption { display: block; margin-top: 14px; color: var(--muted); font: 700 .64rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.protection-copy > p:not(.eyebrow) { color: var(--muted); }
.protection-copy .btn { margin-top: 16px; }

.eco { border-top: 1px solid var(--line-dark); }
.eco-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(60px, 9vw, 130px); }
.eco-copy { position: sticky; top: 130px; }
.eco-specs { position: relative; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.eco-specs article { position: relative; min-height: 250px; padding: 32px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(247,250,252,.7); }
.eco-specs article > span { color: var(--cyan-strong); font: 800 .65rem var(--font-display); }
.eco-specs h3 { margin: 65px 0 10px; color: var(--navy-900); font-size: 1.15rem; }
.eco-specs p { margin: 0; color: var(--muted); font-size: .82rem; }
.eco-orbit { position: absolute; z-index: -1; inset: 13% 12%; border: 1px solid rgba(25,181,245,.16); border-radius: 50%; }

.fleets { padding-block: var(--section-space); }
.fleet-lines { position: absolute; inset: 0; opacity: .4; background: repeating-linear-gradient(120deg, transparent 0 105px, rgba(255,255,255,.024) 106px 107px); }
.fleet-grid { position: relative; display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.fleet-copy h2 { color: var(--white); }
.fleet-copy .lead { color: rgba(255,255,255,.62); }
.fleet-copy .btn { margin-top: 14px; }
.fleet-benefits { border: 1px solid var(--line-light); background: rgba(255,255,255,.025); backdrop-filter: blur(10px); }
.fleet-count { min-height: 205px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; border-bottom: 1px solid var(--line-light); background: linear-gradient(145deg, rgba(73,71,164,.4), rgba(25,181,245,.08)); }
.fleet-count span { color: var(--cyan); font: 800 .66rem var(--font-display); }
.fleet-count strong { font: 700 clamp(1.5rem, 2.5vw, 2.2rem)/1.12 var(--font-display); letter-spacing: -.04em; }
.fleet-benefits ul { margin: 0; padding: 0; list-style: none; }
.fleet-benefits li { display: flex; gap: 20px; padding: 19px 26px; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.7); font-size: .83rem; }
.fleet-benefits li:last-child { border-bottom: 0; }
.fleet-benefits li span { color: var(--cyan); font: 800 .66rem var(--font-display); }

.editorial-gallery { display: grid; grid-template-columns: 1.1fr .85fr .85fr; grid-template-rows: 280px 280px; gap: 14px; }
.gallery-item { position: relative; display: block; width: 100%; height: 100%; padding: 0; border: 0; overflow: hidden; background: var(--navy-900); cursor: pointer; text-align: left; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(3,13,31,.9)); transition: background .25s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-tall { grid-row: 1 / 3; }
.gallery-wide { grid-column: 2 / 4; }
.gallery-wide img { object-position: center 45%; }
.gallery-overlay { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: grid; grid-template-columns: 1fr auto; align-items: end; color: var(--white); }
.gallery-overlay small { grid-column: 1; color: var(--cyan); font: 800 .65rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.gallery-overlay strong { grid-column: 1; font: 700 1rem var(--font-display); }
.gallery-overlay svg { grid-column: 2; grid-row: 1 / 3; width: 24px; height: 24px; }
.gallery-quote { display: flex; flex-direction: column; justify-content: center; padding: 32px; color: var(--white); background: var(--violet); }
.gallery-quote > span { color: var(--cyan); font: 800 3rem var(--font-display); line-height: .5; }
.gallery-quote p { margin: 18px 0 25px; font: 700 1.7rem/1.08 var(--font-display); letter-spacing: -.04em; }
.gallery-quote small { color: rgba(255,255,255,.62); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery-instagram { margin-top: 32px; }

.booking { border-top: 1px solid var(--line-dark); }
.booking-grid { display: grid; grid-template-columns: .56fr 1.44fr; align-items: start; gap: clamp(45px, 7vw, 100px); }
.booking-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.booking-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 23px 0; border-bottom: 1px solid var(--line-dark); }
.booking-steps li > span { color: var(--cyan-strong); font: 800 .68rem var(--font-display); }
.booking-steps strong { display: block; margin-bottom: 4px; color: var(--navy-900); font: 800 .88rem var(--font-display); }
.booking-steps p { margin: 0; color: var(--muted); font-size: .78rem; }
.booking-form { color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.form-head { display: flex; justify-content: space-between; gap: 25px; padding: 22px 30px; border-bottom: 1px solid var(--line-light); }
.form-head span { color: var(--cyan); font: 800 .68rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.form-head p { margin: 0; color: rgba(255,255,255,.55); font-size: .73rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; padding: 34px 30px 28px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: rgba(255,255,255,.7); font: 700 .7rem var(--font-display); }
.field label > span { color: rgba(255,255,255,.38); font-weight: 500; }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; min-height: 51px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; color: var(--white); background: rgba(255,255,255,.06); outline: none; transition: border-color .2s, background-color .2s; }
.field textarea { min-height: 100px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--ink); background: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); background-color: rgba(255,255,255,.09); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.34); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #ff8d9c; }
.field-error { display: block; min-height: 18px; margin-top: 4px; color: #ffc2ca; font-size: .68rem; }
.consent label { display: flex; align-items: flex-start; gap: 10px; margin: 0; cursor: pointer; }
.consent input { width: 19px; height: 19px; flex: 0 0 19px; margin: 1px 0 0; accent-color: var(--cyan); }
.consent label span { color: rgba(255,255,255,.65); font: 500 .72rem/1.5 var(--font-body); }
.form-footer { display: flex; align-items: center; gap: 20px; padding: 0 30px 34px; }
.form-footer p { margin: 0; color: var(--cyan-soft); font-size: .75rem; }
.direct-call { display: flex; justify-content: flex-end; align-items: center; gap: 30px; margin-top: 30px; }
.direct-call > span { color: var(--muted); font-size: .84rem; }
.direct-call a { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-900); font: 800 .9rem var(--font-display); }
.direct-call svg { color: var(--cyan-strong); }

.location { padding-bottom: 80px; }
.location-grid { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 650px; box-shadow: var(--shadow); }
.location-card { padding: clamp(38px, 5vw, 72px); background: var(--ice-100); }
.location h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.location address { display: grid; margin: 36px 0; color: var(--muted); font-style: normal; font-size: .87rem; line-height: 1.6; }
.location address strong { margin-bottom: 5px; color: var(--navy-900); font-family: var(--font-display); }
.local-seo-copy { max-width: 510px; margin: -16px 0 28px; color: var(--muted); font-size: .76rem; }
.location-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 25px 0; border-block: 1px solid var(--line-dark); }
.location-details > div { display: grid; }
.location-details span { margin-bottom: 8px; color: var(--cyan-strong); font: 800 .65rem var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.location-details strong, .location-details a { color: var(--navy-800); font-size: .78rem; line-height: 1.55; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.map-wrap { position: relative; min-height: 520px; background: #dce5e9; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 650px; border: 0; filter: saturate(.25) contrast(.98); }
.map-pin-card { position: absolute; left: 28px; bottom: 28px; display: flex; align-items: center; gap: 13px; padding: 16px 19px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.map-pin-card svg { width: 24px; height: 24px; color: var(--cyan); }
.map-pin-card span { display: grid; color: rgba(255,255,255,.58); font-size: .7rem; }
.map-pin-card strong { color: var(--white); font: 800 .78rem var(--font-display); }

.reviews-strip { padding: 55px 0; background: var(--cyan-soft); }
.reviews-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.reviews-inner > div { display: grid; grid-template-columns: auto 1fr; column-gap: 24px; align-items: center; }
.review-stars { grid-row: 1 / 3; color: var(--violet); font-size: 1rem; letter-spacing: .08em; }
.reviews-inner h2 { margin: 0; color: var(--navy-900); font-size: 1.25rem; }
.reviews-inner p { margin: 2px 0 0; color: var(--muted); font-size: .78rem; }

.faq-grid { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; gap: clamp(60px, 9vw, 130px); }
.faq-heading { position: sticky; top: 130px; }
.faq-heading > p:not(.eyebrow) { margin-top: 25px; color: var(--muted); font-size: .86rem; }
.accordion { border-top: 1px solid var(--line-dark); }
.accordion-item { border-bottom: 1px solid var(--line-dark); }
.accordion h3 { margin: 0; }
.accordion button { width: 100%; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 0; border: 0; color: var(--navy-900); background: transparent; font: 700 1.05rem var(--font-display); text-align: left; cursor: pointer; }
.accordion button span { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; transition: background .2s, transform .25s; }
.accordion button[aria-expanded="true"] span { color: var(--white); background: var(--violet); transform: rotate(180deg); }
.accordion [role="region"] { padding: 0 65px 24px 0; }
.accordion [role="region"] p { margin: 0; color: var(--muted); font-size: .86rem; }

.final-cta { padding-block: clamp(110px, 13vw, 190px); text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0, rgba(25,181,245,.17), transparent 48%); }
.final-rings span { position: absolute; left: 50%; top: 47%; border: 1px solid rgba(25,181,245,.1); border-radius: 50%; transform: translate(-50%,-50%); }
.final-rings span:nth-child(1) { width: 420px; height: 420px; }.final-rings span:nth-child(2) { width: 760px; height: 760px; }.final-rings span:nth-child(3) { width: 1100px; height: 1100px; }
.final-cta-inner { position: relative; z-index: 2; max-width: 1000px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { color: var(--white); }
.final-cta-inner > p:not(.eyebrow) { max-width: 650px; margin: 30px auto; color: rgba(255,255,255,.65); }
.final-cta .hero-actions { justify-content: center; }
.final-meta { display: flex; justify-content: center; gap: 30px; margin-top: 48px; color: rgba(255,255,255,.47); font-size: .72rem; }
.final-meta span + span { padding-left: 30px; border-left: 1px solid var(--line-light); }

.site-footer { color: var(--white); background: #020b1a; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; padding-block: 72px 55px; }
.footer-brand img { width: 170px; height: 94px; object-fit: cover; object-position: center; border-radius: 8px; }
.footer-brand p { max-width: 280px; margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: .78rem; }
.footer-grid h2 { margin-bottom: 17px; color: var(--cyan); font: 800 .66rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-grid p { margin: 0 0 8px; color: rgba(255,255,255,.58); font-size: .76rem; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid var(--line-light); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.38); font-size: .68rem; }
.footer-bottom a { color: rgba(255,255,255,.62); }

.floating-whatsapp { position: fixed; z-index: 80; right: 24px; bottom: 24px; min-height: 54px; display: flex; align-items: center; gap: 9px; padding: 12px 17px; border-radius: 30px; color: var(--navy-950); background: var(--cyan); box-shadow: 0 18px 45px rgba(4,17,38,.28); font: 800 .78rem var(--font-display); }
.floating-whatsapp svg { width: 22px; height: 22px; }
.back-to-top { position: fixed; z-index: 75; right: 27px; bottom: 92px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); background: rgba(4,17,38,.82); opacity: 0; visibility: hidden; transform: translateY(10px); cursor: pointer; transition: .2s ease; backdrop-filter: blur(8px); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top svg { width: 17px; height: 17px; transform: rotate(-90deg); }

dialog { padding: 0; border: 0; }
dialog::backdrop { background: rgba(2,9,22,.78); backdrop-filter: blur(8px); }
.service-dialog { width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: clamp(34px, 5vw, 60px); color: var(--ink); background: var(--white); box-shadow: 0 40px 100px rgba(0,0,0,.3); overflow-y: auto; }
.dialog-close { position: absolute; z-index: 2; right: 18px; top: 18px; width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--navy-900); background: var(--white); font-size: 1.6rem; cursor: pointer; }
.dialog-index { margin-bottom: 55px; color: var(--violet); font: 800 .65rem var(--font-display); letter-spacing: .1em; }
.service-dialog h2 { margin: 0 0 20px; color: var(--navy-900); font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.05; }
.dialog-description { color: var(--muted); }
.dialog-benefit { display: grid; margin: 30px 0 18px; padding: 20px; border-left: 3px solid var(--cyan); background: var(--ice-100); }
.dialog-benefit span { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.dialog-benefit strong { color: var(--navy-900); font-family: var(--font-display); }
.dialog-note { font-size: .74rem; color: var(--muted); }
.service-dialog .btn { width: 100%; margin-top: 14px; }
.lightbox { width: min(980px, calc(100vw - 32px)); max-height: calc(100vh - 32px); color: var(--white); background: #020916; box-shadow: 0 40px 100px rgba(0,0,0,.4); overflow: hidden; }
.lightbox-content { height: min(76vh, 780px); display: grid; place-items: center; }
.lightbox-content img, .lightbox-content video { width: 100%; height: 100%; object-fit: contain; }
.lightbox > p { margin: 0; padding: 14px 22px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.65); font-size: .76rem; }
.lightbox .dialog-close { color: var(--white); background: rgba(4,17,38,.75); border-color: rgba(255,255,255,.3); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Privacy and 404 */
.simple-page { min-height: 100vh; color: var(--white); background: var(--navy-950); }
.simple-header { border-bottom: 1px solid var(--line-light); }
.simple-header .header-inner { justify-content: space-between; }
.simple-header .brand { margin-right: auto; }
.simple-main { min-height: calc(100vh - 170px); padding: 150px 0 100px; }
.legal-wrap { width: min(820px, calc(100vw - 48px)); margin: 0 auto; }
.legal-wrap h1 { margin-bottom: 24px; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; }
.legal-wrap > p { color: rgba(255,255,255,.64); }
.legal-content { margin-top: 55px; padding: clamp(28px, 5vw, 56px); color: var(--ink); background: var(--white); }
.legal-content h2 { margin: 34px 0 10px; color: var(--navy-900); font-size: 1.35rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); font-size: .88rem; }
.legal-content a { color: var(--violet); text-decoration: underline; }
.not-found { display: grid; place-items: center; text-align: center; }
.not-found-code { color: rgba(25,181,245,.13); font: 800 clamp(9rem, 30vw, 22rem)/.7 var(--font-display); }
.not-found h1 { margin: -10px 0 15px; font-size: clamp(2rem, 5vw, 4rem); }
.not-found p { max-width: 510px; margin: 0 auto 30px; color: rgba(255,255,255,.62); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1040px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr minmax(350px, .7fr); gap: 50px; }
  .hero h1 { font-size: clamp(3.3rem, 6vw, 4.9rem); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.09); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.09); border-right: 1px solid rgba(255,255,255,.09); }
  .service-panel:has(> article:nth-child(4)) { grid-template-columns: repeat(2, 1fr); }
  .service-panel:has(> article:nth-child(4)) > article:nth-child(3) { border-left: 1px solid var(--line-dark); }
  .service-with-media { grid-column: auto; grid-template-columns: 1fr; padding-right: 0 !important; }
  .service-with-media img { display: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-space: 100px; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid, .full-wash-grid, .method-grid, .interior-grid, .results-grid, .protection-grid, .eco-grid, .fleet-grid, .booking-grid, .location-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-media { width: min(75vw, 480px); margin: 20px auto 0; justify-self: center; }
  .hero-facts { margin-top: 40px; }
  .hero-highlights { right: -20px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .route { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .route-line { display: none; }
  .route-stop { padding-left: 45px; }
  .route-marker { position: absolute; left: 0; top: 0; margin: 0; }
  .route-number { margin-left: 50px; min-height: 38px; display: flex; align-items: center; }
  .service-tabs { grid-template-columns: 1fr 1fr; }
  .service-tabs button:nth-child(3) { border-top: 1px solid var(--line-dark); }
  .service-tabs button:nth-child(4) { border-top: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); }
  .full-wash { padding-top: 20px; }
  .full-wash-copy { max-width: 700px; }
  .method-media { justify-self: center; width: min(70vw, 480px); }
  .method-copy { max-width: 720px; }
  .interior-media { order: -1; justify-self: center; width: min(68vw, 430px); }
  .paint-visual { max-width: 720px; }
  .protection-copy { max-width: 650px; }
  .eco-copy, .faq-heading { position: static; }
  .eco-specs { max-width: 800px; }
  .fleet-copy { max-width: 720px; }
  .fleet-benefits { max-width: 720px; }
  .booking-steps { display: grid; grid-template-columns: 1fr 1fr; }
  .booking-steps li:nth-child(odd) { margin-right: 25px; }
  .location-grid { min-height: 0; }
  .map-wrap, .map-wrap iframe { min-height: 480px; }
  .faq-heading { max-width: 560px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 36px); --section-space: 82px; --header-h: 72px; }
  .header-inner { gap: 14px; }
  .brand { width: 126px; }
  .brand img { width: 124px; height: 62px; }
  .header-cta { display: none; }
  .hero { padding-top: 118px; padding-bottom: 74px; }
  .hero h1 { font-size: clamp(2.7rem, 12.4vw, 4rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-facts > div { align-items: flex-start; }
  .hero-media { width: min(88vw, 440px); padding-right: 14px; }
  .hero-video-frame { border-radius: 88px 10px 10px 10px; box-shadow: 14px 22px 0 rgba(73,71,164,.32); }
  .hero-highlights { right: -6px; top: 36%; }
  .hero-highlights span { font-size: .59rem; }
  .hero-message { left: -8px; font-size: .86rem; }
  .process-badge { top: 20px; right: 15px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 86px; border-right: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-top: 0; }
  .section-heading h2, .full-wash h2, .method h2, .interior h2, .protection h2, .eco h2, .fleet-copy h2, .location h2, .faq h2, .final-cta h2 { font-size: clamp(2.35rem, 11.3vw, 3.6rem); }
  .route { grid-template-columns: 1fr; margin-top: 54px; }
  .route-stop p:last-child { max-width: 300px; }
  .service-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
  .service-tabs::-webkit-scrollbar { display: none; }
  .service-tabs button { min-width: 170px; border-top: 0 !important; }
  .service-panel, .service-panel:has(> article:nth-child(4)) { grid-template-columns: 1fr; }
  .service-panel > article, .service-panel:has(> article:nth-child(4)) > article { min-height: 330px; padding: 30px; border-right: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark) !important; }
  .service-panel h3 { margin-top: 42px; }
  .car-care-map { padding: 28px 22px; }
  .car-silhouette { overflow: hidden; }
  .car-silhouette svg { width: 130%; margin-left: -15%; }
  .care-columns { grid-template-columns: 1fr; gap: 28px; }
  .method-media { width: min(88vw, 440px); padding-left: 18px; }
  .editorial-number { left: -5px; top: -48px; font-size: 6rem; }
  .method-video-frame { box-shadow: -16px 18px 0 rgba(25,181,245,.12); }
  .principles article { grid-template-columns: 36px 1fr; }
  .interior-media { width: min(82vw, 400px); padding-right: 22px; }
  .interior-note { min-width: 182px; }
  .comparison { aspect-ratio: 900 / 732; }
  .paint-surface { height: 470px; }
  .eco-specs { grid-template-columns: 1fr; }
  .eco-specs article { min-height: 200px; }
  .eco-specs h3 { margin-top: 38px; }
  .fleet-count { min-height: 180px; }
  .editorial-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 260px 240px; }
  .gallery-tall { grid-column: 1 / 3; grid-row: auto; }
  .gallery-wide { grid-column: 1 / 3; }
  .gallery-medium { grid-column: 1; }
  .gallery-quote { grid-column: 2; }
  .booking-steps { grid-template-columns: 1fr; }
  .booking-steps li:nth-child(odd) { margin-right: 0; }
  .form-head { display: grid; }
  .form-grid { grid-template-columns: 1fr; padding-inline: 22px; }
  .field-full { grid-column: auto; }
  .form-footer { display: grid; padding-inline: 22px; }
  .form-footer .btn { width: 100%; }
  .direct-call { justify-content: space-between; gap: 16px; }
  .location-card { padding: 34px 24px; }
  .location-details { grid-template-columns: 1fr; }
  .location-actions .btn { width: 100%; }
  .map-wrap, .map-wrap iframe { min-height: 400px; }
  .reviews-inner { align-items: flex-start; flex-direction: column; }
  .reviews-inner > div { grid-template-columns: 1fr; }
  .review-stars { grid-row: auto; }
  .reviews-inner .btn { width: 100%; }
  .accordion button { min-height: 76px; font-size: .94rem; }
  .accordion [role="region"] { padding-right: 0; }
  .final-cta br { display: none; }
  .final-meta { flex-direction: column; gap: 8px; }
  .final-meta span + span { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
  .back-to-top { display: none; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 28px); }
  .hero h1 { font-size: 2.65rem; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-media { width: 92vw; }
  .hero-highlights span:nth-child(2) { display: none; }
  .hero-message { bottom: 4px; }
  .feature-cloud li { font-size: .64rem; }
  .editorial-gallery { grid-template-rows: 390px 230px 230px; }
  .gallery-quote { padding: 22px; }
  .gallery-quote p { font-size: 1.35rem; }
  .direct-call { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 54px; justify-content: center; padding: 0; }
}

@media (min-width: 1500px) {
  :root { --shell: min(1380px, calc(100vw - 100px)); }
  .hero-grid { grid-template-columns: 1.1fr .7fr; }
  .hero h1 { font-size: 6.1rem; }
  .hero-media { max-width: 530px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .wet-line { display: none; }
}

/* Multipage information architecture */
[id] { scroll-margin-top: calc(var(--header-h) + 34px); }
.mobile-menu nav a[aria-current] { color: var(--cyan); }
.heading-action { align-self: end; }
.heading-action > p { max-width: 500px; margin: 0 0 22px; color: inherit; }
.section-heading.light .heading-action > p { color: rgba(255,255,255,.62); }
.section-heading h2 em,
.page-hero h1 em,
.catalog-heading h2 em,
.pathway-card h2 em,
.home-contact h2 em,
.brand-promise h2 em,
.fleet-contact h2 em,
.business-flow h2 em,
.campera-story h2 em { color: var(--cyan); font-style: normal; font-weight: 800; }

/* Lean homepage */
.home-services, .pathways, .home-contact, .process-showcase, .catalog-section, .customer-reviews,
.fleet-value, .business-flow, .fleet-contact, .care-principles, .brand-promise,
.campera-story, .next-step { padding-block: var(--section-space); }
.home-services { border-bottom: 1px solid var(--line-dark); }
.service-nav-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-nav-card { min-height: 340px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 42px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.48); transition: color .25s ease, background .25s ease, transform .25s ease; }
.service-nav-card > span { color: var(--violet); font: 800 .66rem var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.service-nav-card h3 { margin: auto 0 16px; color: var(--navy-900); font-size: clamp(1.55rem, 2.3vw, 2rem); }
.service-nav-card p { min-height: 76px; margin: 0; color: var(--muted); font-size: .84rem; }
.service-nav-card strong { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line-dark); color: var(--navy-900); font: 800 .76rem var(--font-display); }
.service-nav-card strong svg { width: 18px; height: 18px; }
.service-nav-card:hover { z-index: 1; color: var(--white); background: var(--navy-900); transform: translateY(-5px); }
.service-nav-card:hover h3, .service-nav-card:hover strong { color: var(--white); }
.service-nav-card:hover p { color: rgba(255,255,255,.62); }
.service-nav-card:hover > span, .service-nav-card:hover strong svg { color: var(--cyan); }
.home-results .section-heading { margin-bottom: 58px; }
.home-review-teaser { padding-block: 52px; border-bottom: 1px solid var(--line-dark); }
.home-review-inner { display: grid; grid-template-columns: .72fr 1.5fr auto; align-items: center; gap: clamp(35px, 6vw, 80px); }
.home-review-score { display: grid; }
.home-review-score > span { margin-bottom: 7px; color: var(--violet); font-size: .92rem; letter-spacing: .1em; }
.home-review-score strong { color: var(--navy-900); font: 800 .8rem var(--font-display); }
.home-review-score small { color: var(--muted); font-size: .65rem; }
.home-review-inner blockquote { margin: 0; padding-left: clamp(24px, 3vw, 40px); border-left: 2px solid var(--cyan); }
.home-review-inner blockquote p { margin: 0 0 7px; color: var(--navy-900); font: 650 clamp(1rem, 1.5vw, 1.18rem)/1.5 var(--font-display); letter-spacing: -.025em; }
.home-review-inner cite { color: var(--muted); font-size: .67rem; font-style: normal; }
.home-review-inner > .text-link { white-space: nowrap; }
.pathways-grid { display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow); }
.pathway-card { min-height: 450px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(34px, 5vw, 72px); color: var(--ink); background: var(--ice-100); }
.pathway-card > span { margin-bottom: auto; color: var(--violet); font: 800 .68rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.pathway-card h2 { margin-bottom: 22px; color: var(--navy-900); font-size: clamp(2rem, 3.4vw, 3.3rem); line-height: 1.05; }
.pathway-card p { max-width: 530px; color: var(--muted); }
.pathway-card .text-link { margin-top: 14px; }
.pathway-dark { color: var(--white); background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); }
.pathway-dark > span { color: var(--cyan); }
.pathway-dark h2 { color: var(--white); }
.pathway-dark p { color: rgba(255,255,255,.64); }
.home-contact { border-top: 1px solid var(--line-dark); }
.home-contact-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 80px; }
.home-contact h2 { margin: 0 0 24px; color: var(--navy-900); font-size: clamp(2.6rem, 4.8vw, 5rem); font-weight: 600; line-height: 1.03; }
.home-contact-grid > div:first-child > p:last-child { max-width: 620px; color: var(--muted); }
.home-contact-actions { width: min(100%, 330px); display: grid; gap: 10px; }
.home-contact-actions > a:last-child { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 14px; color: var(--navy-900); font: 800 .9rem var(--font-display); }
.home-contact-actions > a:last-child svg { color: var(--cyan-strong); }

/* Before / after using the supplied real images */
.comparison-wrap.comparison { --position: 50%; position: relative; width: min(100%, 820px); aspect-ratio: 1 / 1; margin-inline: auto; overflow: hidden; border: 1px solid var(--line-light); background: #020916; touch-action: pan-y; }
.comparison-wrap.comparison .comparison-base { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.comparison-before { position: absolute; inset: 0; z-index: 1; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison-before img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.comparison-wrap .comparison-label { top: 20px; }
.comparison-wrap .before-label { left: 20px; }
.comparison-wrap .after-label { right: 20px; color: var(--navy-950); background: var(--cyan); }
.comparison-handle { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); width: 2px; background: var(--white); transform: translateX(-1px); pointer-events: none; }
.comparison-handle span { position: absolute; top: 50%; left: 50%; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--white); transform: translate(-50%,-50%); box-shadow: 0 10px 30px rgba(0,0,0,.25); font: 800 1.05rem var(--font-display); }

/* Shared subpage hero */
.page-hero { min-height: 720px; padding: calc(var(--header-h) + 76px) 0 92px; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 76% 26%, rgba(25,181,245,.14), transparent 34%), repeating-linear-gradient(120deg, transparent 0 115px, rgba(255,255,255,.02) 116px 117px); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .72fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.breadcrumb { display: flex; gap: 9px; margin-bottom: 40px; color: rgba(255,255,255,.42); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { margin: 0 0 28px; color: var(--white); font-size: clamp(3.4rem, 5.5vw, 5.8rem); font-weight: 600; line-height: .98; }
.page-hero-copy > p:not(.breadcrumb,.eyebrow) { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.65); font-size: 1.02rem; }
.page-hero-media { position: relative; max-width: 490px; justify-self: end; padding: 0 18px 28px 0; }
.page-hero-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid rgba(255,255,255,.15); box-shadow: 24px 28px 0 rgba(73,71,164,.32); }
.page-hero-media > div { position: absolute; left: -34px; bottom: 0; display: grid; min-width: 240px; padding: 18px 22px; color: var(--white); background: var(--navy-800); box-shadow: var(--shadow); }
.page-hero-media > div span { color: var(--cyan); font: 800 .64rem var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.page-hero-media > div strong { font: 700 .88rem var(--font-display); }

/* Services catalogue */
.section-index { position: sticky; z-index: 20; top: var(--header-h); color: var(--white); background: var(--navy-800); border-block: 1px solid rgba(255,255,255,.09); }
.section-index .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.section-index a { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-left: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.66); font: 700 .78rem var(--font-display); }
.section-index a:last-child { border-right: 1px solid rgba(255,255,255,.09); }
.section-index a span { color: var(--cyan); font-size: .62rem; }
.section-index a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.catalog-section { border-bottom: 1px solid var(--line-dark); }
.catalog-heading { display: grid; grid-template-columns: .3fr 1.7fr; gap: 45px; margin-bottom: 58px; }
.catalog-heading > span { padding-top: 7px; color: var(--violet); font: 800 .68rem var(--font-display); letter-spacing: .1em; }
.catalog-heading h2 { margin: 0 0 14px; color: var(--navy-900); font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: 1; }
.catalog-heading div > p:last-child { max-width: 630px; color: var(--muted); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.catalog-grid.four { grid-template-columns: repeat(4, 1fr); }
.catalog-grid.two { grid-template-columns: repeat(2, 1fr); }
.catalog-card { min-height: 420px; display: flex; flex-direction: column; padding: clamp(28px, 3.2vw, 46px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.52); }
.catalog-card > span { color: var(--violet); font: 800 .64rem var(--font-display); letter-spacing: .09em; text-transform: uppercase; }
.catalog-card h3 { margin: 70px 0 20px; color: var(--navy-900); font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.08; }
.catalog-card p { margin-bottom: 24px; color: var(--muted); font-size: .84rem; }
.catalog-card strong { margin-top: auto; color: var(--navy-700); font-size: .74rem; }
.catalog-card a { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line-dark); color: var(--navy-900); font: 800 .76rem var(--font-display); }
.catalog-card a svg { width: 18px; height: 18px; }
.catalog-card.featured { color: var(--white); background: var(--violet); }
.catalog-card.featured > span, .catalog-card.featured strong { color: var(--cyan-soft); }
.catalog-card.featured h3, .catalog-card.featured a { color: var(--white); }
.catalog-card.featured p { color: rgba(255,255,255,.68); }
.catalog-card.featured a { border-color: rgba(255,255,255,.23); }

/* Results page */
.process-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-video .video-frame { aspect-ratio: 4 / 5; background: var(--navy-900); }
.process-video .video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,17,38,.45)); pointer-events: none; }
.process-video > span { display: block; margin-top: 24px; color: var(--violet); font: 800 .64rem var(--font-display); letter-spacing: .09em; text-transform: uppercase; }
.process-video h3 { margin: 9px 0 10px; color: var(--navy-900); font-size: 1.45rem; }
.process-video p { margin: 0; color: var(--muted); font-size: .83rem; }
.result-note { width: min(100%, 900px); display: grid; grid-template-columns: 120px 1fr; gap: 28px; margin: 24px auto 0; padding-top: 22px; border-top: 1px solid var(--line-light); }
.result-note span { color: var(--cyan); font: 800 .66rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.result-note p { margin: 0; color: rgba(255,255,255,.5); font-size: .76rem; }

/* Customer reviews */
.customer-reviews { border-bottom: 1px solid var(--line-dark); overflow: hidden; }
.reviews-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; margin-bottom: 58px; }
.reviews-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(2.7rem, 4.8vw, 5rem); font-weight: 600; line-height: 1.03; }
.reviews-heading h2 em { color: var(--cyan-strong); font-style: normal; font-weight: 800; }
.reviews-summary { min-width: 285px; display: grid; padding: 24px 28px; border-left: 3px solid var(--cyan); background: var(--ice-100); }
.reviews-summary .review-stars { grid-row: auto; margin-bottom: 7px; color: var(--violet); font-size: 1rem; letter-spacing: .1em; }
.reviews-summary strong { color: var(--navy-900); font: 800 .86rem var(--font-display); }
.reviews-summary small { color: var(--muted); font-size: .68rem; }
.review-carousel { position: relative; }
.review-track { display: flex; gap: 18px; padding: 2px 2px 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 calc((100% - 36px) / 3); min-height: 385px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line-dark); background: var(--ice-50); scroll-snap-align: start; }
.review-card:nth-child(3n + 1) { background: var(--navy-900); }
.review-card-head { display: flex; align-items: center; gap: 13px; }
.review-avatar { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--violet); font: 800 .68rem var(--font-display); letter-spacing: .04em; }
.review-card-head > div { display: grid; }
.review-card-head strong { color: var(--navy-900); font: 800 .84rem var(--font-display); }
.review-card-head small { color: var(--muted); font-size: .66rem; }
.review-card-stars { margin: 38px 0 22px; color: var(--cyan-strong); font-size: .9rem; letter-spacing: .1em; }
.review-card blockquote { margin: 0; }
.review-card blockquote p { margin: 0; color: var(--ink); font: 600 clamp(.98rem, 1.4vw, 1.15rem)/1.6 var(--font-display); letter-spacing: -.025em; }
.review-card:nth-child(3n + 1) .review-card-head strong,
.review-card:nth-child(3n + 1) blockquote p { color: var(--white); }
.review-card:nth-child(3n + 1) .review-card-head small { color: rgba(255,255,255,.48); }
.review-card:nth-child(3n + 1) .review-avatar { color: var(--navy-950); background: var(--cyan); }
.review-card:nth-child(3n + 1) .review-card-stars { color: var(--cyan); }
.review-card-excerpt::after { content: "Excerto transcrito"; margin-top: auto; padding-top: 24px; color: var(--violet); font: 800 .6rem var(--font-display); letter-spacing: .09em; text-transform: uppercase; }
.review-card:nth-child(3n + 1).review-card-excerpt::after { color: var(--cyan); }
.review-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.review-buttons { display: flex; gap: 9px; }
.review-buttons button { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--navy-900); background: transparent; font: 700 1.1rem var(--font-display); cursor: pointer; transition: color .2s, background .2s, opacity .2s; }
.review-buttons button:hover { color: var(--white); background: var(--navy-900); }
.review-buttons button:disabled { opacity: .28; cursor: default; }
.review-buttons button:disabled:hover { color: var(--navy-900); background: transparent; }
.review-controls > span { color: var(--muted); font: 800 .67rem var(--font-display); letter-spacing: .08em; }
.reviews-footer { display: flex; align-items: center; justify-content: space-between; gap: 45px; margin-top: 42px; }
.reviews-footer p { max-width: 720px; margin: 0; color: var(--muted); font-size: .72rem; }
.reviews-footer .btn { flex: 0 0 auto; }

/* Shared next step */
.next-step { border-top: 1px solid var(--line-light); }
.next-step-inner { display: flex; align-items: end; justify-content: space-between; gap: 70px; }
.next-step h2 { margin: 0 0 16px; color: var(--white); font-size: clamp(2.4rem, 4.5vw, 4.5rem); line-height: 1; }
.next-step-inner > div:first-child > p:last-child { max-width: 590px; margin: 0; color: rgba(255,255,255,.58); }
.next-step .hero-actions { flex: 0 0 auto; }

/* Fleets */
.fleet-page-hero::after { content: ""; position: absolute; right: -14vw; bottom: -28vw; width: 70vw; height: 70vw; border: 1px solid rgba(25,181,245,.08); border-radius: 50%; }
.fleet-visual { position: relative; min-height: 440px; display: flex; flex-direction: column; justify-content: space-between; padding: 44px; border: 1px solid var(--line-light); background: linear-gradient(145deg, rgba(73,71,164,.4), rgba(25,181,245,.05)); }
.fleet-visual-number { color: var(--cyan); font: 800 .68rem var(--font-display); letter-spacing: .1em; }
.fleet-visual > svg { width: 190px; height: 190px; margin: auto; color: rgba(255,255,255,.85); stroke-width: .75; }
.fleet-visual p { max-width: 330px; margin: 0; color: rgba(255,255,255,.58); font-size: .84rem; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.value-card { min-height: 300px; padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.48); }
.value-card > span { color: var(--cyan-strong); font: 800 .66rem var(--font-display); }
.value-card h3 { margin: 72px 0 14px; color: var(--navy-900); font-size: 1.3rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.business-flow-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 130px); }
.business-flow h2 { margin: 0 0 28px; color: var(--navy-900); font-size: clamp(2.6rem, 4.8vw, 5rem); line-height: 1.03; font-weight: 600; }
.business-flow-copy > p:last-child { color: var(--muted); }
.business-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.business-steps li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line-dark); }
.business-steps li > span { color: var(--cyan-strong); font: 800 .67rem var(--font-display); }
.business-steps h3 { margin: 0 0 7px; color: var(--navy-900); font-size: 1.1rem; }
.business-steps p { margin: 0; color: var(--muted); font-size: .82rem; }
.fleet-contact-grid { display: grid; grid-template-columns: 1fr .65fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.fleet-contact h2 { margin: 0 0 25px; color: var(--white); font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: 1; font-weight: 600; }
.fleet-contact-grid > div:first-child > p:last-child { max-width: 630px; color: rgba(255,255,255,.58); }
.fleet-contact-card { display: grid; padding: 40px; border: 1px solid var(--line-light); background: rgba(255,255,255,.04); }
.fleet-contact-card > span { margin-bottom: 30px; color: var(--cyan); font: 800 .66rem var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.fleet-contact-card > a:not(.btn) { margin-bottom: 8px; color: var(--white); font: 700 1.1rem var(--font-display); }
.fleet-contact-card .btn { margin-top: 28px; }
.fleet-contact-card small { margin-top: 15px; color: rgba(255,255,255,.38); font-size: .65rem; }

/* About */
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.principle-card { min-height: 320px; padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.principle-card > span { color: var(--cyan-strong); font: 800 .66rem var(--font-display); }
.principle-card h3 { margin: 78px 0 14px; color: var(--navy-900); font-size: 1.4rem; }
.principle-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.brand-promise-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); }
.brand-promise h2 { margin: 0 0 28px; color: var(--white); font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: 1; font-weight: 600; }
.brand-promise-copy > p:last-child { color: rgba(255,255,255,.58); }
.promise-list { border-top: 1px solid var(--line-light); }
.promise-list article { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line-light); }
.promise-list article > span { color: var(--cyan); font: 800 .66rem var(--font-display); }
.promise-list h3 { margin: 0 0 8px; color: var(--white); font-size: 1.2rem; }
.promise-list p { margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; }
.eco-mark { display: flex; align-items: center; gap: 15px; margin-top: 35px; color: var(--navy-800); font: 800 .76rem var(--font-display); }
.eco-mark svg { width: 35px; height: 35px; color: var(--cyan-strong); }
.campera-story-grid { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(60px, 9vw, 130px); align-items: end; }
.campera-story h2 { margin: 0; color: var(--navy-900); font-size: clamp(2.6rem, 4.8vw, 5rem); line-height: 1.03; font-weight: 600; }
.campera-story-grid > div:last-child > p { color: var(--muted); }

/* Contact */
.contact-hero-card { display: grid; align-self: center; border: 1px solid var(--line-light); background: rgba(255,255,255,.035); }
.contact-hero-card > div { display: flex; align-items: center; gap: 20px; padding: 30px; border-bottom: 1px solid var(--line-light); }
.contact-hero-card > div > svg { width: 30px; height: 30px; color: var(--cyan); }
.contact-hero-card span { display: grid; }
.contact-hero-card small { margin-bottom: 3px; color: rgba(255,255,255,.46); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-hero-card strong { color: var(--white); font: 700 .88rem/1.55 var(--font-display); }
.contact-hero-card > a { display: flex; align-items: center; justify-content: space-between; padding: 24px 30px; color: var(--navy-950); background: var(--cyan); font: 800 .78rem var(--font-display); }
.contact-hero-card > a svg { width: 18px; height: 18px; }

@media (max-width: 1120px) {
  .service-nav-grid, .value-grid, .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid.four { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr minmax(330px,.65fr); gap: 50px; }
  .page-hero h1 { font-size: clamp(3.1rem, 6vw, 4.8rem); }
}

@media (max-width: 900px) {
  .home-contact-grid, .page-hero-grid, .business-flow-grid, .fleet-contact-grid,
  .brand-promise-grid, .campera-story-grid { grid-template-columns: 1fr; }
  .home-review-inner { grid-template-columns: .7fr 1.3fr; }
  .home-review-inner > .text-link { grid-column: 2; }
  .home-contact-actions { width: 100%; }
  .page-hero { min-height: auto; padding-top: 140px; }
  .page-hero-copy { max-width: 760px; }
  .page-hero-media { width: min(72vw, 470px); justify-self: center; margin-top: 20px; }
  .contact-hero-card, .fleet-visual { width: min(100%, 650px); }
  .process-video-grid { grid-template-columns: 1fr 1fr; }
  .reviews-heading { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .reviews-summary { width: min(100%, 360px); }
  .review-card { flex-basis: calc((100% - 18px) / 2); }
  .catalog-grid, .catalog-grid.two { grid-template-columns: 1fr 1fr; }
  .catalog-grid.four { grid-template-columns: 1fr 1fr; }
  .next-step-inner { align-items: flex-start; flex-direction: column; }
  .section-index { position: static; }
}

@media (max-width: 700px) {
  .service-nav-grid, .pathways-grid, .process-video-grid, .catalog-grid, .catalog-grid.two,
  .catalog-grid.four, .value-grid, .principles-grid { grid-template-columns: 1fr; }
  .home-review-teaser { padding-block: 42px; }
  .home-review-inner { grid-template-columns: 1fr; gap: 26px; }
  .home-review-inner blockquote { padding-left: 22px; }
  .home-review-inner > .text-link { grid-column: auto; }
  .service-nav-card { min-height: 285px; }
  .pathway-card { min-height: 400px; }
  .page-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .page-hero-media { width: min(84vw, 430px); padding-right: 12px; }
  .page-hero-media > div { left: -12px; min-width: 210px; }
  .section-index { overflow-x: auto; scrollbar-width: none; }
  .section-index .shell { width: max-content; min-width: 100%; display: flex; }
  .section-index a { min-width: 168px; }
  .catalog-heading { grid-template-columns: 1fr; gap: 22px; }
  .catalog-card { min-height: 360px; }
  .catalog-card h3 { margin-top: 52px; }
  .process-video .video-frame { aspect-ratio: 4 / 4.7; }
  .review-card { flex-basis: 88%; min-height: 360px; }
  .reviews-footer { align-items: flex-start; flex-direction: column; }
  .reviews-footer .btn { width: 100%; }
  .result-note { grid-template-columns: 1fr; gap: 8px; }
  .fleet-visual { min-height: 360px; padding: 30px; }
  .fleet-visual > svg { width: 145px; height: 145px; }
  .next-step .hero-actions { width: 100%; }
  .next-step .btn { width: 100%; }
  .contact-hero-card > div { padding: 24px; }
  .home-contact-grid { gap: 35px; }
}

@media (max-width: 420px) {
  .page-hero-media { width: 90vw; }
  .catalog-card, .principle-card, .value-card { padding: 28px 24px; }
  .fleet-contact-card { padding: 30px 24px; }
}
