:root {
  --red: #e50914;
  --red-dark: #a80008;
  --black: #050505;
  --ink: #151515;
  --muted: #666;
  --white: #fff;
  --soft: #f5f5f5;
  --line: #e5e5e5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  --app-viewport-width: 100vw;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
  background: #080808;
}
html.catalog-root {
  background: linear-gradient(180deg, #f8fafc 0%, #eef1f5 44%, #e8edf4 100%);
}
html.home-root {
  background: #050505;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}
@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
.page-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
.home-page .page-shell {
  min-height: 100dvh;
  max-width: var(--app-viewport-width);
  background: var(--white);
}
@supports (overflow-x: clip) {
  .page-shell {
    overflow-x: clip;
  }
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand { display: flex; align-items: center; }
.brand img {
  width: min(285px, 52vw);
  height: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 22px;
  color: #ddd;
  font-size: 14px;
  font-weight: 800;
}
.nav a:hover { color: var(--red); }
.nav .nav-highlight {
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.nav .nav-highlight:hover {
  color: #fff;
  filter: brightness(1.08);
}
.whatsapp,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}
.whatsapp,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.btn.dark {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, #2d2d2d, #000);
}
.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=85") center/cover;
  overflow: hidden;
  max-width: 100%;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 900px;
  background: linear-gradient(180deg, transparent, rgba(229, 9, 20, 0.75), transparent);
  transform: rotate(28deg);
  pointer-events: none;
}
.hero::before { left: -180px; top: -140px; }
.hero::after { right: -220px; bottom: -220px; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}
.kicker {
  margin: 0 0 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 900;
}
.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 920px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}
.hero-strip span {
  padding: 18px 14px;
  text-align: center;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.55);
}

.vehicle-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  text-transform: uppercase;
  font-weight: 900;
}

.section,
.pricing,
.contact {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}
.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}
h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  text-transform: uppercase;
}
h3 { margin: 0 0 10px; font-size: 24px; }
p { color: var(--muted); line-height: 1.65; }

.option-grid,
.price-grid,
.benefit-grid {
  display: grid;
  gap: 18px;
}
.option-grid { grid-template-columns: 1fr 1fr; }
.option-card,
.price-card,
.benefit-grid div,
.contact-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
}
.option-card {
  padding: 30px;
}
.option-card.highlight {
  color: var(--white);
  border-color: rgba(229, 9, 20, 0.5);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.92), rgba(10, 10, 10, 0.96)),
    var(--black);
  box-shadow: var(--shadow);
}
.option-card.highlight p,
.option-card.highlight li { color: rgba(255, 255, 255, 0.84); }
.tag {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.tag.dark { background: #333; }
ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.pricing {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  background: #0b0b0b;
}
.pricing h2 { color: var(--white); }
.pricing .section-title p { color: var(--red); }
.price-grid { grid-template-columns: repeat(3, 1fr); }
.price-card {
  overflow: hidden;
  background: var(--white);
}
.price-card.featured {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.price-head {
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.price-head span,
.price-head small { display: block; font-weight: 900; text-transform: uppercase; }
.price-head strong {
  display: block;
  margin: 8px 0;
  font-size: 46px;
  font-weight: 900;
}
.price-card ul { padding: 24px 28px 28px 44px; margin: 0; }

.catalog {
  text-align: center;
}
.catalog .section-title {
  margin-left: auto;
  margin-right: auto;
}
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.catalog-modal {
  width: min(980px, calc(100% - 24px));
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}
.catalog-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
}
.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--white);
  background: #050505;
  border-bottom: 3px solid var(--red);
}
.modal-head h2 {
  font-size: clamp(24px, 4vw, 36px);
}
.close-modal {
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}
.catalog-view {
  display: grid;
  gap: 16px;
  padding: 16px;
}
.catalog-view img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: var(--white);
}

.catalog-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 9, 20, 0.16), transparent 28%),
    #080808;
  position: relative;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
