/**
 * FrioVan visual system.
 *
 * This is the readable production source. Historical refinement blocks are
 * intentionally kept in cascade order because later rules contain the final
 * approved responsive behavior. New maintenance rules should be appended in
 * a clearly versioned block and regression-tested at the documented widths.
 */

:root {
  --navy: #071a2b;
  --navy-2: #0d2b43;
  --blue: #0876c9;
  --blue-dark: #075f9f;
  --cyan: #65c7e6;
  --ice: #eaf6fb;
  --ice-2: #f5fafc;
  --white: #ffffff;
  --ink: #14212c;
  --muted: #62717f;
  --line: #d8e5eb;
  --line-dark: rgba(255,255,255,.16);
  --green: #25d366;
  --amber: #f3ae37;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-h: 74px;
  --section-y: clamp(72px, 9vw, 128px);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 28px 70px rgba(7, 26, 43, .13);
  --shadow-soft: 0 12px 36px rgba(7, 26, 43, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
::selection { color: var(--white); background: var(--blue); }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 2000;
  transform: translateY(-150%); padding: 10px 14px; border-radius: 10px;
  background: var(--white); color: var(--navy); font-weight: 800;
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; position: relative; z-index: 2; }
section { position: relative; padding: var(--section-y) 0; scroll-margin-top: calc(var(--header-h) + 30px); }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; color: var(--navy); }
h1, h2 { font-family: var(--serif); font-weight: 700; letter-spacing: -.045em; line-height: .98; text-wrap: balance; }
h1 { font-size: clamp(3.1rem, 8.2vw, 6.6rem); }
h2 { font-size: clamp(2.45rem, 5.3vw, 4.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.42rem); line-height: 1.18; letter-spacing: -.025em; }
.lead { font-size: clamp(1.02rem, 1.8vw, 1.2rem); max-width: 680px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue); font-size: .74rem; line-height: 1;
  font-weight: 900; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--cyan); }
.kicker { margin: 0; color: var(--blue); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.btn {
  position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 22px; border: 1px solid var(--blue); border-radius: 999px;
  background: var(--blue); color: var(--white); font-weight: 850; line-height: 1; cursor: pointer;
  box-shadow: 0 14px 28px rgba(8, 118, 201, .2);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.btn::after { content: ""; position: absolute; inset: -6px; z-index: -1; border: 1px solid transparent; border-radius: inherit; transition: border-color .22s ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 18px 36px rgba(8, 118, 201, .25); outline: none; }
.btn:hover::after, .btn:focus-visible::after { border-color: rgba(8,118,201,.18); }
.btn--compact { min-height: 44px; padding: 12px 18px; font-size: .9rem; }
.btn--outline { color: var(--white); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.36); box-shadow: none; backdrop-filter: blur(12px); }
.btn--outline:hover, .btn--outline:focus-visible { background: var(--white); color: var(--navy); border-color: var(--white); box-shadow: none; }
.btn--light { color: var(--navy); background: var(--white); border-color: var(--line); box-shadow: var(--shadow-soft); }
.btn--light:hover, .btn--light:focus-visible { color: var(--white); background: var(--blue); border-color: var(--blue); }
.btn--dark { color: var(--white); background: var(--navy); border-color: var(--navy); box-shadow: var(--shadow-soft); }
.btn--dark:hover, .btn--dark:focus-visible { background: var(--navy-2); border-color: var(--navy-2); }
.btn--full { width: 100%; }

/* Header */
.topbar { display: none; position: fixed; inset: 0 0 auto; z-index: 1100; height: 36px; background: #041522; color: rgba(255,255,255,.72); font-size: .76rem; }
.topbar__inner, .topbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar strong { color: var(--white); }
.topbar i { display: inline-block; width: 3px; height: 3px; margin: 0 10px; border-radius: 50%; background: var(--cyan); vertical-align: middle; }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1090; height: var(--header-h);
  background: rgba(7,26,43,.86); border-bottom: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: rgba(7,26,43,.96); box-shadow: 0 12px 34px rgba(2,12,20,.22); }
.site-header.is-hidden { transform: translateY(-100%); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font-weight: 950; letter-spacing: -.04em; }
.brand-mark { width: 48px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--white); overflow: hidden; box-shadow: 0 10px 28px rgba(101,199,230,.15); }
.brand-mark img { width: 88%; height: 88%; object-fit: contain; }
.brand-copy { font-size: 1.08rem; line-height: 1; }
.brand small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: .57rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.nav-links {
  position: fixed; top: calc(var(--header-h) + 10px); left: 16px; right: 16px;
  display: grid; gap: 4px; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px;
  background: rgba(5,21,34,.98); box-shadow: 0 26px 70px rgba(0,0,0,.36);
  opacity: 0; transform: translateY(-10px) scale(.985); pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-links a { min-height: 48px; display: flex; align-items: center; padding: 12px 14px; border-radius: 13px; color: rgba(255,255,255,.8); font-size: .92rem; font-weight: 800; }
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a.is-active { color: var(--white); background: rgba(255,255,255,.08); outline: none; }
.nav-cta { display: none; }
.hamburger { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.07); color: var(--white); cursor: pointer; }
.hamburger span, .hamburger span::before, .hamburger span::after { content: ""; display: block; width: 21px; height: 2px; border-radius: 20px; background: currentColor; transition: transform .22s ease, opacity .22s ease; }
.hamburger span::before { transform: translateY(-7px); }
.hamburger span::after { transform: translateY(5px); }
.hamburger.is-open span { transform: rotate(45deg); }
.hamburger.is-open span::before { transform: rotate(90deg); }
.hamburger.is-open span::after { opacity: 0; transform: none; }

/* Section 1: hero */
.hero { min-height: max(760px, 100svh); display: flex; align-items: center; padding: calc(var(--header-h) + 58px) 0 72px; overflow: hidden; background: var(--navy); }
.hero-media { position: absolute; inset: -6%; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; will-change: transform; }
.hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(7,26,43,.99) 0%, rgba(7,26,43,.91) 48%, rgba(7,26,43,.57) 100%); }
.hero-shade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 40%, rgba(101,199,230,.18), transparent 35%), linear-gradient(to top, rgba(7,26,43,.58), transparent 45%); }
.hero-grid { display: grid; gap: 42px; align-items: center; }
.hero-copy { max-width: 800px; }
.hero h1 { max-width: 900px; color: var(--white); }
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero-lead { max-width: 690px; margin-top: 26px; color: rgba(255,255,255,.79); font-size: clamp(1.04rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.hero-actions .btn { width: 100%; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 750; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; fill: none; stroke: var(--cyan); stroke-width: 2.2; }
.hero-card { max-width: 500px; justify-self: center; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-xl); background: rgba(255,255,255,.09); box-shadow: 0 32px 90px rgba(0,0,0,.24); backdrop-filter: blur(16px); overflow: hidden; }
.hero-card__image { position: relative; margin: 12px 12px 0; border-radius: 24px; overflow: hidden; }
.hero-card__image img { width: 100%; aspect-ratio: 1.38 / 1; object-fit: cover; transition: transform .7s ease; }
.hero-card:hover .hero-card__image img { transform: scale(1.035); }
.availability { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; background: rgba(7,26,43,.82); color: var(--white); font-size: .72rem; font-weight: 800; backdrop-filter: blur(10px); }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: #59dd97; box-shadow: 0 0 0 5px rgba(89,221,151,.15); }
.hero-card__body { padding: 24px; }
.hero-card__body .kicker { color: var(--cyan); }
.hero-card__body h2 { margin-top: 10px; color: var(--white); font-family: var(--sans); font-size: clamp(1.35rem, 3vw, 1.9rem); line-height: 1.12; letter-spacing: -.04em; }
.capacity-row { display: grid; gap: 9px; margin-top: 22px; }
.capacity-row a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; min-height: 68px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; color: var(--white); background: rgba(255,255,255,.045); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.capacity-row a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); transform: translateX(3px); }
.capacity-row strong { font-size: 1.05rem; }
.capacity-row span { color: rgba(255,255,255,.63); font-size: .78rem; }
.capacity-row b { color: var(--cyan); font-size: 1.15rem; }
.hero-scroll { display: none; position: absolute; left: 50%; bottom: 22px; z-index: 3; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll span { width: 38px; height: 1px; background: rgba(255,255,255,.35); overflow: hidden; }
.hero-scroll span::after { content: ""; display: block; width: 16px; height: 100%; background: var(--cyan); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: translateX(-18px); } 50% { transform: translateX(38px); } }

/* Shared section intro */
.section-intro { display: grid; gap: 20px; margin-bottom: clamp(34px, 6vw, 62px); }
.section-intro > div { display: grid; gap: 18px; }
.section-intro h2 { max-width: 820px; }
.section-intro > p { max-width: 520px; font-size: 1.05rem; }
.section-intro--light h2 { color: var(--white); }
.section-intro--light > p { color: rgba(255,255,255,.62); }

/* Section 2 */
.value { background: var(--ice-2); overflow: hidden; }
.value::before { content: ""; position: absolute; top: -170px; right: -150px; width: 410px; height: 410px; border: 1px solid rgba(8,118,201,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,118,201,.035), 0 0 0 140px rgba(8,118,201,.018); }
.value-grid { display: grid; gap: 14px; }
.value-card { position: relative; min-height: 280px; display: flex; flex-direction: column; align-items: flex-start; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.value-card:hover { transform: translateY(-5px); border-color: rgba(8,118,201,.28); box-shadow: var(--shadow); }
.value-index { position: absolute; top: 24px; right: 24px; color: #a9bbc7; font-family: var(--serif); font-size: .9rem; font-style: italic; }
.icon-shell { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: auto; border-radius: 16px; background: var(--ice); color: var(--blue); }
.icon-shell svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin-top: 30px; }
.value-card p { margin-top: 12px; font-size: .94rem; }
.feature-line { width: 100%; display: flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--muted); font-size: .72rem; font-weight: 750; }
.feature-line i { flex: 1; height: 1px; background: var(--line); }
.sector-strip { display: flex; align-items: center; gap: 14px; margin-top: 30px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 999px; overflow-x: auto; scrollbar-width: none; background: rgba(255,255,255,.74); color: var(--navy); white-space: nowrap; }
.sector-strip::-webkit-scrollbar { display: none; }
.sector-strip span { font-size: .78rem; font-weight: 800; }
.sector-strip i { width: 4px; height: 4px; flex: 0 0 auto; border-radius: 50%; background: var(--cyan); }

/* Section 3 */
.fleet { background: var(--navy); overflow: hidden; }
.fleet::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.fleet-stack { display: grid; gap: 18px; }
.vehicle-card { display: grid; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl); background: #0b2438; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.vehicle-media { position: relative; min-height: 310px; overflow: hidden; }
.vehicle-media > img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.vehicle-card:hover .vehicle-media > img { transform: scale(1.04); }
.vehicle-media::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(to top, rgba(7,26,43,.58), transparent); }
.vehicle-badge { position: absolute; left: 18px; bottom: 18px; z-index: 1; min-width: 110px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 15px; background: rgba(7,26,43,.8); color: var(--white); backdrop-filter: blur(10px); }
.vehicle-badge small { display: block; color: rgba(255,255,255,.58); font-size: .67rem; }
.vehicle-badge strong { display: block; margin-top: 2px; font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.media-carousel { position: relative; height: 100%; touch-action: pan-y; user-select: none; }
.media-carousel__viewport { overflow: hidden; height: 100%; }
.media-carousel__track { display: flex; height: 100%; transition: transform .55s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.media-carousel__slide { flex: 0 0 100%; margin: 0; }
.media-carousel__slide img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.vehicle-card:hover .media-carousel__slide img { transform: scale(1.03); }
.carousel-control { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(7,26,43,.58); color: var(--white); backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(0,0,0,.18); transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease; }
.carousel-control:hover { background: rgba(7,26,43,.82); border-color: rgba(255,255,255,.34); }
.carousel-control:active { transform: translateY(-50%) scale(.97); }
.carousel-control--prev { left: 14px; }
.carousel-control--next { right: 14px; }
.carousel-control span { font-size: 1.55rem; line-height: 1; margin-top: -2px; }
.vehicle-card .vehicle-badge { bottom: 68px; }

.vehicle-content { padding: clamp(25px, 5vw, 48px); }
.vehicle-heading { display: flex; flex-direction: column; gap: 18px; }
.vehicle-heading > div { display: grid; gap: 8px; }
.vehicle-heading h3 { color: var(--white); font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
.vehicle-heading .kicker { color: var(--cyan); }
.temperature { align-self: flex-start; padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .7rem; font-weight: 800; }
.vehicle-content > p { margin-top: 18px; color: rgba(255,255,255,.62); }
.vehicle-specs { display: grid; grid-template-columns: 1fr; gap: 1px; margin: 28px 0 0; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.1); }
.vehicle-specs div { padding: 14px 16px; background: #0b2438; }
.vehicle-specs dt { color: rgba(255,255,255,.48); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.vehicle-specs dd { margin: 4px 0 0; color: var(--white); font-size: .9rem; font-weight: 800; }
.vehicle-bottom { display: grid; gap: 22px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.vehicle-bottom ul { list-style: none; display: grid; gap: 8px; margin: 0; padding: 0; color: rgba(255,255,255,.72); font-size: .84rem; }
.vehicle-bottom li::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: var(--cyan); vertical-align: middle; }
.vehicle-bottom .btn { justify-self: start; }

/* Section 4 */
.process { background: var(--white); overflow: hidden; }
.process-grid { display: grid; gap: 48px; align-items: center; }
.process-copy { display: grid; align-content: start; }
.process-copy .eyebrow { margin-bottom: 20px; }
.process-copy .lead { margin-top: 22px; }
.process-list { display: grid; gap: 0; margin: 38px 0 0; padding: 0; list-style: none; }
.process-list li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding-bottom: 26px; }
.process-list li:not(:last-child)::after { content: ""; position: absolute; left: 22px; top: 46px; bottom: 0; width: 1px; background: var(--line); }
.process-list li > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--ice-2); color: var(--blue); font-family: var(--serif); font-weight: 700; }
.process-list h3 { padding-top: 3px; }
.process-list p { margin-top: 6px; font-size: .92rem; }
.proof-panel { padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--ice-2); box-shadow: var(--shadow); }
.proof-photo { position: relative; border-radius: 25px; overflow: hidden; }
.proof-photo img { width: 100%; aspect-ratio: 1.28/1; object-fit: cover; will-change: transform; }
.proof-photo span { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(7,26,43,.82); color: var(--white); font-size: .68rem; font-weight: 800; }
.reviews-intro { margin: 12px 0 0; padding: 24px; border-radius: 22px; background: var(--white); }
.reviews-intro__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.stars { color: var(--amber); letter-spacing: .08em; }
.reviews-intro__top small { color: var(--muted); font-size: .7rem; }
.reviews-intro h3 { margin-top: 16px; font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
.reviews-intro p { margin-top: 10px; font-size: .95rem; }
.reviews-carousel { margin-top: 10px; }
.reviews-carousel__viewport { overflow: hidden; }
.reviews-carousel__track { display: flex; transition: transform .52s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.reviews-page { flex: 0 0 100%; display: grid; gap: 10px; padding: 12px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,249,253,.96)); border: 1px solid rgba(12,71,119,.08); box-shadow: 0 16px 40px rgba(7,26,43,.06); }
.reviews-carousel__controls { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.reviews-carousel__status { flex: 1; display: grid; gap: 8px; min-width: 0; }
.reviews-carousel__hint { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 10px 14px; border-radius: 999px; background: var(--white); border: 1px solid rgba(12,71,119,.08); color: var(--navy); font-size: .74rem; font-weight: 800; text-align: center; }
.reviews-carousel__dots { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 14px; }
.reviews-dot { width: 9px; height: 9px; border: 0; border-radius: 999px; background: rgba(12,71,119,.18); transition: width .25s ease, background .25s ease, transform .25s ease; }
.reviews-dot.is-active { width: 24px; background: var(--blue); }
.reviews-dot:hover { transform: scale(1.06); }
.reviews-arrow { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 999px; border: 1px solid rgba(12,71,119,.10); background: var(--white); color: var(--navy); box-shadow: 0 14px 28px rgba(7,26,43,.08); transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease, opacity .24s ease; }
.reviews-arrow:hover { transform: translateY(-1px); background: var(--blue); color: var(--white); box-shadow: 0 18px 34px rgba(12,71,119,.14); }
.reviews-arrow:disabled { opacity: .45; cursor: default; box-shadow: none; }
.reviews-arrow span { font-size: 1.5rem; line-height: 1; margin-top: -2px; }
.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(12, 71, 119, .08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7,26,43,.03);
  transform: translateZ(0);
  transition: transform .36s cubic-bezier(.2,.7,.2,1), box-shadow .36s ease, border-color .36s ease, background-color .36s ease;
}
.review-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 28%, rgba(78,178,230,.12) 46%, rgba(255,255,255,.72) 50%, rgba(78,178,230,.08) 54%, transparent 72%);
  transform: translateX(-135%);
  transition: transform .78s cubic-bezier(.18,.76,.24,1);
  pointer-events: none;
}
.review-card::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: -72px;
  right: -72px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(78,178,230,.10);
  filter: blur(26px);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .36s ease, transform .48s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px) scale(1.008);
  border-color: rgba(12, 71, 119, .20);
  background: #fff;
  box-shadow: 0 22px 48px rgba(7,26,43,.12), 0 4px 14px rgba(12,71,119,.06);
}
.review-card:hover::before { transform: translateX(135%); }
.review-card:hover::after { opacity: 1; transform: scale(1); }
.review-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.review-card__head strong { display: block; color: var(--navy); font-size: .98rem; transition: color .3s ease, transform .3s ease; }
.review-card__head small { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; transition: color .3s ease; }
.review-card .stars { display: inline-block; transform-origin: right center; transition: transform .34s cubic-bezier(.2,.7,.2,1), filter .34s ease; }
.review-card p { margin-top: 12px; color: var(--navy); font-size: .95rem; line-height: 1.6; transition: transform .34s cubic-bezier(.2,.7,.2,1), color .3s ease; }
.review-card:hover .review-card__head strong { color: var(--blue); transform: translateX(2px); }
.review-card:hover .review-card__head small { color: var(--navy); }
.review-card:hover .stars { transform: translateY(-1px) scale(1.055); filter: drop-shadow(0 3px 7px rgba(232,164,27,.22)); }
.review-card:hover p { transform: translateY(-1px); }
@media (hover: none) {
  .review-card:hover { transform: none; box-shadow: 0 1px 0 rgba(7,26,43,.03); border-color: rgba(12, 71, 119, .08); }
  .review-card:hover::before { transform: translateX(-135%); }
  .review-card:hover::after { opacity: 0; }
}
.proof-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.proof-links--single { grid-template-columns: 1fr; }
.proof-links a { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 50px; padding: 12px 14px; border-radius: 15px; color: var(--navy); background: var(--white); font-size: .75rem; font-weight: 800; transition: background .2s ease, color .2s ease; }
.proof-links a:hover { color: var(--white); background: var(--blue); }

/* Section 5 */
.conversion { padding-bottom: 86px; background: var(--navy); overflow: hidden; }
.conversion-photo { position: absolute; inset: 0; opacity: .19; }
.conversion-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); }
.conversion::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,26,43,.98), rgba(7,26,43,.83)); }
.conversion-shell { display: grid; gap: 32px; }
.conversion-copy { z-index: 1; }
.conversion-copy .eyebrow { margin-bottom: 20px; }
.conversion-copy h2 { max-width: 760px; color: var(--white); }
.conversion-copy > p { max-width: 620px; margin-top: 22px; color: rgba(255,255,255,.64); font-size: 1.04rem; }
.contact-points { display: grid; gap: 10px; margin-top: 30px; }
.contact-points a { display: grid; gap: 2px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.055); }
.contact-points small { color: rgba(255,255,255,.48); font-size: .67rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-points strong { color: var(--white); font-size: .92rem; }
.conversion-form { z-index: 1; display: grid; gap: 18px; padding: clamp(22px, 4vw, 34px); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.form-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.form-head span { color: var(--navy); font-weight: 900; }
.form-head small { color: var(--muted); font-size: .7rem; }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label, label { color: var(--navy); font-size: .78rem; font-weight: 850; }
.field input, .field select, .field textarea, input, select, textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--ice-2); color: var(--ink); outline: none; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
textarea { min-height: 118px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(8,118,201,.55); background: var(--white); box-shadow: 0 0 0 4px rgba(8,118,201,.09); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #d94747; box-shadow: 0 0 0 4px rgba(217,71,71,.08); }
.field-error { min-height: 1em; color: #b62f2f; font-size: .68rem; }
.form-note { text-align: center; color: var(--muted); font-size: .72rem; }
.field--full { grid-column: 1 / -1; }
.field--checkbox { display: flex; align-items: flex-start; gap: 10px; }
.field--checkbox input { width: 18px; min-height: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.field--checkbox label { color: var(--muted); font-weight: 600; }
.faq-inline { z-index: 1; grid-column: 1 / -1; display: grid; gap: 8px; margin-top: 12px; }
.faq-inline details { border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.055); color: var(--white); overflow: hidden; }
.faq-inline summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; list-style: none; cursor: pointer; font-size: .88rem; font-weight: 800; }
.faq-inline summary::-webkit-details-marker { display: none; }
.faq-inline summary span { color: var(--cyan); font-size: 1.3rem; font-weight: 400; transition: transform .2s ease; }
.faq-inline details[open] summary span { transform: rotate(45deg); }
.faq-inline details p { padding: 0 18px 18px; color: rgba(255,255,255,.62); font-size: .85rem; }

/* Interior pages / legacy components */
.page-hero { min-height: 54svh; display: flex; align-items: center; padding: calc(var(--header-h) + 72px) 0 72px; background: var(--navy); overflow: hidden; }
.page-hero .hero-bg { position: absolute; inset: -8%; z-index: 0; }
.page-hero .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,26,43,.98), rgba(7,26,43,.72)); }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.page-hero h1 { max-width: 920px; color: var(--white); font-size: clamp(2.8rem, 7vw, 5.5rem); }
.page-hero .lead { margin-top: 20px; color: rgba(255,255,255,.7); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.5); font-size: .8rem; }
.breadcrumb a { color: rgba(255,255,255,.82); font-weight: 750; }
.section-head { display: grid; gap: 15px; margin-bottom: 36px; }
.section-head--center { justify-items: center; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.card-grid { display: grid; gap: 14px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 15px; background: var(--ice); color: var(--blue); }
.card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card p { margin-top: 10px; }
.reviews-grid { display: grid; gap: 14px; }
.quote { background: var(--navy); }
.quote-card { display: grid; gap: 30px; padding: clamp(24px, 5vw, 48px); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow); }
.quote-copy h2 { margin-top: 14px; }
.quote-copy .lead { margin-top: 16px; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.contact-mini { display: grid; gap: 0; margin-top: 24px; }
.mini-row, .contact-mini .mini-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .84rem; }
.mini-row span { color: var(--muted); }
.mini-row strong { max-width: 62%; text-align: right; color: var(--navy); }
.quote-form { display: grid; gap: 16px; }
.map-frame { min-height: 340px; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.faq-grid { display: grid; gap: 30px; }
.faq-list { display: grid; gap: 9px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
.faq-button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 17px 18px; border: 0; background: transparent; color: var(--navy); font-weight: 850; text-align: left; cursor: pointer; }
.faq-button svg { width: 18px; height: 18px; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 18px 18px; }
.faq-item.is-open .faq-answer { max-height: 280px; }
.faq-item.is-open .faq-button svg { transform: rotate(180deg); }
.parallax-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(8px); opacity: .5; }
.parallax-blob--cyan { background: rgba(101,199,230,.22); }
.parallax-blob--blue { background: rgba(8,118,201,.18); }

/* Footer and fixed CTAs */
.site-footer { position: relative; padding: 60px 0 105px; background: #03121e; color: var(--white); }
.footer-grid { display: grid; gap: 30px; }
.footer-col { min-width: 0; }
.footer-brand { display: grid; gap: 16px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.56); font-size: .88rem; }
.footer-col h3 { margin-bottom: 14px; color: var(--white); font-family: var(--sans); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-col li, .footer-col a { color: rgba(255,255,255,.62); font-size: .84rem; }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--white); outline: none; }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .75rem; }
.whatsapp-float { position: fixed; right: 17px; bottom: 88px; z-index: 1000; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); box-shadow: 0 18px 38px rgba(37,211,102,.35); transition: transform .22s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.025); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-parallax-speed] { will-change: transform; }

