@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  font-family: "Manrope", Arial, sans-serif;
  color: #071426;
  background: #020916;
  font-synthesis: none;
  --navy: #031226;
  --navy-soft: #071b35;
  --red: #ed101c;
  --red-dark: #c90b16;
  --green: #20c963;
  --ink: #071426;
  --muted: #647184;
  --line: #dfe4eb;
  --paper: #ffffff;
  --paper-soft: #f5f7fa;
  --page: min(1480px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--navy); -webkit-font-smoothing: antialiased; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { max-width: 100%; }
.site-shell { min-height: 100vh; overflow-x: clip; }
.page-width { width: var(--page); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #020916;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 8, 22, .18);
  pointer-events: none;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #020916; }
.hero-media picture { position: absolute; inset: 0; display: block; will-change: transform, opacity; animation: hero-arrival 1.25s cubic-bezier(.16, 1, .3, 1) .12s both; }
.hero-scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% center; transform: translateZ(0); backface-visibility: hidden; }

.site-header {
  width: 100%;
  min-height: 104px;
  padding-inline: max(32px, calc((100% - 1480px) / 2));
  display: flex;
  align-items: center;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(2, 9, 22, .9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand { display: block; flex: 0 0 300px; width: 300px; }
.brand img { display: block; width: 100%; height: auto; }
.site-header > .brand { position: relative; margin-left: -16px; will-change: transform, opacity; animation: logo-drive-in 1.12s cubic-bezier(.16, .82, .24, 1) .08s both; }
.site-header > .brand::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(237, 16, 28, .94));
  box-shadow: 0 -9px 0 rgba(255, 255, 255, .25), 0 9px 0 rgba(237, 16, 28, .36);
  transform-origin: right center;
  animation: logo-speed-trails .82s ease-out .12s both;
  pointer-events: none;
}
.desktop-navigation { margin-left: 145px; display: flex; align-items: center; gap: clamp(22px, 2.4vw, 40px); }
.desktop-navigation a,
.mobile-navigation > a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 0;
  position: relative;
}
.desktop-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transition: right .22s ease;
}
.desktop-navigation a:hover::after,
.desktop-navigation a:focus-visible::after,
.desktop-navigation a.is-active::after { right: 0; }
.header-contact { margin-left: auto; display: flex; align-items: center; gap: 17px; padding-left: 8px; }
.header-email { display: inline-flex; align-items: center; gap: 8px; color: #d7e0ec; text-decoration: none; font-size: 11px; font-weight: 700; white-space: nowrap; }
.header-email svg { color: var(--red); font-size: 18px; }
.header-email:hover { color: #fff; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; font-size: 16px; font-weight: 800; white-space: nowrap; }
.header-phone svg { color: #fff; font-size: 20px; }
.header-whatsapp { display: grid; place-items: center; width: 40px; height: 40px; color: #25d366; border-left: 1px solid rgba(255, 255, 255, .24); text-decoration: none; font-size: 28px; padding-left: 15px; }
.menu-toggle { display: none; }
.menu-backdrop { display: none; }
.mobile-quick-actions { display: none; }
.mobile-navigation { display: none; }
.mobile-nav-heading,
.mobile-nav-contact { display: none; }

.hero-content { position: relative; z-index: 3; padding-top: 210px; padding-left: 10px; animation: content-enter .8s ease-out .12s both; }
.hero h1 { margin: 0; max-width: 690px; font-size: clamp(62px, 5.45vw, 86px); line-height: 1.03; letter-spacing: -.052em; font-weight: 800; }
.hero h1 span { color: var(--red); }
.hero-copy { max-width: 650px; margin: 28px 0 0; color: #e0e6ee; font-size: clamp(18px, 1.35vw, 22px); line-height: 1.6; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 20px; }
.primary-action,
.whatsapp-action,
.light-action {
  min-height: 62px;
  padding: 0 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.primary-action { border: 1px solid #ff3d48; background: var(--red); color: #fff; }
.primary-action:hover,
.primary-action:focus-visible { transform: translateY(-2px); background: var(--red-dark); }
.primary-action svg,
.light-action svg { transition: transform .2s ease; }
.primary-action:hover svg,
.light-action:hover svg { transform: translateX(4px); }
.whatsapp-action { border: 2px solid var(--green); color: #fff; background: rgba(3, 18, 38, .86); }
.whatsapp-action svg { color: #25d366; font-size: 27px; }
.whatsapp-action:hover,
.whatsapp-action:focus-visible { transform: translateY(-2px); background: #092c2c; }

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 120;
  width: 62px;
  min-height: 62px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: #fff;
  background: #16b957;
  box-shadow: 0 14px 34px rgba(0, 85, 42, .34);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.floating-whatsapp svg { width: 28px; height: 28px; stroke-width: 1.9; }
.floating-whatsapp span { display: none; }
.floating-whatsapp.is-hidden { opacity: 0; pointer-events: none; transform: translateY(12px) scale(.9); }
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible { transform: translateY(-3px); background: #0f9f49; box-shadow: 0 18px 40px rgba(0, 85, 42, .42); }

.conversion-section { position: relative; z-index: 4; padding: 78px 0 0; background: var(--paper); color: var(--ink); }
.conversion-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); gap: clamp(72px, 9vw, 148px); padding: 0 0 48px; align-items: center; }
.conversion-main { min-width: 0; padding-left: 14px; }
.conversion-main > .section-kicker { margin-bottom: 22px; }
.conversion-main > h2 { margin: 0; max-width: 630px; font-size: clamp(48px, 4.35vw, 72px); line-height: 1.04; letter-spacing: -.052em; }
.conversion-copy { margin: 30px 0 0; color: #354154; font-size: clamp(18px, 1.35vw, 22px); line-height: 1.55; }
.coverage-line { max-width: 640px; margin: 34px 0 0; color: #172337; font-size: 17px; font-weight: 600; line-height: 1.85; }
.coverage-line span { padding-inline: 4px; color: var(--red); }
.section-heading h2 { margin: 0; font-size: clamp(30px, 2.45vw, 42px); line-height: 1.03; letter-spacing: -.045em; }
.compact-heading .red-rule { display: block; width: 38px; height: 3px; margin-bottom: 13px; background: var(--red); }
.section-kicker { margin: 0 0 10px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.situation-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.situation-group { min-width: 0; min-height: 150px; padding: 17px 16px; border: 1px solid #d9e0e8; border-radius: 12px; display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 13px; align-items: start; background: #f8fafc; }
.situation-group-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 10px; color: var(--red); background: var(--navy); }
.situation-group-icon svg { width: 28px; height: 28px; stroke-width: 1.7; }
.situation-group h3 { margin: 0; color: #111d30; font-size: 13px; line-height: 1.25; }
.situation-group p { margin: 4px 0 10px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.situation-group ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 5px 7px; list-style: none; }
.situation-group li { display: inline-flex; align-items: center; gap: 6px; color: #344054; font-size: 10px; font-weight: 700; line-height: 1.25; }
.situation-group li::before { content: ""; flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.icon-pair { position: relative; flex: 0 0 64px; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid #ccd3dd; border-radius: 10px; color: var(--ink); background: #fff; }
.icon-pair .icon-primary { width: 40px; height: 40px; stroke-width: 1.65; }
.icon-pair .icon-detail { position: absolute; right: 3px; bottom: 3px; width: 24px; height: 24px; padding: 3px; color: var(--red); background: #fff; border: 1px solid #ecb4b8; border-radius: 7px; stroke-width: 2; }
.icon-pair.is-compact { flex-basis: 48px; width: 56px; height: 48px; border: 0; border-radius: 0; }
.icon-pair.is-compact .icon-primary { width: 39px; height: 39px; }
.icon-pair.is-compact .icon-detail { right: 2px; bottom: 0; width: 21px; height: 21px; padding: 2px; border-radius: 5px; }

.process-preview { padding: 42px 0 54px; border-top: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-step { min-width: 0; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; align-items: start; padding: 0 42px; border-right: 1px solid var(--line); }
.process-step:first-child { padding-left: 14px; }
.process-step:last-child { padding-right: 0; border-right: 0; }
.step-number { color: var(--red); font-size: 28px; line-height: 1.05; font-weight: 800; letter-spacing: -.04em; }
.process-step h3 { margin: 1px 0 9px; font-size: 18px; line-height: 1.2; }
.process-step p { max-width: 300px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.valuation-card { min-height: 454px; border-radius: 12px; padding: 32px 42px; background: var(--navy); color: #fff; box-shadow: 0 20px 54px rgba(3, 18, 38, .2); }
.valuation-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.valuation-card-heading h2 { margin: 0; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.valuation-card-heading p { margin: 5px 0 0; color: #aeb9c8; font-size: 11px; }
.valuation-card-heading > svg { flex: 0 0 auto; color: var(--red); font-size: 34px; stroke-width: 1.6; }
.valuation-form { margin-top: 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.valuation-form label { min-width: 0; }
.valuation-form label > span:not(.consent span) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.valuation-form input,
.valuation-form select { width: 100%; height: 36px; padding: 0 11px; border: 1px solid #dfe3e8; border-radius: 4px; outline: none; background: #fff; color: #182437; font-size: 11px; }
.valuation-form input:focus,
.valuation-form select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(237, 16, 28, .2); }
.valuation-form .is-wide { grid-column: 1 / -1; }
.form-note { margin: 1px 0 0; color: #d6dde7; font-size: 9px; line-height: 1.35; }
.valuation-form .consent { display: flex; align-items: flex-start; gap: 8px; color: #cbd4e0; font-size: 9px; line-height: 1.35; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 14px; height: 14px; margin: 0; accent-color: var(--red); }
.form-submit { width: 100%; min-height: 38px; margin-top: 2px; padding: 0 16px; border-radius: 4px; font-size: 12px; }
.form-whatsapp { margin-top: 9px; display: flex; align-items: center; justify-content: center; gap: 6px; color: #dbe3ed; text-decoration: none; font-size: 9px; }
.form-whatsapp svg { color: #25d366; font-size: 17px; }
.form-success { min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.success-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 34px; }
.form-success .section-kicker { margin-top: 20px; }
.form-success h2 { margin: 0; font-size: 31px; }
.form-success > p:not(.section-kicker) { max-width: 330px; color: #b9c4d2; line-height: 1.55; }
.form-success .whatsapp-action { min-height: 48px; margin-top: 10px; }
.text-button { margin-top: 16px; border: 0; background: none; color: #cbd5e1; text-decoration: underline; cursor: pointer; }

.guided-form { min-height: 390px; display: flex; flex-direction: column; }
.valuation-progress > span { display: block; margin-bottom: 12px; color: #fff; font-size: 14px; }
.valuation-progress > div { height: 4px; overflow: hidden; border-radius: 999px; background: #536176; }
.valuation-progress i { display: block; height: 100%; border-radius: inherit; background: var(--red); transition: width .3s ease; }
.valuation-step { margin-top: 36px; }
.valuation-step h2 { margin: 0 0 28px; font-size: clamp(24px, 2vw, 34px); line-height: 1.2; letter-spacing: -.035em; }
.field-label { display: block; }
.field-label > span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.field-label input,
.field-label select { width: 100%; height: 62px; padding: 0 18px; border: 1px solid #d9dee6; border-radius: 8px; outline: none; color: #172337; background: #fff; font-size: 16px; }
.field-label input:focus,
.field-label select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(237, 16, 28, .2); }
.guided-next { width: 100%; min-height: 58px; margin-top: 18px; border-radius: 7px; }
.guided-next:disabled { opacity: .68; cursor: wait; transform: none; }
.guided-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.guided-fields .is-wide { grid-column: 1 / -1; }
.guided-actions { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; }
.guided-actions .text-button { margin: 18px 0 0; padding: 14px 2px; text-decoration: none; }
.guided-form .consent { margin-top: 16px; display: flex; align-items: flex-start; gap: 10px; color: #cbd4e0; font-size: 11px; line-height: 1.45; cursor: pointer; }
.guided-form .consent input { flex: 0 0 16px; width: 16px; height: 16px; margin: 0; accent-color: var(--red); }
.response-note { margin: auto 0 0; padding-top: 24px; color: #d4dbe5; text-align: center; font-size: 13px; }
.guided-form .form-whatsapp { margin-top: 12px; color: #eef2f7; font-size: 12px; }
.guided-form .form-whatsapp svg { font-size: 23px; }
.form-error { margin: 12px 0 0; padding: 10px 12px; border: 1px solid rgba(255, 126, 134, .44); border-radius: 7px; color: #ffd9dc; background: rgba(237, 16, 28, .12); font-size: 12px; line-height: 1.45; }

.trust-strip { background: var(--navy); color: #fff; }
.trust-content { min-height: 124px; display: grid; grid-template-columns: minmax(0, 2.3fr) minmax(410px, 1fr); }
.trust-list { width: min(100%, 1040px); margin: 0; padding-left: max(36px, calc((100vw - 1420px) / 2)); padding-right: 28px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { min-width: 0; display: flex; align-items: center; gap: 12px; padding: 0 20px; border-right: 1px solid rgba(255, 255, 255, .16); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .3); border-radius: 10px; color: var(--red); background: #061a34; }
.trust-icon svg { width: 33px; height: 33px; stroke-width: 1.7; }
.trust-item h3 { margin: 0 0 4px; font-size: 12px; }
.trust-item p { margin: 0; color: #b9c4d2; font-size: 10px; }
.trust-photo { min-width: 0; height: 124px; overflow: hidden; }
.trust-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 61%; }

.vehicles-section { padding: 94px 0 88px; background: #f8f9fb; }
.vehicles-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(540px, 1.2fr); column-gap: clamp(70px, 9vw, 150px); row-gap: 46px; align-items: start; }
.vehicles-heading { grid-column: 1; }
.vehicles-heading h2 { margin: 0; max-width: 620px; font-size: clamp(42px, 4.5vw, 68px); line-height: 1.01; letter-spacing: -.052em; }
.vehicles-heading > p:last-child { margin: 22px 0 0; max-width: 570px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.vehicle-feature { grid-column: 1; position: relative; min-height: 318px; padding: 30px 30px 26px 0; border-top: 1px solid #ccd3dd; border-bottom: 1px solid #ccd3dd; }
.vehicle-feature-label { display: inline-block; margin: 3px 0 18px 82px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.vehicle-feature > svg { position: absolute; left: 0; top: 25px; width: 62px; height: 62px; color: var(--red); stroke-width: 1.45; }
.vehicle-feature h3 { margin: 0; font-size: clamp(54px, 6vw, 88px); line-height: .98; letter-spacing: -.06em; font-weight: 500; }
.vehicle-feature p { max-width: 310px; margin: 17px 0 28px; color: var(--muted); line-height: 1.55; }
.vehicle-feature button,
.vehicle-index-item button { padding: 0; display: inline-flex; align-items: center; gap: 10px; border: 0; background: none; color: var(--ink); font-size: 12px; font-weight: 800; cursor: pointer; }
.vehicle-feature button svg,
.vehicle-index-item button svg { color: var(--red); transition: transform .2s ease; }
.vehicle-feature button:hover svg,
.vehicle-index-item button:hover svg { transform: translateX(4px); }
.vehicle-index { grid-column: 2; grid-row: 1 / span 2; border-top: 1px solid #ccd3dd; }
.vehicle-index-item { display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; gap: 22px; align-items: center; min-height: 114px; border-bottom: 1px solid #ccd3dd; }
.vehicle-index-item > svg { width: 38px; height: 38px; color: var(--red); stroke-width: 1.55; }
.vehicle-index-item h3 { margin: 0 0 5px; font-size: 18px; }
.vehicle-index-item p { margin: 0; max-width: 340px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.centered-heading { max-width: 740px; margin: 0 auto; text-align: center; }
.centered-heading .section-kicker { margin-bottom: 12px; }
.centered-heading h2 { font-size: clamp(38px, 4vw, 58px); }
.centered-heading > p:last-child { margin: 20px auto 0; max-width: 680px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.vehicle-list { margin-top: 54px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #ccd3dd; border-bottom: 1px solid #ccd3dd; }
.vehicle-item { min-width: 0; padding: 34px 28px 30px; border-right: 1px solid #ccd3dd; }
.vehicle-item:last-child { border-right: 0; }
.vehicle-item > svg { width: 48px; height: 48px; color: var(--red); stroke-width: 1.55; }
.vehicle-item h3 { margin: 20px 0 8px; font-size: 20px; }
.vehicle-item p { min-height: 58px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.vehicle-item button { margin-top: 20px; padding: 0; display: inline-flex; align-items: center; gap: 8px; border: 0; background: none; color: var(--ink); font-size: 12px; font-weight: 800; cursor: pointer; }
.vehicle-item button svg { color: var(--red); }

.expertise-section { padding: 78px 0; background: var(--navy); color: #fff; }
.expertise-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(540px, 1.2fr); gap: clamp(70px, 9vw, 150px); align-items: stretch; }
.expertise-intro { padding-right: 56px; border-right: 1px solid rgba(255, 255, 255, .16); }
.expertise-intro h2 { margin: 0; max-width: 520px; font-size: clamp(40px, 4.2vw, 62px); line-height: 1.02; letter-spacing: -.045em; }
.expertise-intro > p:not(.section-kicker) { margin: 24px 0 32px; max-width: 530px; color: #b9c4d2; line-height: 1.7; }
.expertise-intro .expertise-proof { margin: -10px 0 30px; color: #fff; font-size: 12px; font-weight: 700; }
.expertise-proof span { padding-inline: 8px; color: var(--red); }
.expertise-points { border-top: 1px solid rgba(255, 255, 255, .18); }
.expertise-points article { position: relative; display: grid; grid-template-columns: 98px 1fr; gap: 28px; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.expertise-points article::after { content: ""; position: absolute; right: 0; bottom: -1px; width: 16px; height: 2px; background: var(--red); }
.expertise-points article > span { color: var(--red); font-size: 54px; line-height: 1; font-weight: 800; letter-spacing: -.055em; }
.expertise-points h3 { margin: 0 0 8px; font-size: 20px; }
.expertise-points p { margin: 0; color: #aebaca; line-height: 1.6; }

.faq-section { padding: 82px 0; background: #fff; }
.faq-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(70px, 10vw, 160px); }
.faq-intro h2 { margin: 0; font-size: clamp(42px, 4.4vw, 64px); line-height: 1; letter-spacing: -.05em; }
.faq-intro > p:not(.section-kicker) { color: var(--muted); line-height: 1.7; }
.inline-contact { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-decoration: none; }
.inline-contact svg { color: var(--red); font-size: 22px; }
.faq-list { border-top: 1px solid #cfd5dd; border-left: 1px solid #cfd5dd; padding-left: 32px; }
.faq-item { position: relative; border-bottom: 1px solid #cfd5dd; }
.faq-item.is-open::before { content: ""; position: absolute; left: -33px; top: 0; bottom: 0; width: 2px; background: var(--red); }
.faq-item > button { width: 100%; min-height: 62px; padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.faq-item > button svg { flex: 0 0 auto; color: var(--red); font-size: 22px; transition: transform .2s ease; }
.faq-item.is-open > button svg { transform: rotate(180deg); }
.faq-answer p { margin: -5px 0 22px; max-width: 720px; color: var(--muted); line-height: 1.65; }

.contact-cta { padding: 0; color: var(--ink); background: #fff; border-top: 1px solid #cfd5dd; }
.contact-cta-content { display: grid; grid-template-columns: 1fr 1.1fr; }
.contact-phone-block,
.contact-valuation-block { min-height: 112px; display: grid; align-items: center; text-decoration: none; }
.contact-direct-block { min-height: 112px; display: grid; grid-template-columns: minmax(255px, 1fr) auto; align-items: center; gap: 28px; padding-right: 44px; border-right: 1px solid #cfd5dd; }
.contact-phone-block { grid-template-columns: 66px 1fr; gap: 22px; color: var(--ink); }
.contact-phone-block > span { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); font-size: 26px; }
.contact-phone-block div { display: grid; }
.contact-phone-block small { color: var(--muted); }
.contact-phone-block strong { margin: 2px 0; font-size: 27px; letter-spacing: -.03em; }
.contact-phone-block em { color: var(--muted); font-size: 11px; font-style: normal; }
.contact-email-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.contact-email-link svg { flex: 0 0 auto; color: var(--red); font-size: 22px; }
.contact-email-link:hover { color: var(--red); }
.contact-valuation-block { width: 100%; grid-template-columns: 66px 1fr auto; gap: 20px; padding: 0 0 0 50px; border: 0; background: #fff; text-align: left; cursor: pointer; }
.contact-valuation-block > span { width: 58px; height: 58px; display: grid; place-items: center; color: #fff; background: var(--red); font-size: 30px; }
.contact-valuation-block div { display: grid; gap: 5px; }
.contact-valuation-block strong { font-size: 20px; }
.contact-valuation-block small { color: var(--muted); }
.contact-valuation-block > svg { color: var(--red); font-size: 28px; transition: transform .2s ease; }
.contact-valuation-block:hover > svg { transform: translateX(6px); }

.site-footer { padding: 36px 0 20px; color: #fff; background: #010b19; }
.footer-main { display: grid; grid-template-columns: 300px 1fr auto; gap: 54px; align-items: center; }
.footer-main .brand { width: 270px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
.footer-links a,
.footer-contact a,
.footer-legal a { color: #c3cedc; text-decoration: none; font-size: 13px; }
.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover { color: #fff; }
.footer-contact { display: grid; gap: 8px; justify-items: start; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; }
.footer-contact svg { color: var(--red); font-size: 22px; }
.footer-contact a:last-child svg { color: #25d366; }
.footer-legal { margin-top: 26px; padding-top: 16px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255, 255, 255, .14); color: #8492a4; font-size: 11px; }
.footer-legal div { display: flex; gap: 22px; }

@keyframes hero-arrival {
  from { opacity: .28; transform: translate3d(6%, 0, 0) scale(1.015); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes content-enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes logo-drive-in {
  0% { opacity: 0; transform: translate3d(-72vw, 3px, 0) rotate(-1.5deg); }
  54% { opacity: 1; transform: translate3d(16px, -1px, 0) rotate(.55deg); }
  70% { transform: translate3d(-7px, 1px, 0) rotate(-.35deg); }
  84% { transform: translate3d(3px, 0, 0) rotate(.15deg); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}
@keyframes logo-speed-trails {
  0% { opacity: 0; transform: scaleX(2.4); }
  28% { opacity: .95; }
  72% { opacity: .5; transform: scaleX(.8); }
  100% { opacity: 0; transform: scaleX(.08); }
}
@keyframes mobile-quick-action-enter {
  0% { opacity: 0; transform: translate3d(var(--quick-shift), 8px, 0) scale(.94); }
  68% { opacity: 1; transform: translate3d(var(--quick-overshoot), -1px, 0) scale(1.015); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes mobile-quick-icon-pop {
  0% { opacity: 0; transform: scale(.55) rotate(-10deg); }
  68% { opacity: 1; transform: scale(1.18) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes mobile-quick-sheen {
  0% { opacity: 0; transform: translateX(-150%) skewX(-22deg); }
  30% { opacity: .7; }
  100% { opacity: 0; transform: translateX(360%) skewX(-22deg); }
}

@media (max-width: 1380px) {
  :root { --page: min(1160px, calc(100% - 48px)); }
  .site-header { padding-inline: max(24px, calc((100% - 1160px) / 2)); }
  .floating-whatsapp { right: 18px; bottom: 18px; }
  .brand { flex-basis: 260px; width: 260px; }
  .desktop-navigation { margin-left: auto; gap: 18px; }
  .desktop-navigation a { font-size: 13px; }
  .header-contact { display: none; }
  .conversion-layout { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 64px; }
  .trust-content { grid-template-columns: 1fr; }
  .trust-list { width: var(--page); margin-inline: auto; padding: 20px 0; }
  .trust-photo { height: 220px; }
  .vehicles-layout { grid-template-columns: minmax(300px, .78fr) minmax(500px, 1.22fr); gap: 56px; }
}

@media (max-width: 1660px) and (min-width: 1381px) {
  .desktop-navigation { margin-left: 60px; gap: 22px; }
  .header-email { display: none; }
}

@media (max-width: 900px) {
  :root { --page: calc(100% - 36px); }
  .hero { min-height: 720px; }
  .hero-scene { object-position: 58% center; }
  .site-header { min-height: 84px; }
  .brand { flex-basis: 250px; width: 250px; }
  .menu-toggle { position: relative; z-index: 220; margin-left: auto; min-width: 88px; min-height: 44px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 9px; background: rgba(7, 27, 53, .94); color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; }
  .menu-toggle svg { width: 20px; height: 20px; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="false"] svg { transform: translateX(2px); }
  .desktop-navigation { display: none; }
  .mobile-navigation { position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 210; width: min(88vw, 390px); min-height: 100vh; min-height: 100dvh; margin: 0; padding: 108px 28px 30px; display: flex; flex-direction: column; align-items: stretch; gap: 0; border: 0; border-left: 1px solid rgba(255, 255, 255, .14); border-radius: 0; background: #06172f; box-shadow: -28px 0 70px rgba(0, 0, 0, .5); transform: translate3d(105%, 0, 0); visibility: hidden; opacity: 0; pointer-events: none; overflow-y: auto; overscroll-behavior: contain; transition: transform .3s cubic-bezier(.22, .72, .18, 1), opacity .2s ease, visibility 0s linear .3s; }
  .mobile-navigation.is-open { transform: translate3d(0, 0, 0); visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
  .mobile-nav-heading { display: grid; gap: 5px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .mobile-nav-heading span { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-nav-heading strong { color: #fff; font-size: 20px; }
  .mobile-navigation > a { padding: 17px 4px; border-bottom: 1px solid rgba(255, 255, 255, .11); font-size: 18px; }
  .mobile-nav-contact { display: grid; gap: 13px; margin-top: auto; padding-top: 28px; }
  .mobile-nav-contact a { display: flex; align-items: center; gap: 10px; color: #dce5f0; font-size: 12px; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
  .mobile-nav-contact svg { flex: 0 0 auto; color: var(--red); font-size: 21px; }
  .menu-backdrop { position: fixed; inset: 0; z-index: 90; display: block; border: 0; background: rgba(0, 7, 18, .7); cursor: pointer; }
  .hero-content { padding-top: 182px; }
  .hero h1 { font-size: clamp(52px, 10vw, 76px); }
  .conversion-section { padding-top: 56px; }
  .conversion-layout { grid-template-columns: 1fr; gap: 42px; padding-bottom: 42px; }
  .valuation-card { grid-row: 1; }
  .conversion-main { grid-row: 2; padding: 0; }
  .conversion-main > h2 { max-width: 690px; }
  .process-preview { padding-block: 34px 44px; }
  .process-step { padding-inline: 24px; }
  .process-step:first-child { padding-left: 0; }
  .situation-group { min-height: 0; }
  .trust-list { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .vehicles-layout { grid-template-columns: 1fr; gap: 38px; }
  .vehicles-heading,
  .vehicle-feature,
  .vehicle-index { grid-column: 1; grid-row: auto; }
  .vehicle-feature { min-height: 280px; }
  .expertise-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .expertise-intro { padding-right: 0; padding-bottom: 46px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .contact-cta-content { grid-template-columns: 1fr; }
  .contact-direct-block { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid #cfd5dd; }
  .contact-phone-block { min-height: 0; }
  .contact-valuation-block { padding: 24px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main .brand { grid-column: 1 / -1; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 28px); }
  .hero { min-height: 790px; }
  .hero::after { background: linear-gradient(180deg, rgba(0, 8, 22, .34) 0%, rgba(0, 8, 22, .25) 48%, rgba(0, 8, 22, .18) 100%); }
  .hero-scene { object-fit: contain; object-position: center bottom; }
  .hero-media picture { animation-duration: .9s; animation-delay: .05s; }
  .site-header { min-height: 112px; padding: 8px 14px; display: grid; grid-template-columns: 40px minmax(0, 1fr) 40px; grid-template-rows: 46px 32px; column-gap: 0; row-gap: 12px; }
  .site-header > .brand { grid-column: 2; grid-row: 1; justify-self: center; align-self: center; flex-basis: auto; width: min(185px, 100%); margin-left: 0; }
  .menu-toggle { grid-column: 3; grid-row: 1; width: 40px; min-width: 40px; min-height: 40px; margin-left: 0; padding: 0; border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06); }
  .menu-toggle svg { width: 22px; height: 22px; }
  .mobile-quick-actions { grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 6px; }
  .mobile-quick-actions button,
  .mobile-quick-actions a { position: relative; isolation: isolate; overflow: hidden; min-width: 0; min-height: 32px; padding: 0 9px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; border-radius: 6px; color: rgba(255, 255, 255, .88); font-size: 10.5px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background-color .18s ease; animation: mobile-quick-action-enter .7s cubic-bezier(.2, .82, .22, 1) .72s backwards; }
  .mobile-quick-actions button { --quick-shift: -28px; --quick-overshoot: 2px; border: 1px solid rgba(255, 75, 86, .46); background: rgba(239, 22, 36, .14); }
  .mobile-quick-actions a { --quick-shift: 28px; --quick-overshoot: -2px; border: 1px solid rgba(37, 211, 102, .38); background: rgba(37, 211, 102, .08); animation-delay: .86s; }
  .mobile-quick-actions button::after,
  .mobile-quick-actions a::after { content: ""; position: absolute; z-index: -1; inset: -8px auto -8px -35%; width: 28%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent); opacity: 0; transform: skewX(-22deg); pointer-events: none; animation: mobile-quick-sheen .8s ease-out 1.25s backwards; }
  .mobile-quick-actions a::after { animation-delay: 1.4s; }
  .mobile-quick-actions svg { flex: 0 0 auto; font-size: 15px; animation: mobile-quick-icon-pop .5s cubic-bezier(.2, .82, .22, 1) .98s backwards; }
  .mobile-quick-actions a svg { animation-delay: 1.12s; }
  .mobile-quick-actions a svg { color: #25d366; }
  .mobile-quick-actions button:active,
  .mobile-quick-actions a:active { transform: scale(.97); }
  .mobile-navigation { top: 0; width: min(88vw, 350px); padding: 124px 22px 30px; }
  .hero-content { padding-top: 174px; }
  .hero h1 { max-width: 390px; font-size: clamp(48px, 14vw, 64px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-action,
  .whatsapp-action,
  .light-action { width: 100%; min-height: 56px; padding-inline: 18px; font-size: 14px; }
  .floating-whatsapp { width: 58px; min-height: 58px; padding: 0; }
  .floating-whatsapp span { display: none; }
  .section-heading h2 { font-size: 34px; }
  .conversion-section { padding-top: 40px; }
  .conversion-layout { gap: 34px; }
  .valuation-card { min-height: 430px; padding: 24px 20px; }
  .valuation-step { margin-top: 28px; }
  .valuation-step h2 { margin-bottom: 22px; font-size: 27px; }
  .guided-fields { grid-template-columns: 1fr; }
  .guided-fields .is-wide { grid-column: 1; }
  .field-label input,
  .field-label select { height: 56px; font-size: 15px; }
  .conversion-main > h2 { font-size: 46px; }
  .conversion-copy br,
  .coverage-line br { display: none; }
  .conversion-copy { margin-top: 22px; font-size: 17px; }
  .coverage-line { margin-top: 24px; font-size: 15px; line-height: 1.9; }
  .valuation-form { grid-template-columns: 1fr; }
  .valuation-form .is-wide { grid-column: 1; }
  .situation-grid { grid-template-columns: 1fr; }
  .situation-group { grid-template-columns: 44px minmax(0, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step:nth-child(n) { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .step-arrow { display: none; }
  .trust-list { grid-template-columns: 1fr; padding-block: 30px; }
  .trust-item:nth-child(n) { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .15); }
  .trust-item:last-child { padding-bottom: 0; border-bottom: 0; }
  .vehicles-section,
  .expertise-section,
  .faq-section { padding-block: 70px; }
  .vehicles-heading h2 { font-size: 44px; }
  .vehicle-feature { min-height: 250px; padding-right: 0; }
  .vehicle-feature-label { margin-left: 68px; }
  .vehicle-feature > svg { width: 52px; height: 52px; }
  .vehicle-feature h3 { font-size: 62px; }
  .vehicle-index-item { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 18px 0; }
  .vehicle-index-item button { grid-column: 2; }
  .expertise-points article { grid-template-columns: 58px 1fr; }
  .expertise-points article > span { font-size: 38px; }
  .faq-list { padding-left: 20px; }
  .faq-item.is-open::before { left: -21px; }
  .contact-phone-block { grid-template-columns: 54px 1fr; gap: 15px; }
  .contact-phone-block > span { width: 48px; height: 48px; }
  .contact-valuation-block { grid-template-columns: 54px 1fr auto; gap: 15px; }
  .contact-valuation-block > span { width: 48px; height: 48px; }
  .contact-direct-block { grid-template-columns: 1fr; gap: 15px; }
  .contact-email-link { padding-left: 63px; white-space: normal; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-main .brand { grid-column: auto; width: 250px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-legal { flex-direction: column; }
  .footer-legal div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-media picture { opacity: 1; transform: none; }
  .site-header > .brand { opacity: 1; transform: none; }
  .site-header > .brand::after { display: none; }
}