.catalog-page .page-shell {
  min-height: 100dvh;
  max-width: var(--app-viewport-width);
  background: inherit;
}
.catalog-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 34px;
  color: var(--white);
}
.catalog-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1;
  text-transform: uppercase;
}
.catalog-hero p:not(.kicker) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}
.catalog-tabs {
  position: sticky;
  top: 78px;
  z-index: 7;
  display: flex;
  gap: 10px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.94);
  overflow-x: auto;
}
.catalog-tabs button {
  flex: 1 0 max-content;
  border: 0;
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  background: #222;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.catalog-tabs button.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.catalog-section {
  display: none;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 74px;
  overflow: hidden;
}
.catalog-section.active {
  display: block;
}
.catalog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
  color: var(--white);
}
.catalog-section-head h2 {
  max-width: 760px;
}
.slider-controls {
  display: flex;
  gap: 10px;
}
.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  background: #191919;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}
.plan-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  gap: 18px;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
}
.gps-plan {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.featured-plan {
  border-color: rgba(229, 9, 20, 0.55);
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.32), rgba(255, 255, 255, 0.03)),
    #111;
}
.plan-label {
  align-self: start;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  background: #333;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.plan-label.red {
  background: var(--red);
}
.gps-plan h3 {
  font-size: 26px;
}
.plan-price {
  display: block;
  margin: 8px 0 8px;
  color: var(--red);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}
.plan-price small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}
.plan-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}
.gps-plan ul {
  flex: 1;
  color: rgba(255, 255, 255, 0.78);
}
.gps-plan li::marker {
  color: var(--red);
}
.gps-plan .btn {
  margin-top: 24px;
}

.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-grid div { padding: 24px; }
.benefit-grid strong {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}
.benefit-grid p { margin-bottom: 0; }

.contact {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 30px;
  align-items: center;
}
.contact-card {
  display: grid;
  gap: 12px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #141414, #000);
  border-color: #222;
}
.contact-card strong {
  font-size: 44px;
  line-height: 1;
}
.contact-card span { color: rgba(255, 255, 255, 0.72); font-weight: 800; }

.impact-stats {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 82px;
  padding: 24px 0 0;
  text-align: center;
}

.impact-stats-heading { max-width: 680px; margin: 0 auto 32px; }
.impact-stats-heading h2 { color: #10131a; }
.impact-stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.impact-stats-grid article { position: relative; padding: 28px 18px 24px; overflow: hidden; border: 1px solid #e0e5ec; border-radius: 12px; background: #fff; box-shadow: 0 16px 34px rgba(15, 23, 42, .08); }
.impact-stats-grid article::before { content: ""; position: absolute; top: 0; left: 50%; width: 56px; height: 3px; background: var(--red); transform: translateX(-50%); }
.impact-stats-grid strong { display: block; color: var(--red); font-size: clamp(34px, 5vw, 62px); font-weight: 900; line-height: 1; }
.impact-stats-grid span { display: block; margin-top: 12px; color: #4d596a; font-weight: 800; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: var(--black);
  border-top: 4px solid var(--red);
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar { flex-wrap: wrap; padding: 14px 16px; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero { min-height: auto; }
  .hero-strip,
  .option-grid,
  .price-grid,
  .benefit-grid,
  .contact,
  .impact-stats-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .catalog-tabs { top: 126px; }
  .catalog-section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand img { width: min(230px, 78vw); }
  .whatsapp { width: 100%; }
  .topbar {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    overflow: hidden;
  }
  .nav {
    max-width: 100%;
    gap: 8px 12px;
    overflow: hidden;
  }
  .nav a {
    font-size: 13px;
  }
  .hero h1 { font-size: 38px; }
  .hero-inner,
  .section,
  .pricing,
  .contact { padding-top: 56px; padding-bottom: 56px; }
  .impact-stats { width: min(100% - 22px, 560px); margin-bottom: 56px; padding: 18px 0 0; }
  .contact-card strong { font-size: 34px; }
  .footer { flex-direction: column; }
}

/* Catalogo de precios: version limpia tipo tabla de planes. */
.catalog-page {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef1f5 44%, #e8edf4 100%);
}
.catalog-page .page-shell {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef1f5 44%, #e8edf4 100%);
}

.catalog-page .topbar {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.catalog-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 30px;
  color: var(--ink);
  text-align: center;
}

.catalog-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
  text-transform: uppercase;
}

.catalog-hero p:not(.kicker) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #596273;
  font-size: 18px;
}

.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.catalog-help-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(820px, 100%);
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #dfe4eb;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.catalog-help-strip div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #fff;
  text-align: left;
}

.catalog-help-strip strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: 20px;
}

.catalog-help-strip span {
  color: #202632;
  font-weight: 900;
}