@media (min-width: 600px) {
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-specs { grid-template-columns: repeat(3, 1fr); }
  .vehicle-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .contact-points { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .faq-inline { grid-template-columns: repeat(3, 1fr); }
  .faq-inline details[open] { grid-column: auto; }
  .card-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .topbar { display: block; }
  .site-header { top: 36px; }
  .site-header.is-hidden { transform: translateY(calc(-100% - 36px)); }
  .nav-links { position: static; display: flex; align-items: center; gap: 2px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { min-height: 40px; padding: 10px 11px; font-size: .82rem; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .hero { padding-top: calc(var(--header-h) + 105px); }
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(370px, .75fr); gap: clamp(44px, 6vw, 88px); }
  .hero-card { justify-self: end; }
  .hero-scroll { display: flex; }
  .section-intro { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; }
  .section-intro > p { justify-self: end; }
  .value-grid { grid-template-columns: 1.18fr repeat(3, 1fr); }
  .value-card { min-height: 330px; }
  .vehicle-card { grid-template-columns: .9fr 1.1fr; }
  .vehicle-card--reverse .vehicle-media { order: 2; }
  .vehicle-media, .vehicle-media > img, .media-carousel__slide img { min-height: 490px; }
  .vehicle-heading { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .process-grid { grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 8vw, 108px); }
  .conversion-shell { grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 7vw, 90px); align-items: start; }
  .reviews-carousel__track { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; transform: none !important; }
  .reviews-page { padding: 14px; }
  .reviews-carousel__controls { display: none; }
  .conversion-form { margin-top: 2px; }
  .page-hero { padding-top: calc(var(--header-h) + 110px); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-card { grid-template-columns: .86fr 1.14fr; gap: 48px; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.25fr .7fr .9fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .site-footer { padding-bottom: 34px; }
  .whatsapp-float { bottom: 24px; }
}

@media (min-width: 1180px) {
  .nav-links a { padding-inline: 14px; font-size: .86rem; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-copy { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 48px); }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.15rem); }
  .hero-card__body { padding: 20px; }
  .value-card { min-height: 260px; }
  .reviews-carousel__controls { gap: 10px; }
  .reviews-arrow { width: 44px; height: 44px; }
  .reviews-page { padding: 10px; }
  .proof-links { grid-template-columns: 1fr; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  [data-parallax-speed] { transform: none !important; }
}

@media (min-width: 900px) {
  .no-topbar .site-header { top: 0; }
  .no-topbar .site-header.is-hidden { transform: translateY(-100%); }
}

/* =========================================================
   V3 — Section transition vibecoding
   Progressive enhancement injected by main.v3.js
   ========================================================= */
main > section.section-vibe {
  --vibe-rgb: 8, 118, 201;
  --vibe-soft-rgb: 101, 199, 230;
  isolation: isolate;
}

main > section.section-vibe.section-vibe--dark {
  --vibe-rgb: 101, 199, 230;
  --vibe-soft-rgb: 8, 118, 201;
}

.section-vibe__portal {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 8;
  width: min(88vw, 1080px);
  height: clamp(54px, 7vw, 82px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scaleX(.72);
  transform-origin: center;
  transition:
    opacity .55s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}

.section-vibe__portal::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--vibe-rgb), .15) 0%,
    rgba(var(--vibe-rgb), .055) 34%,
    transparent 72%
  );
  filter: blur(15px);
  opacity: 0;
  transform: scale(.55);
  transition:
    opacity .8s ease .06s,
    transform 1.1s cubic-bezier(.16, 1, .3, 1) .06s;
}

.section-vibe__rail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--vibe-rgb), .10) 13%,
    rgba(var(--vibe-rgb), .50) 50%,
    rgba(var(--vibe-rgb), .10) 87%,
    transparent
  );
  opacity: .72;
  transform: translate(-50%, -50%) scaleX(.08);
  transform-origin: center;
  transition: transform 1.05s cubic-bezier(.16, 1, .3, 1) .04s;
}

.section-vibe__rail::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -28%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  filter: blur(.4px);
  opacity: 0;
}

.section-vibe__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(82px, 10vw, 132px);
  height: clamp(25px, 3.4vw, 40px);
  border: 1px solid rgba(var(--vibe-rgb), .3);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.52) rotate(-7deg);
  transition:
    opacity .55s ease .16s,
    transform .95s cubic-bezier(.16, 1, .3, 1) .1s;
}

.section-vibe__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: rgb(var(--vibe-rgb));
  box-shadow:
    0 0 0 5px rgba(var(--vibe-rgb), .12),
    0 0 28px rgba(var(--vibe-rgb), .62);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.4);
  transition:
    opacity .35s ease .18s,
    transform .75s cubic-bezier(.16, 1, .3, 1) .14s;
}

.section-vibe__ambient {
  position: absolute;
  top: clamp(-190px, -12vw, -120px);
  right: clamp(-155px, -9vw, -80px);
  z-index: 0;
  width: clamp(260px, 36vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--vibe-rgb), .11), rgba(var(--vibe-soft-rgb), .035) 42%, transparent 69%);
  filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(var(--vibe-shift, 0px) - 16px), 0) scale(.88);
  transition:
    opacity 1s ease .12s,
    transform 1.15s cubic-bezier(.16, 1, .3, 1) .08s;
}

.section-vibe.is-vibe-active .section-vibe__portal {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scaleX(1);
}

.section-vibe.is-vibe-active .section-vibe__portal::before {
  opacity: 1;
  transform: scale(1);
}

.section-vibe.is-vibe-active .section-vibe__rail {
  transform: translate(-50%, -50%) scaleX(1);
}

.section-vibe.is-vibe-active .section-vibe__rail::after {
  animation: section-vibe-scan 1.05s cubic-bezier(.16, 1, .3, 1) .28s 1 both;
}

.section-vibe.is-vibe-active .section-vibe__orbit {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-7deg);
}

.section-vibe.is-vibe-active .section-vibe__core {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: section-vibe-pulse 3.8s ease-in-out 1.05s infinite;
}

.section-vibe.is-vibe-active .section-vibe__ambient {
  opacity: .78;
  transform: translate3d(0, var(--vibe-shift, 0px), 0) scale(1);
}

/* Alternate the ambient light to avoid a repetitive template feel. */
main > section.section-vibe:nth-of-type(even) .section-vibe__ambient {
  right: auto;
  left: clamp(-155px, -9vw, -80px);
}

/* Subtle sectional depth while the section is entering. */
.section-vibe > .container {
  transition: filter .8s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
}

.section-vibe:not(.is-vibe-active) > .container {
  filter: saturate(.96);
}

@keyframes section-vibe-scan {
  0% { left: -28%; opacity: 0; }
  14% { opacity: .95; }
  72% { opacity: .58; }
  100% { left: 100%; opacity: 0; }
}

@keyframes section-vibe-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(var(--vibe-rgb), .10),
      0 0 24px rgba(var(--vibe-rgb), .42);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(var(--vibe-rgb), .035),
      0 0 36px rgba(var(--vibe-rgb), .68);
  }
}

@media (max-width: 599px) {
  .section-vibe__portal {
    width: calc(100% - 34px);
    height: 50px;
  }
  .section-vibe__orbit {
    width: 72px;
    height: 22px;
  }
  .section-vibe__core {
    width: 8px;
    height: 8px;
  }
  .section-vibe__ambient {
    width: 250px;
    opacity: 0;
    filter: blur(9px);
  }
  .section-vibe.is-vibe-active .section-vibe__ambient {
    opacity: .46;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-vibe__portal,
  .section-vibe__portal::before,
  .section-vibe__rail,
  .section-vibe__orbit,
  .section-vibe__core,
  .section-vibe__ambient,
  .section-vibe > .container,
  .review-card,
  .review-card::before,
  .review-card::after,
  .review-card__head strong,
  .review-card__head small,
  .review-card .stars,
  .review-card p {
    animation: none !important;
    transition: none !important;
  }
  .review-card:hover {
    transform: none;
  }
  .section-vibe__portal {
    opacity: .7;
    transform: translate3d(-50%, -50%, 0);
  }
  .section-vibe__portal::before,
  .section-vibe__orbit,
  .section-vibe__core,
  .section-vibe__ambient {
    opacity: .45;
    transform: translate(-50%, -50%);
  }
  .section-vibe__rail {
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 680px) {
  .vehicle-card .vehicle-badge { bottom: 74px; }
  .carousel-control { width: 38px; height: 38px; }
}

.carousel-control:disabled { opacity: .35; cursor: default; }
.media-carousel__slide img { -webkit-user-drag: none; }

.reviews-carousel[data-review-carousel] { touch-action: pan-y; }
@media (hover: none) {
  .reviews-arrow:hover { transform: none; background: var(--white); color: var(--navy); box-shadow: 0 14px 28px rgba(7,26,43,.08); }
}
@media (min-width: 900px) {
  .reviews-page { align-content: start; }
}


/* Hero redesign V7 */
.hero.hero--v7 {
  min-height: max(860px, 100svh);
  align-items: stretch;
  padding: calc(var(--header-h) + 18px) 0 26px;
}
.hero.hero--v7 .hero-media {
  inset: 0;
}
.hero.hero--v7 .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
.hero.hero--v7 .hero-shade {
  background:
    linear-gradient(180deg, rgba(7,26,43,.28) 0%, rgba(7,26,43,.42) 28%, rgba(7,26,43,.62) 58%, rgba(7,26,43,.84) 100%),
    linear-gradient(95deg, rgba(7,26,43,.82) 0%, rgba(7,26,43,.24) 46%, rgba(7,26,43,.04) 100%);
}
.hero.hero--v7 .hero-shade::after {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.18), transparent 26%),
    radial-gradient(circle at 50% 76%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(to top, rgba(7,26,43,.22), transparent 35%);
}
.hero.hero--v7 .hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  min-height: calc(100svh - var(--header-h) - 44px);
}
.hero.hero--v7 .hero-copy {
  max-width: min(100%, 34rem);
  padding-top: 6px;
}
.hero.hero--v7 .hero-copy .eyebrow {
  margin-bottom: 18px;
}
.hero.hero--v7 h1 {
  max-width: 9ch;
  color: var(--white);
  font-size: clamp(3rem, 12vw, 5.8rem);
  line-height: .93;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero.hero--v7 .hero-emphasis {
  display: block;
  color: var(--blue);
}
.hero.hero--v7 .hero-lead {
  max-width: 31ch;
  margin-top: 18px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 4.7vw, 1.28rem);
  line-height: 1.5;
}
.hero.hero--v7 .hero-actions {
  width: min(100%, 25rem);
  margin-top: 22px;
}
.hero.hero--v7 .hero-actions .btn {
  width: 100%;
  min-height: 60px;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 18px 34px rgba(30,123,237,.24);
}
.hero-quick-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(7,26,43,.16);
}
.hero-quick-note svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-quick-note span {
  font-size: .98rem;
  font-weight: 750;
}
.hero-benefits {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(7,26,43,.16);
}
.hero-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.08);
}
.hero-benefit__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(27,146,255,.12);
  color: var(--cyan);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-benefit__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-benefit strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}
.hero-benefit small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  line-height: 1.45;
}
.hero.hero--v7 .hero-scroll {
  bottom: 18px;
}
@media (min-width: 640px) {
  .hero.hero--v7 {
    padding: calc(var(--header-h) + 24px) 0 30px;
  }
  .hero.hero--v7 .hero-copy {
    max-width: 39rem;
  }
  .hero.hero--v7 h1 {
    max-width: 10ch;
  }
  .hero.hero--v7 .hero-lead {
    max-width: 35ch;
  }
  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
  }
  .hero-benefit {
    min-height: 100%;
    align-items: start;
  }
}
@media (min-width: 900px) {
  .hero.hero--v7 {
    min-height: max(780px, 100svh);
    padding: calc(var(--header-h) + 28px) 0 36px;
  }
  .hero.hero--v7 .hero-media img {
    object-position: center center;
  }
  .hero.hero--v7 .hero-grid {
    min-height: calc(100svh - var(--header-h) - 64px);
    gap: 34px;
  }
  .hero.hero--v7 .hero-copy {
    max-width: 42rem;
    padding-top: 22px;
  }
  .hero.hero--v7 h1 {
    max-width: 8.6ch;
    font-size: clamp(4.7rem, 7vw, 6.6rem);
  }
  .hero.hero--v7 .hero-lead {
    max-width: 33ch;
    font-size: 1.28rem;
  }
  .hero.hero--v7 .hero-actions {
    width: min(100%, 23rem);
  }
  .hero-benefits {
    width: min(100%, 1100px);
    align-self: stretch;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero--v7 .hero-actions .btn,
  .hero-quick-note,
  .hero-benefit {
    transition: none;
  }
}


/* Hero refinement V8 - implement generated mobile-first background */
.hero.hero--v7 {
  padding: calc(var(--header-h) + 10px) 0 18px;
}
.hero.hero--v7 .container.hero-grid {
  gap: 18px;
}
.hero.hero--v7 .hero-copy {
  padding-top: 2px;
}
.hero.hero--v7 .hero-copy .eyebrow {
  margin-bottom: 14px;
}
.hero.hero--v7 h1 {
  max-width: 8ch;
  font-size: clamp(2.7rem, 11.2vw, 4.9rem);
}
.hero.hero--v7 .hero-lead {
  max-width: 28ch;
  margin-top: 14px;
  font-size: clamp(1rem, 4.25vw, 1.18rem);
}
.hero.hero--v7 .hero-actions {
  width: min(100%, 18rem);
  margin-top: 18px;
}
.hero.hero--v7 .hero-actions .btn {
  min-height: 56px;
  padding-inline: 20px;
  font-size: 1rem;
}
.hero-quick-note {
  min-height: 46px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 14px;
}
.hero-quick-note span {
  font-size: .88rem;
}
.hero.hero--v7 .hero-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 10px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hero.hero--v7 .hero-benefits::-webkit-scrollbar { display: none; }
.hero.hero--v7 .hero-benefit {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 8px;
  min-height: 110px;
  padding: 12px 8px;
  border-radius: 18px;
  background: transparent;
  border: 0;
}
.hero.hero--v7 .hero-benefit__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(39,155,255,.10);
}
.hero.hero--v7 .hero-benefit__icon svg {
  width: 22px;
  height: 22px;
}
.hero.hero--v7 .hero-benefit strong {
  font-size: .92rem;
  line-height: 1.2;
}
.hero.hero--v7 .hero-benefit small {
  margin-top: 4px;
  font-size: .73rem;
  line-height: 1.35;
}
@media (min-width: 640px) {
  .hero.hero--v7 {
    padding: calc(var(--header-h) + 16px) 0 22px;
  }
  .hero.hero--v7 .container.hero-grid {
    gap: 22px;
  }
  .hero.hero--v7 .hero-actions {
    width: min(100%, 20rem);
  }
  .hero.hero--v7 .hero-benefits {
    padding: 14px;
  }
  .hero.hero--v7 .hero-benefit {
    min-height: 118px;
    padding: 14px 12px;
  }
}
@media (min-width: 900px) {
  .hero.hero--v7 {
    padding: calc(var(--header-h) + 26px) 0 28px;
  }
  .hero.hero--v7 .container.hero-grid {
    gap: 28px;
  }
  .hero.hero--v7 h1 {
    max-width: 9ch;
    font-size: clamp(4.4rem, 6.2vw, 6.3rem);
  }
  .hero.hero--v7 .hero-lead {
    max-width: 33ch;
    font-size: 1.2rem;
  }
  .hero.hero--v7 .hero-actions {
    width: min(100%, 22rem);
  }
  .hero.hero--v7 .hero-benefits {
    gap: 14px;
    padding: 18px;
    border-radius: 28px;
    overflow: visible;
  }
  .hero.hero--v7 .hero-benefit {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
    gap: 12px;
    min-height: 92px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
  }
  .hero.hero--v7 .hero-benefit__icon {
    width: 48px;
    height: 48px;
  }
  .hero.hero--v7 .hero-benefit strong {
    font-size: .98rem;
  }
  .hero.hero--v7 .hero-benefit small {
    font-size: .8rem;
  }
}


/* =========================================================
   V12 — Performance motion system
   Mobile-first, parallax only from tablet upwards
   ========================================================= */
.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* AA-friendly touch targets */
.btn,
.nav-links a,
.hamburger,
.carousel-control,
.reviews-arrow,
.reviews-dot,
input,
select,
textarea,
button {
  min-height: 48px;
}
.reviews-dot {
  min-width: 48px;
  padding: 0;
  background-clip: content-box;
  border-block: 19px solid transparent;
}

/* Narrative layers receive GPU promotion only when motion is enabled. */
[data-parallax-layer] {
  transform-origin: center;
  backface-visibility: hidden;
}
.motion-parallax-enabled [data-parallax-layer] {
  will-change: transform;
}

/* Feature card visual moves more slowly than its copy. */
.value-card::after {
  content: "";
  position: absolute;
  top: -82px;
  right: -72px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,118,201,.10), transparent 68%);
  opacity: .7;
  pointer-events: none;
  transform: translate3d(0, var(--feature-counter-shift, 0px), 0);
}
.value-card .icon-shell,
.value-card .value-index {
  position: relative;
  z-index: 1;
}
.value-card h3,
.value-card p,
.value-card .feature-line {
  position: relative;
  z-index: 1;
}

/* CTA background has extra bleed to support reverse parallax safely. */
.conversion-photo {
  inset: -8%;
}
.conversion-photo img {
  width: 116%;
  height: 116%;
  object-position: center;
  transform-origin: center;
}

@media (max-width: 767px) {
  /* No parallax on mobile: predictable FPS and stable LCP. */
  [data-parallax-layer] {
    transform: none !important;
    will-change: auto !important;
  }
  .hero-picture img {
    object-position: center top;
  }
  .conversion-photo {
    inset: 0;
  }
  .conversion-photo img {
    width: 100%;
    height: 100%;
  }

  /* Mobile uses reveal, stagger and a single conversion cue instead. */
  .value-card.reveal {
    transform: translate3d(0, 18px, 0) scale(.992);
  }
  .value-card.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
  .hero-copy.is-visible .hero-actions .btn {
    animation: mobile-cta-cue 1.45s cubic-bezier(.2,.7,.2,1) .65s 1 both;
  }
  .value-card.is-visible .icon-shell {
    animation: mobile-icon-settle .72s cubic-bezier(.2,.8,.2,1) calc(var(--reveal-delay, 0ms) + 130ms) 1 both;
  }

  /* Simplified sectional motion on mobile: line reveal only. */
  .section-vibe__ambient,
  .section-vibe__orbit,
  .section-vibe__core,
  .section-vibe__portal::before {
    display: none;
  }
  .section-vibe__portal {
    height: 24px;
  }
  .section-vibe__rail {
    opacity: .45;
  }

  /* Hover is not a mobile interaction. */
  .value-card:hover,
  .review-card:hover,
  .reviews-arrow:hover,
  .carousel-control:hover {
    transform: none;
  }
}

@media (min-width: 768px) {
  .hero-picture img {
    object-position: center center;
  }
  .value-card .icon-shell {
    transform: translate3d(0, var(--feature-shift, 0px), 0);
    transition: transform .12s linear;
  }
  .value-card .value-index {
    transform: translate3d(0, var(--feature-counter-shift, 0px), 0);
    transition: transform .12s linear;
  }
  .value-card::after {
    transition: transform .12s linear;
  }
}

@media (hover: hover) and (pointer: fine) {
  .value-card:hover .icon-shell {
    box-shadow: 0 12px 28px rgba(8,118,201,.14);
  }
}

@keyframes mobile-cta-cue {
  0% { transform: translateZ(0) scale(1); box-shadow: 0 18px 34px rgba(30,123,237,.24); }
  46% { transform: translateZ(0) scale(1.018); box-shadow: 0 22px 42px rgba(30,123,237,.36), 0 0 0 8px rgba(30,123,237,.08); }
  100% { transform: translateZ(0) scale(1); box-shadow: 0 18px 34px rgba(30,123,237,.24); }
}

@keyframes mobile-icon-settle {
  0% { opacity: .5; transform: translate3d(0, 10px, 0) scale(.92); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax-layer],
  .value-card .icon-shell,
  .value-card .value-index,
  .value-card::after,
  .hero-copy.is-visible .hero-actions .btn,
  .value-card.is-visible .icon-shell {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


/* =========================================================
   V13 — Hero strategic vibecoding
   Word stagger, CTA feedback, custom CTA cursor, scroll cue
   ========================================================= */
.hero.hero--v7 {
  padding-bottom: 64px;
}

.hero.hero--v7 .hero-copy {
  opacity: 1;
  transform: none;
}

.hero-eyebrow,
.hero-word,
.hero-subheadline,
.hero-cta-entry,
.hero-note-entry,
.hero-benefits,
.hero-scroll {
  backface-visibility: hidden;
}

.hero-eyebrow {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.hero-headline {
  display: block;
  max-width: 8.6ch;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(7px);
  margin-right: .13em;
  will-change: opacity, transform, filter;
}

.hero-word--accent {
  color: var(--blue);
}

.hero-subheadline,
.hero-cta-entry,
.hero-note-entry,
.hero-benefits {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.hero.is-hero-ready .hero-eyebrow {
  animation: hero-eyebrow-in .3s ease-out both;
}

.hero.is-hero-ready .hero-word {
  animation: hero-word-in .62s cubic-bezier(.2,.78,.2,1) both;
  animation-delay: calc(300ms + (var(--word-index) * 120ms));
}

.hero.is-hero-ready .hero-subheadline {
  animation: hero-content-in .58s cubic-bezier(.2,.72,.2,1) 820ms both;
}

.hero.is-hero-ready .hero-cta-entry {
  animation: hero-content-in .55s cubic-bezier(.2,.72,.2,1) 980ms both;
}

.hero.is-hero-ready .hero-note-entry {
  animation: hero-content-in .5s cubic-bezier(.2,.72,.2,1) 1090ms both;
}

.hero.is-hero-ready .hero-benefits {
  animation: hero-content-in .65s cubic-bezier(.2,.72,.2,1) 1180ms both;
}

.hero-primary-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(101,199,230,.48);
  box-shadow: 0 18px 34px rgba(30,123,237,.24), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .24s cubic-bezier(.2,.72,.2,1), border-color .24s ease, box-shadow .24s ease, filter .24s ease;
}

.hero-primary-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(101,199,230,.28), rgba(30,123,237,.95), rgba(255,255,255,.42), rgba(30,123,237,.95));
  background-size: 240% 100%;
  opacity: .78;
  transition: opacity .24s ease;
}

.hero-primary-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(18px - 1px);
  background: linear-gradient(180deg, #1499ff, #0876c9);
}

.hero-primary-cta > span,
.hero-primary-cta > svg {
  position: relative;
  z-index: 1;
}

.hero-primary-cta > svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .24s cubic-bezier(.2,.72,.2,1);
}

.hero-primary-cta.is-tapped {
  animation: hero-cta-tap .42s cubic-bezier(.2,.76,.2,1) both;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  bottom: 8px;
  color: rgba(255,255,255,.74);
  text-decoration: none;
  opacity: 0;
  transform: translate3d(-50%, 8px, 0);
  pointer-events: auto;
}

.hero.is-hero-ready .hero-scroll {
  animation: hero-scroll-in .45s ease-out 1.25s both;
}

.hero-scroll__label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-scroll__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(7,26,43,.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(7,26,43,.18);
  animation: hero-scroll-pulse 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

.hero-scroll__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: hero-scroll-chevron 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

.hero-cta-pointer {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 999px;
  background: rgba(7,26,43,.68);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.24), 0 0 22px rgba(101,199,230,.22);
  transition: opacity .14s ease, transform .18s cubic-bezier(.2,.72,.2,1);
}

.hero-cta-pointer.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

@media (max-width: 767px) {
  .hero.hero--v7 h1 {
    font-size: clamp(2.5rem, 11.2vw, 4.2rem);
  }

  .hero-primary-cta {
    min-height: 56px;
  }

  .hero-primary-cta:active {
    transform: scale(.985);
    filter: brightness(1.08);
  }

  .hero-scroll {
    display: flex;
  }
}

