:root {
  --bg: #050506;
  --bg-soft: #0d0e10;
  --surface: #111317;
  --line: #202327;
  --line-strong: #2d3137;
  --text: #f1f1f2;
  --muted: #9a9ea6;
  --red: #e11428;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  z-index: 1;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28) 0.7px, transparent 0.7px), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px);
  background-size: 4px 4px, 5px 5px;
}

.topbar,
main,
.site-footer {
  position: relative;
  z-index: 2;
  background-color: #163148
}

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(7px);
  background: rgb(22 54 79);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand img {
  height: 42px;
  display: block;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #d9dce2;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  border: 1px solid transparent;
  background: transparent;
  color: #d4d6dc;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.icon-btn:hover {
  border-color: var(--line-strong);
  color: #fff;
}

.contact-btn {
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 11px 20px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-btn:hover {
  border-color: #fff;
  color: #fff;
}

.hero {
  position: relative;
  min-height: clamp(420px, 60vh, 640px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  filter: saturate(0.65) brightness(0.78) contrast(1.02);
  transform: translate(-50%, -50%) scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 58%, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.42) 62%),
    linear-gradient(100deg, rgba(0, 0, 0, 0.56) 12%, rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0.52) 100%);
}

.hero.theme-2 .hero-overlay {
  background:
    radial-gradient(circle at 78% 50%, rgba(56, 56, 56, 0.08), rgba(0, 0, 0, 0.46) 68%),
    linear-gradient(100deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0.54));
}

.hero.theme-3 .hero-overlay {
  background:
    radial-gradient(circle at 78% 44%, rgba(72, 72, 72, 0.1), rgba(0, 0, 0, 0.48) 67%),
    linear-gradient(100deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.58));
}

.hero-content {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(90px, 14vh, 180px) 0 60px;
  max-width: 1320px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 16px;
  color: #d1d4db;
}

.hero h1 { 
  margin: 16px 0 18px;
  max-width: 640px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.hero-copy {
  margin: 0;
  max-width: 520px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.55;
  color: #d6d9e0;
}

.hero-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  padding: 14px 28px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: transform 220ms ease, border-color 220ms ease;
}

.hero-cta:hover {
  border-color: var(--red);
  transform: translateX(4px);
}

.hero-steps {
  position: absolute;
  right: clamp(12px, 2.5vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 18px;
}

.step {
  border: 0;
  background: transparent;
  color: #7a7f87;
  cursor: pointer;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 180ms ease;
}

.step::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #3b3e43;
}

.step.active {
  color: var(--red);
}

.step.active::after {
  background: var(--red);
}

.trust-strip {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  margin: 38px auto 0;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.2), transparent 48%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #ffffff 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 44px rgba(255, 255, 255, 0.26);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 22px;
  right: 22px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

.trust-item {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
  text-align: left;
  background: linear-gradient(150deg, rgb(10, 10, 10), rgb(52, 82, 138));
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 25px 24px;
  border-radius: 18px;
  animation: trustStripFloat 4.4s ease-in-out infinite;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.trust-item::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -34%;
  width: 52%;
  height: 320%;
  pointer-events: none;
  opacity: 0.6;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-120%);
  transition: transform 420ms ease;
}

.trust-item:hover,
.trust-item:focus-visible {
  background: linear-gradient(150deg, rgb(0 0 0 / 65%), rgb(0 0 0));
  border-color: rgba(255, 58, 78, 0.8);
  box-shadow: 0 14px 34px rgba(255, 58, 78, 0.2);
  transform: translateY(-4px);
}

.trust-item:hover::after,
.trust-item:focus-visible::after {
  transform: rotate(18deg) translateX(380%);
}

.trust-item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.trust-strip .trust-item:nth-child(2) {
  animation-delay: 0.22s;
}

.trust-strip .trust-item:nth-child(3) {
  animation-delay: 0.45s; 
  background: linear-gradient(150deg, rgb(25 201 81), rgb(6, 20, 10));
  border-color: rgba(74, 219, 131, 0.78);
}