.catalog-tabs {
  position: sticky;
  top: 78px;
  z-index: 7;
  display: flex;
  gap: 12px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 12px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.catalog-tabs button {
  flex: 1 0 170px;
  display: grid;
  gap: 4px;
  border: 0;
  border-radius: 8px;
  padding: 15px 16px;
  color: #202632;
  background: #f4f6f9;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.catalog-tabs button small {
  color: #647084;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-tabs button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.catalog-tabs button.active small {
  color: rgba(255, 255, 255, 0.82);
}

.catalog-section {
  display: none;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 74px;
  overflow: hidden;
}

.catalog-section.active {
  display: block;
}

.catalog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
  color: var(--ink);
}

.catalog-section-head h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #dde3eb;
  border-radius: 50%;
  color: #202632;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}

.plan-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 18px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 22px;
}

.gps-plan {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  color: #202632;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gps-plan:hover {
  border-color: rgba(229, 9, 20, 0.24);
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
}

.featured-plan {
  border-color: rgba(229, 9, 20, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(229, 9, 20, 0.17);
}

.plan-label {
  display: block;
  align-self: stretch;
  margin-bottom: 0;
  padding: 18px 20px;
  border-radius: 0;
  color: var(--white);
  background: #202632;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.featured-plan .plan-label,
.plan-label.red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.gps-plan h3 {
  min-height: 74px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 22px 20px;
  border-bottom: 1px solid #edf0f4;
  text-align: center;
  font-size: 21px;
  text-transform: uppercase;
}

.price-status {
  align-self: center;
  margin-top: 22px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-status.published {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.price-status.quote {
  color: #202632;
  background: #edf0f4;
}

.vehicle-frame {
  position: relative;
  width: calc(100% - 38px);
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 320px;
  margin: 18px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(229, 9, 20, 0.08)), #f7f8fa;
}

.vehicle-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.vehicle-gallery::-webkit-scrollbar {
  display: none;
}

.vehicle-art {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0 auto;
  padding: 14px 42px;
  object-fit: contain !important;
  display: block;
  scroll-snap-align: center;
}

.vehicle-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(229, 9, 20, 0.9);
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.vehicle-prev { left: 8px; }
.vehicle-next { right: 8px; }

.app-store-float {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-store-float .store-btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.app-store-float .store-btn::before {
  display: none;
}

.app-store-float .store-btn img {
  width: 19px;
  height: 19px;
  margin-right: 9px;
  object-fit: contain;
}

.ai-chat-toggle {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 30;
  width: 112px;
  height: 112px;
  max-width: calc(100vw - 52px);
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0 14px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #ff2430 0%, var(--red) 44%, var(--red-dark) 100%);
  box-shadow: 0 22px 52px rgba(229, 9, 20, 0.38), 0 0 0 8px rgba(229, 9, 20, 0.1);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  animation: aiBubblePulse 2.8s ease-in-out infinite;
}

.ai-chat-toggle span {
  display: block;
}

@keyframes aiBubblePulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 22px 52px rgba(229, 9, 20, 0.38), 0 0 0 8px rgba(229, 9, 20, 0.1);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 28px 64px rgba(229, 9, 20, 0.5), 0 0 0 12px rgba(229, 9, 20, 0.08);
  }
}

.ai-chat-panel {
  position: fixed;
  right: 22px;
  bottom: 154px;
  z-index: 31;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 112px));
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}

.ai-vehicle-preview {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #e4e9f1;
  border-radius: 8px;
  background: #fff;
}

.ai-vehicle-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  padding: 8px;
  background: #f4f6f9;
}

.ai-vehicle-preview strong,
.ai-vehicle-preview span {
  display: block;
  padding: 0 10px;
}

.ai-vehicle-preview span {
  color: #647084;
  font-size: 12px;
  font-weight: 800;
}

.ai-chat-panel[hidden] {
  display: none;
}

.ai-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: #fff;
  background: #080808;
  border-bottom: 3px solid var(--red);
}

.ai-chat-head strong,
.ai-chat-head span {
  display: block;
}

.ai-chat-head strong {
  font-size: 18px;
}

.ai-chat-head span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.ai-chat-head button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ai-chat-head > div:first-child {
  min-width: 0;
}

.ai-chat-head-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
}

.ai-chat-head .ai-chat-new {
  width: auto;
  min-width: 0;
  padding: 0 9px;
  white-space: nowrap;
  font-size: 11px;
}

