:root {
  --red: #dc252c;
  --red-dark: #a9151b;
  --red-soft: #fff0f0;
  --ink: #0b0c0e;
  --carbon: #121417;
  --graphite: #1b1e22;
  --steel: #5d646d;
  --line: #dfe2e6;
  --paper: #f5f5f2;
  --white: #ffffff;
  --green: #1fb35b;
  --shadow: 0 20px 60px rgba(11, 12, 14, 0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.promo-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.9rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section--compact {
  padding: 68px 0;
}

.section--dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(220, 37, 44, 0.08), transparent 35%),
    var(--carbon);
}

.section--paper {
  background: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  content: "";
  background: currentColor;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head p {
  margin-bottom: 7px;
  color: var(--steel);
}

.section--dark .section-head p {
  color: #bec3c9;
}

.text-red {
  color: var(--red);
}

.muted {
  color: var(--steel);
}

.fine-print {
  color: var(--steel);
  font-size: 0.84rem;
  line-height: 1.45;
}

.eyebrow--light {
  color: var(--white);
}

.text-light {
  color: #c7cbd0;
}

.mt-16 {
  margin-top: 16px;
}

.mt-22 {
  margin-top: 22px;
}

.mt-30 {
  margin-top: 30px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav-link:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffbdc0;
  outline-offset: 3px;
}

.btn--primary {
  color: var(--white);
  background: var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
}

.btn--outline {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.btn--whatsapp {
  color: var(--white);
  background: var(--green);
}

.btn--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 10, 11, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: #d5d7db;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  content: "";
  background: currentColor;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.98) 0%, rgba(6, 7, 8, 0.85) 42%, rgba(6, 7, 8, 0.18) 100%),
    url("../img/hero-banner.jpg") center/cover no-repeat;
}

.hero::after,
.page-hero::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  content: "";
  border: 36px solid rgba(220, 37, 44, 0.2);
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 90px 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 25px;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: #d4d7db;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  color: #dadde1;
  font-size: 0.93rem;
}

.hero-proof span::before {
  margin-right: 8px;
  color: var(--red);
  content: "◆";
  font-size: 0.7em;
}

.page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.page-hero--taller {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.97), rgba(8, 9, 10, 0.45)),
    url("../img/hero-banner.jpg") center/cover no-repeat;
}

.page-hero--repuestos {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.98), rgba(8, 9, 10, 0.38)),
    url("../img/tienda-mural.jpg") center/cover no-repeat;
}

.page-hero--contacto {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.96), rgba(8, 9, 10, 0.34)),
    url("../img/tienda-frente.jpg") center/cover no-repeat;
}

.page-hero--full {
  min-height: 100vh;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 85px 0;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.1rem);
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d5d8dc;
  font-size: 1.16rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #c7cbd0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span[aria-current] {
  color: #ff7176;
}

/* Home routes */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.route-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--carbon);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.route-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-position: center;
  background-size: cover;
  transition: transform 400ms ease;
}

.route-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 15%, rgba(7, 8, 9, 0.95) 88%);
}

.route-card:hover::before {
  transform: scale(1.04);
}

.route-card--motos::before {
  background-image: url("../img/ns400.png");
  background-color: #e7e8ea;
  background-size: contain;
  background-repeat: no-repeat;
}

.route-card--taller::before {
  background-image: url("../img/hero-banner.jpg");
}

.route-card--repuestos::before {
  background-image: url("../img/tienda-mural.jpg");
}

.route-card__content {
  padding: 30px;
}

.route-card h3 {
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.route-card p {
  margin-bottom: 18px;
  color: #c9cdd2;
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card .text-link {
  color: var(--white);
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Evidence */
.evidence-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--red);
  box-shadow: var(--shadow);
}

.evidence-item {
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.evidence-item:last-child {
  border-right: 0;
}

.evidence-item strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.evidence-item span {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
}

/* Split panels */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  min-height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split__media::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  left: -18px;
  width: 120px;
  height: 120px;
  content: "";
  border-top: 12px solid var(--red);
  border-left: 12px solid var(--red);
}

.split__content h2 {
  margin-bottom: 24px;
}

.split__content > p {
  color: var(--steel);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: #f0b8ba;
  box-shadow: 0 18px 50px rgba(11, 12, 14, 0.09);
  transform: translateY(-4px);
}

.card__number,
.card__icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: 8px;
  background: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 0;
  color: var(--steel);
}

.cards--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(11, 12, 14, 0.07);
}

.product-card__media {
  position: relative;
  height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eef0f2;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__model-art {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 30px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(220, 37, 44, 0.94), rgba(63, 7, 10, 0.96)),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.22), transparent 28%);
}

.product-card__model-art::before {
  width: 62px;
  height: 5px;
  content: "";
  background: var(--white);
  transform: skewX(-28deg);
}

