/* Range listings page styles */
.range-page {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--brand);
}

.range-page :where(section) {
  padding-block: var(--section-spacing);
}

.range-hero {
  background: linear-gradient(135deg, #0f1f3a, #192945);

  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}

.range-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.range-hero__media.is-hidden {
  display: none;
}

.range-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8, 19, 38, 0.78),
    rgba(8, 19, 38, 0.35)
  );
  z-index: 1;
  pointer-events: none;
}

.range-hero__content {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: min(52rem, 90vw);
}

.range-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.14em;
}

.range-hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.82);
}

.range-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.14em;
}

.range-hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.82);
}

.range-hero .eyebrow {

  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.14em;
}


.range-hero__title {
  margin: 0;
  font-size: clamp(2rem, 3vw + 1.5rem, 3rem);
  line-height: 1.15;
}

.range-hero__subhead {
  margin: 0;
  font-size: clamp(1.05rem, 1.2vw + 1rem, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.range-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.range-overview {
  background: #fff;
}

.range-overview__layout {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .range-overview__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.range-overview__copy p {
  margin-block: 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.range-feature-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

@media (min-width: 1024px) {
  .range-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.range-feature {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(25, 41, 69, 0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(25, 41, 69, 0.08);
}

.range-feature__title {
  margin: 0;
  font-family: Montserrat, system-ui;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
}

.range-feature__copy {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-legend {
  background: var(--surface);
}

.price-legend__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-legend__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.5rem;
}

.price-legend__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  background: rgba(25, 41, 69, 0.08);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.price-legend__label {
  margin: 0;
  font-weight: 600;
  color: var(--brand);
}

.price-legend__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.range-models__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.range-models__item {
  height: 100%;
}


@media (min-width: 1100px) {
  .range-models__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.model-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.model-card:hover,
.model-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.model-card__media {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  max-height: 240px;
}

.model-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease, opacity 160ms ease;
}

.model-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.model-card:hover .model-card__img--hover,
.model-card:focus-visible .model-card__img--hover,
.model-card:focus-within .model-card__img--hover {
  opacity: 1;
}

.model-card:hover .model-card__img--primary,
.model-card:focus-visible .model-card__img--primary,
.model-card:focus-within .model-card__img--primary {
  opacity: 0;
}

.model-card:hover .model-card__img,
.model-card:focus-visible .model-card__img {
  transform: scale(1.02);
}

.model-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.3rem, 2.5vw, 1.6rem);
}

.model-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.model-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-family: Montserrat, system-ui;
  color: var(--brand);
}

.model-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  background: rgba(25, 41, 69, 0.08);
  color: var(--brand);
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.model-card__strapline {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.model-card__tags {
  margin: 0;
  margin-top: auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.model-card__tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.model-card__tags li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.range-supplementary {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
}

.range-supplementary__layout {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: start;
}

.range-supplementary__layout .section-title {
  margin-bottom: 0;
}
.range-supplementary__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr);
}

.range-supplementary__item {
  position: relative;
  display: grid;
  gap: 0.6rem;
  padding: 1.7rem 1.8rem;
  background: linear-gradient(160deg, #ffffff 0%, #f5f7fb 100%);
  border-radius: calc(var(--radius-sm) + 2px);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
  border: 1px solid rgba(25, 41, 69, 0.1);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease,
    border-color 200ms ease;
}

.range-supplementary__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 8% 12%,
      rgba(25, 41, 69, 0.12),
      transparent 55%
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.range-supplementary__item:hover,
.range-supplementary__item:focus-within {
  transform: translateY(-3px);
  border-color: rgba(25, 41, 69, 0.2);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.range-supplementary__item strong {
  color: var(--brand);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

@media (min-width: 900px) {
  .range-supplementary__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(
      circle at 12% 20%,
      rgba(255, 255, 255, 0.22),
      transparent 45%
    ),
    linear-gradient(135deg, #0b1323 0%, #172741 55%, #233658 100%);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 85% 15%,
      rgba(139, 183, 255, 0.25),
      transparent 55%
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.65;
  pointer-events: none;
}

.cta-band__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cta-band .section-title,
.cta-band .section-kicker,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band .eyebrow::before {
  background: rgba(255, 255, 255, 0.75);
}

.cta-band__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) * 1.1);
  background: transparent;
  border: 1px solid rgba(160, 189, 230, 0.25);
  box-shadow: 0 18px 40px rgba(3, 6, 17, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  min-height: 100%;
  flex: 1 1 260px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(16, 24, 40, 0.92), rgba(12, 18, 32, 0.92));
  transition: background 0.25s ease;
  z-index: 0;
}

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

.cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(160, 189, 230, 0.55);
  background: transparent;
  box-shadow: 0 20px 46px rgba(3, 6, 17, 0.35);
}

.cta-card:hover::before {
  background: linear-gradient(145deg, rgba(22, 33, 54, 0.96), rgba(14, 22, 38, 0.96));
}

.cta-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8fbefc;
  background: rgba(143, 190, 252, 0.12);
  box-shadow: inset 0 0 0 1px rgba(143, 190, 252, 0.35);
}

.cta-card__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.cta-card__title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}

.cta-card__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.cta-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #f7fbff;
}

.cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.96rem;
}

.cta-card__action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  color: var(--brand);
  background: linear-gradient(120deg, #dae6ff, #f5f7fb);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(10, 20, 40, 0.25);
}

.cta-card__action span {
  display: inline-flex;
}

.cta-card__action svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cta-card__action:hover {
  background: linear-gradient(120deg, #c8dafc, #e7eefc);
  transform: translateX(3px);
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.35);
}

@media (max-width: 719px) {
  .cta-card {
    flex-basis: 100%;
  }

  .cta-card:hover {
    transform: translateY(0);
  }
}


.range-supplementary__item strong,
.range-feature__title,
.model-card__title {
  font-weight: 700;
}

@media (max-width: 600px) {
  .range-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .model-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}














