@media (min-width: 768px) {
  .hero.hero--v7 .hero-media img[data-parallax-layer="hero"] {
    opacity: .84;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-primary-cta {
    cursor: none;
  }

  .hero-primary-cta:hover {
    transform: translate3d(0, -3px, 0);
    border-color: rgba(154,224,255,.92);
    box-shadow: 0 24px 46px rgba(30,123,237,.34), 0 0 0 5px rgba(101,199,230,.11), 0 0 34px rgba(101,199,230,.22);
  }

  .hero-primary-cta:hover::before {
    opacity: 1;
    animation: hero-cta-glow 1.35s linear infinite;
  }

  .hero-primary-cta:hover > svg {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes hero-eyebrow-in {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-word-in {
  0% { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(7px); }
  70% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@keyframes hero-content-in {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-scroll-in {
  from { opacity: 0; transform: translate3d(-50%, 8px, 0); }
  to { opacity: 1; transform: translate3d(-50%, 0, 0); }
}

@keyframes hero-scroll-pulse {
  0%, 100% { transform: translate3d(0, 0, 0); box-shadow: 0 8px 24px rgba(7,26,43,.18), 0 0 0 0 rgba(101,199,230,.16); }
  50% { transform: translate3d(0, 4px, 0); box-shadow: 0 10px 28px rgba(7,26,43,.22), 0 0 0 8px rgba(101,199,230,0); }
}

@keyframes hero-scroll-chevron {
  0%, 100% { transform: translate3d(0, -1px, 0); opacity: .78; }
  50% { transform: translate3d(0, 4px, 0); opacity: 1; }
}

@keyframes hero-cta-glow {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

@keyframes hero-cta-tap {
  0% { transform: scale(1); box-shadow: 0 18px 34px rgba(30,123,237,.24); }
  42% { transform: scale(.975); box-shadow: 0 10px 20px rgba(30,123,237,.22), 0 0 0 8px rgba(101,199,230,.15); filter: brightness(1.14); }
  100% { transform: scale(1); box-shadow: 0 18px 34px rgba(30,123,237,.24); filter: brightness(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-word,
  .hero-subheadline,
  .hero-cta-entry,
  .hero-note-entry,
  .hero-benefits,
  .hero-scroll {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-scroll {
    transform: translateX(-50%) !important;
  }

  .hero-scroll__arrow,
  .hero-scroll__arrow svg,
  .hero-primary-cta,
  .hero-primary-cta::before {
    animation: none !important;
    transition: none !important;
  }
}


/* Footer redesign V14 — mobile first */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 52px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 4%, rgba(31,146,236,.14), transparent 30%),
    radial-gradient(circle at 94% 26%, rgba(101,199,230,.08), transparent 26%),
    #03121e;
}
.footer-glow {
  position: absolute;
  z-index: -1;
  top: -140px;
  left: 50%;
  width: min(760px, 120vw);
  height: 320px;
  border-radius: 50%;
  background: rgba(50,160,235,.09);
  filter: blur(80px);
  transform: translateX(-50%);
  pointer-events: none;
}
.footer-shell { display: grid; gap: 28px; }
.footer-primary { display: grid; gap: 28px; }
.footer-brand-block { display: grid; align-content: start; }
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 54px;
  color: var(--white);
}
.footer-brand-mark {
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
}
.footer-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-copy { display: grid; gap: 1px; }
.footer-brand-copy strong { color: var(--white); font-size: 1.16rem; letter-spacing: -.025em; }
.footer-brand-copy small { color: var(--cyan); font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-brand-block h2 {
  max-width: 15ch;
  margin-top: 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.footer-brand-block > p {
  max-width: 38rem;
  margin-top: 18px;
  color: rgba(255,255,255,.62);
  font-size: .96rem;
  line-height: 1.7;
}
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.footer-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.78);
  font-size: .74rem;
  font-weight: 800;
}
.footer-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(101,199,230,.58);
}
.footer-contact-panel {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.footer-panel-heading { display: grid; gap: 14px; margin-bottom: 16px; }
.footer-kicker {
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-panel-heading h3 {
  max-width: 18ch;
  margin-top: 7px;
  color: var(--white);
  font-size: clamp(1.35rem, 6vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.62);
  font-size: .69rem;
  font-weight: 800;
}
.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56d88a;
  box-shadow: 0 0 12px rgba(86,216,138,.62);
}
.footer-contact-list { display: grid; gap: 9px; }
.footer-contact-row {
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) 24px;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: var(--white);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.footer-contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(31,146,236,.11);
  color: var(--cyan);
}
.footer-contact-icon svg,
.footer-hours-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-copy { min-width: 0; display: grid; gap: 3px; }
.footer-contact-copy small,
.footer-hours-row small {
  color: rgba(255,255,255,.46);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-contact-copy strong {
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  line-height: 1.35;
}
.footer-contact-arrow { color: var(--cyan); font-size: 1rem; text-align: right; }
.footer-secondary {
  display: grid;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-secondary h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav-list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.70);
  font-size: .84rem;
  font-weight: 750;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.footer-hours-list { display: grid; gap: 9px; }
.footer-hours-row {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.075);
}
.footer-hours-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--cyan);
  background: rgba(31,146,236,.09);
}
.footer-hours-row > span:last-child { min-width: 0; display: grid; gap: 4px; }
.footer-hours-row strong {
  color: rgba(255,255,255,.83);
  font-size: .84rem;
  line-height: 1.35;
}
.footer-bottom {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.42);
  font-size: .72rem;
  line-height: 1.5;
}
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.footer-legal i { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.26); }
.footer-legal a { min-height: 32px; display: inline-flex; align-items: center; color: rgba(255,255,255,.56); }
@media (hover:hover) {
  .footer-contact-row:hover { transform: translateY(-2px); border-color: rgba(101,199,230,.24); background: rgba(255,255,255,.075); }
  .footer-nav-list a:hover { color: var(--white); background: rgba(255,255,255,.075); transform: translateX(2px); }
  .footer-legal a:hover { color: var(--white); }
}
@media (min-width: 700px) {
  .site-footer { padding: 68px 0 52px; }
  .footer-primary { grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); align-items: start; gap: 42px; }
  .footer-panel-heading { grid-template-columns: 1fr auto; align-items: start; }
  .footer-secondary { grid-template-columns: minmax(0,.8fr) minmax(360px,1.2fr); gap: 42px; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .footer-legal { justify-content: flex-end; }
}
@media (min-width: 1000px) {
  .site-footer { padding-top: 80px; }
  .footer-shell { gap: 38px; }
  .footer-primary { grid-template-columns: minmax(0,.92fr) minmax(460px,1.08fr); gap: clamp(58px,7vw,100px); }
  .footer-contact-panel { padding: 22px; }
  .footer-secondary { grid-template-columns: minmax(0,.75fr) minmax(460px,1.25fr); gap: clamp(58px,7vw,100px); }
  .footer-nav-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-hours-list { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
  .footer-hours-row { min-height: 92px; align-content: center; border: 1px solid rgba(255,255,255,.075); border-radius: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-contact-row,
  .footer-nav-list a { transition: none; }
}


/* Header branco V15 */
.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(7,26,43,.08);
  box-shadow: 0 8px 30px rgba(7,26,43,.055);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.985);
  box-shadow: 0 14px 38px rgba(7,26,43,.11);
}
.brand {
  color: var(--navy);
  gap: 0;
}
.brand-mark {
  width: 104px;
  height: 46px;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.brand-copy { display: none; }
.brand small { color: var(--muted); }
.nav-links {
  border-color: rgba(7,26,43,.09);
  background: rgba(255,255,255,.99);
  box-shadow: 0 26px 70px rgba(7,26,43,.17);
}
.nav-links a {
  color: rgba(7,26,43,.78);
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--blue);
  background: rgba(30,123,237,.08);
}
.hamburger {
  border-color: rgba(7,26,43,.12);
  background: rgba(7,26,43,.035);
  color: var(--navy);
}
.hamburger:hover,
.hamburger:focus-visible {
  border-color: rgba(30,123,237,.24);
  background: rgba(30,123,237,.07);
  color: var(--blue);
  outline: none;
}
@media (min-width: 900px) {
  .nav-links {
    background: transparent;
    box-shadow: none;
  }
  .nav-links a {
    color: rgba(7,26,43,.72);
  }
  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    color: var(--blue);
    background: rgba(30,123,237,.07);
  }
  .brand-mark {
    width: 118px;
    height: 48px;
  }
}
@media (max-width: 420px) {
  .brand-mark {
    width: 96px;
    height: 42px;
  }
}


/* Full-screen loading experience V13 */
html.preloader-active,
html.preloader-active body {
  overflow: hidden;
  overscroll-behavior: none;
}
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(38, 153, 224, .22), transparent 28%),
    radial-gradient(circle at 50% 118%, rgba(101, 199, 230, .18), transparent 38%),
    linear-gradient(145deg, #061522 0%, #0a2135 52%, #071a2b 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .65s cubic-bezier(.22,.61,.36,1), visibility .65s step-end, transform .65s cubic-bezier(.22,.61,.36,1);
}
.site-preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 78%, transparent);
  pointer-events: none;
}
.site-preloader.is-leaving {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.018);
  pointer-events: none;
}
.preloader-scene {
  position: relative;
  width: min(86vw, 420px);
  display: grid;
  justify-items: center;
  isolation: isolate;
}
.preloader-aura {
  position: absolute;
  top: 18px;
  left: 50%;
  width: min(78vw, 350px);
  aspect-ratio: 1.8;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101,199,230,.24), rgba(8,118,201,.07) 46%, transparent 72%);
  filter: blur(18px);
  transform: translateX(-50%);
  animation: preloaderAura 2.1s ease-in-out infinite;
  z-index: -1;
}
.preloader-van {
  width: min(78vw, 330px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 22px 20px rgba(0,0,0,.24));
  animation: preloaderDrive 1.05s ease-in-out infinite alternate;
}
.preloader-van__body {
  transform-origin: center bottom;
  animation: preloaderBody 520ms ease-in-out infinite alternate;
}
.preloader-van__shadow { fill: rgba(0,0,0,.24); animation: preloaderShadow 520ms ease-in-out infinite alternate; }
.preloader-van__box,
.preloader-van__cab,
.preloader-van__nose { fill: #f7fbfd; stroke: rgba(101,199,230,.9); stroke-width: 2; }
.preloader-van__box { fill: #f7fbfd; }
.preloader-van__window { fill: #0d2b43; stroke: rgba(101,199,230,.55); stroke-width: 1.5; }
.preloader-van__unit { fill: #dff3fa; stroke: #65c7e6; stroke-width: 2; }
.preloader-van__grille,
.preloader-van__door,
.preloader-van__handle,
.preloader-van__brand { fill: none; stroke: #0876c9; stroke-width: 2; stroke-linecap: round; }
.preloader-van__door { stroke: rgba(8,118,201,.46); }
.preloader-van__bumper { fill: #102f47; }
.preloader-van__light { fill: #65c7e6; filter: drop-shadow(0 0 7px rgba(101,199,230,.8)); animation: preloaderLight 1s ease-in-out infinite; }
.preloader-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: preloaderWheel 660ms linear infinite;
}
.preloader-wheel circle:first-child { fill: #071a2b; stroke: rgba(255,255,255,.78); stroke-width: 3; }
.preloader-wheel circle:nth-child(2) { fill: #0f3a58; stroke: #65c7e6; stroke-width: 2; }
.preloader-wheel path { fill: none; stroke: rgba(255,255,255,.78); stroke-width: 1.6; }
.preloader-road {
  width: min(84vw, 365px);
  height: 20px;
  margin-top: -18px;
  display: flex;
  gap: 28px;
  overflow: hidden;
  opacity: .72;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.preloader-road span {
  flex: 0 0 82px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #65c7e6 28%, #fff 72%, transparent);
  animation: preloaderRoad 700ms linear infinite;
}
.preloader-motion-lines {
  position: absolute;
  top: 66px;
  left: -4px;
  width: 92px;
  display: grid;
  gap: 10px;
  opacity: .72;
}
.preloader-motion-lines i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(101,199,230,.9));
  animation: preloaderLines 820ms ease-in-out infinite;
}
.preloader-motion-lines i:nth-child(2) { width: 70%; animation-delay: 120ms; }
.preloader-motion-lines i:nth-child(3) { width: 46%; animation-delay: 240ms; }
.preloader-copy {
  margin-top: 22px;
  color: rgba(255,255,255,.86);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}
.preloader-copy::after {
  content: "";
  display: inline-block;
  width: 1.45em;
  text-align: left;
  animation: preloaderDots 1.2s steps(4, end) infinite;
}
.preloader-progress {
  width: min(72vw, 290px);
  height: 3px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.preloader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0876c9, #65c7e6, #fff);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 18px rgba(101,199,230,.5);
  animation: preloaderProgress 3.45s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes preloaderDrive { from { transform: translate3d(-10px,0,0); } to { transform: translate3d(10px,0,0); } }
@keyframes preloaderBody { from { transform: translateY(0) rotate(-.15deg); } to { transform: translateY(-2px) rotate(.15deg); } }
@keyframes preloaderShadow { from { transform: scaleX(.96); opacity: .2; } to { transform: scaleX(1.04); opacity: .3; } }
@keyframes preloaderWheel { to { transform: rotate(360deg); } }
@keyframes preloaderRoad { from { transform: translateX(0); } to { transform: translateX(-110px); } }
@keyframes preloaderLines { 0%,100% { transform: translateX(0) scaleX(.62); opacity: .35; } 50% { transform: translateX(-14px) scaleX(1); opacity: 1; } }
@keyframes preloaderAura { 0%,100% { transform: translateX(-50%) scale(.94); opacity: .7; } 50% { transform: translateX(-50%) scale(1.06); opacity: 1; } }
@keyframes preloaderLight { 0%,100% { opacity: .58; } 50% { opacity: 1; } }
@keyframes preloaderDots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75%,100% { content: "..."; } }
@keyframes preloaderProgress { 0% { transform: scaleX(0); } 16% { transform: scaleX(.18); } 54% { transform: scaleX(.68); } 82% { transform: scaleX(.88); } 100% { transform: scaleX(1); } }
@media (min-width: 768px) {
  .preloader-scene { width: min(70vw, 500px); }
  .preloader-van { width: min(52vw, 390px); }
  .preloader-copy { font-size: .82rem; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-van,
  .preloader-van__body,
  .preloader-wheel,
  .preloader-road span,
  .preloader-motion-lines i,
  .preloader-aura,
  .preloader-van__light,
  .preloader-copy::after {
    animation: none !important;
  }
  .preloader-progress span { animation-timing-function: linear; }
}


/* V14 preloader with two animated vans */
.preloader-scene {
  width: min(88vw, 480px);
}
.preloader-vehicles {
  position: relative;
  width: min(82vw, 380px);
  aspect-ratio: 1.02;
  filter: drop-shadow(0 22px 20px rgba(0,0,0,.24));
  animation: preloaderDrive 1.05s ease-in-out infinite alternate;
}
.preloader-vehicle {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
  transform-origin: center bottom;
}
.preloader-vehicle--large {
  width: 62%;
  right: 0;
  bottom: 18%;
  z-index: 1;
  animation: preloaderVehicleLarge 520ms ease-in-out infinite alternate;
}
.preloader-vehicle--compact {
  width: 72%;
  left: 0;
  bottom: 6%;
  z-index: 2;
  animation: preloaderVehicleSmall 520ms ease-in-out infinite alternate;
}
.preloader-road {
  margin-top: -6px;
}
@keyframes preloaderVehicleSmall { from { transform: translateY(0) rotate(-.15deg); } to { transform: translateY(-2px) rotate(.15deg); } }
@keyframes preloaderVehicleLarge { from { transform: translateY(0) rotate(.1deg); } to { transform: translateY(-2px) rotate(-.1deg); } }
@media (min-width: 768px) {
  .preloader-scene { width: min(72vw, 560px); }
  .preloader-vehicles { width: min(60vw, 470px); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-vehicles,
  .preloader-vehicle--large,
  .preloader-vehicle--compact { animation: none !important; }
}


/* V15 preloader - animated Peugeot Partner only */
.preloader-scene {
  width: min(88vw, 480px);
}
.preloader-partner-wrap {
  position: relative;
  width: min(82vw, 370px);
  aspect-ratio: 0.9;
  filter: drop-shadow(0 22px 20px rgba(0,0,0,.24));
  animation: preloaderDrive 1.05s ease-in-out infinite alternate;
}
.preloader-partner {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  transform-origin: center bottom;
  animation: preloaderPartnerBounce 520ms ease-in-out infinite alternate;
}
.preloader-road {
  width: min(84vw, 365px);
  margin-top: -2px;
}
@keyframes preloaderPartnerBounce {
  from { transform: translateX(-50%) translateY(0) rotate(-.15deg); }
  to { transform: translateX(-50%) translateY(-3px) rotate(.15deg); }
}
@media (min-width: 768px) {
  .preloader-scene { width: min(72vw, 560px); }
  .preloader-partner-wrap { width: min(54vw, 430px); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-partner-wrap,
  .preloader-partner { animation: none !important; }
}


/* V16 — Hero copy refinement for desktop */
.hero-headline__desktop,
.hero-subheadline__desktop {
  display: none;
}

.hero-headline__mobile,
.hero-subheadline__mobile {
  display: inline;
}

@media (min-width: 900px) {
  .hero-headline__mobile,
  .hero-subheadline__mobile {
    display: none;
  }

  .hero-headline__desktop,
  .hero-subheadline__desktop {
    display: inline;
  }

  .hero.hero--v7 .hero-copy {
    max-width: 48rem;
  }

  .hero.hero--v7 h1,
  .hero-headline {
    max-width: 11.4ch;
    font-size: clamp(4.15rem, 5.6vw, 6.15rem);
    line-height: .94;
    letter-spacing: -.06em;
  }

  .hero.hero--v7 .hero-lead {
    max-width: 43ch;
    margin-top: 22px;
    font-size: clamp(1.12rem, 1.45vw, 1.32rem);
    line-height: 1.55;
    text-wrap: balance;
  }

  .hero.hero--v7 .hero-actions {
    margin-top: 24px;
  }
}

@media (min-width: 1280px) {
  .hero.hero--v7 .hero-copy {
    max-width: 52rem;
  }

  .hero.hero--v7 h1,
  .hero-headline {
    max-width: 12ch;
  }
}


/* V17 — Image-first hero inspired by SMT Studio */
.hero.hero--image-first {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: max(760px, 100svh);
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hero.hero--image-first .hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero.hero--image-first .hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero.hero--image-first .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  will-change: transform;
  content-visibility: auto;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 48%, rgba(101,199,230,.10), transparent 56%),
    linear-gradient(
      180deg,
      rgba(7,26,43,.04) 0%,
      rgba(7,26,43,.12) 32%,
      rgba(7,26,43,.48) 58%,
      rgba(7,26,43,.84) 78%,
      rgba(7,26,43,.98) 100%
    );
}

.hero.hero--image-first .hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: max(760px, 100svh);
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 86px;
}

.hero.hero--image-first .hero-copy {
  width: 100%;
  max-width: 42rem;
  margin: 0;
  padding: 0;
  color: var(--white);
  text-align: left;
}

.hero.hero--image-first .hero-copy .eyebrow {
  margin-bottom: 16px;
}

.hero.hero--image-first h1,
.hero.hero--image-first .hero-headline {
  max-width: 8.6ch;
  margin: 0;
  font-size: clamp(2.5rem, 11.2vw, 4.35rem);
  line-height: .94;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.hero.hero--image-first .hero-lead {
  max-width: 31ch;
  margin-top: 17px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 4.15vw, 1.18rem);
  line-height: 1.5;
}

.hero.hero--image-first .hero-actions {
  width: min(100%, 19rem);
  margin-top: 22px;
}

.hero.hero--image-first .hero-actions .btn {
  width: 100%;
  min-height: 54px;
}

.hero.hero--image-first .hero-quick-note {
  margin-top: 11px;
}

.hero.hero--image-first .hero-scroll {
  z-index: 4;
  bottom: 18px;
}

@media (max-width: 767px) {
  .hero.hero--image-first {
    min-height: max(700px, 88svh);
  }

  .hero.hero--image-first .hero-media img {
    object-position: center center;
    transform: none !important;
    will-change: auto;
  }

  .hero-gradient {
    background:
      radial-gradient(ellipse at 50% 48%, rgba(101,199,230,.08), transparent 54%),
      linear-gradient(
        180deg,
        rgba(7,26,43,.06) 0%,
        rgba(7,26,43,.20) 34%,
        rgba(7,26,43,.62) 59%,
        rgba(7,26,43,.91) 79%,
        rgba(7,26,43,.99) 100%
      );
  }

  .hero.hero--image-first .hero-content {
    min-height: max(700px, 88svh);
    padding: calc(var(--header-h) + 34px) 0 72px;
  }

  .hero.hero--image-first .hero-copy {
    padding-inline: 2px;
  }
}

@media (min-width: 768px) {
  .hero.hero--image-first {
    min-height: max(780px, 100svh);
  }

  .hero.hero--image-first .hero-content {
    align-items: flex-end;
    min-height: max(780px, 100svh);
    padding-top: calc(var(--header-h) + 64px);
    padding-bottom: 96px;
  }

  .hero.hero--image-first .hero-copy {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero.hero--image-first h1,
  .hero.hero--image-first .hero-headline {
    max-width: 11.4ch;
    margin-inline: auto;
    font-size: clamp(4rem, 6.2vw, 6.3rem);
  }

  .hero.hero--image-first .hero-lead {
    max-width: 44ch;
    margin-inline: auto;
    font-size: clamp(1.12rem, 1.55vw, 1.32rem);
  }

  .hero.hero--image-first .hero-actions {
    width: auto;
    margin-inline: auto;
  }

  .hero.hero--image-first .hero-actions .btn {
    width: auto;
    min-width: 220px;
  }

  .hero.hero--image-first .hero-quick-note {
    justify-content: center;
    width: max-content;
    margin-inline: auto;
  }
}

@media (min-width: 1180px) {
  .hero.hero--image-first .hero-media img {
    object-position: center 50%;
  }

  .hero.hero--image-first .hero-content {
    padding-bottom: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--image-first .hero-media img {
    transform: none !important;
    will-change: auto;
  }
}


/* V18 preloader icon animation */
.preloader-partner-wrap--icon {
  width: min(76vw, 420px);
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
  animation: preloaderDrive 1.05s ease-in-out infinite alternate;
}
.preloader-partner--icon {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  transform: translateX(0);
  filter: drop-shadow(0 0 18px rgba(101,199,230,.18)) drop-shadow(0 14px 22px rgba(0,0,0,.25));
  animation: preloaderIconFloat 900ms ease-in-out infinite alternate, preloaderIconGlow 1800ms ease-in-out infinite;
}
.preloader-partner-wrap--icon + .preloader-road {
  width: min(80vw, 360px);
  margin-top: -10px;
}
@keyframes preloaderIconFloat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-5px) scale(1.01); }
}
@keyframes preloaderIconGlow {
  0%,100% { filter: drop-shadow(0 0 18px rgba(101,199,230,.16)) drop-shadow(0 14px 22px rgba(0,0,0,.25)); }
  50% { filter: drop-shadow(0 0 26px rgba(101,199,230,.28)) drop-shadow(0 18px 26px rgba(0,0,0,.28)); }
}
@media (min-width: 768px) {
  .preloader-partner-wrap--icon { width: min(54vw, 520px); }
  .preloader-partner-wrap--icon + .preloader-road { width: min(44vw, 390px); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-partner-wrap--icon,
  .preloader-partner--icon { animation: none !important; }
}


/* V19 compact preloader composition */
.preloader-scene {
  width: min(82vw, 360px);
}
.preloader-aura {
  top: 4px;
  width: min(62vw, 270px);
  aspect-ratio: 2.35;
}
.preloader-partner-wrap--icon {
  width: min(62vw, 280px);
  aspect-ratio: 2.28;
  min-height: 0;
}
.preloader-partner--icon {
  width: 100%;
  max-width: 280px;
  animation: preloaderIconFloatCompact 850ms ease-in-out infinite alternate, preloaderIconGlow 1800ms ease-in-out infinite;
}
.preloader-partner-wrap--icon + .preloader-road {
  width: min(64vw, 270px);
  height: 15px;
  margin-top: 0;
}
.preloader-road span {
  flex-basis: 62px;
  margin-top: 6px;
}
.preloader-motion-lines {
  top: 27px;
  left: 5px;
  width: 64px;
  gap: 7px;
}
.preloader-copy {
  margin-top: 10px;
  font-size: .66rem;
  letter-spacing: .105em;
  line-height: 1.35;
}
.preloader-progress {
  width: min(56vw, 220px);
  height: 2px;
  margin-top: 10px;
}
@keyframes preloaderIconFloatCompact {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-3px) scale(1.008); }
}
@media (min-width: 768px) {
  .preloader-scene { width: min(48vw, 410px); }
  .preloader-partner-wrap--icon { width: min(34vw, 330px); }
  .preloader-partner--icon { max-width: 330px; }
  .preloader-partner-wrap--icon + .preloader-road { width: min(30vw, 290px); }
  .preloader-copy { font-size: .7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-partner--icon { animation: none !important; }
}


/* V20 — Editorial split hero inspired by the supplied desktop/mobile reference */
.hero.hero--image-first {
  position: relative;
  min-height: max(760px, 100svh);
  display: block;
  overflow: hidden;
  background: #050a0f;
  isolation: isolate;
}

.hero.hero--image-first .hero-media {
  position: absolute;
  inset: 0 0 0 43%;
  z-index: 1;
  overflow: hidden;
  background: #111820;
}

.hero.hero--image-first .hero-picture,
.hero.hero--image-first .hero-picture img {
  width: 100%;
  height: 100%;
}

.hero.hero--image-first .hero-media img {
  display: block;
  object-fit: cover;
  object-position: 55% center;
  transform-origin: center center;
  will-change: transform;
}

.hero.hero--image-first .hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #050a0f 0%,
      #050a0f 34%,
      rgba(5,10,15,.97) 42%,
      rgba(5,10,15,.62) 52%,
      rgba(5,10,15,.10) 69%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(5,10,15,.06) 0%,
      rgba(5,10,15,.04) 62%,
      rgba(5,10,15,.42) 100%);
}

.hero.hero--image-first .hero-content {
  position: relative;
  z-index: 3;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 116px;
}

.hero.hero--image-first .hero-copy {
  width: min(100%, 35rem);
  margin: 0;
  color: var(--white);
  text-align: left;
}

.hero.hero--image-first .hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: .69rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero.hero--image-first .hero-copy .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(101,199,230,.45);
}

.hero.hero--image-first h1,
.hero.hero--image-first .hero-headline {
  max-width: 10.5ch;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(3.65rem, 5.6vw, 6.7rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero.hero--image-first .hero-word {
  margin-right: .09em;
}

.hero.hero--image-first .hero-word--accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.94);
  text-shadow: 0 0 20px rgba(101,199,230,.08);
}

.hero.hero--image-first .hero-lead {
  max-width: 38ch;
  margin-top: 24px;
  color: rgba(255,255,255,.66);
  font-size: clamp(.96rem, 1.18vw, 1.08rem);
  line-height: 1.65;
}

.hero.hero--image-first .hero-actions {
  width: min(100%, 31rem);
  margin-top: 30px;
}

.hero.hero--image-first .hero-actions .btn {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 15px 38px rgba(30,123,237,.22);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .76rem;
}

.hero.hero--image-first .hero-quick-note {
  width: max-content;
  min-height: auto;
  margin-top: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(255,255,255,.42);
}

.hero.hero--image-first .hero-quick-note svg {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
}

.hero.hero--image-first .hero-quick-note span {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-service-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-service-strip__track {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 26px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-service-strip__track i {
  color: rgba(255,255,255,.52);
  font-size: .5rem;
  font-style: normal;
}

.hero.hero--image-first .hero-scroll {
  display: none;
}

@media (max-width: 767px) {
  .hero.hero--image-first {
    min-height: auto;
    padding-top: var(--header-h);
    background: #050a0f;
  }

  .hero.hero--image-first .hero-media {
    position: absolute;
    inset: var(--header-h) 0 auto;
    width: 100%;
    height: clamp(330px, 51svh, 470px);
  }

  .hero.hero--image-first .hero-media img {
    object-position: 52% center;
    transform: none !important;
    will-change: auto;
  }

  .hero.hero--image-first .hero-gradient {
    top: var(--header-h);
    height: clamp(430px, 64svh, 590px);
    background:
      linear-gradient(180deg,
        rgba(5,10,15,.02) 0%,
        rgba(5,10,15,.06) 45%,
        rgba(5,10,15,.56) 68%,
        #050a0f 91%,
        #050a0f 100%);
  }

  .hero.hero--image-first .hero-content {
    min-height: 0;
    display: block;
    padding-top: clamp(365px, 55svh, 505px);
    padding-bottom: 112px;
  }

  .hero.hero--image-first .hero-copy {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .hero.hero--image-first .hero-copy .eyebrow {
    margin-bottom: 16px;
    font-size: .62rem;
  }

  .hero.hero--image-first h1,
  .hero.hero--image-first .hero-headline {
    max-width: 8.8ch;
    font-size: clamp(2.75rem, 12.7vw, 4rem);
    line-height: .88;
    letter-spacing: -.065em;
  }

  .hero.hero--image-first .hero-word--accent {
    -webkit-text-stroke-width: 1px;
  }

  .hero.hero--image-first .hero-lead {
    max-width: 34ch;
    margin-top: 20px;
    color: rgba(255,255,255,.63);
    font-size: .94rem;
    line-height: 1.62;
  }

  .hero.hero--image-first .hero-actions {
    width: min(100%, 21rem);
    margin-top: 26px;
  }

  .hero.hero--image-first .hero-actions .btn {
    min-height: 56px;
  }

  .hero-service-strip {
    min-height: 50px;
  }

  .hero-service-strip__track {
    justify-content: flex-start;
    gap: 24px;
    padding-inline: 18px;
    animation: heroStripMove 22s linear infinite;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .hero.hero--image-first .hero-media {
    left: 48%;
  }

  .hero.hero--image-first .hero-content {
    padding-bottom: 104px;
  }

  .hero.hero--image-first .hero-copy {
    width: min(48%, 31rem);
  }

  .hero.hero--image-first h1,
  .hero.hero--image-first .hero-headline {
    font-size: clamp(3.2rem, 6.3vw, 5.2rem);
  }
}

@media (min-width: 1180px) {
  .hero.hero--image-first .hero-media img {
    object-position: 55% center;
  }
}

@keyframes heroStripMove {
  from { transform: translateX(0); }
  to { transform: translateX(-34%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-service-strip__track { animation: none !important; }
}


/* V21 — Hero matching approved visual composition */
.hero.hero--image-first {
  position: relative;
  min-height: clamp(610px, calc(100svh - 36px), 760px);
  display: block;
  overflow: hidden;
  background: #68717d;
  isolation: isolate;
}

.hero.hero--image-first .hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #737b87;
}

.hero.hero--image-first .hero-picture,
.hero.hero--image-first .hero-picture img {
  width: 100%;
  height: 100%;
}

.hero.hero--image-first .hero-media img {
  display: block;
  object-fit: cover;
  object-position: 52% 54%;
  transform-origin: center;
  will-change: transform;
}

.hero.hero--image-first .hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(31,48,65,.72) 0%,
      rgba(31,48,65,.61) 24%,
      rgba(31,48,65,.39) 39%,
      rgba(31,48,65,.12) 55%,
      transparent 72%),
    linear-gradient(180deg,
      rgba(15,26,38,.06) 0%,
      rgba(15,26,38,.05) 72%,
      rgba(15,26,38,.16) 100%);
}

.hero.hero--image-first .hero-content {
  position: relative;
  z-index: 3;
  min-height: clamp(610px, calc(100svh - 36px), 760px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 78px;
}

.hero.hero--image-first .hero-copy {
  width: min(47%, 43rem);
  max-width: 43rem;
  margin: 0;
  color: var(--white);
  text-align: left;
}

.hero.hero--image-first .hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: #83c9ec;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero.hero--image-first .hero-copy .eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: #83c9ec;
  box-shadow: 0 0 12px rgba(131,201,236,.38);
}

.hero.hero--image-first h1,
.hero.hero--image-first .hero-headline {
  max-width: none;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(3.1rem, 4.25vw, 5.15rem);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero.hero--image-first .hero-word {
  display: inline-block;
  margin-right: .06em;
}

.hero.hero--image-first .hero-word--accent,
.hero.hero--image-first .hero-line--accent {
  color: #83c9ec;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 24px rgba(131,201,236,.08);
}

.hero.hero--image-first .hero-lead {
  max-width: 35rem;
  margin-top: 32px;
  color: rgba(255,255,255,.94);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 520;
  line-height: 1.36;
}

.hero.hero--image-first .hero-lead strong {
  color: var(--white);
  font-weight: 900;
}

.hero.hero--image-first .hero-actions {
  width: min(100%, 32.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}

.hero.hero--image-first .hero-actions .btn {
  width: 100%;
  min-height: 52px;
  justify-content: space-between;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #53b5eb 0%, #348ec8 100%);
  box-shadow: 0 14px 32px rgba(26,109,160,.24), inset 0 1px 0 rgba(255,255,255,.22);
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  font-size: .94rem;
  font-weight: 900;
}

.hero.hero--image-first .hero-actions .btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero.hero--image-first .hero-actions .btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #62c0f0 0%, #3b98d2 100%);
  box-shadow: 0 18px 38px rgba(26,109,160,.3), inset 0 1px 0 rgba(255,255,255,.28);
}

.hero-service-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #3e83ac;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.16);
}

.hero-service-strip__track {
  width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-service-strip__track i {
  color: rgba(255,255,255,.65);
  font-size: .45rem;
  font-style: normal;
}

.hero.hero--image-first .hero-scroll,
.hero.hero--image-first .hero-quick-note {
  display: none !important;
}

@media (max-width: 899px) {
  .hero-headline__desktop,
  .hero-subheadline__desktop { display: none; }
  .hero-headline__mobile,
  .hero-subheadline__mobile { display: inline; }
}

@media (max-width: 767px) {
  .hero.hero--image-first {
    min-height: auto;
    padding-top: var(--header-h);
    background: #08111a;
  }

  .hero.hero--image-first .hero-media {
    position: absolute;
    inset: var(--header-h) 0 auto;
    height: clamp(315px, 48svh, 440px);
  }

  .hero.hero--image-first .hero-media img {
    object-position: 52% center;
    transform: none !important;
    will-change: auto;
  }

  .hero.hero--image-first .hero-gradient {
    top: var(--header-h);
    height: clamp(440px, 66svh, 590px);
    background:
      linear-gradient(180deg,
        rgba(8,17,26,.02) 0%,
        rgba(8,17,26,.08) 42%,
        rgba(8,17,26,.63) 68%,
        #08111a 91%,
        #08111a 100%);
  }

  .hero.hero--image-first .hero-content {
    min-height: 0;
    display: block;
    padding-top: clamp(342px, 52svh, 475px);
    padding-bottom: 92px;
  }

  .hero.hero--image-first .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero.hero--image-first .hero-copy .eyebrow {
    margin-bottom: 18px;
    font-size: .64rem;
  }

  .hero.hero--image-first .hero-copy .eyebrow::before {
    width: 34px;
  }

  .hero.hero--image-first h1,
  .hero.hero--image-first .hero-headline {
    font-size: clamp(2.35rem, 10.8vw, 3.55rem);
    line-height: .98;
    letter-spacing: -.05em;
    text-wrap: balance;
  }

  .hero-line {
    white-space: normal;
  }

  .hero.hero--image-first .hero-lead {
    max-width: 34ch;
    margin-top: 22px;
    font-size: .94rem;
    line-height: 1.5;
  }

  .hero-lead__desktop-break {
    display: none;
  }

  .hero.hero--image-first .hero-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .hero.hero--image-first .hero-actions .btn {
    min-height: 54px;
    border-radius: 14px;
  }

  .hero-service-strip {
    min-height: 42px;
  }

  .hero-service-strip__track {
    width: max-content;
    justify-content: flex-start;
    gap: 24px;
    padding-inline: 18px;
    font-size: .57rem;
    animation: heroStripMove 22s linear infinite;
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  .hero.hero--image-first .hero-copy {
    width: 50%;
  }
  .hero.hero--image-first h1,
  .hero.hero--image-first .hero-headline {
    font-size: clamp(2.7rem, 4.6vw, 4rem);
  }
  .hero.hero--image-first .hero-lead {
    font-size: .95rem;
  }
  .hero.hero--image-first .hero-actions {
    gap: 12px;
  }
}

/* =========================================================
   V25 — Hero metálico 2 colunas, mobile-first
   ========================================================= */
.hero.hero--metallic {
  min-height: clamp(720px, 85svh, 920px);
  display: flex;
  align-items: stretch;
  padding: calc(var(--header-h) + 28px) 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 48%, rgba(240, 245, 249, .34) 0%, rgba(138, 146, 155, .26) 23%, transparent 48%),
    radial-gradient(circle at 50% 44%, #8a929b 0%, #666f78 48%, #3c434b 100%);
  isolation: isolate;
}

.hero.hero--metallic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(33, 40, 47, .36) 0%, rgba(33, 40, 47, .08) 40%, transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 36%);
}

.hero.hero--metallic .hero-layout {
  width: min(calc(100% - 32px), 1420px);
  min-height: calc(clamp(720px, 85svh, 920px) - var(--header-h) - 72px);
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(16px, 2.6vw, 46px);
  z-index: 2;
}

.hero.hero--metallic .hero-copy {
  width: 100%;
  max-width: 650px;
  padding: clamp(18px, 2vw, 34px) 0 58px;
  color: #fff;
  transform-origin: left center;
}

.hero.hero--metallic .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(26px, 3vw, 40px);
  color: #7fb3e0;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
}

.hero-eyebrow__line {
  width: 40px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #6fa8dc;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero.hero--metallic .hero-headline {
  max-width: none;
  display: grid;
  gap: .08em;
  margin: 0;
  color: #fff;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero.hero--metallic .hero-line {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
}

.hero.hero--metallic .hero-line--accent {
  color: #6fa8dc;
}

.hero.hero--metallic .hero-lead {
  max-width: 44ch;
  margin-top: clamp(28px, 3vw, 38px);
  color: #e6eaee;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.hero.hero--metallic .hero-lead strong {
  color: #fff;
  font-weight: 800;
}

.hero.hero--metallic .hero-actions {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.hero.hero--metallic .hero-actions .btn {
  width: 100%;
  min-height: 54px;
  justify-content: space-between;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24, 63, 96, .22), inset 0 1px 0 rgba(255,255,255,.16);
  text-transform: none;
}

.hero.hero--metallic .hero-secondary-cta {
  background: #4a7fb5;
}

.hero.hero--metallic .hero-primary-cta,
.hero.hero--metallic .hero-primary-cta::after {
  background: #2e6da4;
}

.hero.hero--metallic .hero-primary-cta::before,
.hero.hero--metallic .hero-primary-cta::after {
  display: none;
}

.hero.hero--metallic .hero-actions .btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
}

.hero.hero--metallic .hero-actions .btn:hover,
.hero.hero--metallic .hero-actions .btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 18px 34px rgba(24, 63, 96, .3), 0 0 0 4px rgba(127,179,224,.08), inset 0 1px 0 rgba(255,255,255,.22);
}

.hero.hero--metallic .hero-actions .btn:hover svg,
.hero.hero--metallic .hero-actions .btn:focus-visible svg {
  transform: translate3d(3px, 0, 0);
}

.hero.hero--metallic .hero-secondary-cta:hover svg,
.hero.hero--metallic .hero-secondary-cta:focus-visible svg {
  transform: translate3d(0, 3px, 0);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  opacity: 0;
  transform: translate3d(40px, 0, 0) scale(1.03);
  will-change: opacity, transform;
}

.hero-visual__parallax {
  position: absolute;
  inset: -2% -13% -8% -8%;
  display: grid;
  place-items: center;
  transform-origin: center;
}

.hero-visual__glow {
  position: absolute;
  z-index: -1;
  width: 78%;
  aspect-ratio: 1.2;
  right: 4%;
  top: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.42) 0%, rgba(224,232,239,.18) 36%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero.hero--metallic .hero-picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero.hero--metallic .hero-picture img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 58% 70%;
  filter: saturate(.95) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.42) 8%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.42) 8%, #000 18%, #000 100%);
}

.hero.hero--metallic .hero-service-strip {
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  height: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.14);
  background: #2e6da4;
  color: #fff;
}

.hero.hero--metallic .hero-service-strip__track {
  width: 100%;
  min-width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-service-strip__group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  padding: 0 clamp(20px, 5vw, 80px);
  white-space: nowrap;
}

.hero-service-strip__group:nth-child(2) {
  display: none;
}

.hero.hero--metallic .hero-service-strip__group span {
  text-align: center;
  color: #fff;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero.hero--metallic .hero-service-strip__group i {
  color: #9bc9ef;
  font-size: .44rem;
  font-style: normal;
}

.hero.is-hero-ready.hero--metallic .hero-eyebrow {
  animation: heroMetalEyebrow .5s ease-out both;
}

.hero.is-hero-ready.hero--metallic .hero-eyebrow__line {
  animation: heroMetalLine .5s cubic-bezier(.22,1,.36,1) both;
}

.hero.is-hero-ready.hero--metallic .hero-line {
  animation: heroMetalLineIn .72s cubic-bezier(.22,1,.36,1) both;
  animation-delay: calc(180ms + (var(--line-index) * 120ms));
}

.hero.is-hero-ready.hero--metallic .hero-subheadline {
  animation: heroMetalContentIn .62s cubic-bezier(.22,1,.36,1) 500ms both;
}

.hero.is-hero-ready.hero--metallic .hero-cta-entry {
  animation: heroMetalContentIn .62s cubic-bezier(.22,1,.36,1) 650ms both;
}

.hero.is-hero-ready.hero--metallic .hero-visual {
  animation: heroMetalVisualIn .9s cubic-bezier(.22,1,.36,1) 180ms both;
}

@keyframes heroMetalEyebrow {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroMetalLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes heroMetalLineIn {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes heroMetalContentIn {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes heroMetalVisualIn {
  from { opacity: 0; transform: translate3d(40px, 0, 0) scale(1.03); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes heroMetalMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 767px) {
  .hero.hero--metallic {
    min-height: auto;
    display: block;
    padding: calc(var(--header-h) + 28px) 0 44px;
    background:
      radial-gradient(circle at 50% 67%, rgba(222,230,237,.34), transparent 35%),
      radial-gradient(circle at 50% 44%, #8a929b 0%, #626b74 50%, #3c434b 100%);
  }

  .hero.hero--metallic::before {
    background: linear-gradient(180deg, rgba(33,40,47,.28) 0%, rgba(33,40,47,.05) 58%, rgba(255,255,255,.03) 100%);
  }

  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 32px), 620px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .hero.hero--metallic .hero-copy {
    order: 1;
    max-width: none;
    padding: 12px 0 8px;
    transform: none !important;
  }

  .hero.hero--metallic .hero-eyebrow {
    margin-bottom: 22px;
    font-size: .62rem;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.5rem, 11.4vw, 3.65rem);
    line-height: .94;
  }

  .hero.hero--metallic .hero-line {
    white-space: normal;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 37ch;
    margin-top: 24px;
    font-size: .98rem;
  }

  .hero.hero--metallic .hero-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 54px;
    padding: 16px 20px;
  }

  .hero-visual {
    order: 2;
    min-height: clamp(300px, 54vw, 420px);
    transform: none;
  }

  .hero-visual__parallax {
    position: absolute;
    inset: -2% -15% -5%;
    transform: none !important;
    will-change: auto !important;
  }

  .hero.hero--metallic .hero-picture img {
    object-position: center center;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero.hero--metallic .hero-service-strip {
    height: 44px;
    min-height: 44px;
  }

  .hero.hero--metallic .hero-service-strip__track {
    width: max-content;
    min-width: max-content;
    animation: heroMetalMarquee 24s linear infinite;
  }

  .hero-service-strip__group,
  .hero-service-strip__group:nth-child(2) {
    width: max-content;
    display: flex;
    gap: 22px;
    padding: 0 18px;
  }

  .hero.hero--metallic .hero-service-strip__group span {
    font-size: .56rem;
  }

  .hero.is-hero-ready.hero--metallic .hero-visual {
    animation: heroMetalVisualIn .72s cubic-bezier(.22,1,.36,1) 420ms both;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .hero.hero--metallic .hero-layout {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.7rem, 5.4vw, 4.25rem);
  }

  .hero.hero--metallic .hero-actions {
    grid-template-columns: 1fr;
    width: min(100%, 310px);
  }

  .hero-visual__parallax {
    right: -18%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--metallic [data-parallax-layer],
  .hero.hero--metallic .hero-eyebrow,
  .hero.hero--metallic .hero-eyebrow__line,
  .hero.hero--metallic .hero-line,
  .hero.hero--metallic .hero-subheadline,
  .hero.hero--metallic .hero-cta-entry,
  .hero.hero--metallic .hero-visual,
  .hero.hero--metallic .hero-service-strip__track {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


@media (min-width: 900px) {
  .hero.hero--metallic {
    padding-top: calc(var(--header-h) + 56px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero.hero--metallic .hero-primary-cta {
    cursor: pointer;
  }
}


/* V23.1 — full-bleed hero background with right-shifted fleet */
.hero.hero--metallic {
  position: relative;
  min-height: clamp(720px, 85svh, 920px);
  padding: calc(var(--header-h) + 28px) 0 44px;
  background: #555e67;
  isolation: isolate;
}

.hero.hero--metallic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(37, 44, 52, .96) 0%,
      rgba(43, 51, 60, .88) 24%,
      rgba(51, 60, 69, .64) 41%,
      rgba(56, 65, 74, .22) 57%,
      rgba(56, 65, 74, 0) 74%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 34%, rgba(28,34,40,.10) 100%);
}

.hero.hero--metallic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 79% 43%, rgba(255,255,255,.30), transparent 30%),
    radial-gradient(circle at 50% 44%, #8a929b 0%, #666f78 52%, #3c434b 100%);
}

.hero.hero--metallic .hero-layout {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 64px), 1500px);
  min-height: calc(clamp(720px, 85svh, 920px) - var(--header-h) - 72px);
  display: block;
}

.hero.hero--metallic .hero-copy {
  position: relative;
  z-index: 5;
  width: min(46%, 650px);
  max-width: 650px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vh, 90px) 0 76px;
  color: #fff;
}

.hero.hero--metallic .hero-headline {
  max-width: 10.5ch;
  font-size: clamp(3rem, 5.05vw, 4.7rem);
}

.hero.hero--metallic .hero-lead {
  max-width: 39ch;
  margin-top: clamp(26px, 3vw, 36px);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
}

.hero-copy-break {
  display: inline;
}

.hero.hero--metallic .hero-actions {
  width: min(100%, 520px);
  margin-top: 34px;
}

.hero.hero--metallic .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: translate3d(40px, 0, 0) scale(1.03);
  pointer-events: none;
}

.hero.hero--metallic .hero-visual__parallax {
  position: absolute;
  inset: -3% -5% -5% 0;
  display: block;
  transform-origin: center right;
}

.hero.hero--metallic .hero-visual__glow {
  position: absolute;
  z-index: 0;
  width: 52%;
  aspect-ratio: 1.15;
  right: 3%;
  top: 11%;
  background: radial-gradient(circle, rgba(255,255,255,.42), rgba(224,232,239,.14) 42%, transparent 72%);
}

.hero.hero--metallic .hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero.hero--metallic .hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 66%;
  filter: saturate(.96) contrast(1.02);
  mask-image: none;
  -webkit-mask-image: none;
}

.hero.hero--metallic .hero-service-strip {
  z-index: 7;
}

@media (min-width: 1500px) {
  .hero.hero--metallic .hero-picture img {
    object-position: 78% 66%;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 44px), 1260px);
  }

  .hero.hero--metallic .hero-copy {
    width: 50%;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.65rem, 5.1vw, 4.15rem);
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 70% 66%;
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic {
    min-height: 780px;
    padding: calc(var(--header-h) + 22px) 0 44px;
    background: #3c434b;
  }

  .hero.hero--metallic::before {
    z-index: 2;
    background:
      linear-gradient(180deg,
        rgba(35,42,49,.72) 0%,
        rgba(35,42,49,.48) 28%,
        rgba(35,42,49,.78) 58%,
        rgba(35,42,49,.98) 92%);
  }

  .hero.hero--metallic::after {
    background:
      radial-gradient(circle at 72% 44%, rgba(255,255,255,.22), transparent 30%),
      radial-gradient(circle at 50% 44%, #8a929b 0%, #626b74 50%, #3c434b 100%);
  }

  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 32px), 620px);
    min-height: 692px;
    display: flex;
    align-items: flex-end;
  }

  .hero.hero--metallic .hero-copy {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 26px 0 38px;
    justify-content: flex-end;
  }

  .hero.hero--metallic .hero-headline {
    max-width: 9.5ch;
    font-size: clamp(2.5rem, 11.4vw, 3.65rem);
  }

  .hero.hero--metallic .hero-lead {
    max-width: 35ch;
    margin-top: 22px;
    font-size: .96rem;
  }

  .hero-copy-break {
    display: none;
  }

  .hero.hero--metallic .hero-actions {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-top: 25px;
  }

  .hero.hero--metallic .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero.hero--metallic .hero-visual__parallax {
    inset: 0 -18% 0 -12%;
    transform: none !important;
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 64% 34%;
    object-fit: cover;
  }
}