.product-card__model-art strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.product-card__model-art span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__model-art--200 {
  background:
    linear-gradient(145deg, rgba(25, 43, 72, 0.96), rgba(6, 13, 25, 0.98)),
    radial-gradient(circle at 72% 24%, rgba(75, 146, 255, 0.35), transparent 30%);
}

.product-card__model-art--boxer {
  background:
    linear-gradient(145deg, rgba(28, 30, 33, 0.98), rgba(105, 18, 22, 0.96)),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.18), transparent 30%);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  color: var(--white);
  border-radius: 5px;
  background: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 27px;
}

.product-card h2,
.product-card h3 {
  margin-bottom: 9px;
  font-size: 2rem;
}

.product-card__price {
  margin-bottom: 16px;
  color: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.specs li {
  padding: 6px 9px;
  color: #42474e;
  border-radius: 5px;
  background: #eef0f2;
  font-size: 0.79rem;
  font-weight: 700;
}

.product-card .btn {
  width: 100%;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.brand-row img {
  width: min(240px, 45vw);
  height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
}

.dealer-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
}

.dealer-note::before {
  color: var(--red);
  content: "◆";
  font-size: 0.72em;
}

.official-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 34px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.official-strip img {
  width: 150px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.official-strip h2 {
  margin-bottom: 4px;
  font-size: 2rem;
}

.official-strip p {
  color: #cbd0d5;
}

/* Finance */
.finance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: 28px;
}

.calculator {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.calculator h2 {
  margin-bottom: 12px;
  font-size: 2.6rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid #cbd0d5;
  border-radius: 7px;
  background: var(--white);
}

.field input:focus,
.field select:focus {
  border-color: var(--red);
  outline: 3px solid rgba(220, 37, 44, 0.13);
}

.result-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
  padding: 25px;
  color: var(--white);
  border-radius: 10px;
  background: var(--ink);
}

.result-box span {
  display: block;
  color: #c6cbd0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-box strong {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.finance-aside {
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--red);
}

.finance-aside h2 {
  font-size: 2.7rem;
}

.finance-aside .check-list li::before {
  color: var(--white);
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 37, 44, 0.08), transparent 56%),
    var(--white);
}

.category__icon {
  color: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
}

.category h2,
.category h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.category p {
  margin-bottom: 17px;
  color: var(--steel);
  font-size: 0.94rem;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review {
  padding: 30px;
  border: 1px solid #32363b;
  border-radius: var(--radius);
  background: var(--graphite);
}

.stars {
  margin-bottom: 17px;
  color: #ffc349;
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 0 0 22px;
  color: #e6e8eb;
}

.review cite {
  color: #9da3aa;
  font-style: normal;
  font-size: 0.88rem;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin-inline: auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 23px 45px 23px 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 21px;
  right: 5px;
  color: var(--red);
  content: "+";
  font-size: 1.7rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  padding-bottom: 23px;
  color: var(--steel);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 24px;
}

.contact-panel {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-panel h2 {
  font-size: 2.8rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
}

.contact-list strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--steel);
}

.map {
  min-height: 550px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe2e5;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
}

.map-column {
  display: grid;
  gap: 16px;
}

.social-follow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--white);
  border-radius: 10px;
  background: var(--ink);
}

.social-follow strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.social-follow span {
  color: #bfc4ca;
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 10px 14px;
  border: 1px solid #444a51;
  border-radius: 6px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

/* Promotion */
.promo-layer {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
  background: rgba(4, 5, 6, 0.78);
  backdrop-filter: blur(5px);
}

.promo-layer[hidden],
.promo-badge[hidden] {
  display: none;
}

.promo-modal {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(11, 12, 14, 0.98), rgba(41, 8, 10, 0.98)),
    var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.promo-modal::after {
  content: none;
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  min-height: 610px;
}

.promo-gallery {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px 18px 58px;
  background: #f3f3f3;
}

.promo-slide {
  width: 100%;
  height: 100%;
  margin: 0;
  animation: promoFade 280ms ease;
}

.promo-slide[hidden] {
  display: none;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  max-height: 535px;
  object-fit: contain;
}

.promo-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(11, 12, 14, 0.76);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.promo-arrow--prev {
  left: 14px;
}

.promo-arrow--next {
  right: 14px;
}

.promo-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.promo-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aeb2b7;
  cursor: pointer;
}

.promo-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--red);
}

.promo-modal__body {
  position: relative;
  z-index: 1;
  padding: 42px;
}

.promo-modal h2 {
  max-width: 530px;
  margin: 10px 0 14px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.92;
}

.promo-modal p {
  max-width: 560px;
  color: #d7dade;
}

.promo-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.promo-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.promo-prices span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.promo-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 16px;
}