.trust-strip .trust-item:nth-child(3):hover,
.trust-strip .trust-item:nth-child(3):focus-visible {
  background: linear-gradient(150deg, rgb(18, 88, 40), rgb(5, 18, 9));
  border-color: rgba(106, 255, 168, 1);
  box-shadow: 0 14px 34px rgba(38, 191, 96, 0.4);
}

.trust-strip .trust-item:nth-child(3) .trust-title {
  color: #ffffff;
}

.trust-strip .trust-item:nth-child(3) .trust-copy {
  color: #d8ffe6;
}

.trust-title {
  display: block;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 800;
  color: #e31c1c;
} 

.trust-copy {
  display: block;
  margin: 10px 0 0;
  color: #f1f5ff;
  font-size: 14px;
  line-height: 1.45;
}

@keyframes trustStripFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip::before,
  .trust-item,
  .trust-item::after {
    animation: none;
    transition: none;
  }
}

.featured {
  width: min(1400px, calc(100% - 40px));
  margin: 72px auto;
  padding: 34px;
  border: 1px solid #d8dee6;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  color: #1c232c;
}

.featured-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.featured .section-tag {
  color: #be0d1f;
}

.featured h2 {
  color: #1a2129;
}

.section-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--red);
}

.featured h2,
.owners h2 {
  margin: 10px 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.94;
  text-transform: uppercase;
}

.section-line {
  display: block;
  width: 32px;
  height: 2px;
  margin: 0 auto 16px;
  background: var(--red);
}