/* V27 — hero matched to approved desktop reference */
@media (min-width: 768px) {
  .hero.hero--metallic {
    min-height: clamp(610px, 78svh, 720px);
    padding: calc(var(--header-h) + 36px) 0 44px;
    background: #626b75;
  }

  .hero.hero--metallic::before {
    z-index: 3;
    background:
      linear-gradient(90deg,
        rgba(58, 66, 76, .76) 0%,
        rgba(58, 66, 76, .62) 21%,
        rgba(58, 66, 76, .34) 34%,
        rgba(58, 66, 76, .08) 45%,
        rgba(58, 66, 76, 0) 58%),
      linear-gradient(180deg, rgba(20,25,30,.03), transparent 62%, rgba(39,47,55,.06) 100%);
  }

  .hero.hero--metallic::after {
    z-index: 1;
    background:
      radial-gradient(ellipse at 78% 42%, rgba(255,255,255,.30) 0%, rgba(255,255,255,.11) 24%, transparent 48%),
      linear-gradient(90deg, #58616b 0%, #69737e 43%, #7d8791 72%, #727c86 100%);
  }

  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 64px), 1500px);
    min-height: calc(clamp(610px, 78svh, 720px) - var(--header-h) - 80px);
    display: flex;
    align-items: center;
  }

  .hero.hero--metallic .hero-copy {
    position: relative;
    z-index: 6;
    width: min(33%, 480px);
    max-width: 480px;
    min-height: 0;
    padding: 22px 0 46px;
    justify-content: center;
  }

  .hero.hero--metallic .hero-eyebrow {
    margin-bottom: clamp(24px, 2vw, 32px);
    font-size: .68rem;
  }

  .hero.hero--metallic .hero-headline {
    max-width: none;
    gap: .14em;
    font-size: clamp(2.75rem, 3.35vw, 3.65rem);
    line-height: .93;
    letter-spacing: -.035em;
  }

  .hero.hero--metallic .hero-line {
    white-space: nowrap;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 40ch;
    margin-top: clamp(28px, 2.5vw, 36px);
    font-size: clamp(.94rem, 1.03vw, 1.06rem);
    line-height: 1.38;
  }

  .hero.hero--metallic .hero-actions {
    width: min(100%, 430px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: .86rem;
  }

  .hero.hero--metallic .hero-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    z-index: 2;
  }

  .hero.hero--metallic .hero-visual__parallax {
    inset: -3.5% -2.5% -6% 0;
    transform-origin: center right;
  }

  .hero.hero--metallic .hero-visual__glow {
    display: none;
  }

  .hero.hero--metallic .hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 73% 64%;
    filter: saturate(.96) contrast(1.015) brightness(.99);
  }

  .hero.hero--metallic .hero-service-strip {
    height: 44px;
    min-height: 44px;
  }

  .hero.hero--metallic .hero-service-strip__group {
    padding-inline: clamp(42px, 5vw, 88px);
  }

  .hero.hero--metallic .hero-service-strip__group span {
    font-size: .57rem;
    letter-spacing: .12em;
  }
}

@media (min-width: 1400px) {
  .hero.hero--metallic .hero-copy {
    width: min(34%, 500px);
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(3rem, 3.45vw, 3.8rem);
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 75% 64%;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .hero.hero--metallic {
    min-height: 640px;
  }

  .hero.hero--metallic .hero-layout {
    min-height: 520px;
    width: min(calc(100% - 44px), 1020px);
  }

  .hero.hero--metallic .hero-copy {
    width: 43%;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.35rem, 4.55vw, 3.25rem);
  }

  .hero.hero--metallic .hero-lead {
    max-width: 35ch;
    font-size: .92rem;
  }

  .hero.hero--metallic .hero-actions {
    width: 390px;
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 72% 62%;
  }
}


/* V28 — fleet image at natural scale, shifted right (no cover zoom) */
@media (min-width: 768px) {
  .hero.hero--metallic .hero-visual__parallax {
    inset: 0;
    overflow: hidden;
    transform-origin: center right;
  }

  .hero.hero--metallic .hero-picture {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
  }

  .hero.hero--metallic .hero-picture img {
    flex: 0 0 auto;
    width: auto;
    height: 132%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: translate3d(6%, 2%, 0);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 10%, #000 24%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 10%, #000 24%, #000 100%);
  }
}