.promo-benefits span {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.promo-benefits strong {
  color: var(--white);
}

.promo-coupon {
  margin-bottom: 22px;
  padding: 12px 15px;
  color: var(--white) !important;
  border-left: 4px solid var(--red);
  background: rgba(220, 37, 44, 0.15);
  font-weight: 800;
}

.promo-badge {
  position: fixed;
  z-index: 1900;
  top: 46%;
  right: 0;
  width: min(242px, calc(100vw - 20px));
  min-height: 86px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  color: var(--white);
  border: 0;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(135deg, #111315, #2b090b 72%, var(--red));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-align: left;
  cursor: pointer;
}

.promo-badge__media {
  width: 58px;
  height: 68px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: var(--white);
}

.promo-badge__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-badge__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.promo-badge__copy small {
  color: #ff9da0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-badge__copy strong {
  font-size: 1.08rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.promo-badge__action {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.promo-badge.is-changing .promo-badge__media,
.promo-badge.is-changing .promo-badge__copy {
  animation: promoBadgeSwap 360ms ease;
}

@keyframes promoFade {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes promoBadgeSwap {
  0% { opacity: 0.2; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 60px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--red);
}

.cta-band::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  content: "";
  border: 35px solid rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 17px;
}

.cta-band p {
  max-width: 650px;
  margin-bottom: 28px;
}

.cta-band .btn--outline {
  color: var(--white);
}

/* Footer */
.site-footer {
  color: #c4c8cd;
  background: #090a0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 50px;
  padding: 70px 0 45px;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  margin-bottom: 17px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  max-width: 330px;
}

.footer-col h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #2a2d31;
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-panel {
    gap: 16px;
  }

  .nav-list {
    gap: 15px;
  }

  .nav-link {
    font-size: 0.84rem;
  }

  .cards--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 24px;
    padding: 28px 24px;
    visibility: hidden;
    background: rgba(9, 10, 12, 0.99);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid #2c3035;
  }

  .nav-link {
    display: block;
    padding: 17px 0;
    font-size: 1.25rem;
  }

  .nav-panel > .btn {
    width: 100%;
  }

  .section-head,
  .split,
  .finance-layout,
  .contact-grid,
  .promo-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .promo-layout {
    gap: 0;
  }

  .promo-gallery {
    min-height: 430px;
  }

  .official-strip {
    grid-template-columns: auto 1fr;
  }

  .official-strip .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .split--reverse .split__media {
    order: initial;
  }

  .routes-grid,
  .product-grid,
  .cards,
  .category-grid,
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-card:last-child,
  .product-card:last-child {
    grid-column: 1 / -1;
  }

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

  .evidence-item:nth-child(2) {
    border-right: 0;
  }

  .evidence-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-actions {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.22);
  }

  .mobile-actions a {
    min-height: 64px;
    display: grid;
    place-items: center;
    padding: 8px 4px;
    border-right: 1px solid #35393e;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-actions a:first-child {
    background: var(--green);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(6, 7, 8, 0.18) 0%, rgba(6, 7, 8, 0.95) 63%),
      url("../img/hero-banner.jpg") 58% center/cover no-repeat;
  }

  .hero-content {
    padding: 115px 0 60px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .btn-row {
    display: grid;
  }

  .btn-row .btn {
    width: 100%;
  }

  .evidence-strip {
    margin-top: 0;
    background: var(--red);
  }

  .evidence-grid {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .evidence-item {
    padding: 20px;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 35px;
  }

  .routes-grid,
  .product-grid,
  .cards,
  .cards--four,
  .category-grid,
  .reviews,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-card:last-child,
  .product-card:last-child {
    grid-column: auto;
  }

  .route-card {
    min-height: 360px;
  }

  .split__media img {
    min-height: 310px;
  }

  .field-grid,
  .result-box {
    grid-template-columns: 1fr;
  }

  .calculator,
  .finance-aside,
  .contact-panel {
    padding: 25px;
  }

  .map,
  .map iframe {
    min-height: 420px;
  }

  .cta-band {
    padding: 38px 26px;
  }

  .official-strip {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px;
  }

  .promo-layer {
    align-items: start;
    padding: 10px;
  }

  .promo-modal {
    max-height: calc(100dvh - 20px);
  }

  .promo-gallery {
    min-height: 350px;
    padding: 12px 12px 48px;
  }

  .promo-slide img {
    max-height: 315px;
  }

  .promo-modal__body {
    padding: 34px 20px 24px;
  }

  .promo-modal h2 {
    padding-right: 38px;
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .promo-prices {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 18px 0;
  }

  .promo-badge {
    top: auto;
    right: 10px;
    bottom: 78px;
    width: min(280px, calc(100vw - 20px));
    min-height: 76px;
    border-radius: 8px;
  }

  .promo-badge__media {
    height: 60px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