.featured-subcopy {
  margin: 0 auto;
  max-width: 720px;
  color: #495363;
  line-height: 1.45;
  font-size: clamp(17px, 2.2vw, 24px);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 22px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.outline-btn:hover {
  border-color: var(--red);
  color: #fff;
}

.featured-carousel {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  padding: 8px 0;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #cfd7e2;
  background: #ffffff;
  color: #be0d1f;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-control:hover {
  border-color: #be0d1f;
  background: #fff5f6;
}

.carousel-control:active {
  transform: translateY(-50%) scale(0.96);
}

.control-left {
  left: 8px;
}

.control-right {
  right: 8px;
}

.featured-track {
  display: flex;
  gap: 12px;
  width: 100%;
  will-change: transform;
}

.model-card {
  position: relative;
  flex: 0 0 calc((100% - (12px * 3)) / 4);
  min-height: 520px;
  background: #ffffff;
  border: 1px solid #d8dfe8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(18, 32, 47, 0.12);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  border-color: #c33a46;
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(190, 13, 31, 0.18);
}

.model-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: 304px;
  border-radius: 0;
  background:
    url("imagen/Rav4.png") center 62% / 88% auto no-repeat,
    radial-gradient(circle at 50% 18%, #f9fbfd 0%, #e8edf4 62%, #dce3ed 100%);
  border-bottom: 1px solid #e2e8f0;
  filter: none;
}

.model-camry .model-image {
  background:
    url("imagen/Camry.png") center 62% / 90% auto no-repeat,
    radial-gradient(circle at 50% 18%, #f9fbfd 0%, #e8edf4 62%, #dce3ed 100%);
  filter: none;
}

.model-tacoma .model-image {
  background:
    url("imagen/Tacoma.png") center 64% / 89% auto no-repeat,
    radial-gradient(circle at 50% 18%, #f9fbfd 0%, #e8edf4 62%, #dce3ed 100%);
  filter: none;
}

.model-prius .model-image {
  background:
    url("imagen/Prius.png") center 64% / 86% auto no-repeat,
    radial-gradient(circle at 50% 18%, #f9fbfd 0%, #e8edf4 62%, #dce3ed 100%);
  filter: none; 
}

.model-corolla .model-image {
  background:
    url("imagen/Corolla.png") center 62% / 88% auto no-repeat,
    radial-gradient(circle at 50% 18%, #f9fbfd 0%, #e8edf4 62%, #dce3ed 100%);
  filter: none;
}

.model-corolla-cross .model-image {
  background:
    url("imagen/Corolla_Cross.png") center 64% / 90% auto no-repeat,
    radial-gradient(circle at 50% 18%, #f9fbfd 0%, #e8edf4 62%, #dce3ed 100%);
  filter: none;
}

.model-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 16px 14px 14px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  height: calc(100% - 304px);
}

.model-copy h3 {
  margin: 2px 0;
  color: #1f2730;
  text-align: center;
  font-size: clamp(22px, 2vw, 32px);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.model-segment {
  margin: 0;
  color: #be0d1f;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
}

.model-segment::after {
  content: none;
}

.model-description {
  margin: 0;
  color: #2d3743;
  font-size: 14px;
  line-height: 1.45;
  min-height: 56px;
  text-align: center;
}

.model-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  border: 1px solid #980c1a;
  border-radius: 8px;
  background: linear-gradient(180deg, #163148 0%, #b20c1d 100%);
  color: #ffffff;
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.model-btn:hover {
  border-color: #7c0712;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(190, 13, 31, 0.28);
}

.model-btn span {
  color: #ffffff;
}

.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
}

.vehicle-modal.hidden {
  display: none;
}

.vehicle-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 9, 0.72);
  backdrop-filter: blur(4px);
}

.vehicle-modal__card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  border: 1px solid #2f3f52;
  border-radius: 18px;
  background: linear-gradient(150deg, #0f1319, #12304a);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.42);
  padding: 30px 30px 28px;
}

.vehicle-modal__card {
  scrollbar-width: thin;
  scrollbar-color: #4a607a rgba(10, 16, 23, 0.55);
}

.vehicle-modal__card::-webkit-scrollbar {
  width: 10px;
}

.vehicle-modal__card::-webkit-scrollbar-track {
  background: rgba(10, 16, 23, 0.55);
  border-radius: 999px;
}

.vehicle-modal__card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4b7097, #2d4f73);
  border-radius: 999px;
}

.vehicle-modal__image {
  display: block;
  width: 100%;
  height: clamp(220px, 30vw, 300px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #2f3f53;
  margin: 0 0 18px;
  background: linear-gradient(155deg, #213349, #0e131b);
}

.vehicle-modal__intro {
  display: grid;
  gap: 16px;
}

.vehicle-modal__intro[hidden],
#vehicleModalDetails[hidden] {
  display: none !important;
}

.vehicle-modal__intro-image {
  display: block;
  width: 100%;
  height: clamp(230px, 30vw, 320px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #2f3f53;
  background: linear-gradient(155deg, #213349, #0e131b);
}

.vehicle-modal__intro-title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font: 800 18px "Manrope", sans-serif;
}

.vehicle-modal__intro-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vehicle-modal__intro-btn {
  min-height: 52px;
  border: 1px solid #d9e4f2;
  border-radius: 12px;
  background: #ffffff;
  color: #12304a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font: 800 13px "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vehicle-modal__intro-btn:hover {
  transform: translateY(-2px);
  border-color: #1e4e75;
  box-shadow: 0 10px 24px rgba(13, 33, 53, 0.2);
}

.vehicle-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 1px solid #314153;
  background: rgba(11, 16, 22, 0.86);
  color: #f0f3f7;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.vehicle-modal__close:hover {
  border-color: var(--red);
}

.vehicle-modal__segment {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: #9fc8f4;
}

.vehicle-modal__title {
  margin: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 0.95;
}

.vehicle-modal__description {
  margin: 0;
  font-size: 18px;
  color: #d5dce5;
  line-height: 1.65;
}

.vehicle-modal__price {
  margin: 20px 0 0;
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f8fcff;
}

.credit-sim {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #2a3a4f;
}

.credit-sim h4 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credit-sim__grid {
  display: grid;
  grid-template-columns: 1fr minmax(230px, 300px) minmax(150px, 190px) 1fr;
  gap: 10px;
  align-items: start;
}

.credit-sim__field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #cdd8e6;
}

.credit-sim__field--downpayment {
  grid-column: 2 / 4;
  width: 100%;
  justify-self: center;
}

.credit-sim__field--term {
  grid-column: 2;
  max-width: 300px;
  justify-self: center;
}

.credit-sim__field--interest {
  grid-column: 3;
  max-width: 190px;
  justify-self: center;
}

.credit-sim__field--term .credit-sim__field-head,
.credit-sim__field--interest .credit-sim__field-head {
  justify-content: center;
  gap: 10px;
}

.credit-sim__field--term select,
.credit-sim__field--interest input {
  display: block;
  margin-inline: auto;
  width: 100%;
  text-align: center;
}

.credit-sim__field--term select {
  min-width: 230px;
}

.credit-sim__field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.credit-sim__field-head strong {
  color: #ffffff;
  font-size: 15px;
}

.credit-sim__field input,
.credit-sim__field select {
  width: 100%;
  border: 1px solid #30445c;
  border-radius: 10px;
  background: rgba(7, 12, 19, 0.92);
  color: #f1f6fc;
  padding: 10px;
  font: 700 13px "Manrope", sans-serif;
}

.credit-sim__field--term input,
.credit-sim__field--term select {
  border-color: #c4162a;
  background: #4b5563;
  box-shadow: 0 0 0 1px rgba(196, 22, 42, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.credit-sim__field--term select option {
  background: #4b5563;
  color: #ffffff;
}

.credit-sim__field--term input:focus,
.credit-sim__field--term select:focus {
  outline: 0;
  border-color: #ff5266;
  box-shadow: 0 0 0 3px rgba(255, 82, 102, 0.24);
}

.credit-sim__field input[readonly] {
  cursor: not-allowed;
  opacity: 0.92;
  color: #ffffff;
  border-style: dashed;
}

.credit-sim__field--interest input[readonly] {
  padding: 8px 10px;
  font-size: 12px;
  min-height: 38px;
}

.credit-sim__field input[type="range"] {
  appearance: none;
  height: 6px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #2f7fd1, #e11428);
}

.credit-sim__field input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #103352;
  cursor: pointer;
}

.credit-sim__field input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #103352;
  cursor: pointer;
}

.credit-sim__field input:focus,
.credit-sim__field select:focus {
  outline: 0;
  border-color: var(--red);
}

.credit-sim__result {
  margin: 0 0 14px;
  background: rgba(8, 13, 20, 0.8);
  border: 1px solid #2f4055;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.credit-sim__result p {
  margin: 0;
  font-size: 15px;
  color: #dce7f3;
  text-align: center;
}

.credit-sim__result strong {
  color: #ffffff;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  line-height: 1.15;
}

.credit-sim__result p:first-child {
  font-size: 18px;
}

.credit-sim__result p:first-child strong {
  font-size: clamp(28px, 3.4vw, 36px);
}

.credit-sim__result p:nth-child(2),
.credit-sim__result p:nth-child(3),
.credit-sim__result p:nth-child(2) strong,
.credit-sim__result p:nth-child(3) strong {
  font-size: 15px;
  line-height: 1.3;
}

.vehicle-modal__cta {
  margin-top: 18px;
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid #3a4f67;
  border-radius: 12px;
  background: linear-gradient(135deg, #e11428, #b60f20);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font: 800 13px "Manrope", sans-serif;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vehicle-modal__cta:hover {
  transform: translateY(-2px);
  border-color: #f9c7cc;
  box-shadow: 0 12px 26px rgba(225, 20, 40, 0.35);
}

.featured-footer .outline-btn {
  gap: 12px;
}

.featured-footer {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.owners {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;  
  background:
    linear-gradient(120deg, rgba(7, 9, 12, 0.84), rgba(9, 12, 16, 0.78)),
    url("imagen/tacoma.jpg") center center / cover no-repeat;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.google-reviews {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto 68px;
  padding: 34px;
  border: 1px solid #dbe2ea;
  border-radius: 28px;
  background: #ffffff;
  color: #1d2733;
}

.google-reviews-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.google-reviews .google-tag {
  color: #ea4335;
}

.google-reviews h2 {
  margin: 10px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
  color: #1a2430;
}

.google-subcopy {
  margin: 0;
  color: #4c5b6b;
  font-size: 18px;
  line-height: 1.5;
}

.google-score-card {
  margin: 0 auto 24px;
  max-width: 860px;
  border: 1px solid #e3e9f1;
  border-radius: 18px;
  padding: 16px 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 22px;
  row-gap: 8px;
}

.google-brand {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 0;
  font: 800 30px/1 "Manrope", sans-serif;
  letter-spacing: 0.01em;
}

.g-letter {
  display: inline-block;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #ea4335;
}

.g-yellow {
  color: #fbbc05;
}

.g-green {
  color: #34a853;
}

.google-score {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  color: #1f2a36;
  line-height: 1;
}

.google-stars {
  margin: 0;
  letter-spacing: 0.2em;
  color: #fbbc05;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.google-total {
  margin: 0;
  color: #5f6d7d;
  font-size: 14px;
  grid-column: 1 / -1;
  text-align: center;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.google-review-card {
  border: 1px solid #e0e7f0;
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(22, 49, 72, 0.08);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-name {
  margin: 0;
  color: #1e2834;
  font-weight: 800;
  font-size: 15px;
}

.review-rate {
  margin: 0;
  color: #fbbc05;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.review-copy {
  margin: 10px 0 0;
  color: #4e5b6a;
  line-height: 1.5;
  font-size: 14px;
}

.prequal-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(15, 21, 29, 0.95), rgba(20, 49, 72, 0.9)),
    radial-gradient(circle at 88% 20%, rgba(225, 20, 40, 0.22), transparent 45%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.prequal-content h2 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.prequal-content p {
  margin: 0;
  max-width: 760px;
  color: #d3d8e1;
  line-height: 1.6;
}

.prequal-btn {
  flex-shrink: 0;
  gap: 10px;
  border-color: #3d4652;
  background: linear-gradient(135deg, rgba(8, 11, 15, 0.72), rgba(24, 63, 95, 0.92));
  padding: 18px 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-width: 2px;
  box-shadow: 0 0 0 rgba(225, 20, 40, 0.4);
  animation: prequalPulse 1.9s ease-in-out infinite;
}

.prequal-btn:hover {
  border-color: var(--red);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 26px rgba(225, 20, 40, 0.42);
}

@keyframes prequalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 20, 40, 0.4);
  }
  60% {
    box-shadow: 0 0 0 14px rgba(225, 20, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 20, 40, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prequal-btn {
    animation: none;
  }
}

.contact-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, #0b0d10, #12151a);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-intro h2 {
  margin: 10px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-intro > p {
  margin: 0;
  color: #b6bcc5;
  line-height: 1.6;
  max-width: 480px;
}

.contact-points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.contact-points p {
  margin: 0;
  color: #d3d7de;
}

.contact-points strong {
  color: #fff;
  margin-right: 6px;
}

.contact-form {
  padding: 22px;
  border: 1px solid #1f242b;
  border-radius: 30px;
  background: rgb(40 76 114);
}

.field-group {
  margin-bottom: 14px;
}

.field-group label {
  display: block;
  margin-bottom: 6px;
  color: #cfd3da;
  font-size: 13px;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid #2a3038;
  border-radius: 15px;
  background: #0a0c10;
  color: #f0f1f3;
  padding: 11px 12px;
  font: 500 14px "Manrope", sans-serif;
  outline: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--red);
}

.field-group textarea {
  resize: vertical;
  min-height: 108px;
}

.field-group.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
  gap: 12px;
}

.submit-btn span {
  color: var(--red);
}

.site-footer {
  padding: 34px 20px 20px;
  border-top: 1px solid var(--line);
  color: #7d828a;
}

.footer-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
}

.footer-brand img {
  height: 32px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.6;
  color: #9da3ac;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.footer-links h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #f1f2f4;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #adb2ba;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1320px, calc(100% - 40px));
  margin: 26px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 10px;
  animation: floatingCluster 3.8s ease-in-out infinite;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.floating-btn .btn-icon {
  font-size: 16px;
  line-height: 1;
}

.whatsapp-btn {
  background: linear-gradient(135deg, rgba(18, 175, 82, 0.94), rgba(13, 132, 63, 0.94));
  color: #ffffff;
  animation: whatsappPulse 2.2s ease-in-out infinite, floatingBtn 2.6s ease-in-out infinite;
}

.visit-btn {
  background: linear-gradient(135deg, rgba(20, 49, 72, 0.94), rgba(26, 66, 99, 0.94));
  color: #ffffff;
  animation: floatingBtn 2.6s ease-in-out infinite;
  animation-delay: 0.25s;
}

.floating-btn:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32), 0 0 0 0 rgba(18, 175, 82, 0.35);
  }
  65% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32), 0 0 0 12px rgba(18, 175, 82, 0);
  }
}