@media (min-width: 1400px) {
  .hero.hero--metallic .hero-picture img {
    height: 136%;
    transform: translate3d(7.5%, 2%, 0);
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .hero.hero--metallic .hero-picture img {
    height: 126%;
    transform: translate3d(9%, 2%, 0);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 8%, #000 20%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 8%, #000 20%, #000 100%);
  }
}

/* =========================================================
   V29 — Header premium + parallax refinado
   ========================================================= */
:root {
  --topbar-h: 34px;
  --header-h: 76px;
}

.topbar {
  height: var(--topbar-h);
  background:
    linear-gradient(90deg, #061a2b 0%, #0a2d49 52%, #061a2b 100%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
  transition: transform .34s cubic-bezier(.22,1,.36,1), opacity .24s ease;
  will-change: transform;
}
.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101,199,230,.34), transparent);
}
.topbar .container,
.topbar__inner {
  width: min(calc(100% - 40px), 1320px);
  font-size: .7rem;
  letter-spacing: .025em;
}
.topbar strong {
  color: rgba(255,255,255,.96);
  font-weight: 760;
}
.topbar.is-collapsed {
  transform: translate3d(0,-100%,0);
  opacity: 0;
  pointer-events: none;
}

.site-header {
  height: var(--header-h);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(7,26,43,.08);
  box-shadow: 0 8px 28px rgba(7,26,43,.055);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  transition:
    transform .34s cubic-bezier(.22,1,.36,1),
    top .34s cubic-bezier(.22,1,.36,1),
    height .34s cubic-bezier(.22,1,.36,1),
    background .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
  will-change: transform, top;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  opacity: .72;
  background: linear-gradient(90deg, transparent 8%, rgba(255,255,255,.9) 50%, transparent 92%);
  pointer-events: none;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.965);
  border-bottom-color: rgba(7,26,43,.105);
  box-shadow: 0 14px 42px rgba(7,26,43,.12);
}
.site-header.is-menu-open {
  transform: none !important;
  background: rgba(255,255,255,.985);
}

.nav.container {
  width: min(calc(100% - 32px), 1320px);
  gap: clamp(14px, 2.2vw, 34px);
}
.brand {
  min-width: 0;
  flex: 0 0 auto;
  transition: opacity .2s ease, transform .2s ease;
}
.brand:hover,
.brand:focus-visible {
  opacity: .84;
  transform: translateY(-1px);
  outline: none;
}
.brand-mark {
  width: 112px;
  height: 48px;
  padding: 3px 0;
}
.brand-mark img {
  object-position: left center;
}
.brand-copy {
  display: none !important;
}

.nav-links {
  gap: 4px;
}
.nav-links a {
  position: relative;
  color: rgba(7,26,43,.72);
  font-weight: 760;
  letter-spacing: -.01em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--blue);
  background: rgba(8,118,201,.065);
  outline: none;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  flex: 0 0 auto;
  gap: 11px;
  padding: 12px 18px 12px 20px;
  border-radius: 13px;
  background: linear-gradient(135deg, #0a7dcc 0%, #0769b0 100%);
  border-color: rgba(7,105,176,.9);
  box-shadow: 0 11px 24px rgba(8,118,201,.2), inset 0 1px 0 rgba(255,255,255,.2);
  font-size: .85rem;
  letter-spacing: -.01em;
}
.nav-cta::before {
  content: "↗";
  order: 2;
  font-size: .94rem;
  line-height: 1;
  transition: transform .22s ease;
}
.nav-cta::after {
  inset: -5px;
}
.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  transform: translate3d(2px,-2px,0);
}

.hamburger {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(7,26,43,.06);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.hamburger:hover,
.hamburger:focus-visible {
  transform: translateY(-1px);
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 1070;
  background: rgba(4,17,28,.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: headerScrimIn .2s ease both;
}
@keyframes headerScrimIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Parallax uses transforms only and keeps the approved image scale intact. */
.motion-parallax-enabled [data-parallax-layer],
.motion-parallax-enabled [data-parallax-speed] {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.hero.hero--metallic .hero-visual__parallax {
  transition: transform .12s linear;
}
.hero.hero--metallic .hero-copy {
  transition: transform .12s linear;
}

@media (max-width: 899px) {
  :root { --header-h: 70px; }

  .site-header {
    top: 0;
    height: var(--header-h);
  }
  .nav.container {
    width: min(calc(100% - 24px), 680px);
  }
  .brand-mark {
    width: 102px;
    height: 43px;
  }
  .nav-links {
    top: calc(var(--header-h) + 9px);
    left: 12px;
    right: 12px;
    z-index: 1095;
    gap: 3px;
    padding: 10px;
    border: 1px solid rgba(7,26,43,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.985);
    box-shadow: 0 28px 70px rgba(7,26,43,.2);
    transform: translateY(-8px) scale(.985);
  }
  .nav-links a {
    min-height: 49px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .92rem;
  }
  .nav-links a::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 30px;
  }
}

@media (min-width: 900px) {
  .topbar { display: block; }
  .site-header {
    top: var(--topbar-h);
  }
  .site-header.is-scrolled {
    top: 0;
    height: 68px;
  }
  .site-header.is-hidden {
    transform: translate3d(0,-112%,0);
  }
  .nav-links {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }
  .nav-links a {
    min-height: 42px;
    padding: 11px 12px;
    font-size: .8rem;
  }
  .site-header.is-scrolled .brand-mark {
    width: 106px;
    height: 43px;
  }
}

@media (min-width: 1180px) {
  .nav-links a {
    padding-inline: 14px;
    font-size: .84rem;
  }
  .brand-mark {
    width: 122px;
    height: 50px;
  }
}

@media (max-width: 380px) {
  .brand-mark {
    width: 92px;
  }
  .hamburger {
    width: 43px;
    height: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .site-header,
  .brand,
  .nav-links a,
  .nav-links a::after,
  .nav-cta::before,
  .hamburger,
  .hero.hero--metallic .hero-visual__parallax,
  .hero.hero--metallic .hero-copy {
    transition: none !important;
  }
}

/* V29.1 — legibilidade mobile e alinhamento da faixa do hero */
.hero.hero--metallic .hero-service-strip__track,
.hero-service-strip__group {
  height: 100%;
}
.hero.hero--metallic .hero-service-strip__group span,
.hero.hero--metallic .hero-service-strip__group i {
  line-height: 1;
}

@media (max-width: 767px) {
  .hero.hero--metallic::before {
    background:
      linear-gradient(90deg,
        rgba(36,43,51,.92) 0%,
        rgba(36,43,51,.82) 42%,
        rgba(36,43,51,.48) 70%,
        rgba(36,43,51,.12) 100%),
      linear-gradient(180deg,
        rgba(35,42,49,.28) 0%,
        rgba(35,42,49,.18) 36%,
        rgba(35,42,49,.66) 70%,
        rgba(35,42,49,.96) 100%);
  }
  .hero.hero--metallic .hero-headline {
    max-width: 11.5ch;
    font-size: clamp(2.35rem, 10.4vw, 3.4rem);
    text-shadow: 0 2px 18px rgba(12,18,24,.16);
  }
  .hero.hero--metallic .hero-lead {
    text-shadow: 0 1px 12px rgba(12,18,24,.24);
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic::before {
    background:
      linear-gradient(90deg,
        rgba(30,37,45,.97) 0%,
        rgba(30,37,45,.93) 48%,
        rgba(30,37,45,.72) 72%,
        rgba(30,37,45,.24) 100%),
      linear-gradient(180deg,
        rgba(30,37,45,.18) 0%,
        rgba(30,37,45,.16) 34%,
        rgba(30,37,45,.68) 72%,
        rgba(30,37,45,.97) 100%);
  }
  .hero.hero--metallic .hero-headline {
    max-width: 13.5ch;
    font-size: clamp(2.28rem, 9.8vw, 3.25rem);
  }
}


/* =========================================================
   V30 — Hero mobile focado na frota + faixa setorial contínua
   ========================================================= */

/* Faixa setorial: movimento contínuo, hierarquia e leitura. */
.hero.hero--metallic .hero-service-strip {
  height: 50px;
  min-height: 50px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(90deg, #0a4369 0%, #0b6da5 42%, #1282bd 70%, #0a5b8d 100%);
  box-shadow: 0 -10px 28px rgba(6,32,52,.12);
}

.hero-service-strip__label {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(20px, 2.2vw, 34px);
  background: rgba(5,43,69,.94);
  box-shadow: 14px 0 26px rgba(4,35,57,.24);
  color: rgba(255,255,255,.96);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-service-strip__label::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 12px;
  border-radius: 50%;
  background: #8ed3ff;
  box-shadow: 0 0 0 5px rgba(142,211,255,.1);
}

.hero-service-strip__viewport {
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.hero.hero--metallic .hero-service-strip__track {
  width: max-content;
  min-width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  animation: heroSectorMarquee 34s linear infinite;
  will-change: transform;
}

.hero.hero--metallic .hero-service-strip__group,
.hero.hero--metallic .hero-service-strip__group:nth-child(2) {
  width: max-content;
  height: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
  padding: 0 clamp(18px, 2.4vw, 36px);
  white-space: nowrap;
}

.hero.hero--metallic .hero-service-strip__group span {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.96);
  font-size: .66rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.hero.hero--metallic .hero-service-strip__group i {
  color: #a9dcff;
  font-size: .42rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(169,220,255,.44));
}

@keyframes heroSectorMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (hover: hover) and (pointer: fine) {
  .hero-service-strip__viewport:hover .hero-service-strip__track {
    animation-play-state: paused;
  }
}

/* Mobile: imagem primeiro, conteúdo depois, como na referência. */
@media (max-width: 767px) {
  .hero.hero--metallic {
    min-height: max(790px, 100svh);
    padding: 0 0 46px;
    background: #39434d;
  }

  .hero.hero--metallic::after {
    background:
      radial-gradient(ellipse at 64% 25%, rgba(255,255,255,.23) 0%, rgba(255,255,255,.07) 28%, transparent 54%),
      linear-gradient(180deg, #7c858e 0%, #68727c 34%, #4b555f 61%, #353e48 100%);
  }

  .hero.hero--metallic::before {
    z-index: 3;
    background:
      linear-gradient(180deg,
        rgba(26,33,40,.02) 0%,
        rgba(26,33,40,.025) 31%,
        rgba(31,38,46,.20) 43%,
        rgba(34,41,49,.72) 55%,
        rgba(37,44,52,.94) 68%,
        rgba(37,44,52,.985) 100%);
  }

  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 30px), 620px);
    min-height: calc(max(790px, 100svh) - 46px);
    display: flex;
    align-items: flex-end;
    padding-top: clamp(348px, 47svh, 408px);
  }

  .hero.hero--metallic .hero-copy {
    width: 100%;
    max-width: none;
    padding: 0 0 25px;
    align-items: center;
    text-align: center;
    transform: none !important;
  }

  .hero.hero--metallic .hero-eyebrow {
    justify-content: center;
    margin-bottom: 18px;
    font-size: .59rem;
    letter-spacing: .13em;
  }

  .hero.hero--metallic .hero-eyebrow__line {
    width: 34px;
  }

  .hero.hero--metallic .hero-headline {
    width: 100%;
    max-width: none;
    gap: .13em;
    font-size: clamp(2rem, 8.65vw, 2.42rem);
    line-height: .98;
    letter-spacing: -.042em;
    text-align: center;
    text-shadow: 0 4px 22px rgba(13,20,27,.26);
  }

  .hero.hero--metallic .hero-line {
    white-space: nowrap;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 35ch;
    margin: 22px auto 0;
    color: rgba(255,255,255,.89);
    font-size: clamp(.91rem, 3.75vw, 1rem);
    line-height: 1.42;
    text-align: center;
    text-shadow: 0 2px 14px rgba(13,20,27,.32);
  }

  .hero.hero--metallic .hero-actions {
    width: 100%;
    max-width: 430px;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 54px;
    padding: 14px 14px;
    border-radius: 15px;
    font-size: clamp(.76rem, 3.35vw, .88rem);
    box-shadow: 0 14px 28px rgba(15,53,84,.27), inset 0 1px 0 rgba(255,255,255,.18);
  }

  .hero.hero--metallic .hero-visual {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    width: 100%;
    height: clamp(365px, 49svh, 425px);
    min-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: none;
  }

  .hero.hero--metallic .hero-visual__parallax {
    position: absolute;
    inset: 0 -4% -2%;
    overflow: hidden;
    transform: none !important;
    will-change: auto !important;
  }

  .hero.hero--metallic .hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero.hero--metallic .hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% 44%;
    filter: saturate(.95) contrast(1.025) brightness(1.025);
    transform: scale(1.015);
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero.hero--metallic .hero-service-strip {
    height: 46px;
    min-height: 46px;
  }

  .hero-service-strip__label {
    display: none;
  }

  .hero-service-strip__viewport {
    width: 100%;
    flex-basis: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  }

  .hero.hero--metallic .hero-service-strip__track {
    animation-duration: 27s;
  }

  .hero.hero--metallic .hero-service-strip__group,
  .hero.hero--metallic .hero-service-strip__group:nth-child(2) {
    gap: 20px;
    padding: 0 16px;
  }

  .hero.hero--metallic .hero-service-strip__group span {
    font-size: .58rem;
    letter-spacing: .105em;
  }
}

@media (max-width: 370px) {
  .hero.hero--metallic {
    min-height: 835px;
  }

  .hero.hero--metallic .hero-layout {
    min-height: calc(835px - 46px);
    padding-top: 340px;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(1.86rem, 8.7vw, 2.08rem);
  }

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

@media (min-width: 768px) {
  .hero.hero--metallic {
    padding-bottom: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--metallic .hero-service-strip__track {
    animation: none !important;
    transform: none !important;
  }
}


/* V30.1 — acabamento full-bleed e CTA flutuante sem conflito no hero */
@media (max-width: 767px) {
  .hero.hero--metallic .hero-visual {
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    width: auto;
  }

  .whatsapp-float {
    transition: transform .22s ease, opacity .2s ease, visibility .2s ease;
  }

  .whatsapp-float.is-context-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0,12px,0) scale(.88);
  }
}

/* =========================================================
   V31 — refinamento premium do hero mobile + cards operação protegida
   ========================================================= */

.value {
  background:
    radial-gradient(circle at top right, rgba(101,199,230,.10), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #f4f8fb 100%);
}

.value-grid {
  gap: clamp(16px, 2vw, 22px);
}

.value-card {
  border: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,253,.96) 100%);
  box-shadow:
    0 18px 48px rgba(7,26,43,.08),
    0 2px 0 rgba(255,255,255,.9) inset,
    0 -1px 0 rgba(8,118,201,.04) inset;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(8,118,201,.12) 18%, rgba(101,199,230,.36) 50%, rgba(8,118,201,.12) 82%, transparent 100%);
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101,199,230,.10) 0%, rgba(101,199,230,0) 72%);
  pointer-events: none;
}

.value-card:hover {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(246,250,253,.98) 100%);
  box-shadow:
    0 26px 66px rgba(7,26,43,.12),
    0 2px 0 rgba(255,255,255,.95) inset,
    0 -1px 0 rgba(8,118,201,.06) inset;
}

.value-card--feature {
  background:
    linear-gradient(145deg, rgba(8,118,201,.08) 0%, rgba(255,255,255,.98) 24%, rgba(246,250,253,.98) 100%);
}

.value-index {
  top: 22px;
  right: 22px;
  color: rgba(9,68,110,.34);
  font-size: .82rem;
  letter-spacing: .06em;
}

.icon-shell {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(235,246,251,.98) 100%);
  color: var(--blue);
  box-shadow:
    0 10px 24px rgba(8,118,201,.10),
    0 1px 0 rgba(255,255,255,.95) inset;
}

.value-card h3 {
  margin-top: 26px;
  max-width: 16ch;
  color: #0d2234;
}

.value-card p {
  margin-top: 12px;
  max-width: 29ch;
  color: #5b6d7a;
  line-height: 1.55;
}

.feature-line {
  margin-top: 24px;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8,118,201,.06);
  color: #315a78;
}

.feature-line i {
  background: linear-gradient(90deg, rgba(8,118,201,.10), rgba(101,199,230,.42));
}

@media (min-width: 1024px) {
  .value-grid {
    align-items: stretch;
  }

  .value-card {
    min-height: 314px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic {
    min-height: max(820px, 100svh);
  }

  .hero.hero--metallic .hero-layout {
    min-height: calc(max(820px, 100svh) - 46px);
    width: min(calc(100% - 28px), 520px);
    padding-top: clamp(395px, 54svh, 458px);
    align-items: flex-end;
  }

  .hero.hero--metallic .hero-copy {
    max-width: 360px;
    margin-inline: auto;
    padding: 0 0 30px;
    display: grid;
    gap: 0;
  }

  .hero.hero--metallic .hero-eyebrow {
    margin-bottom: 16px;
    font-size: .58rem;
    letter-spacing: .16em;
    opacity: .96;
  }

  .hero.hero--metallic .hero-headline {
    max-width: 9.8ch;
    margin-inline: auto;
    gap: .16em;
    font-size: clamp(2.12rem, 9.25vw, 2.7rem);
    line-height: .94;
    letter-spacing: -.05em;
    text-wrap: balance;
  }

  .hero.hero--metallic .hero-line {
    white-space: normal;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 31ch;
    margin: 18px auto 0;
    font-size: clamp(.94rem, 3.75vw, 1rem);
    line-height: 1.48;
    color: rgba(255,255,255,.90);
  }

  .hero-copy-break {
    display: none;
  }

  .hero.hero--metallic .hero-actions {
    max-width: 360px;
    gap: 12px;
    margin-top: 26px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 56px;
    padding: 14px 14px;
    border-radius: 16px;
    font-size: .82rem;
  }

  .hero.hero--metallic .hero-visual {
    height: clamp(386px, 50svh, 450px);
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 54% 42%;
    transform: scale(1.02);
  }

  .value-grid {
    gap: 14px;
  }

  .value-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
    box-shadow:
      0 16px 34px rgba(7,26,43,.08),
      0 1px 0 rgba(255,255,255,.95) inset;
  }

  .value-card h3 {
    margin-top: 22px;
    max-width: 100%;
    font-size: 1.16rem;
  }

  .value-card p {
    max-width: none;
    font-size: .92rem;
  }

  .icon-shell {
    width: 54px;
    height: 54px;
  }

  .feature-line {
    margin-top: 20px;
    font-size: .7rem;
  }
}

@media (max-width: 390px) {
  .hero.hero--metallic .hero-layout {
    padding-top: clamp(380px, 53svh, 430px);
  }

  .hero.hero--metallic .hero-headline {
    max-width: 10.2ch;
    font-size: clamp(1.98rem, 8.9vw, 2.28rem);
  }

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

/* =========================================================
   V32 — cards luxo/tech (Linear / Stripe) + hero mobile mais contido
   ========================================================= */

.value-grid {
  perspective: 1200px;
}

.value-card {
  isolation: isolate;
  border: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.92) 100%);
  box-shadow:
    0 18px 38px rgba(15,23,42,.07),
    0 2px 10px rgba(8,118,201,.04),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.32) 28%, rgba(101,199,230,.18) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto auto -54px -48px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101,199,230,.16) 0%, rgba(101,199,230,.04) 36%, rgba(101,199,230,0) 74%);
  pointer-events: none;
  z-index: 0;
}

.value-card > * {
  position: relative;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 58px rgba(15,23,42,.10),
    0 10px 26px rgba(8,118,201,.08),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.value-card--feature {
  background:
    radial-gradient(circle at top right, rgba(101,199,230,.18) 0%, rgba(101,199,230,0) 34%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,250,255,.95) 100%);
}

.value-card--feature::before {
  background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(101,199,230,.24) 52%, rgba(255,255,255,.34) 100%);
}

.value-index {
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  color: rgba(13,43,67,.48);
  font-family: var(--sans);
  font-size: .7rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}

.icon-shell {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(234,246,251,.96) 100%);
  color: var(--blue);
  box-shadow:
    0 12px 24px rgba(8,118,201,.10),
    0 1px 0 rgba(255,255,255,.96) inset,
    inset 0 -8px 18px rgba(101,199,230,.10);
}

.value-card h3 {
  margin-top: 24px;
  font-size: clamp(1.18rem, 1.3vw, 1.34rem);
  letter-spacing: -.03em;
  color: #10263a;
}

.value-card p {
  margin-top: 10px;
  color: #61717f;
  font-size: .93rem;
  line-height: 1.58;
}

.feature-line {
  position: relative;
  margin-top: 24px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(236,245,251,.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
  color: #315a78;
}

.feature-line i {
  background: linear-gradient(90deg, rgba(8,118,201,.02), rgba(8,118,201,.18), rgba(101,199,230,.55));
}

@media (min-width: 768px) {
  .value-card {
    padding: 30px 28px 28px;
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic .hero-layout {
    padding-top: clamp(404px, 55svh, 464px);
  }

  .hero.hero--metallic .hero-copy {
    max-width: 340px;
  }

  .hero.hero--metallic .hero-headline {
    max-width: 9.2ch;
    font-size: clamp(1.94rem, 8.5vw, 2.42rem);
    gap: .15em;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 30ch;
    margin-top: 16px;
    font-size: clamp(.88rem, 3.45vw, .96rem);
    line-height: 1.44;
  }

  .hero.hero--metallic .hero-actions {
    max-width: 344px;
    gap: 10px;
    margin-top: 22px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 54px;
    font-size: .79rem;
  }

  .value-card {
    padding: 22px 20px;
    border-radius: 24px;
    box-shadow:
      0 16px 32px rgba(15,23,42,.08),
      0 8px 18px rgba(8,118,201,.05),
      inset 0 1px 0 rgba(255,255,255,.96);
  }

  .value-index {
    top: 16px;
    right: 16px;
    min-width: 38px;
    height: 26px;
    font-size: .66rem;
  }

  .icon-shell {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .value-card h3 {
    margin-top: 20px;
    font-size: 1.12rem;
  }

  .value-card p {
    font-size: .9rem;
  }
}

@media (max-width: 390px) {
  .hero.hero--metallic .hero-headline {
    max-width: 9.6ch;
    font-size: clamp(1.84rem, 8.2vw, 2.16rem);
  }

  .hero.hero--metallic .hero-lead {
    font-size: .86rem;
  }
}


/* =========================================================
   V33 — copy responsiva do hero + remoção da faixa duplicada
   ========================================================= */
.hero-copy-variant {
  display: grid;
  gap: .14em;
}

.hero-copy-variant--mobile,
.hero-lead-variant--mobile {
  display: none;
}

.hero-lead-variant {
  width: 100%;
}

@media (min-width: 768px) {
  .hero.hero--metallic .hero-copy {
    width: min(36%, 540px);
    max-width: 540px;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.55rem, 3.2vw, 3.65rem);
    line-height: .92;
    letter-spacing: -.038em;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 43ch;
    margin-top: clamp(24px, 2vw, 30px);
    font-size: clamp(.94rem, 1vw, 1.04rem);
    line-height: 1.5;
  }

  .hero.hero--metallic .hero-actions {
    margin-top: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .hero.hero--metallic .hero-copy {
    width: 45%;
    max-width: 460px;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.18rem, 4.25vw, 3rem);
  }
}

@media (max-width: 767px) {
  .hero-copy-variant--desktop,
  .hero-lead-variant--desktop {
    display: none;
  }

  .hero-copy-variant--mobile {
    display: grid;
  }

  .hero-lead-variant--mobile {
    display: inline;
  }

  .hero.hero--metallic .hero-copy {
    max-width: 350px;
    justify-content: stretch;
    justify-items: center;
  }

  .hero-copy-variant--mobile {
    width: 100%;
  }

  .hero.hero--metallic .hero-headline {
    max-width: none;
    width: 100%;
    font-size: clamp(2.06rem, 9.1vw, 2.68rem);
    line-height: .92;
    letter-spacing: -.045em;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 31ch;
    margin-top: 17px;
    font-size: clamp(.89rem, 3.55vw, .97rem);
    line-height: 1.46;
  }

  .hero.hero--metallic .hero-actions {
    margin-top: 21px;
  }
}

@media (max-width: 390px) {
  .hero.hero--metallic .hero-headline {
    font-size: clamp(1.92rem, 8.7vw, 2.28rem);
  }

  .hero.hero--metallic .hero-lead {
    max-width: 29ch;
    font-size: .87rem;
  }
}


/* Footer compact V29 — reduced visual weight and height */
.site-footer--compact {
  padding: 34px 0 30px;
  background:
    radial-gradient(circle at 12% -20%, rgba(31,146,236,.16), transparent 35%),
    #03121e;
}
.site-footer--compact .footer-glow {
  top: -180px;
  width: min(680px, 110vw);
  height: 260px;
  opacity: .72;
}
.footer-compact-shell {
  display: grid;
}
.footer-compact-main {
  display: grid;
  gap: 20px;
  padding-bottom: 24px;
}
.footer-compact-brand {
  display: grid;
  gap: 12px;
}
.site-footer--compact .footer-brand-link {
  min-height: 44px;
  gap: 10px;
}
.site-footer--compact .footer-brand-mark {
  width: 50px;
  height: 36px;
  border-radius: 11px;
}
.site-footer--compact .footer-brand-copy strong {
  font-size: 1.05rem;
}
.site-footer--compact .footer-brand-copy small {
  font-size: .56rem;
}
.footer-compact-brand > p {
  max-width: 46ch;
  color: rgba(255,255,255,.58);
  font-size: .84rem;
  line-height: 1.55;
}
.footer-compact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(101,199,230,.28);
  border-radius: 14px;
  background: rgba(31,146,236,.13);
  color: var(--white);
  font-size: .8rem;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.footer-compact-cta span {
  color: var(--cyan);
  font-size: 1rem;
}
.footer-compact-middle {
  display: grid;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-compact-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
}
.footer-compact-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  font-weight: 760;
  transition: color .2s ease;
}
.footer-compact-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
  font-style: normal;
}
.footer-compact-contact > a,
.footer-compact-support {
  min-width: 0;
  display: grid;
  gap: 3px;
  color: rgba(255,255,255,.86);
}
.footer-compact-contact span:not(.footer-compact-support),
.footer-compact-contact > a > span {
  color: rgba(255,255,255,.40);
  font-size: .6rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-compact-contact strong {
  overflow-wrap: anywhere;
  font-size: .76rem;
  line-height: 1.35;
}
.footer-compact-support {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: end;
}
.footer-compact-support i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #56d88a;
  box-shadow: 0 0 12px rgba(86,216,138,.58);
}
.site-footer--compact .footer-bottom {
  margin: 0;
  padding-top: 18px;
  border-top: 0;
}
.footer-compact-bottom {
  gap: 8px;
  color: rgba(255,255,255,.38);
  font-size: .68rem;
}
.site-footer--compact .footer-legal a {
  min-height: 28px;
  font-size: .68rem;
}
@media (hover:hover) {
  .footer-compact-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(101,199,230,.46);
    background: rgba(31,146,236,.19);
  }
  .footer-compact-nav a:hover,
  .footer-compact-contact a:hover strong {
    color: var(--white);
  }
}
@media (min-width: 760px) {
  .site-footer--compact {
    padding: 38px 0 28px;
  }
  .footer-compact-main {
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 30px;
    padding-bottom: 22px;
  }
  .footer-compact-brand {
    grid-template-columns: auto minmax(0,1fr);
    align-items: center;
    gap: 22px;
  }
  .footer-compact-brand > p {
    max-width: 42ch;
    padding-left: 22px;
    border-left: 1px solid rgba(255,255,255,.10);
  }
  .footer-compact-cta {
    width: auto;
    min-width: 176px;
  }
  .footer-compact-middle {
    grid-template-columns: auto minmax(0,1fr);
    align-items: center;
    gap: 38px;
    padding: 18px 0;
  }
  .footer-compact-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
  }
  .footer-compact-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 24px;
  }
  .footer-compact-contact > a,
  .footer-compact-support {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .footer-compact-contact > a > span {
    display: none;
  }
  .footer-compact-contact strong {
    font-size: .74rem;
  }
  .footer-compact-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .footer-compact-bottom .footer-legal {
    justify-content: flex-end;
  }
}
@media (max-width: 380px) {
  .footer-compact-contact {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-compact-cta,
  .footer-compact-nav a {
    transition: none;
  }
}

/* Footer compact V29.1 — tighter mobile rhythm */
@media (max-width: 759px) {
  .site-footer--compact { padding: 28px 0 22px; }
  .footer-compact-main { gap: 15px; padding-bottom: 18px; }
  .footer-compact-brand { gap: 8px; }
  .footer-compact-brand > p { font-size: .8rem; line-height: 1.5; }
  .footer-compact-cta { min-height: 44px; padding: 10px 14px; }
  .footer-compact-middle { gap: 16px; padding: 18px 0; }
  .footer-compact-nav { gap: 2px 16px; }
  .footer-compact-nav a { min-height: 32px; }
  .footer-compact-contact { gap: 10px 16px; }
  .site-footer--compact .footer-bottom { padding-top: 14px; }
}


/* V35 — Fleet cards refined: arrow-only gallery and stable image interaction */
.fleet-stack {
  gap: clamp(20px, 2.4vw, 30px);
}

.vehicle-card {
  position: relative;
  isolation: isolate;
  border-color: rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 38%),
    #0a2236;
  box-shadow:
    0 34px 90px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.045);
  transition: transform .35s cubic-bezier(.2,.75,.2,1), border-color .35s ease, box-shadow .35s ease;
}