.ai-chat-messages {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
  overflow: auto;
  padding: 14px;
  background: #f4f6f9;
}

.ai-message {
  align-self: flex-start;
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 8px;
  color: #172033;
  background: #fff;
  line-height: 1.5;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.ai-message p {
  margin: 0 0 8px;
}

.ai-message p:last-child {
  margin-bottom: 0;
}

.ai-message.user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.ai-message.loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #647084;
  font-style: normal;
  font-weight: 800;
}

.ai-typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.ai-typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: aiTypingPulse 0.9s ease-in-out infinite;
}

.ai-typing-dots span:nth-child(2) {
  animation-delay: 0.14s;
}

.ai-typing-dots span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes aiTypingPulse {
  0%,
  80%,
  100% {
    opacity: 0.28;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.ai-chat-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
}

.ai-escalation {
  margin-top: 10px;
  padding-left: 10px;
  border-left: 3px solid var(--red);
}

.ai-escalation p {
  color: #4b5563;
  font-size: 13px;
}

.ai-reply-list {
  display: grid;
  gap: 5px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: inherit;
}

.ai-chat-link-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 9px;
  margin-right: 8px;
  border: 0;
  border-radius: 8px;
  padding: 0 11px;
  color: #fff;
  background: #202632;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.ai-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ai-quick-actions .ai-chat-link-button {
  margin: 0;
}

.ai-chat-form {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid #e6ebf2;
  background: #fff;
}

.ai-chat-form input {
  min-width: 0;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  padding: 12px;
  color: #172033;
  font: inherit;
}

.ai-chat-form button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ai-chat-form input:disabled,
.ai-chat-form button:disabled {
  opacity: 0.68;
  cursor: wait;
}

.platform-preview {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.platform-copy h2,
.platform-hero h1 {
  color: #08111f;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.platform-copy p,
.platform-hero p {
  max-width: 620px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.dashboard-mock {
  min-height: 380px;
  display: grid;
  grid-template-columns: 170px 1fr;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.dashboard-mock aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 16px;
  background: #0c111a;
  color: #fff;
}

.dashboard-mock aside span {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6dbe5;
  font-weight: 800;
  font-size: 13px;
}

.mock-map {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 30% 25%, rgba(229, 9, 20, 0.22), transparent 16%),
    radial-gradient(circle at 78% 62%, rgba(0, 0, 0, 0.12), transparent 18%),
    #eef2f7;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.real-map { isolation: isolate; background: #e7edf1; }
.real-map iframe { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; border: 0; filter: saturate(.82) contrast(1.04); }
.real-map::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(229,9,20,.08)); }

.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 7px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.34);
  transform: rotate(-45deg);
}

.pin-a { left: 24%; top: 24%; }
.pin-b { right: 22%; top: 38%; }
.pin-c { left: 48%; bottom: 24%; }

.object-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(250px, calc(100% - 48px));
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
}

.object-card small {
  color: #596273;
  font-weight: 700;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 999px;
  color: #08111f;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.store-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
}

.dark-store {
  color: #fff;
  background: #08111f;
}

.dark-store::before {
  background: #fff;
}

.hero-downloads .btn,
.hero-downloads .store-btn {
  min-width: 160px;
}

.platform-page {
  background: #f4f6f9;
}

.imei-page {
  background: #f4f6f9;
}

.imei-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 34px;
  align-items: center;
  padding: 62px 0 42px;
}

.imei-copy h1 {
  margin: 0;
  color: #08111f;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  text-transform: uppercase;
}

.imei-copy p:not(.kicker) {
  max-width: 640px;
  color: #4b5563;
  font-size: 19px;
}

.imei-checker {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.imei-checker label {
  display: grid;
  gap: 8px;
  color: #172033;
  font-weight: 900;
}

.imei-checker input {
  width: 100%;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  padding: 14px;
  color: #172033;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
}

.imei-result {
  display: grid;
  gap: 6px;
  min-height: 84px;
  padding: 16px;
  border-left: 5px solid #647084;
  border-radius: 8px;
  background: #f4f6f9;
}

.imei-result strong {
  color: #172033;
}

.imei-result span {
  color: #596273;
  line-height: 1.45;
}

.imei-result.ok {
  border-left-color: #18794e;
  background: #effaf4;
}

.imei-result.bad {
  border-left-color: var(--red);
  background: #fff4f4;
}

.imei-result.warn {
  border-left-color: #d97706;
  background: #fff8eb;
}

.imei-details {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fbfcfe;
}

.imei-details dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 12px;
  margin: 0;
}