@keyframes floatingCluster {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes floatingBtn {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}

@media (max-width: 1120px) {
  .model-card {
    flex-basis: calc((100% - (14px * 2)) / 3);
    min-height: 500px;
  }

  .featured-subcopy {
    font-size: 24px;
  }
}

@media (max-width: 920px) {
  .google-score-card {
    max-width: 100%;
    grid-template-columns: auto auto auto;
    justify-content: center;
    column-gap: 14px;
    row-gap: 8px;
  }

  .google-score {
    font-size: 36px;
  }

  .google-stars {
    font-size: 16px;
  }

  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
    order: 1;
  }

  .main-nav {
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .nav-links {
    order: 10;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0 8px;
    border-top: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .actions {
    margin-left: auto;
  }

  .hero {
    min-height: 500px;
  }

  .hero-steps {
    right: 12px;
    gap: 10px;
  }

  .step {
    font-size: 20px;
  }

  .step::after {
    width: 22px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px;
    gap: 8px;
    overflow: visible;
    align-items: stretch;
  }

  .trust-item {
    padding: 14px 10px;
  }

  .owners {
    flex-direction: column;
    align-items: flex-start;
  }

  .prequal-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .main-nav {
    width: calc(100% - 26px);
  }

  .brand img {
    height: 34px;
  }

  .actions {
    gap: 8px;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .contact-btn {
    padding: 10px 12px;
    font-size: 10px;
  }

  .trust-title {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .trust-copy {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .contact-btn {
    display: none;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content {
    width: calc(100% - 26px);
    padding: 118px 14px 26px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.44), rgba(6, 8, 12, 0.12));
    backdrop-filter: blur(1px);
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    margin: 10px 0 12px;
    max-width: 100%;
    font-size: clamp(38px, 13vw, 64px);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 2px;
    font-size: 15px;
    max-width: 100%;
    line-height: 1.45;
  }

  .hero-cta {
    margin-top: 22px;
    padding: 12px 18px;
    font-size: 11px;
  }

  .hero-steps {
    top: auto;
    bottom: 16px;
    transform: none;
    right: 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .featured,
  .owners,
  .prequal-section,
  .contact-section {
    width: calc(100% - 26px);
  }

  .featured {
    margin-top: 50px;
  }

  .featured-subcopy {
    font-size: 20px;
  }

  .featured-track {
    gap: 14px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .model-card {
    flex-basis: 100%;
    min-height: 520px;
  }

  .model-description {
    min-height: auto;
  }

  .owners {
    padding: 24px;
    margin-bottom: 48px;
  }

  .contact-section {
    padding: 24px;
    margin-bottom: 48px;
  }

  .field-group.two-columns {
    grid-template-columns: 1fr;
  }

  .footer-shell,
  .footer-bottom {
    width: calc(100% - 26px);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    left: auto;
    right: 10px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .floating-btn {
    min-width: auto;
    min-height: 44px;
    font-size: 11px;
    padding: 9px 10px;
  }

  .floating-btn .btn-icon {
    font-size: 14px;
  }

  .vehicle-modal__card {
    padding: 22px 18px;
  }

  .vehicle-modal__title {
    font-size: clamp(30px, 10vw, 42px);
    margin-right: 28px;
  }

  .vehicle-modal__description {
    font-size: 16px;
  }

  .vehicle-modal__price {
    font-size: clamp(25px, 8vw, 34px);
  }

  .vehicle-modal__intro-actions {
    grid-template-columns: 1fr;
  }

  .credit-sim__grid {
    grid-template-columns: 1fr;
  }

  .credit-sim__field--downpayment,
  .credit-sim__field--term,
  .credit-sim__field--interest {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}