.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 75% 5%, rgba(46,199,234,.08), transparent 32%);
  pointer-events: none;
}

.vehicle-media {
  min-width: 0;
  background: #061827;
}

.media-carousel {
  height: 100%;
  touch-action: auto;
  user-select: none;
  cursor: default;
  outline: none;
}

.media-carousel__viewport {
  position: relative;
  isolation: isolate;
  height: 100%;
  overflow: hidden;
}

.media-carousel__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,20,32,.12), transparent 22%, transparent 78%, rgba(5,20,32,.12)),
    linear-gradient(to top, rgba(5,20,32,.32), transparent 38%);
  pointer-events: none;
}

.media-carousel__track {
  backface-visibility: hidden;
  transition: transform .5s cubic-bezier(.22,.75,.2,1);
}

.media-carousel__slide {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.media-carousel__slide img,
.vehicle-card:hover .media-carousel__slide img {
  transform: none;
}

.media-carousel__slide img {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: saturate(.96) contrast(1.02);
}

.carousel-control {
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-color: rgba(255,255,255,.28);
  background: rgba(5,22,36,.72);
  box-shadow:
    0 14px 34px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.12);
  cursor: pointer;
}

.carousel-control svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-control--prev { left: 18px; }
.carousel-control--next { right: 18px; }

.carousel-control:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(255,255,255,.48);
  background: rgba(8,37,59,.92);
}

.carousel-control:focus-visible {
  outline: 3px solid rgba(46,199,234,.5);
  outline-offset: 3px;
}

.carousel-control:disabled {
  opacity: .24;
  cursor: not-allowed;
}

.vehicle-card .vehicle-badge {
  left: 20px;
  bottom: 20px;
  z-index: 3;
  min-width: 118px;
  padding: 12px 15px 13px;
  border-color: rgba(255,255,255,.24);
  border-radius: 16px;
  background: rgba(5,22,36,.78);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.vehicle-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.2vw, 52px);
}

.vehicle-heading .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .69rem;
  font-weight: 850;
}

.vehicle-heading .kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.vehicle-heading h3 {
  max-width: 17ch;
  font-size: clamp(1.8rem, 3.1vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.temperature {
  padding: 8px 11px;
  border-color: rgba(46,199,234,.24);
  background: rgba(46,199,234,.07);
  color: rgba(218,247,255,.86);
}

.vehicle-content > p {
  max-width: 64ch;
  margin-top: 20px;
  color: rgba(255,255,255,.67);
  line-height: 1.72;
}

.vehicle-specs {
  margin-top: 26px;
  border-color: rgba(255,255,255,.08);
  border-radius: 17px;
  background: rgba(255,255,255,.08);
}

.vehicle-specs div {
  background: rgba(5,22,36,.45);
}

.vehicle-specs dd {
  font-size: .94rem;
}

.vehicle-bottom {
  margin-top: 26px;
  padding-top: 22px;
}

.vehicle-bottom ul {
  color: rgba(255,255,255,.68);
}

.vehicle-bottom .btn {
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

@media (hover: hover) and (pointer: fine) {
  .vehicle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow:
      0 42px 105px rgba(0,0,0,.28),
      inset 0 1px 0 rgba(255,255,255,.06);
  }
}

@media (min-width: 900px) {
  .vehicle-card {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  }

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

  .vehicle-specs div {
    min-width: 0;
    padding: 15px 14px;
  }

  .vehicle-specs dt {
    min-height: 2.3em;
    line-height: 1.15;
  }

  .vehicle-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 680px) {
  .vehicle-card {
    border-radius: 24px;
  }

  .vehicle-media,
  .media-carousel__slide img {
    min-height: 300px;
  }

  .carousel-control {
    width: 44px;
    height: 44px;
  }

  .carousel-control--prev { left: 12px; }
  .carousel-control--next { right: 12px; }

  .vehicle-card .vehicle-badge {
    left: 14px;
    bottom: 14px;
  }

  .vehicle-content {
    padding: 26px 22px 24px;
  }

  .vehicle-heading {
    gap: 14px;
  }

  .vehicle-heading h3 {
    max-width: 19ch;
  }

  .vehicle-bottom {
    gap: 20px;
  }

  .vehicle-bottom .btn {
    width: 100%;
  }
}


/* =========================================================
   V36 — Premium process journey
   ========================================================= */
.process {
  --process-accent: #58c5e7;
  padding-top: clamp(86px, 10vw, 142px);
  padding-bottom: clamp(86px, 10vw, 142px);
  background:
    radial-gradient(circle at 86% 8%, rgba(101,199,230,.15), transparent 27%),
    linear-gradient(180deg, #f8fcfe 0%, #ffffff 35%, #f4f9fc 100%);
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -11%;
  width: min(40vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(8,118,201,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(8,118,201,.025), 0 0 0 96px rgba(8,118,201,.018);
  pointer-events: none;
}
.process-header {
  display: grid;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 70px);
}
.process-header__title .eyebrow { margin-bottom: 20px; }
.process-header__title h2 { max-width: 790px; }
.process-header__aside { display: grid; gap: 22px; align-content: end; }
.process-header__aside .lead { max-width: 570px; }
.process-signals { display: flex; flex-wrap: wrap; gap: 9px; }
.process-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(7,26,43,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--navy);
  font-size: .74rem;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(7,26,43,.04);
  backdrop-filter: blur(12px);
}
.process-signals i,
.process-proof-visual__top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27b36a;
  box-shadow: 0 0 0 4px rgba(39,179,106,.12);
}
.process-journey {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-step {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(11,61,97,.10);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 54px rgba(7,26,43,.07);
  overflow: hidden;
  outline: none;
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .35s ease, box-shadow .45s ease, background .35s ease;
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 92% 3%, rgba(101,199,230,.22), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,250,253,.9));
}
.process-step::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -40%;
  z-index: -1;
  width: 70%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: rotate(18deg) translateX(-160%);
  transition: transform .85s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.process-step__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.process-step__number {
  color: rgba(7,26,43,.30);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
}
.process-step__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(8,118,201,.14);
  border-radius: 16px;
  background: rgba(234,246,251,.86);
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  transition: transform .45s cubic-bezier(.16,1,.3,1), color .3s ease, background .3s ease;
}
.process-step__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.process-step__body { margin-top: auto; padding-top: 56px; }
.process-step__label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .69rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.process-step h3 { max-width: 270px; font-size: clamp(1.38rem, 2.2vw, 1.78rem); }
.process-step p { max-width: 355px; margin-top: 12px; font-size: .93rem; line-height: 1.62; }
.process-step__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(7,26,43,.08);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 850;
}
.process-step__footer span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease;
}
.process-step:hover,
.process-step:focus-visible {
  transform: translateY(-9px);
  border-color: rgba(8,118,201,.24);
  background: #fff;
  box-shadow: 0 30px 80px rgba(7,26,43,.13), 0 8px 26px rgba(8,118,201,.08);
}
.process-step:hover::after,
.process-step:focus-visible::after { transform: rotate(18deg) translateX(360%); }
.process-step:hover .process-step__icon,
.process-step:focus-visible .process-step__icon { transform: translateY(-3px) rotate(-3deg); color: #fff; background: var(--blue); }
.process-step:hover .process-step__footer span:last-child,
.process-step:focus-visible .process-step__footer span:last-child { transform: rotate(45deg); background: var(--navy); color: #fff; }
.process-proof-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(18px, 3vw, 30px);
}
.process-proof-visual {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 28px 80px rgba(7,26,43,.17);
}
.process-proof-visual > img, .process-proof-visual > picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.process-proof-visual > picture img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.process-proof-visual > img.process-proof-visual__brand-image, .process-proof-visual > picture img.process-proof-visual__brand-image { object-position: 50% 36%; }
.process-proof-visual:hover > img, .process-proof-visual:hover > picture img { transform: scale(1.035); }
.process-proof-visual__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,26,43,.18), rgba(7,26,43,.16) 36%, rgba(7,26,43,.92) 100%),
    linear-gradient(90deg, rgba(7,26,43,.58), transparent 58%);
}
.process-proof-visual__top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.process-proof-visual__top span,
.process-proof-visual__top small {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(7,26,43,.50);
  color: rgba(255,255,255,.88);
  font-size: .68rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}
.process-proof-visual__content { position: absolute; left: clamp(22px, 4vw, 42px); right: clamp(22px, 4vw, 42px); bottom: clamp(24px, 4vw, 42px); }
.process-proof-visual__eyebrow { color: var(--cyan); font-size: .69rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.process-proof-visual h3 { max-width: 570px; margin-top: 12px; color: #fff; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3.25rem); line-height: 1; letter-spacing: -.04em; }
.process-proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.process-proof-stats div { display: grid; gap: 2px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.process-proof-stats strong { color: #fff; font-size: 1.08rem; }
.process-proof-stats span { color: rgba(255,255,255,.64); font-size: .68rem; line-height: 1.35; }
.proof-panel--compact {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-color: rgba(11,61,97,.09);
  border-radius: 30px;
  background: rgba(247,251,253,.94);
  box-shadow: 0 22px 68px rgba(7,26,43,.11);
}
.proof-panel--compact .reviews-intro { margin: 0; padding: clamp(22px, 4vw, 32px); }
.proof-panel--compact .reviews-intro h3 { max-width: 570px; font-size: clamp(1.55rem, 2.9vw, 2.25rem); }
.proof-panel--compact .reviews-carousel { margin-top: 8px; }
.proof-panel--compact .reviews-page { background: rgba(255,255,255,.72); }
.proof-panel--compact .proof-links { margin-top: 8px; }
.proof-panel--compact .proof-links a { min-height: 54px; padding-inline: 18px; border: 1px solid rgba(12,71,119,.08); }

@media (min-width: 760px) {
  .process-header { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr); }
  .process-journey { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-journey::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 7%;
    right: 7%;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(8,118,201,.22) 10%, rgba(8,118,201,.22) 90%, transparent);
  }
  .process-step:nth-child(2) { transform: translateY(18px); }
  .process-step:nth-child(2):hover,
  .process-step:nth-child(2):focus-visible { transform: translateY(9px); }
  .process-proof-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: stretch; margin-top: 48px; }
  .process-proof-visual { min-height: 660px; }
  .proof-panel--compact { min-width: 0; }
}

@media (min-width: 900px) {
  .process-proof-grid { grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); }
  .proof-panel--compact .reviews-carousel__track { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 759px) {
  .process::before { display: none; }
  .process-header { margin-bottom: 34px; }
  .process-step { min-height: 286px; border-radius: 22px; }
  .process-step__body { padding-top: 38px; }
  .process-proof-visual { min-height: 520px; border-radius: 24px; }
  .process-proof-visual__top small { display: none; }
  .process-proof-visual h3 { max-width: 360px; }
  .proof-panel--compact { border-radius: 24px; }
}

@media (max-width: 430px) {
  .process-signals { display: grid; grid-template-columns: 1fr 1fr; }
  .process-signals span { justify-content: center; padding-inline: 9px; font-size: .68rem; }
  .process-step { min-height: 268px; padding: 21px; }
  .process-step__icon { width: 46px; height: 46px; border-radius: 14px; }
  .process-step__body { padding-top: 30px; }
  .process-step h3 { font-size: 1.45rem; }
  .process-proof-visual { min-height: 470px; }
  .process-proof-stats { grid-template-columns: 1fr; }
  .process-proof-stats div { padding: 11px 13px; }
  .proof-panel--compact .reviews-intro { padding: 22px 18px; }
}

@media (hover: none) {
  .process-step:hover { transform: none; border-color: rgba(11,61,97,.10); box-shadow: 0 18px 54px rgba(7,26,43,.07); }
  .process-step:nth-child(2):hover { transform: translateY(18px); }
  .process-proof-visual:hover > img, .process-proof-visual:hover > picture img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .process-step,
  .process-step::after,
  .process-step__icon,
  .process-step__footer span:last-child,
  .process-proof-visual > img, .process-proof-visual > picture img { transition: none !important; }
}


/* =========================================================
   V38 — Operação protegida premium redesign
   ========================================================= */

.value {
  position: relative;
}

.value-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.value-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid rgba(11, 33, 53, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(101,199,230,.18) 0%, rgba(101,199,230,0) 34%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,250,253,.96) 100%);
  box-shadow:
    0 24px 48px rgba(7, 26, 43, 0.08),
    0 8px 22px rgba(8,118,201,.05),
    inset 0 1px 0 rgba(255,255,255,.98);
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.2) 28%, rgba(101,199,230,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -48px auto;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101,199,230,.18) 0%, rgba(101,199,230,.05) 34%, rgba(101,199,230,0) 74%);
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8,118,201,.16);
  box-shadow:
    0 30px 62px rgba(7, 26, 43, 0.11),
    0 14px 32px rgba(8,118,201,.08),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.value-card > * {
  position: relative;
  z-index: 1;
}

.value-card--feature {
  background:
    radial-gradient(circle at top right, rgba(101,199,230,.24) 0%, rgba(101,199,230,0) 38%),
    linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(240,248,252,.98) 100%);
}

.value-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(8,118,201,.12);
  background: rgba(255,255,255,.72);
  color: #28516b;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.98);
}

.value-index {
  position: static;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 32, 52, 0.05);
  color: rgba(13,43,67,.56);
  font-family: var(--sans);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}

.icon-shell {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(235,246,252,.94) 100%);
  color: var(--blue);
  box-shadow:
    0 14px 28px rgba(8,118,201,.10),
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -10px 24px rgba(101,199,230,.10);
}

.value-card h3 {
  margin-top: 0;
  font-size: clamp(1.15rem, 1.4vw, 1.38rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #0f2437;
}

.value-card p {
  margin-top: 12px;
  color: #60717e;
  font-size: .95rem;
  line-height: 1.62;
}

.value-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 32, 52, 0.08);
}

.value-card__footer span {
  color: #60717e;
  font-size: .77rem;
  line-height: 1.45;
  font-weight: 700;
}

.value-card__footer strong {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(235,244,249,.98) 100%);
  color: #12344d;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.98);
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .value-card {
    padding: 28px 26px 24px;
    min-height: 320px;
  }
}

@media (min-width: 1200px) {
  .value-grid {
    grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .value-card {
    min-height: 332px;
  }

  .value-card--feature {
    min-height: 332px;
  }
}

@media (max-width: 767px) {
  .value-grid {
    gap: 14px;
  }

  .value-card {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .value-card__top {
    margin-bottom: 18px;
  }

  .value-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: .64rem;
  }

  .value-index {
    min-width: 38px;
    height: 28px;
    font-size: .66rem;
  }

  .icon-shell {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .value-card h3 {
    font-size: 1.08rem;
  }

  .value-card p {
    font-size: .9rem;
    line-height: 1.58;
  }

  .value-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-card:hover {
    transform: none;
  }
}


/* V40 — navegação unificada na homepage */
#servicos,
#contactos {
  scroll-margin-top: calc(var(--header-h) + 30px);
}


/* =========================================================
   V41 — alinhamento números + ícones com a secção Como funciona
   ========================================================= */

.value-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.value-index {
  position: static;
  margin-left: 0;
  min-width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(7,26,43,.30);
  font-family: var(--sans);
  font-size: .78rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .16em;
}

.value-card .icon-shell {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(8,118,201,.14);
  border-radius: 16px;
  background: rgba(234,246,251,.86);
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  transition: transform .45s cubic-bezier(.16,1,.3,1), color .3s ease, background .3s ease, border-color .3s ease;
}

.value-card .icon-shell svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-pill {
  margin-bottom: 14px;
}

.value-card:hover .icon-shell,
.value-card:focus-within .icon-shell {
  transform: translateY(-3px) rotate(-3deg);
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 767px) {
  .value-card__top {
    gap: 14px;
    margin-bottom: 14px;
  }

  .value-index {
    font-size: .72rem;
  }

  .value-card .icon-shell {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .value-card .icon-shell svg {
    width: 21px;
    height: 21px;
  }
}


/* =========================================================
   V42 — ícones premium + remoção da numeração
   ========================================================= */

.value-card__top,
.process-step__top {
  justify-content: flex-end;
}

.value-index,
.process-step__number {
  display: none !important;
}

.value-card .icon-shell,
.process-step__icon {
  position: relative;
  isolation: isolate;
  width: 58px;
  height: 58px;
  overflow: visible;
  border: 1px solid rgba(94, 190, 224, .34);
  border-radius: 19px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.98), rgba(255,255,255,.58) 34%, transparent 56%),
    linear-gradient(145deg, rgba(236,249,254,.98) 0%, rgba(214,239,249,.94) 52%, rgba(242,250,253,.98) 100%);
  color: #0876c9;
  box-shadow:
    0 15px 34px rgba(8,118,201,.14),
    0 4px 12px rgba(7,26,43,.06),
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -12px 26px rgba(101,199,230,.12);
  transform: translateZ(0);
  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    color .35s ease,
    border-color .35s ease,
    background .45s ease,
    box-shadow .55s cubic-bezier(.16,1,.3,1);
}

.value-card .icon-shell::before,
.process-step__icon::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(101,199,230,.70), rgba(8,118,201,.22), rgba(255,255,255,.9));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .88;
  pointer-events: none;
}

.value-card .icon-shell::after,
.process-step__icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 1;
  border-radius: 13px;
  background: radial-gradient(circle, rgba(101,199,230,.30), rgba(8,118,201,.08) 52%, transparent 74%);
  filter: blur(8px);
  opacity: .6;
  transform: scale(.82);
  transition: opacity .4s ease, transform .55s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

.value-card .icon-shell svg,
.process-step__icon svg {
  position: relative;
  z-index: 2;
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
  filter: drop-shadow(0 3px 7px rgba(8,118,201,.18));
  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    filter .4s ease;
}

.value-card:hover .icon-shell,
.value-card:focus-within .icon-shell,
.process-step:hover .process-step__icon,
.process-step:focus-visible .process-step__icon {
  transform: translateY(-5px) rotate(-2deg) scale(1.045);
  border-color: rgba(101,199,230,.65);
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(145deg, #0a87db 0%, #0876c9 46%, #075b9d 100%);
  box-shadow:
    0 20px 42px rgba(8,118,201,.27),
    0 8px 18px rgba(7,26,43,.10),
    0 0 0 7px rgba(101,199,230,.10),
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -14px 28px rgba(3,51,88,.18);
}

.value-card:hover .icon-shell::after,
.value-card:focus-within .icon-shell::after,
.process-step:hover .process-step__icon::after,
.process-step:focus-visible .process-step__icon::after {
  opacity: 1;
  transform: scale(1.18);
}

.value-card:hover .icon-shell svg,
.value-card:focus-within .icon-shell svg,
.process-step:hover .process-step__icon svg,
.process-step:focus-visible .process-step__icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.14));
}

@media (max-width: 767px) {
  .value-card .icon-shell,
  .process-step__icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
  }

  .value-card .icon-shell svg,
  .process-step__icon svg {
    width: 23px;
    height: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-card .icon-shell,
  .process-step__icon,
  .value-card .icon-shell svg,
  .process-step__icon svg,
  .value-card .icon-shell::after,
  .process-step__icon::after {
    transition: none;
  }

  .value-card:hover .icon-shell,
  .value-card:focus-within .icon-shell,
  .process-step:hover .process-step__icon,
  .process-step:focus-visible .process-step__icon {
    transform: none;
  }
}

/* =========================================================
   V47 — FAQ Studio / premium clarity
   ========================================================= */

.faq-studio {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 6%, rgba(101,199,230,.16), transparent 28%),
    linear-gradient(180deg, #f5f9fc 0%, #edf4f8 100%);
}

.faq-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7,26,43,.08) .75px, transparent .75px);
  background-size: 18px 18px;
  opacity: .22;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 48%);
  mask-image: linear-gradient(to bottom, #000, transparent 48%);
  pointer-events: none;
}

.faq-studio .container {
  position: relative;
  z-index: 1;
}

.faq-studio__header {
  display: grid;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.faq-studio__header .eyebrow {
  margin-bottom: 17px;
}

.faq-studio__header h2 {
  max-width: 13ch;
  color: var(--navy);
  font-size: clamp(2.55rem, 5.3vw, 5.15rem);
  line-height: .94;
  letter-spacing: -.06em;
}

.faq-studio__header > p {
  max-width: 48ch;
  color: #526a79;
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}

.faq-studio__panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(7,26,43,.11);
  border-radius: clamp(24px, 3vw, 34px);
  background: #fff;
  box-shadow:
    0 34px 90px rgba(7,26,43,.13),
    0 4px 14px rgba(7,26,43,.05),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.faq-studio__support {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(101,199,230,.20), transparent 34%),
    linear-gradient(145deg, #0a2a43 0%, #061a2c 68%, #041521 100%);
  color: #fff;
}

.faq-studio__support::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -115px;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(101,199,230,.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(101,199,230,.035),
    0 0 0 70px rgba(101,199,230,.025);
  pointer-events: none;
}

.faq-studio__support > * {
  position: relative;
  z-index: 1;
}

.faq-studio__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.76);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.faq-studio__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(101,199,230,.12);
}

.faq-studio__support h3 {
  max-width: 11ch;
  margin-top: clamp(32px, 5vw, 54px);
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.faq-studio__support-top > p {
  max-width: 39ch;
  margin-top: 19px;
  color: rgba(255,255,255,.59);
  font-size: .94rem;
  line-height: 1.7;
}

.faq-studio__benefits {
  display: grid;
  gap: 10px;
  margin: clamp(30px, 5vw, 56px) 0 28px;
}

.faq-studio__benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.76);
  font-size: .79rem;
  font-weight: 700;
}

.faq-studio__benefits svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid rgba(101,199,230,.24);
  border-radius: 50%;
  background: rgba(101,199,230,.08);
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-studio__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 14px 14px 14px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .25s ease, border-color .25s ease;
}

.faq-studio__contact span {
  display: grid;
  gap: 3px;
}

.faq-studio__contact small {
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.faq-studio__contact strong {
  color: #fff;
  font-size: .9rem;
}

.faq-studio__contact b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #fff;
  color: var(--navy);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .25s ease, color .25s ease;
}