.imei-details dt {
  color: #647084;
  font-weight: 900;
}

.imei-details dd {
  margin: 0;
  color: #172033;
  font-weight: 800;
}

.imei-official {
  width: 100%;
}

.imei-info {
  padding-top: 48px;
}

.imei-entry {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
}

.imei-entry-copy p:not(.kicker) {
  max-width: 680px;
  font-size: 18px;
}

.imei-entry-panel {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.88), rgba(5, 5, 5, 0.96)),
    #111;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.18);
}

.imei-entry-panel strong {
  font-size: 44px;
  line-height: 1;
}

.imei-entry-panel span {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.imei-entry-panel .btn {
  margin-top: 8px;
  background: #fff;
  color: var(--red-dark);
}

.arcotel-panel {
  width: min(1500px, calc(100% - 24px));
  padding-top: 56px;
  padding-bottom: 48px;
}

.arcotel-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.arcotel-frame {
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.arcotel-frame iframe {
  display: block;
  width: 100%;
  min-height: 1050px;
  border: 0;
  background: #fff;
}

.arcotel-summary {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.arcotel-summary h3 {
  margin: 0;
  color: #08111f;
  text-transform: uppercase;
}

.arcotel-summary p {
  margin: 0;
}

.arcotel-summary label {
  display: grid;
  gap: 7px;
  color: #172033;
  font-weight: 900;
}

.arcotel-summary input,
.arcotel-summary select,
.arcotel-summary textarea {
  width: 100%;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  padding: 11px 12px;
  color: #172033;
  background: #fff;
  font: inherit;
}

.arcotel-summary textarea {
  min-height: 92px;
  resize: vertical;
}

.arcotel-note {
  margin: 14px 0 18px;
  color: #647084;
  font-size: 14px;
  font-weight: 800;
}

.platform-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0;
}

.dashboard-mock.large {
  min-height: 480px;
}

.gps-reference-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 1536 / 687;
  overflow: hidden;
  box-sizing: border-box;
  border: 12px solid #171923;
  border-bottom-width: 22px;
  border-radius: 18px 18px 11px 11px;
  background: #171923;
  box-shadow: 0 18px 0 #0e1017, 0 40px 80px rgba(15, 23, 42, 0.35);
  transform: perspective(1300px) rotateX(1.4deg);
}

.gps-reference-panel > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gps-live-map {
  position: absolute;
  left: 14.45%;
  top: 0;
  width: 85.55%;
  height: 71.3%;
  overflow: hidden;
  background: #d5f3e3;
}

.gps-live-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
  filter: saturate(.9) contrast(1.02);
}

.gps-reference-panel-large { max-width: 1500px; margin-inline: auto; }