.faq-studio__contact b svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-studio__contact:hover,
.faq-studio__contact:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(101,199,230,.30);
  background: rgba(255,255,255,.10);
  outline: none;
}

.faq-studio__contact:hover b,
.faq-studio__contact:focus-visible b {
  transform: rotate(5deg);
  background: var(--cyan);
  color: var(--navy);
}

.faq-studio__content {
  padding: clamp(12px, 2vw, 22px) clamp(20px, 4vw, 52px) clamp(20px, 3vw, 34px);
}

.faq-studio__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  border-bottom: 1px solid rgba(7,26,43,.11);
}

.faq-studio__content-head span {
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.faq-studio__content-head small {
  color: #83929c;
  font-size: .74rem;
  font-weight: 650;
}

.faq-studio__list {
  display: grid;
}

.faq-studio__item {
  border-bottom: 1px solid rgba(7,26,43,.11);
}

.faq-studio__item:last-child {
  border-bottom: 0;
}

.faq-studio__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 20px;
  min-height: 98px;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  outline: none;
}

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

.faq-studio__item summary:focus-visible {
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px rgba(8,118,201,.25);
}

.faq-studio__question {
  display: grid;
  gap: 7px;
  color: #10283a;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: -.02em;
  transition: color .25s ease, transform .3s cubic-bezier(.16,1,.3,1);
}

.faq-studio__question small {
  color: #748894;
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.faq-studio__item:hover .faq-studio__question {
  transform: translateX(4px);
  color: var(--blue-dark);
}

.faq-studio__item[open] .faq-studio__question {
  color: var(--blue);
}

.faq-studio__toggle {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(7,26,43,.13);
  border-radius: 10px;
  background: #f5f8fa;
  color: var(--navy);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .25s ease, background .25s ease, color .25s ease;
}

.faq-studio__toggle i {
  position: absolute;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .32s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}

.faq-studio__toggle i:last-child {
  transform: rotate(90deg);
}

.faq-studio__item[open] .faq-studio__toggle {
  transform: rotate(180deg);
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.faq-studio__item[open] .faq-studio__toggle i:last-child {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-studio__answer {
  padding: 0 56px 26px 0;
}

.faq-studio__answer > div {
  padding-left: 18px;
  border-left: 2px solid rgba(8,118,201,.24);
}

.faq-studio__answer p {
  max-width: 62ch;
  color: #526a79;
  font-size: .91rem;
  line-height: 1.72;
}

@media (min-width: 900px) {
  .faq-studio__header {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  }

  .faq-studio__panel {
    grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 899px) {
  .faq-studio__support {
    min-height: auto;
  }

  .faq-studio__support h3 {
    max-width: 15ch;
  }

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

@media (max-width: 767px) {
  .faq-studio {
    padding: 72px 0 78px;
  }

  .faq-studio__header {
    gap: 17px;
    margin-bottom: 30px;
  }

  .faq-studio__header .eyebrow {
    margin-bottom: 14px;
  }

  .faq-studio__header h2 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 12vw, 3.55rem);
    line-height: .96;
  }

  .faq-studio__header > p {
    font-size: .92rem;
    line-height: 1.64;
  }

  .faq-studio__panel {
    border-radius: 24px;
  }

  .faq-studio__support {
    padding: 26px 22px 22px;
  }

  .faq-studio__support h3 {
    margin-top: 30px;
    font-size: 2rem;
  }

  .faq-studio__support-top > p {
    margin-top: 15px;
    font-size: .88rem;
    line-height: 1.62;
  }

  .faq-studio__benefits {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 26px 0 22px;
  }

  .faq-studio__content {
    padding: 4px 18px 12px;
  }

  .faq-studio__content-head {
    min-height: 62px;
  }

  .faq-studio__content-head small {
    display: none;
  }

  .faq-studio__item summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 14px;
    min-height: 88px;
    padding: 18px 0;
  }

  .faq-studio__question {
    gap: 6px;
    font-size: .98rem;
    line-height: 1.34;
  }

  .faq-studio__answer {
    padding: 0 42px 22px 0;
  }

  .faq-studio__answer > div {
    padding-left: 14px;
  }

  .faq-studio__answer p {
    font-size: .87rem;
    line-height: 1.65;
  }
}

@media (max-width: 380px) {
  .faq-studio__support,
  .faq-studio__content {
    padding-left: 17px;
    padding-right: 17px;
  }

  .faq-studio__contact {
    border-radius: 14px;
  }

  .faq-studio__question {
    font-size: .93rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-studio__contact,
  .faq-studio__contact b,
  .faq-studio__question,
  .faq-studio__toggle,
  .faq-studio__toggle i {
    transition: none;
  }
}


/* V47.1 — Rosa content corrections (scoped, no unrelated layout changes) */
.vehicle-bottom--quote-only {
  grid-template-columns: 1fr !important;
}
.vehicle-bottom--quote-only .btn {
  justify-self: start;
}
.process-support-copy {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(7,26,43,.1);
}
.process-support-copy h3 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}
.process-support-copy p {
  max-width: 570px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.62;
}
.process-proof-visual__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.process-proof-visual__cta:hover,
.process-proof-visual__cta:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  color: var(--navy);
  outline: none;
}
.conversion-benefits {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.conversion-benefits h3 {
  color: #fff;
  font-size: 1rem;
}
.conversion-benefits ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.conversion-benefits li {
  position: relative;
  padding-left: 25px;
  color: rgba(255,255,255,.76);
  font-size: .86rem;
  line-height: 1.5;
}
.conversion-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}
.contact-point-static {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.contact-point-static small {
  color: rgba(255,255,255,.48);
  font-size: .67rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-point-static strong {
  color: #fff;
  font-size: .92rem;
}
.conversion-disclaimer {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  line-height: 1.55;
}
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.conversion-form textarea,
.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}
.conversion-form .field--checkbox,
.quote-form .field--checkbox {
  position: relative;
  grid-template-columns: 18px minmax(0, 1fr);
  display: grid;
}
.conversion-form .field--checkbox .field-error,
.quote-form .field--checkbox .field-error {
  grid-column: 2;
}
@media (max-width: 759px) {
  .process-support-copy {
    padding-top: 16px;
  }
  .process-step__body {
    padding-top: 40px;
  }
  .process-step__label {
    line-height: 1.35;
  }
  .conversion-benefits {
    margin-top: 26px;
  }
  .conversion-form .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}


/* ==========================================================
   Section 2 — Missão, Visão e Valores
   ========================================================== */
.purpose {
  padding: clamp(58px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(101, 199, 230, .13), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  overflow: hidden;
}

.purpose::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(8, 118, 201, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 118, 201, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.purpose__shell {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 5.2vw, 68px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: clamp(28px, 3vw, 42px);
  background:
    radial-gradient(circle at 92% 3%, rgba(101, 199, 230, .22), transparent 26%),
    linear-gradient(135deg, #061724 0%, #0a253a 56%, #0d3049 100%);
  box-shadow: 0 34px 90px rgba(7, 26, 43, .2);
}

.purpose__shell::before,
.purpose__shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.purpose__shell::before {
  width: 370px;
  height: 370px;
  top: -255px;
  right: 9%;
  border: 1px solid rgba(101, 199, 230, .18);
  box-shadow: 0 0 0 64px rgba(101, 199, 230, .035), 0 0 0 128px rgba(101, 199, 230, .018);
}

.purpose__shell::after {
  width: 240px;
  height: 240px;
  left: -170px;
  bottom: -145px;
  background: rgba(8, 118, 201, .22);
  filter: blur(60px);
}

.purpose__intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  padding-bottom: clamp(30px, 5vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.purpose__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.purpose__since {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.purpose__since span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(101, 199, 230, .1);
}

.purpose__headline h2 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(2.55rem, 5.2vw, 4.85rem);
}

.purpose__headline > p {
  max-width: 690px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.purpose__manifesto {
  position: relative;
  z-index: 1;
}

.purpose-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.45fr) 52px;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: padding-left .28s ease, border-color .28s ease;
}

.purpose-item:last-child { border-bottom: 0; }

.purpose-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 2px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0;
  transform: scaleY(.45);
  transition: opacity .28s ease, transform .28s ease;
}

.purpose-item__identity {
  display: grid;
  grid-template-columns: 34px 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.purpose-item__number {
  color: rgba(255, 255, 255, .36);
  font-family: var(--serif);
  font-size: .82rem;
  font-style: italic;
}

.purpose-item__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 199, 230, .24);
  border-radius: 16px;
  background: rgba(101, 199, 230, .075);
  color: var(--cyan);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}

.purpose-item__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purpose-item h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.035em;
}

.purpose-item__copy {
  max-width: 760px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(.96rem, 1.4vw, 1.08rem);
  line-height: 1.72;
}

.purpose-item__copy--values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.purpose-item__copy--values i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
}

.purpose-item__mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

.purpose-item__mark::before,
.purpose-item__mark i {
  content: "";
  position: absolute;
  width: 13px;
  height: 1px;
  background: rgba(255, 255, 255, .72);
}

.purpose-item__mark i { transform: rotate(90deg); }

@media (hover: hover) and (pointer: fine) {
  .purpose-item:hover {
    padding-left: 18px;
    border-color: rgba(101, 199, 230, .28);
  }

  .purpose-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .purpose-item:hover .purpose-item__icon {
    transform: translateY(-2px);
    border-color: rgba(101, 199, 230, .5);
    background: rgba(101, 199, 230, .13);
  }

  .purpose-item:hover .purpose-item__mark {
    transform: rotate(45deg);
    border-color: var(--cyan);
    background: rgba(101, 199, 230, .1);
  }
}

@media (min-width: 900px) {
  .purpose__intro {
    grid-template-columns: minmax(220px, .48fr) minmax(0, 1.52fr);
    align-items: start;
  }
}

@media (max-width: 899px) {
  .purpose-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .purpose-item__mark { display: none; }
}

@media (max-width: 600px) {
  .purpose {
    padding: 38px 0 54px;
  }

  .purpose__shell {
    width: min(calc(100% - 20px), var(--container));
    padding: 28px 22px 16px;
    border-radius: 28px;
  }

  .purpose__intro {
    gap: 28px;
    padding-bottom: 30px;
  }

  .purpose__label {
    gap: 16px;
  }

  .purpose__headline h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .purpose__headline > p {
    margin-top: 16px;
    font-size: .97rem;
  }

  .purpose-item {
    padding: 26px 0;
  }

  .purpose-item__identity {
    grid-template-columns: 28px 44px minmax(0, 1fr);
    gap: 11px;
  }

  .purpose-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .purpose-item h3 {
    font-size: 1.72rem;
  }

  .purpose-item__copy {
    font-size: .94rem;
    line-height: 1.66;
  }

  .purpose-item__copy--values {
    gap: 10px 12px;
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .purpose-item,
  .purpose-item::before,
  .purpose-item__icon,
  .purpose-item__mark {
    transition: none !important;
  }
}

@media (max-width: 767px) {
  .process-proof-visual > picture img.process-proof-visual__brand-image { object-position: 50% top; }
}


/* =========================================================
   V1.0.3 — Hero spacing refinement + mobile preview balance
   ========================================================= */
@media (min-width: 768px) {
  .hero.hero--metallic {
    padding-top: calc(var(--header-h) + 54px);
  }

  .hero.hero--metallic .hero-layout {
    min-height: calc(clamp(640px, 80svh, 760px) - var(--header-h) - 92px);
  }

  .hero.hero--metallic .hero-copy {
    width: min(38%, 560px);
    max-width: 560px;
    padding: 26px 0 52px;
  }

  .hero.hero--metallic .hero-visual {
    top: 10px;
    bottom: 0;
  }

  .hero.hero--metallic .hero-visual__parallax {
    inset: 0;
  }

  .hero.hero--metallic .hero-picture {
    align-items: flex-start;
    justify-content: flex-end;
  }

  .hero.hero--metallic .hero-picture img {
    width: min(78vw, 1480px);
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    transform: translate3d(2.5%, 6.5%, 0);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 11%, #000 24%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 11%, #000 24%, #000 100%);
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .hero.hero--metallic {
    padding-top: calc(var(--header-h) + 48px);
  }

  .hero.hero--metallic .hero-copy {
    width: min(44%, 500px);
    max-width: 500px;
  }

  .hero.hero--metallic .hero-picture img {
    width: min(86vw, 1180px);
    transform: translate3d(5%, 7%, 0);
  }
}

@media (min-width: 1400px) {
  .hero.hero--metallic .hero-picture img {
    width: min(76vw, 1560px);
    transform: translate3d(3%, 6%, 0);
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic {
    min-height: 740px;
    padding: calc(var(--header-h) + 18px) 0 38px;
  }

  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 26px), 620px);
    min-height: calc(max(740px, 100svh) - 42px);
    padding-top: clamp(360px, 49svh, 418px);
  }

  .hero.hero--metallic .hero-copy {
    max-width: 332px;
    padding-bottom: 22px;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(1.96rem, 8.5vw, 2.42rem);
  }

  .hero.hero--metallic .hero-lead {
    max-width: 29ch;
    margin-top: 15px;
    font-size: clamp(.86rem, 3.4vw, .95rem);
  }

  .hero.hero--metallic .hero-actions {
    max-width: 332px;
    margin-top: 20px;
  }

  .hero.hero--metallic .hero-visual {
    top: 8px;
    height: clamp(318px, 42svh, 368px);
  }

  .hero.hero--metallic .hero-visual__parallax {
    inset: 0 -2% 0;
  }

  .hero.hero--metallic .hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 46%;
    transform: scale(1.01);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .purpose__headline h2 {
    font-size: clamp(1.98rem, 10.2vw, 2.78rem);
    line-height: .96;
  }

  .purpose__headline > p {
    font-size: .94rem;
    line-height: 1.6;
  }
}

@media (max-width: 390px) {
  .hero.hero--metallic .hero-layout {
    padding-top: clamp(344px, 48svh, 400px);
  }

  .hero.hero--metallic .hero-copy {
    max-width: 316px;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(1.84rem, 8.25vw, 2.18rem);
  }

  .hero.hero--metallic .hero-actions {
    gap: 9px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 52px;
    font-size: .77rem;
  }
}


/* =========================================================
   V1.1.0 — Maintainability, validation and utility templates
   ========================================================= */
.form-status {
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(172, 48, 48, .2);
  border-radius: 14px;
  background: rgba(172, 48, 48, .075);
  color: #8a2020;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-hero__eyebrow { color: var(--cyan); }

.content-page {
  padding: calc(var(--header-h) + 80px) 0 100px;
}

.legal-page__section {
  padding-top: calc(var(--header-h) + 64px);
}

.legal-page__container { max-width: 780px; }
.legal-page__title {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.3vw, 4.8rem);
}
.legal-page__paragraph { margin-bottom: 16px; }

.error-page {
  padding: calc(var(--header-h) + 100px) 0 120px;
  text-align: center;
}
.error-page__container { max-width: 720px; }

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


/* =========================================================
   V1.1.1 — hero flush alignment fix (desktop + mobile)
   ========================================================= */
/* Remove the visible grey band between header and hero image,
   and restore a cleaner, better framed vehicle composition. */
@media (min-width: 768px) {
  .hero.hero--metallic {
    padding-top: 0;
    padding-bottom: 48px;
    overflow: hidden;
  }

  .hero.hero--metallic .hero-layout {
    min-height: clamp(660px, 78svh, 760px);
    padding-top: calc(var(--header-h) + 34px);
    align-items: center;
  }

  .hero.hero--metallic .hero-copy {
    position: relative;
    z-index: 6;
    width: min(36%, 540px);
    max-width: 540px;
    padding: 18px 0 36px;
  }

  .hero.hero--metallic .hero-visual {
    inset: 0;
    top: 0;
    bottom: 0;
    height: auto;
  }

  .hero.hero--metallic .hero-visual__parallax {
    inset: 0;
    overflow: hidden;
  }

  .hero.hero--metallic .hero-picture {
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
  }

  .hero.hero--metallic .hero-picture img {
    width: min(73vw, 1120px);
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: top right;
    transform: translate3d(1.5%, 0, 0);
    filter: saturate(.98) contrast(1.01) brightness(1);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.26) 10%, #000 23%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.26) 10%, #000 23%, #000 100%);
  }
}

@media (min-width: 1280px) {
  .hero.hero--metallic .hero-picture img {
    width: min(72vw, 1180px);
    transform: translate3d(2.5%, 0, 0);
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .hero.hero--metallic .hero-layout {
    min-height: 640px;
    padding-top: calc(var(--header-h) + 28px);
  }

  .hero.hero--metallic .hero-copy {
    width: 44%;
    max-width: 470px;
  }

  .hero.hero--metallic .hero-picture img {
    width: min(77vw, 900px);
    transform: translate3d(5%, 0, 0);
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic {
    min-height: max(790px, 100svh);
    padding: 0 0 40px;
    overflow: hidden;
  }

  .hero.hero--metallic::before {
    background:
      linear-gradient(180deg,
        rgba(26,33,40,0) 0%,
        rgba(26,33,40,0) 32%,
        rgba(31,38,46,.12) 44%,
        rgba(34,41,49,.68) 58%,
        rgba(37,44,52,.94) 74%,
        rgba(37,44,52,.985) 100%);
  }

  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 28px), 520px);
    min-height: calc(max(790px, 100svh) - 40px);
    padding-top: clamp(322px, 44svh, 388px);
    align-items: flex-end;
  }

  .hero.hero--metallic .hero-copy {
    max-width: 348px;
    padding: 0 0 26px;
  }

  .hero.hero--metallic .hero-visual {
    inset: 0 0 auto;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    width: auto;
    top: 0;
    height: clamp(310px, 41svh, 360px);
    overflow: hidden;
  }

  .hero.hero--metallic .hero-visual__parallax {
    inset: 0;
    overflow: hidden;
  }

  .hero.hero--metallic .hero-picture {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #ebeef2;
  }

  .hero.hero--metallic .hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    filter: saturate(.98) contrast(1.01) brightness(1);
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 390px) {
  .hero.hero--metallic .hero-layout {
    padding-top: clamp(308px, 43svh, 366px);
  }

  .hero.hero--metallic .hero-copy {
    max-width: 324px;
  }

  .hero.hero--metallic .hero-actions {
    max-width: 324px;
  }
}

/* =========================================================
   V1.1.2 — background oficial do hero desktop
   ========================================================= */
@media (min-width: 768px) {
  .hero.hero--metallic .hero-visual,
  .hero.hero--metallic .hero-visual__parallax,
  .hero.hero--metallic .hero-picture {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero.hero--metallic .hero-picture {
    display: block;
    overflow: hidden;
  }

  .hero.hero--metallic .hero-picture img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
    filter: saturate(.99) contrast(1.01) brightness(1);
    -webkit-mask-image: none;
    mask-image: none;
  }
}


/* =========================================================
   V1.1.3 — Hero desktop: hierarquia, contraste e full-bleed
   =========================================================
   Mantém o asset aprovado e reorganiza apenas composição,
   legibilidade e área segura da copy.
   ========================================================= */
@media (min-width: 768px) {
  .hero.hero--metallic {
    min-height: clamp(650px, 78svh, 760px);
    padding: 0;
    overflow: hidden;
    background: #eef2f5;
  }

  /* O background passa a ocupar toda a largura do viewport,
     enquanto a copy continua alinhada ao contentor do site. */
  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 72px), 1440px);
    min-height: clamp(650px, 78svh, 760px);
    padding-top: calc(var(--header-h) + var(--topbar-h) + 24px);
    padding-bottom: 42px;
    display: flex;
    align-items: center;
  }

  .hero.hero--metallic .hero-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    width: auto;
    height: auto;
    z-index: 1;
  }

  .hero.hero--metallic .hero-visual__parallax,
  .hero.hero--metallic .hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero.hero--metallic .hero-picture {
    display: block;
    overflow: hidden;
  }

  .hero.hero--metallic .hero-picture img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 55% 50%;
    transform: none;
    filter: saturate(.98) contrast(1.015) brightness(1.01);
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Gradiente de proteção garante contraste sem criar um card
     ou esconder completamente a fotografia. */
  .hero.hero--metallic::before {
    z-index: 3;
    background:
      linear-gradient(90deg,
        rgba(244,248,251,.99) 0%,
        rgba(244,248,251,.97) 24%,
        rgba(244,248,251,.88) 34%,
        rgba(244,248,251,.50) 44%,
        rgba(244,248,251,.10) 57%,
        rgba(244,248,251,0) 70%);
  }

  .hero.hero--metallic::after {
    z-index: 2;
    background:
      linear-gradient(180deg,
        rgba(7,26,43,.025) 0%,
        transparent 35%,
        rgba(7,26,43,.035) 100%);
  }

  .hero.hero--metallic .hero-copy {
    position: relative;
    z-index: 6;
    width: min(45%, 640px);
    max-width: 640px;
    min-height: 0;
    padding: 18px 0 32px;
    color: var(--navy);
    text-align: left;
  }

  .hero.hero--metallic .hero-eyebrow {
    margin-bottom: 24px;
    color: var(--blue);
    font-size: .69rem;
    letter-spacing: .17em;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-eyebrow__line {
    width: 42px;
    background: var(--blue);
  }

  .hero.hero--metallic .hero-headline {
    max-width: 640px;
    gap: .09em;
    color: var(--navy);
    font-size: clamp(2.75rem, 4.15vw, 4.05rem);
    line-height: .91;
    letter-spacing: -.035em;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-line {
    white-space: nowrap;
  }

  .hero.hero--metallic .hero-line--accent {
    color: var(--blue);
  }

  .hero.hero--metallic .hero-lead {
    max-width: 44ch;
    margin-top: 26px;
    color: #536576;
    font-size: clamp(.98rem, 1.05vw, 1.08rem);
    line-height: 1.56;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-lead strong {
    color: var(--navy);
  }

  .hero.hero--metallic .hero-actions {
    width: min(100%, 500px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 54px;
    padding: 15px 22px;
    border-radius: 14px;
    font-size: .88rem;
  }

  .hero.hero--metallic .hero-secondary-cta {
    color: var(--navy);
    background: rgba(255,255,255,.88);
    border-color: rgba(7,26,43,.14);
    box-shadow: 0 12px 28px rgba(7,26,43,.09), inset 0 1px 0 rgba(255,255,255,.96);
  }

  .hero.hero--metallic .hero-primary-cta,
  .hero.hero--metallic .hero-primary-cta::after {
    color: #fff;
    background: linear-gradient(135deg, #0a7dcc 0%, #0769b0 100%);
    border-color: rgba(7,105,176,.88);
  }

  .hero.hero--metallic .hero-secondary-cta:hover,
  .hero.hero--metallic .hero-secondary-cta:focus-visible {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 48px), 1060px);
  }

  .hero.hero--metallic .hero-copy {
    width: min(48%, 550px);
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.35rem, 4.45vw, 3.25rem);
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 62% 50%;
  }

  .hero.hero--metallic::before {
    background:
      linear-gradient(90deg,
        rgba(244,248,251,.99) 0%,
        rgba(244,248,251,.96) 29%,
        rgba(244,248,251,.78) 41%,
        rgba(244,248,251,.20) 59%,
        transparent 73%);
  }
}

@media (min-width: 1500px) {
  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 96px), 1500px);
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 54% 50%;
  }
}


/* =========================================================
   V1.1.4 — restore approved hero palette + CTA language
   and refine vehicle framing (slight zoom, shifted right)
   ========================================================= */
@media (min-width: 768px) {
  .hero.hero--metallic {
    background: #42505d;
  }

  .hero.hero--metallic .hero-layout {
    padding-top: calc(var(--header-h) + var(--topbar-h) + 18px);
    padding-bottom: 34px;
  }

  .hero.hero--metallic::before {
    z-index: 3;
    background:
      linear-gradient(90deg,
        rgba(33,45,57,.82) 0%,
        rgba(33,45,57,.74) 18%,
        rgba(33,45,57,.56) 31%,
        rgba(33,45,57,.28) 42%,
        rgba(33,45,57,.08) 54%,
        rgba(33,45,57,0) 66%);
  }

  .hero.hero--metallic::after {
    z-index: 2;
    background:
      linear-gradient(180deg,
        rgba(5,16,27,.04) 0%,
        transparent 35%,
        rgba(5,16,27,.08) 100%);
  }

  .hero.hero--metallic .hero-copy {
    width: min(42%, 590px);
    max-width: 590px;
    color: #fff;
  }

  .hero.hero--metallic .hero-eyebrow {
    color: #7fb3e0;
  }

  .hero.hero--metallic .hero-eyebrow__line {
    background: #6fa8dc;
  }

  .hero.hero--metallic .hero-headline {
    color: #fff;
    max-width: 12.4ch;
    gap: .08em;
    font-size: clamp(2.7rem, 4.2vw, 4rem);
    line-height: .92;
    letter-spacing: -.02em;
  }

  .hero.hero--metallic .hero-line--accent {
    color: #6fa8dc;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 43ch;
    margin-top: 24px;
    color: #e6eaee;
    font-size: clamp(.98rem, 1.02vw, 1.05rem);
    line-height: 1.5;
  }

  .hero.hero--metallic .hero-lead strong {
    color: #fff;
  }

  .hero.hero--metallic .hero-actions {
    width: min(100%, 540px);
    gap: 16px;
    margin-top: 32px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 54px;
    padding: 16px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-size: .88rem;
    box-shadow: 0 12px 28px rgba(24,63,96,.22), inset 0 1px 0 rgba(255,255,255,.16);
  }

  .hero.hero--metallic .hero-secondary-cta {
    color: #fff;
    background: #4a7fb5;
    border-color: rgba(255,255,255,.14);
  }

  .hero.hero--metallic .hero-primary-cta,
  .hero.hero--metallic .hero-primary-cta::after {
    color: #fff;
    background: #2e6da4;
    border-color: rgba(255,255,255,.14);
  }

  .hero.hero--metallic .hero-primary-cta::before,
  .hero.hero--metallic .hero-primary-cta::after {
    display: none;
  }

  .hero.hero--metallic .hero-actions .btn:hover,
  .hero.hero--metallic .hero-actions .btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.28);
    box-shadow: 0 18px 34px rgba(24,63,96,.30), 0 0 0 4px rgba(127,179,224,.08), inset 0 1px 0 rgba(255,255,255,.22);
  }

  .hero.hero--metallic .hero-picture img {
    object-fit: cover;
    object-position: 63% 50%;
    transform: scale(1.045);
    filter: saturate(.985) contrast(1.01) brightness(1.01);
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  .hero.hero--metallic .hero-copy {
    width: min(45%, 520px);
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.32rem, 4.25vw, 3.2rem);
    max-width: 12.2ch;
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 67% 50%;
    transform: scale(1.06);
  }
}