.gps-reference-panel::after {
  content: "";
  position: absolute;
  left: 33%;
  bottom: 4px;
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

@media (max-width: 900px) {
  .platform-preview,
  .platform-hero,
  .imei-hero,
  .imei-entry,
  .arcotel-workspace {
    grid-template-columns: 1fr;
  }

  .arcotel-summary {
    position: static;
  }

  .dashboard-mock {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .dashboard-mock aside {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-mock,
  .dashboard-mock.large {
    min-height: 520px;
  }
}

.catalog-empty {
  padding: 34px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.catalog-empty h2 {
  margin-bottom: 12px;
}

.plan-price {
  display: block;
  margin: 14px 20px 8px;
  color: var(--red);
  text-align: center;
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

.plan-price small {
  color: #4b5563;
  font-size: 16px;
}

.plan-price.consult-price {
  width: calc(100% - 48px);
  margin-left: 24px;
  margin-right: 24px;
  padding: 18px 10px;
  border: 1px dashed rgba(229, 9, 20, 0.34);
  border-radius: 8px;
  color: var(--red-dark);
  background: #fff7f7;
  font-size: 34px;
  text-transform: uppercase;
}

.plan-note {
  min-height: 54px;
  margin: 0 24px 22px;
  color: #596273;
  text-align: center;
  font-weight: 700;
}

.gps-plan ul {
  flex: 1;
  margin: 0;
  padding: 24px 28px 24px 46px;
  border-top: 1px solid #edf0f4;
  color: #202632;
}

.gps-plan li::marker {
  color: var(--red);
}

.gps-plan .btn {
  width: calc(100% - 48px);
  margin: 0 24px 26px;
  box-shadow: 0 14px 28px rgba(229, 9, 20, 0.18);
}

.private-slider {
  grid-auto-columns: minmax(270px, 330px);
}

.promo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.promo-gallery img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
  .catalog-tabs {
    top: 126px;
  }

  .catalog-section-head {
    align-items: start;
    flex-direction: column;
  }

  .promo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  html,
  body,
  .catalog-page,
  .page-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  @supports (overflow-x: clip) {
    html,
    body,
    .catalog-page,
    .page-shell {
      overflow-x: clip;
    }
  }

  .ai-chat-toggle {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 100px;
    height: 100px;
    max-width: calc(100vw - 20px);
    padding: 0 12px;
    font-size: 11px;
  }

  .app-store-float {
    left: max(10px, env(safe-area-inset-left));
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .app-store-float .store-btn {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .ai-chat-panel {
    right: 10px;
    left: 10px;
    bottom: calc(118px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - 138px - env(safe-area-inset-bottom));
    max-height: calc(100vh - 138px);
  }

  .ai-chat-head {
    gap: 8px;
    padding: 12px 10px;
  }

  .ai-chat-head strong {
    font-size: 16px;
  }

  .ai-chat-head span {
    font-size: 11px;
  }

  .ai-chat-head .ai-chat-new {
    padding: 0 7px;
    font-size: 10px;
  }

  .ai-chat-messages {
    min-height: 210px;
  }

  .ai-message {
    max-width: 96%;
    overflow-wrap: anywhere;
  }

  .ai-chat-form {
    grid-template-columns: minmax(0, 1fr) 76px;
    padding: 10px;
  }

  .ai-chat-form input {
    padding: 11px 10px;
  }

  .catalog-hero {
    width: min(100% - 22px, 560px);
    padding: 40px 0 18px;
    overflow: hidden;
  }

  .catalog-hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .catalog-hero p:not(.kicker) {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .catalog-hero-actions {
    margin-top: 18px;
  }

  .catalog-hero-actions .btn {
    width: 100%;
  }

  .catalog-help-strip {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .catalog-help-strip div {
    grid-template-columns: 32px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .catalog-help-strip strong {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .catalog-help-strip span {
    font-size: 12px;
  }

  .promo-gallery {
    grid-template-columns: 1fr;
  }

  .catalog-section {
    width: min(100% - 18px, 560px);
    padding-bottom: 48px;
    overflow: visible;
  }

  .catalog-section-head {
    gap: 12px;
    margin-bottom: 14px;
  }

  .catalog-section-head h2 {
    width: 100%;
    max-width: 100%;
    font-size: 26px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .slider-controls {
    display: none;
  }

  .plan-slider {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: visible;
    padding: 0 0 8px;
    scroll-snap-type: none;
  }

  .gps-plan {
    width: 100%;
    min-width: 0;
    min-height: auto;
    scroll-snap-align: none;
    transform: none;
  }

  .gps-plan:hover,
  .featured-plan {
    transform: none;
  }

  .gps-plan h3 {
    min-height: auto;
    padding: 18px 16px;
    font-size: 18px;
    line-height: 1.2;
  }

  .price-status {
    margin-top: 16px;
  }

  .plan-note {
    min-height: 0;
    margin: 0 18px 18px;
    font-size: 14px;
  }

  .gps-plan ul {
    padding: 18px 22px 18px 38px;
    font-size: 14px;
    line-height: 1.45;
  }

  .gps-plan .btn {
    width: calc(100% - 36px);
    margin: 0 18px 22px;
  }

  .vehicle-frame {
    width: calc(100% - 24px);
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 260px;
    margin-top: 14px;
  }

  .vehicle-art {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    padding: 12px 34px;
    object-fit: contain !important;
  }

  .plan-price {
    margin: 12px 18px 8px;
    font-size: clamp(42px, 15vw, 58px);
  }

  .plan-price.consult-price {
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-right: 18px;
    padding: 14px 8px;
    font-size: 24px;
  }

  .imei-details dl {
    grid-template-columns: 1fr;
  }
}

/* Portada publica orientada a cotizacion. */
.home-page {
  background: #f6f8fb;
}

.home-page .page-shell {
  background: #f6f8fb;
}

.home-topbar {
  min-height: 66px;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.home-topbar .brand img {
  width: min(230px, 44vw);
}

.home-topbar .nav {
  gap: 16px;
  align-items: center;
}

.quote-top {
  min-height: 42px;
  white-space: nowrap;
}

.home-hero {
  min-height: auto;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.22) 100%),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=85") center/cover;
  border-bottom: 5px solid #e50914;
}

.home-hero::before,
.home-hero::after {
  display: block;
  z-index: 0;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #e50914 0 46%, #15181c 46% 70%, transparent 70%);
  opacity: .98;
}
.home-hero::before { left: auto; top: -170px; right: -80px; transform: rotate(-16deg); }
.home-hero::after { right: auto; bottom: -235px; left: -105px; transform: rotate(24deg); }

.home-vehicle-band a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 4px 13px;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: home-vehicle-arrive 620ms cubic-bezier(.22,.8,.28,1) forwards;
}
.home-vehicle-band a:nth-child(1) { animation-delay: 90ms; }
.home-vehicle-band a:nth-child(2) { animation-delay: 170ms; }
.home-vehicle-band a:nth-child(3) { animation-delay: 250ms; }
.home-vehicle-band a:nth-child(4) { animation-delay: 330ms; }
.home-vehicle-band a:nth-child(5) { animation-delay: 410ms; }
.home-vehicle-band a:nth-child(6) { animation-delay: 490ms; }
.home-vehicle-band a:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
@keyframes home-vehicle-arrive { to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) { .home-vehicle-band a { opacity: 1; transform: none; animation: none; transition: none; } }

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  padding: 74px 0 58px;
}

.hero-copy h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
  color: #111317;
  text-shadow: none;
}

.home-hero .kicker { color: #e50914; }
.home-hero .lead { color: #384250; }
.home-hero .btn.primary { background: #e50914; box-shadow: 0 12px 24px rgba(229, 9, 20, .24); }
.home-hero .btn.primary:hover { background: #be0610; transform: translateY(-2px); }
.home-hero .btn.ghost { border-color: #171a1f; color: #171a1f; background: rgba(255,255,255,.66); }
.home-hero .btn.ghost:hover { background: #171a1f; color: #fff; }

.hero-copy .lead {
  max-width: 650px;
  margin-top: 20px;
  font-size: 18px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof span {
  padding: 14px 12px;
  color: #fff;
  background: #15181c;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.quote-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  border-top: 5px solid #e50914;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.home-vehicle-band { position: relative; z-index: 2; box-shadow: 0 12px 28px rgba(12, 16, 22, .16); }
.home-vehicle-band a { border-left: 1px solid rgba(255,255,255,.18); }
.home-vehicle-band a:first-child { border-left: 0; }
.vehicle-card { border: 1px solid #dde2e8; border-top: 4px solid transparent; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.vehicle-card:hover { transform: translateY(-7px); border-top-color: #e50914; box-shadow: 0 20px 34px rgba(15,23,42,.15); }
.compare-card { border-top: 4px solid #15181c; transition: transform .22s ease, box-shadow .22s ease; }
.compare-card:hover { transform: translateY(-5px); box-shadow: 0 20px 36px rgba(15,23,42,.13); }

.quote-card h2 {
  color: #08111f;
  font-size: 25px;
  line-height: 1.12;
}

.quote-card label {
  display: grid;
  gap: 7px;
  color: #172033;
  font-size: 13px;
  font-weight: 900;
}

.quote-card input,
.quote-card select {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  padding: 12px;
  color: #172033;
  background: #fff;
  font: inherit;
}

.quote-card button {
  width: 100%;
  margin-top: 4px;
}

.quote-status {
  min-height: 42px;
  margin: 0;
  color: #596273;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.quote-status.ok {
  color: #166534;
}

.quote-status.bad {
  color: var(--red-dark);
}

.home-vehicle-band {
  justify-content: center;
  padding: 14px 18px;
}

.vehicle-solutions {
  padding-top: 68px;
}

.vehicle-card-grid,
.compare-grid,
.proof-row {
  display: grid;
  gap: 18px;
}

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

.vehicle-card,
.compare-card,
.proof-row div {
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.vehicle-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
}

.vehicle-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 10px;
  background: #f6f7f9;
}

.vehicle-card strong {
  padding: 20px 20px 4px;
  color: #08111f;
  font-size: 23px;
  font-weight: 900;
}

.vehicle-card span {
  padding: 0 20px 22px;
  color: #596273;
  line-height: 1.55;
  font-weight: 700;
}

.plan-compare {
  padding-top: 72px;
}

.compare-grid {
  grid-template-columns: 1fr 1fr;
}

.plan-compare .section-title { margin-inline: auto; text-align: center; }
.plan-compare .section-title p { margin-inline: auto; }
.coverage-details { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1080px; margin: 26px auto 0; }
.coverage-panel { min-height: 280px; }
.coverage-panel { text-align: center; }
.coverage-panel ul { display: inline-block; width: fit-content; max-width: 100%; margin-inline: auto; text-align: left; }
.coverage-link { display: block; color: inherit; text-decoration: none; }
.coverage-link:hover { color: inherit; transform: translateY(-5px); }
.coverage-cta { display: inline-block; margin-top: 18px; font-weight: 900; color: #e50914; }

.compare-card {
  padding: 28px;
}

.compare-card.featured {
  color: #fff;
  border-color: rgba(229, 9, 20, 0.42);
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.94), #090909);
  box-shadow: 0 24px 70px rgba(229, 9, 20, 0.24);
}

.compare-card.featured p,
.compare-card.featured li {
  color: rgba(255, 255, 255, 0.84);
}

.platform-band {
  padding: 80px max(16px, calc((100vw - 1160px) / 2));
  background: #0b0b0b;
}

.home-platform {
  width: min(1280px, calc(100% - 20px));
  grid-template-columns: 1fr;
  gap: 26px;
}

.home-platform .platform-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
  max-width: none;
  text-align: center;
}

.home-platform .platform-copy .kicker,
.home-platform .platform-copy h2,
.home-platform .platform-copy p { grid-column: 1; margin-inline: auto; }

.home-platform .platform-copy .app-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-content: flex-end;
}

.home-platform .gps-reference-panel { max-width: 100%; }

.platform-actions-bottom {
  justify-content: center;
  padding-top: 6px;
}

@media (max-width: 900px) {
  .home-platform .platform-copy { grid-template-columns: 1fr; }

  .home-platform .platform-copy .kicker,
  .home-platform .platform-copy h2,
  .home-platform .platform-copy p,
  .home-platform .platform-copy .app-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .home-platform .platform-copy .app-actions { justify-content: flex-start; }
}

.home-platform .platform-copy h2 {
  color: #fff;
}

.home-platform .platform-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-grid div {
  position: relative;
  min-height: 180px;
  padding-top: 30px;
}

.trust-grid div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 42px;
  height: 3px;
  background: var(--red);
}

.proof-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.proof-row div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.proof-row strong {
  color: #08111f;
  font-size: 19px;
}

.proof-row span {
  color: #596273;
  line-height: 1.5;
  font-weight: 700;
}

.home-page .catalog {
  padding-top: 44px;
  padding-bottom: 72px;
}

@media (max-width: 980px) {
  .home-hero-inner,
  .vehicle-card-grid,
  .compare-grid,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .home-hero-inner {
    padding-top: 56px;
  }

  .quote-card {
    max-width: 560px;
  }

}

@media (max-width: 900px) {
  .home-topbar {
    min-height: 0;
  }

  .home-topbar .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 10px 14px;
  }

  .quote-top {
    width: auto;
  }
}

@media (max-width: 560px) {
  .home-topbar .brand img {
    width: min(210px, 66vw);
  }

  .home-topbar .nav a {
    font-size: 13px;
  }

  .quote-top {
    min-height: 40px;
    padding: 0 14px;
  }

  .home-hero-inner,
  .section,
  .contact {
    width: min(100% - 22px, 560px);
  }


  .home-hero-inner {
    gap: 22px;
    padding: 44px 0 36px;
  }

  .hero-copy h1 {
    max-width: min(330px, 100%);
    font-size: 27px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero-copy .lead {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-copy,
  .quote-card,
  .home-hero-inner > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero-actions .btn,
  .catalog-actions .btn,
  .contact-card .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .quote-card {
    padding: 18px;
  }

  .vehicle-card img {
    aspect-ratio: 4 / 3;
    padding: 8px;
  }

  .platform-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .home-platform .app-actions .btn,
  .home-platform .app-actions .store-btn {
    width: 100%;
  }
}