@media (min-width: 1400px) {
  .hero.hero--metallic .hero-picture img {
    object-position: 61% 50%;
    transform: scale(1.04);
  }
}


/* =========================================================
   V1.1.5 — hero desktop redesign for white-background asset
   Senior UI/UX refinement: safer contrast, better composition,
   trucks shifted right, gentle zoom, restored preloader icon.
   ========================================================= */
@media (min-width: 768px) {
  .hero.hero--metallic {
    min-height: clamp(660px, 79svh, 770px);
    padding: 0;
    overflow: hidden;
    background: #e8edf1;
  }

  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 80px), 1440px);
    min-height: clamp(660px, 79svh, 770px);
    padding-top: calc(var(--header-h) + var(--topbar-h) + 18px);
    padding-bottom: 36px;
    display: flex;
    align-items: center;
  }

  .hero.hero--metallic .hero-visual {
    position: absolute;
    inset: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    width: auto;
    height: auto;
    z-index: 1;
  }

  .hero.hero--metallic .hero-visual__parallax,
  .hero.hero--metallic .hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero.hero--metallic .hero-picture {
    overflow: hidden;
  }

  .hero.hero--metallic .hero-picture img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 69% 50%;
    transform: scale(1.085);
    filter: saturate(.99) contrast(1.015) brightness(1);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero.hero--metallic::before {
    z-index: 3;
    background:
      linear-gradient(90deg,
        rgba(236,241,245,.98) 0%,
        rgba(236,241,245,.96) 16%,
        rgba(236,241,245,.90) 28%,
        rgba(236,241,245,.72) 38%,
        rgba(236,241,245,.36) 48%,
        rgba(236,241,245,.08) 57%,
        rgba(236,241,245,0) 65%);
  }

  .hero.hero--metallic::after {
    z-index: 2;
    background:
      radial-gradient(circle at 18% 32%, rgba(255,255,255,.18) 0%, transparent 34%),
      linear-gradient(180deg, rgba(7,26,43,.02) 0%, rgba(7,26,43,.045) 100%);
  }

  .hero.hero--metallic .hero-copy {
    position: relative;
    z-index: 6;
    width: min(39%, 560px);
    max-width: 560px;
    padding: 22px 0 28px;
    color: var(--navy);
    text-align: left;
  }

  .hero.hero--metallic .hero-eyebrow {
    margin-bottom: 24px;
    color: #4a96d8;
    font-size: .7rem;
    letter-spacing: .18em;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-eyebrow__line {
    width: 46px;
    background: #4a96d8;
  }

  .hero.hero--metallic .hero-headline {
    max-width: 10.7ch;
    gap: .08em;
    color: #0b2841;
    font-size: clamp(2.8rem, 4.05vw, 4rem);
    line-height: .92;
    letter-spacing: -.03em;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-line {
    white-space: nowrap;
  }

  .hero.hero--metallic .hero-line--accent {
    color: #1f83d8;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 36ch;
    margin-top: 24px;
    color: #5b6e7f;
    font-size: clamp(.98rem, 1vw, 1.05rem);
    line-height: 1.54;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-lead strong {
    color: #0b2841;
    font-weight: 800;
  }

  .hero.hero--metallic .hero-actions {
    width: min(100%, 560px);
    gap: 16px;
    margin-top: 30px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 56px;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: .88rem;
    border: 1px solid rgba(10,77,135,.14);
    box-shadow: 0 14px 30px rgba(18,62,98,.14), inset 0 1px 0 rgba(255,255,255,.12);
  }

  .hero.hero--metallic .hero-secondary-cta,
  .hero.hero--metallic .hero-primary-cta,
  .hero.hero--metallic .hero-primary-cta::after {
    color: #fff;
    background: linear-gradient(135deg, #4a7fb5 0%, #2f6fae 100%);
    border-color: rgba(18,86,145,.54);
  }

  .hero.hero--metallic .hero-primary-cta::before,
  .hero.hero--metallic .hero-primary-cta::after {
    display: none;
  }

  .hero.hero--metallic .hero-actions .btn:hover,
  .hero.hero--metallic .hero-actions .btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(18,62,98,.18), 0 0 0 4px rgba(74,127,181,.10), inset 0 1px 0 rgba(255,255,255,.16);
    border-color: rgba(18,86,145,.68);
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  .hero.hero--metallic .hero-layout {
    width: min(calc(100% - 48px), 1080px);
  }

  .hero.hero--metallic .hero-copy {
    width: min(43%, 500px);
    max-width: 500px;
  }

  .hero.hero--metallic .hero-headline {
    max-width: 10.9ch;
    font-size: clamp(2.34rem, 4.2vw, 3.28rem);
  }

  .hero.hero--metallic .hero-picture img {
    object-position: 73% 50%;
    transform: scale(1.11);
  }
}

@media (min-width: 1400px) {
  .hero.hero--metallic .hero-picture img {
    object-position: 67% 50%;
    transform: scale(1.075);
  }
}


/* =========================================================
   V1.1.6 — seamless topbar / header / hero transition
   Keeps the approved layout intact and removes hard visual cuts.
   ========================================================= */
.topbar {
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 rgba(101,199,230,.14);
}

.topbar::after {
  opacity: .62;
  background: linear-gradient(90deg,
    transparent 4%,
    rgba(101,199,230,.10) 22%,
    rgba(101,199,230,.34) 50%,
    rgba(101,199,230,.10) 78%,
    transparent 96%);
}

.home .site-header {
  border-bottom: 0;
  background: rgba(250,252,254,.955);
  box-shadow:
    0 1px 0 rgba(7,26,43,.035),
    0 7px 22px rgba(7,26,43,.045);
}

/* Soft visual bridge over the first pixels of the hero. */
.home .site-header::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100%;
  right: 0;
  left: 0;
  height: 20px;
  background: linear-gradient(180deg,
    rgba(250,252,254,.74) 0%,
    rgba(250,252,254,.34) 42%,
    rgba(250,252,254,0) 100%);
  opacity: 1;
  pointer-events: none;
  transition: opacity .26s ease, height .26s ease;
}

.home .site-header.is-scrolled {
  background: rgba(255,255,255,.975);
  border-bottom: 1px solid rgba(7,26,43,.07);
  box-shadow:
    0 1px 0 rgba(255,255,255,.85) inset,
    0 13px 36px rgba(7,26,43,.105);
}

.home .site-header.is-scrolled::after {
  height: 8px;
  opacity: 0;
}

.home .hero.hero--metallic {
  margin-top: 0;
}

@media (max-width: 899px) {
  .home .site-header {
    background: rgba(250,252,254,.97);
    box-shadow:
      0 1px 0 rgba(7,26,43,.035),
      0 6px 18px rgba(7,26,43,.045);
  }

  .home .site-header::after {
    height: 14px;
    background: linear-gradient(180deg,
      rgba(250,252,254,.58) 0%,
      rgba(250,252,254,.18) 52%,
      rgba(250,252,254,0) 100%);
  }

  .home .site-header.is-menu-open::after {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .site-header::after {
    transition: none;
  }
}


/* =========================================================
   V1.1.7 — Hero background calibration
   Keeps background-size: cover, moves fleet away from copy,
   and protects contrast on the left without changing markup.
   ========================================================= */
@media (min-width: 768px) {
  .hero.hero--metallic {
    --hero-bg-position: 118% 72%;
    --hero-bg-offset-x: 16%;
    --hero-bg-offset-y: 5%;
  }

  .hero.hero--metallic .hero-picture {
    background-image: url("../img/hero-friovan-desktop.v5.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--hero-bg-position);
    transform: translate3d(var(--hero-bg-offset-x), var(--hero-bg-offset-y), 0) scale(1.08);
    transform-origin: center center;
    will-change: transform;
  }

  /* The visual is now rendered as a CSS background so its
     position can be calibrated without changing the asset. */
  .hero.hero--metallic .hero-picture img {
    opacity: 0;
    pointer-events: none;
  }

  .hero.hero--metallic::before {
    z-index: 3;
    background: linear-gradient(
      to right,
      rgba(5, 18, 30, .78) 0%,
      rgba(5, 18, 30, .70) 24%,
      rgba(5, 18, 30, .46) 38%,
      rgba(5, 18, 30, .12) 52%,
      rgba(5, 18, 30, 0) 64%
    );
  }

  .hero.hero--metallic .hero-copy {
    width: min(38%, 580px);
    max-width: 580px;
    color: #fff;
  }

  .hero.hero--metallic .hero-eyebrow {
    color: #7fb3e0;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-eyebrow__line {
    background: #6fa8dc;
  }

  .hero.hero--metallic .hero-headline {
    max-width: none;
    color: #fff;
    font-size: clamp(2.65rem, 3.15vw, 3.35rem);
    line-height: .93;
    letter-spacing: -.02em;
    text-shadow: 0 3px 20px rgba(3, 13, 22, .14);
  }

  .hero.hero--metallic .hero-line--accent {
    color: #6fa8dc;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 38ch;
    color: rgba(255, 255, 255, .88);
    text-shadow: 0 2px 14px rgba(3, 13, 22, .18);
  }

  .hero.hero--metallic .hero-lead strong {
    color: #fff;
  }

  .hero.hero--metallic .hero-secondary-cta,
  .hero.hero--metallic .hero-primary-cta,
  .hero.hero--metallic .hero-primary-cta::after {
    color: #fff;
    background: #2e6da4;
    border-color: rgba(255, 255, 255, .16);
  }
}

/* A wide desktop and a 900 px notebook do not crop a 16:9
   background in the same direction. This exception keeps the
   fleet to the right at intermediate widths. */
@media (min-width: 768px) and (max-width: 1120px) {
  .hero.hero--metallic {
    --hero-bg-position: 20% 72%;
    --hero-bg-offset-x: 16%;
    --hero-bg-offset-y: 5%;
  }

  .hero.hero--metallic .hero-copy {
    width: min(43%, 455px);
    max-width: 455px;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(2.12rem, 3.75vw, 2.7rem);
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic {
    --hero-bg-position-mobile: 54% 18%;
  }

  .hero.hero--metallic .hero-picture {
    background-image: url("../img/hero-vehicles-studio.mobile.v2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--hero-bg-position-mobile);
    transform: none;
    transform-origin: center center;
    will-change: auto;
  }

  .hero.hero--metallic .hero-picture img {
    opacity: 0;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--metallic .hero-picture {
    will-change: auto;
  }
}


/* =========================================================
   V1.1.8 — remove hard left edge in hero background
   The previous horizontal translate exposed the section's base
   colour on the left. Keep the calibrated background-position,
   let the image fill the entire visual, and use a full-section
   continuous overlay for contrast.
   ========================================================= */
@media (min-width: 768px) {
  .hero.hero--metallic .hero-picture {
    inset: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--hero-bg-position);
    transform: scale(1.08);
    transform-origin: center center;
  }

  .hero.hero--metallic::before {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    z-index: 3;
    background: linear-gradient(
      to right,
      rgba(10, 25, 50, .65) 0%,
      rgba(10, 25, 50, .35) 35%,
      rgba(10, 25, 50, 0) 65%
    );
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic .hero-picture {
    inset: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--hero-bg-position-mobile);
    transform: none;
  }
}


/* =========================================================
   V1.1.11 — protected hero composition
   The supplied wide asset keeps a clean copy zone on desktop.
   Tablet gets a dedicated stacked composition so neither the
   headline nor the CTAs can overlap the vehicles.
   ========================================================= */
@media (min-width: 1101px) {
  .hero.hero--metallic {
    --hero-bg-position: left bottom;
  }

  .hero.hero--metallic .hero-picture {
    inset: 0;
    width: 100%;
    height: 100%;
    background-image:
      url("../img/hero-friovan-desktop.v5.webp"),
      linear-gradient(90deg, #c0c0be 0%, #d8d8d6 52%, #fefefe 100%);
    background-repeat: no-repeat, no-repeat;
    background-size: 104% auto, 100% 100%;
    background-position: var(--hero-bg-position), center;
    transform: none;
    transform-origin: center;
  }

  .hero.hero--metallic .hero-copy {
    width: min(38%, 560px);
    max-width: 560px;
  }
}

@media (max-width: 1100px) {
  .hero.hero--metallic {
    min-height: auto;
    display: block;
    padding: 0 0 52px;
    background: #f5f7f9;
  }

  .hero.hero--metallic::before,
  .hero.hero--metallic::after {
    display: none;
  }

  .hero.hero--metallic .hero-layout {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + var(--topbar-h)) 0 0;
  }

  .hero.hero--metallic .hero-copy {
    order: 2;
    width: min(calc(100% - 48px), 620px);
    max-width: 620px;
    margin-inline: auto;
    padding: 42px 0 0;
    color: var(--navy);
    transform: none;
  }

  .hero.hero--metallic .hero-visual {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: clamp(250px, 60vw, 500px);
    min-height: 0;
  }

  .hero.hero--metallic .hero-visual__parallax,
  .hero.hero--metallic .hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none !important;
  }

  .hero.hero--metallic .hero-picture {
    background-color: #e1e0e3;
    background-image: url("../img/hero-vehicles-studio.mobile.v2.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .hero.hero--metallic .hero-picture img {
    opacity: 0;
    pointer-events: none;
  }

  .hero.hero--metallic .hero-eyebrow {
    color: var(--blue);
    text-shadow: none;
  }

  .hero.hero--metallic .hero-eyebrow__line {
    background: var(--blue);
  }

  .hero.hero--metallic .hero-headline {
    max-width: none;
    color: var(--navy);
    font-size: clamp(2.4rem, 5vw, 3.25rem);
    text-shadow: none;
  }

  .hero.hero--metallic .hero-line--accent {
    color: var(--blue);
  }

  .hero.hero--metallic .hero-lead {
    max-width: 44ch;
    color: #536576;
    text-shadow: none;
  }

  .hero.hero--metallic .hero-lead strong {
    color: var(--navy);
  }

  .hero.hero--metallic .hero-actions {
    width: min(100%, 520px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero.hero--metallic .hero-secondary-cta {
    color: var(--navy);
    background: #fff;
    border-color: rgba(7, 26, 43, .14);
    box-shadow: 0 12px 28px rgba(7, 26, 43, .09);
  }

  .hero.hero--metallic .hero-primary-cta,
  .hero.hero--metallic .hero-primary-cta::after {
    color: #fff;
    background: linear-gradient(135deg, #0a7dcc 0%, #0769b0 100%);
    border-color: rgba(7, 105, 176, .88);
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .hero.hero--metallic .hero-layout {
    padding-top: var(--header-h);
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hero.hero--metallic .hero-layout {
    width: 100%;
    min-height: 0;
    padding-top: var(--header-h);
  }

  .hero.hero--metallic .hero-copy {
    width: min(calc(100% - 32px), 520px);
    max-width: 520px;
    padding: 32px 0 0;
  }

  .hero.hero--metallic .hero-visual {
    height: clamp(250px, 60vw, 420px);
  }

  .hero.hero--metallic .hero-eyebrow {
    margin-bottom: 20px;
    font-size: .62rem;
  }

  .hero.hero--metallic .hero-headline {
    max-width: none;
    font-size: clamp(2.35rem, 10.8vw, 3.55rem);
    line-height: .94;
  }

  .hero.hero--metallic .hero-line {
    white-space: normal;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 35ch;
    margin-top: 22px;
    font-size: .94rem;
    line-height: 1.5;
  }

  .hero.hero--metallic .hero-actions {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: 54px;
    padding: 16px 20px;
  }
}

@media (max-width: 360px) {
  .hero.hero--metallic .hero-visual {
    height: 230px;
  }

  .hero.hero--metallic .hero-copy {
    width: calc(100% - 28px);
  }
}

@media (max-width: 1100px) and (max-height: 520px) and (orientation: landscape) {
  .hero.hero--metallic .hero-visual {
    height: 320px;
  }
}

@media (min-width: 2300px) {
  .hero.hero--metallic {
    --hero-bg-position: center bottom;
  }

  .hero.hero--metallic .hero-picture {
    background-size: 2400px auto, 100% 100%;
  }
}


/* =========================================================
   V1.1.13 — responsive hardening
   Final mobile overrides keep interactive elements visible,
   stop entrance transforms from widening the hero and protect
   forms/cards from intrinsic-width overflow.
   ========================================================= */
@media (max-width: 1100px) {
  .hero.hero--metallic .hero-visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .hero.hero--metallic .hero-actions .hero-secondary-cta {
    color: #fff;
    background: linear-gradient(135deg, #4a7fb5 0%, #2f6fae 100%);
    border-color: rgba(18, 86, 145, .54);
    box-shadow:
      0 14px 30px rgba(18, 62, 98, .18),
      inset 0 1px 0 rgba(255, 255, 255, .18);
  }

  .hero.hero--metallic .hero-actions .hero-secondary-cta:hover,
  .hero.hero--metallic .hero-actions .hero-secondary-cta:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #3f74a8 0%, #245f99 100%);
  }
}

@media (max-width: 767px) {
  .hero.hero--metallic .hero-layout,
  .hero.hero--metallic .hero-copy,
  .hero.hero--metallic .hero-visual,
  .hero.hero--metallic .hero-visual__parallax,
  .hero.hero--metallic .hero-picture {
    left: auto;
    right: auto;
    max-width: 100%;
    min-width: 0;
  }

  .hero.hero--metallic .hero-actions {
    max-width: 100%;
  }

  .purpose__shell,
  .section-intro,
  .vehicle-card,
  .process-header,
  .process-proof-grid,
  .conversion-shell,
  .conversion-form,
  .faq-studio__panel,
  .footer-compact-shell,
  .quote-card,
  .quote-form,
  .form-grid,
  .field,
  .next-steps {
    max-width: 100%;
    min-width: 0;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
    min-width: 0;
  }

  .conversion-form,
  .quote-card {
    overflow-wrap: anywhere;
  }

  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 340px) {
  .process-signals {
    grid-template-columns: 1fr;
  }

  .hero.hero--metallic .hero-headline {
    font-size: 2.2rem;
  }
}


/* =========================================================
   V1.1.14 — large-display art direction
   Fluidly expands the design system from standard desktop to
   2K, ultrawide and 4K without creating excessively long copy.
   ========================================================= */
@media (min-width: 1440px) {
  :root {
    --container: clamp(1320px, calc(62.5vw + 280px), 2160px);
    --section-y: clamp(112px, 7vw, 180px);
  }

  .container,
  .topbar .container,
  .topbar__inner,
  .nav.container,
  .hero.hero--metallic .hero-layout {
    width: min(
      calc(100% - clamp(80px, 8vw, 280px)),
      var(--container)
    );
    max-width: none;
  }

  .hero.hero--metallic,
  .hero.hero--metallic .hero-layout {
    min-height: clamp(770px, 58svh, 1120px);
  }

  .hero.hero--metallic .hero-picture {
    background-size: 104% auto, 100% 100%;
    background-position: center bottom, center;
  }

  .hero.hero--metallic .hero-copy {
    width: min(34%, 760px);
    max-width: 760px;
  }

  .hero.hero--metallic .hero-headline {
    font-size: clamp(3.35rem, 2.75vw, 5.3rem);
    line-height: .92;
  }

  .hero.hero--metallic .hero-lead {
    max-width: 42ch;
    font-size: clamp(1.02rem, .72vw, 1.32rem);
  }

  .hero.hero--metallic .hero-actions {
    width: min(100%, 640px);
  }

  .section-intro h2,
  .process-header__title h2,
  .faq-studio__header h2 {
    max-width: 1100px;
  }

  .section-intro > p,
  .process-header__aside .lead,
  .faq-studio__header > p {
    max-width: 680px;
  }

  .value-grid,
  .fleet-stack,
  .process-journey,
  .process-proof-grid {
    gap: clamp(20px, 1.2vw, 32px);
  }

  .quote-card {
    width: min(100%, 1840px);
    margin-inline: auto;
  }

  .legal-page__container,
  .error-page__container {
    max-width: 960px;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: clamp(16px, calc(14px + .16vw), 20px);
  }

  :root {
    --topbar-h: clamp(34px, 1.8vw, 44px);
    --header-h: clamp(76px, 3.8vw, 96px);
  }

  .brand-mark {
    width: clamp(112px, 6.4vw, 136px);
    height: clamp(48px, 2.8vw, 58px);
  }

  .nav-links a {
    padding-inline: clamp(14px, .8vw, 20px);
    font-size: clamp(.86rem, .52vw, .98rem);
  }

  .nav-cta {
    min-height: clamp(44px, 2.5vw, 54px);
    padding-inline: clamp(18px, 1.25vw, 28px);
  }

  .hero.hero--metallic .hero-eyebrow {
    font-size: clamp(.7rem, .42vw, .84rem);
  }

  .hero.hero--metallic .hero-actions .btn {
    min-height: clamp(56px, 3.1vw, 66px);
    padding-inline: clamp(28px, 1.55vw, 38px);
    font-size: clamp(.88rem, .52vw, 1rem);
  }

  .purpose__shell {
    padding: clamp(64px, 3.4vw, 92px);
  }

  .purpose__intro {
    grid-template-columns: minmax(280px, .42fr) minmax(0, 1.58fr);
  }

  .purpose__headline h2 {
    max-width: 1100px;
    font-size: clamp(4.8rem, 3.35vw, 6rem);
  }

  .purpose__headline > p {
    max-width: 900px;
  }

  .purpose-item {
    grid-template-columns: minmax(300px, .66fr) minmax(0, 1.5fr) 60px;
  }

  .purpose-item__copy {
    max-width: 1080px;
  }

  .section-intro h2,
  .process-header__title h2,
  .faq-studio__header h2 {
    font-size: clamp(4.8rem, 3.2vw, 5.7rem);
  }

  .value-card {
    min-height: clamp(380px, 20vw, 500px);
    padding: clamp(32px, 2.1vw, 52px);
  }

  .value-card p {
    max-width: 42ch;
  }

  .vehicle-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    height: clamp(680px, 31vw, 820px);
  }

  .vehicle-media,
  .vehicle-media > img,
  .media-carousel,
  .media-carousel__viewport,
  .media-carousel__track,
  .media-carousel__slide,
  .media-carousel__slide img {
    height: 100%;
    min-height: 0;
  }

  .vehicle-media > img,
  .media-carousel__slide img {
    object-fit: cover;
  }

  .vehicle-content {
    padding: clamp(48px, 3vw, 78px);
  }

  .vehicle-heading h3 {
    max-width: 19ch;
    font-size: clamp(2.35rem, 1.8vw, 3.45rem);
  }

  .vehicle-content > p {
    max-width: 68ch;
  }

  .process-step {
    min-height: clamp(390px, 22vw, 520px);
    padding: clamp(32px, 2vw, 48px);
  }

  .process-step h3 {
    max-width: 22ch;
    font-size: clamp(1.65rem, 1.25vw, 2.2rem);
  }

  .process-step p {
    max-width: 48ch;
  }

  .process-proof-visual {
    min-height: clamp(680px, 38vw, 900px);
  }

  .conversion-shell {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

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

  .conversion-form,
  .quote-card {
    padding: clamp(48px, 3vw, 78px);
  }

  .quote-card {
    gap: clamp(56px, 3vw, 88px);
  }

  .faq-studio__panel {
    grid-template-columns: minmax(420px, .72fr) minmax(0, 1.28fr);
  }

  .faq-studio__support {
    padding: clamp(42px, 3vw, 72px);
  }

  .faq-studio__content {
    padding-inline: clamp(44px, 3vw, 78px);
  }

  .page-hero {
    min-height: clamp(580px, 46svh, 900px);
  }

  .page-hero h1 {
    max-width: 1200px;
  }
}


/* =========================================================
   V1.1.15 — homepage preloader entry
   Five-second loading sequence with the isolated van mark.
   ========================================================= */
.preloader-partner-wrap--icon {
  width: min(68vw, 340px);
  aspect-ratio: 1071 / 392;
}

.preloader-partner--icon {
  width: 100%;
  max-width: 340px;
}

.preloader-partner-wrap--icon + .preloader-road {
  margin-top: 4px;
}

.preloader-progress span {
  animation-duration: 5s;
}

@media (min-width: 768px) {
  .preloader-partner-wrap--icon {
    width: min(36vw, 390px);
  }

  .preloader-partner--icon {
    max-width: 390px;
  }
}

/* =========================================================
   V1.1.16 — three-card value grid
   Rebalances the section after removing variable maintenance terms.
   ========================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
  .value-grid .value-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1200px) {
  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-grid .value-card:last-child {
    grid-column: auto;
  }
}


/* Netlify Function + Resend form feedback */
.quote-status { min-height: 1.1em; }
.quote-status[data-state="sending"] { color: var(--muted); }
.quote-status[data-state="error"] { color: #9f2323; font-weight: 800; }
.quote-status[data-state="success"] { color: #176a42; font-weight: 800; }
button[aria-busy="true"] { cursor: wait; opacity: .72; }
