@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Inter:wght@400;500&display=swap');

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

:root {
  --red: #D40000;
  --red-dark: #A30000;
  --black: #0A0A0A;
  --surface: #111111;
  --surface-2: #1C1C1C;
  --border: #222222;
  --white: #FFFFFF;
  --gray-light: #EAEAEA;
  --gray-mid: #B4B4B4;
  --gray-dark: #909090;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* Centers content within a max width on wide screens, full-bleed backgrounds preserved */
  --gutter: max(2.5rem, calc((100% - 1320px) / 2));
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0.93)),
    url('https://images.pexels.com/photos/6453051/pexels-photo-6453051.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--gray-light);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  gap: 1.5rem;
}

/* ── NAV PHONE (call / text) ── */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav-phone-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-phone-icon i { font-size: 21px; color: #fff; }
.nav-phone-text { display: flex; flex-direction: column; }
.nav-phone-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.nav-phone-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 23px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover .nav-phone-num { color: var(--red); }
.nav-phone:hover .nav-phone-icon { background: var(--red-dark); }

.nav-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.nav-atlas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-atlas img { height: 42px; width: auto; object-fit: contain; opacity: 1; }
.nav-atlas-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
}

/* ── AUTHORIZED DEALER BADGE ── */
.dealer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 8px 14px;
}
.dealer-badge img { height: 24px; width: auto; object-fit: contain; }
.dealer-badge-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
}

/* ── ATLAS STRIP ── */
.atlas-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.atlas-strip-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.atlas-strip img { height: 60px; width: auto; object-fit: contain; }
.atlas-strip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.atlas-strip-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}
.atlas-strip-sub {
  font-size: 13px;
  color: var(--gray-mid);
}
.atlas-strip-dealer {
  display: none;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 74px; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 2px solid var(--red); }

.nav-cta {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--red-dark); color: var(--white); }

/* ── FINANCING TICKER ── */
.ticker {
  display: block;
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--red-dark);
  text-decoration: none;
  cursor: pointer;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: ticker-scroll 32s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-set { display: inline-flex; align-items: center; padding: 0.5rem 0; }
.ticker-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 1.5rem;
}
.ticker-brand { font-weight: 900; }
.ticker-sep { color: rgba(255,255,255,0.5); font-size: 8px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; transform: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  background: var(--black);
  overflow: hidden;
  padding: 5rem var(--gutter);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
}

.hero-slash {
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 52%;
  background: var(--surface);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-logo-bg {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  opacity: 0.10;
  pointer-events: none;
  z-index: 2;
}

.hero-photo {
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.55;
  pointer-events: none;
}
.hero-photo-overlay {
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 52%;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(100deg, var(--black) 0%, rgba(10,10,10,0.85) 22%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 84px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero h1 em { color: var(--red); font-style: normal; }

.hero-desc {
  font-size: 15px;
  color: var(--gray-mid);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HERO PHONE CARD ── */
.hero-phone {
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.85rem 3.05rem;
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 4px solid var(--red);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-phone-icon {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 0 8px rgba(212,0,0,0.16);
  transition: box-shadow 0.2s, background 0.2s;
}
.hero-phone-icon i { font-size: 39px; color: #fff; }
.hero-phone-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  margin-bottom: 0.57rem;
}
.hero-phone-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 54px;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.hero-phone-sub {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.5;
  max-width: 255px;
  margin-top: 0.8rem;
}
.hero-phone:hover .hero-phone-num { color: var(--red); }
.hero-phone:hover .hero-phone-icon {
  background: var(--red-dark);
  box-shadow: 0 0 0 8px rgba(212,0,0,0.22);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 6%;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
}

.badge-item {
  text-align: center;
}
.badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}
.badge-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--red);
  padding: 1.5rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 3px;
}

/* ── SECTION COMMONS ── */
.section { padding: 5rem var(--gutter); }
.section-alt { background: rgba(255, 255, 255, 0.035); }

/* SVI text-logo brand placements */
.page-hero-watermark {
  position: absolute;
  right: -2%;
  bottom: 6%;
  width: min(720px, 60%);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.cta-watermark {
  display: block;
  height: 30px;
  width: auto;
  margin-top: 1.75rem;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
.cta-banner > div { position: relative; z-index: 1; }
.reviews-logo {
  display: block;
  height: 26px;
  width: auto;
  margin: 0 0 1.5rem;
  filter: brightness(0);
  opacity: 0.8;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 56px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3rem;
}

/* ── PRODUCT CARDS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.product-card {
  background: var(--surface);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.product-card:hover { background: #161616; }

.product-card-icon {
  width: 52px;
  height: 52px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.product-card-icon i { font-size: 22px; color: var(--red); }

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}
.product-card p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }
.card-link i { font-size: 14px; }

/* ── PRODUCT LIST (inner pages) ── */
.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  /* faded wheel fills empty cells (and 1px dividers) instead of flat grey */
  background:
    linear-gradient(rgba(10,10,10,0.86), rgba(10,10,10,0.86)),
    url('https://images.pexels.com/photos/6453051/pexels-photo-6453051.jpeg?auto=compress&cs=tinysrgb&w=1600') center / cover no-repeat;
}

.product-item {
  background: var(--surface);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.2s;
  z-index: 1;
}
.product-item:hover::before { background: var(--red); }
.product-item:hover { background: #161616; }

.product-item-img {
  background: #0D0D0D;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.product-item-img img {
  max-height: 88%;
  max-width: 88%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-item:hover .product-item-img img {
  transform: scale(1.04);
}

.product-item-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-item-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.product-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.product-item p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}
.product-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 1rem;
}

/* ── SPEC TABLE ── */
.spec-table {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 5px 0;
  vertical-align: top;
  line-height: 1.5;
}
.spec-table td:first-child {
  color: var(--gray-mid);
  white-space: nowrap;
  padding-right: 12px;
  width: 45%;
}
.spec-table td:last-child { color: var(--gray-light); }

/* ── PRODUCT HERO IMAGE BAND ── */
.section-img-band {
  width: 100%;
  background: #ffffff;
  padding: 2.25rem var(--gutter);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section-img-band img {
  height: 150px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 1;
}
.section-img-band .band-logo { height: 120px; }

/* ── CINEMATIC BAND ── */
.cinematic-band {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #060606;
  padding: 4rem var(--gutter);
}
.cinematic-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.5;
}
.cinematic-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.3) 50%, rgba(6,6,6,0.92) 100%),
    linear-gradient(to bottom, var(--black) 0%, transparent 26%, transparent 74%, var(--black) 100%);
}
.cinematic-band-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.cinematic-band .eyebrow { justify-content: center; }
.cinematic-logo { height: 76px; width: auto; display: block; margin: 0 auto 1.5rem; }
.cinematic-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}
.cinematic-band h2 em { color: var(--red); font-style: normal; }
.cinematic-band p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── VIDEOS ── */
.video-feature {
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  overflow: hidden;
}
.video-grid,
.video-grid-2 {
  display: grid;
  gap: 1.5rem;
}
.video-grid { grid-template-columns: repeat(3, 1fr); }
.video-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.3px;
  padding: 1rem 1.25rem;
}

/* ── REVIEWS (light section) ── */
.reviews-section { background: #F4F5F7; padding: 5rem var(--gutter); }
.reviews-section .section-h2 { color: #141414; }
.reviews-head {
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.reviews-google { display: flex; align-items: center; gap: 12px; }
.reviews-google svg { width: 38px; height: 38px; display: block; }
.reviews-google-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reviews-rating { display: flex; align-items: center; gap: 10px; }
.reviews-stars { color: #FBBC04; font-size: 24px; letter-spacing: 2px; }
.reviews-rating-text { font-size: 14px; color: #555; }
.reviews-rating-text strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #141414;
  margin-right: 4px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: #ffffff;
  border: 1px solid #e3e5e8;
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review-card-stars { color: #FBBC04; font-size: 17px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: #333333; line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 8px; }
.review-author svg { width: 18px; height: 18px; flex-shrink: 0; }
.review-author-name { display: flex; flex-direction: column; gap: 1px; }
.review-author strong {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: #141414;
  letter-spacing: 0.5px;
  font-size: 15px;
}
.review-author span {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.reviews-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: #fff;
  color: #141414;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid #cfd2d6;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}
.btn-dark:hover { border-color: #141414; color: #141414; }
.btn-dark svg { width: 20px; height: 20px; }

/* ── WHY SVI ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.why-item {
  background: var(--black);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
}
.why-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
}
.why-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.why-content p { font-size: 13px; color: var(--gray-dark); line-height: 1.7; }

/* ── SERVICE ITEMS ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 3rem;
}

.service-item {
  background: var(--surface);
  padding: 2rem 1.75rem;
}
.service-item i {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: block;
}
.service-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}
.service-item p { font-size: 13px; color: var(--gray-dark); line-height: 1.7; }

/* ── WHY BUY STRIP (product pages) ── */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.why-strip-item {
  background: var(--surface);
  padding: 2.25rem 1.75rem;
  position: relative;
}
.why-strip-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.why-strip-item i {
  font-size: 26px;
  color: var(--red);
  margin-bottom: 1.1rem;
  display: block;
}
.why-strip-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.45rem;
}
.why-strip-item p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 4rem var(--gutter);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 14px; margin-top: 0.5rem; }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cta-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.form-panel {
  background: var(--surface);
  padding: 3rem 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── LIGHT FORM PANEL (contact) ── */
.form-panel.light { background: #f4f5f7; }
.form-panel.light .section-label { color: var(--red); }
.form-panel.light .form-group label { color: #1a1a1a; }
.form-panel.light .form-group input,
.form-panel.light .form-group select,
.form-panel.light .form-group textarea {
  background: #ffffff;
  border: 1px solid #cfd2d6;
  color: #141414;
}
.form-panel.light .form-group input::placeholder,
.form-panel.light .form-group textarea::placeholder { color: #9aa0a6; }
.form-panel.light .form-group input:focus,
.form-panel.light .form-group select:focus,
.form-panel.light .form-group textarea:focus { border-color: var(--red); }
.form-panel.light select { color: #141414; }
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.form-status.success { background: #e7f6ec; color: #176c3a; border: 1px solid #b6e0c4; }
.form-status.error { background: #fdeaea; color: #a32d2d; border: 1px solid #f3c0c0; }

.info-block { margin-bottom: 2rem; }
.info-block h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.info-block p { font-size: 15px; color: var(--white); }
.info-block a { color: var(--red); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 4rem var(--gutter);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 72px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 15px; color: var(--gray-mid); max-width: 520px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-dark);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gray-mid); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 12px; }

/* ── PAGE HERO PHONE (inner pages) ── */
.page-hero-phone {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-hero-phone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(212,0,0,0.16);
  transition: box-shadow 0.2s, background 0.2s;
}
.page-hero-phone-icon i { font-size: 26px; color: #fff; }
.page-hero-phone-text { display: flex; flex-direction: column; }
.page-hero-phone-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 600;
  margin-bottom: 5px;
}
.page-hero-phone-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 31px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.page-hero-phone:hover .page-hero-phone-num { color: var(--red); }
.page-hero-phone:hover .page-hero-phone-icon {
  background: var(--red-dark);
  box-shadow: 0 0 0 8px rgba(212,0,0,0.22);
}

/* ── DEAL TAG ── */
.deal-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 0.75rem;
}

/* ── BUTTONS ── */
.btn-red {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 30px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-red:hover { background: var(--red-dark); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 1px solid var(--border);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gray-mid); color: var(--gray-light); }

.btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; color: var(--red); }

/* ── FOOTER ── */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: 3.5rem var(--gutter);
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo img { height: 88px; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 13px; color: #9A9A9A; line-height: 1.75; max-width: 280px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8A8A8A;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: #ABABAB;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col .footer-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-col .footer-email { color: var(--gray-mid); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: #888888; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  font-size: 16px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }

/* ── FINANCING ── */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 3rem;
}
.financing-item {
  background: var(--surface);
  padding: 2rem 1.75rem;
}
.financing-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}
.financing-item p { font-size: 13px; color: var(--gray-dark); line-height: 1.7; }
.financing-item i { font-size: 28px; color: var(--red); margin-bottom: 1.25rem; display: block; }

/* ── FINANCING / LEASE LINK ── */
.leaselink-logo { height: 72px; width: auto; display: block; margin: 0 auto; transition: transform 0.2s; }
.leaselink-logo:hover { transform: scale(1.03); }
.finance-disclaimer { font-size: 12px; color: var(--gray-dark); line-height: 1.7; max-width: 720px; margin: 2.5rem auto 0; text-align: center; }
.finance-provided { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-mid); font-family: var(--font-display); font-weight: 600; margin-bottom: 1rem; }

/* ── FADED SECTION BACKGROUND (breaks up solid black) ── */
.has-bg { position: relative; overflow: hidden; }
.has-bg > * { position: relative; z-index: 1; }
.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.88) 45%, rgba(10,10,10,0.95) 100%),
    var(--section-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ══════════════════════════════════════════
   RESPONSIVE / MOBILE
   ══════════════════════════════════════════ */

/* Hamburger toggle is desktop-hidden by default */
.nav-toggle, .nav-toggle-cb { display: none; }

/* ── Tablet & down ── */
@media (max-width: 900px) {

  /* NAV → hamburger */
  .nav {
    flex-wrap: wrap;
    height: auto;
    min-height: 70px;
    padding: 0 1.25rem;
    gap: 0;
    column-gap: 1rem;
  }
  .nav-logo { padding: 9px 0; }
  .nav-logo img { height: 56px; }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 44px;
    height: 44px;
    color: var(--white);
    font-size: 27px;
    cursor: pointer;
  }
  .nav-divider, .nav-atlas { display: none; }
  .nav-links {
    display: none;
    flex: 0 0 100%;
    order: 5;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .nav-links a {
    padding: 0.9rem 0.25rem;
    font-size: 16px;
    border-bottom: 1px solid var(--surface-2);
  }
  .nav-links a.active { border-bottom: 1px solid var(--surface-2); color: var(--red); }
  .nav-cta {
    display: none;
    order: 6;
    flex: 0 0 100%;
    text-align: center;
    margin: 0.25rem 0 0.9rem;
  }
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }
  .nav-toggle-cb:checked ~ .nav-cta { display: block; }

  /* HERO → stack, photo becomes faint backdrop, phone card flows below */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 3rem 1.5rem 3.5rem;
  }
  .hero-slash { display: none; }
  .hero-photo {
    width: 100%;
    right: 0;
    opacity: 0.5;
    clip-path: none;
  }
  .hero-photo-overlay {
    width: 100%;
    right: 0;
    clip-path: none;
    background: linear-gradient(180deg, rgba(10,10,10,0.74) 0%, rgba(10,10,10,0.42) 48%, rgba(10,10,10,0.82) 100%);
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(46px, 13vw, 70px); }
  .hero-phone {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 2.25rem;
    margin-right: 0;
    padding: 2.25rem 1.5rem;
  }
  .hero-phone-num { font-size: clamp(40px, 11vw, 58px); }
  .hero-phone-sub { max-width: 100%; }

  /* SECTION rhythm */
  body { background-attachment: scroll; }
  .section { padding: 3rem 1.5rem; }
  .cinematic-band { min-height: 340px; padding: 3rem 1.5rem; }
  .video-grid,
  .video-grid-2 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section-h2 { font-size: clamp(32px, 8vw, 46px); margin-bottom: 2rem; }

  /* GRIDS collapse */
  .product-grid,
  .why-grid,
  .service-grid,
  .financing-grid,
  .form-grid,
  .products-list { grid-template-columns: 1fr; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }

  /* ATLAS strip */
  .atlas-strip { padding: 1rem 1.5rem; }
  .atlas-strip-dealer { display: none; }
  .section-img-band { gap: 1.5rem 2rem; padding: 2rem 1.5rem; }
  .section-img-band img { height: 104px; max-width: 40%; }

  /* PAGE HERO → phone flows below title */
  .page-hero {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
  }
  .page-hero h1 { font-size: clamp(40px, 11vw, 60px); }
  .page-hero p { max-width: 100%; }
  .page-hero-content { order: 1; }
  .page-hero-phone {
    position: static;
    transform: none;
    right: auto;
    order: 2;
    margin-top: 1.5rem;
  }

  /* CTA banner */
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 3rem 1.5rem; gap: 1.5rem; }
  .cta-right { align-items: flex-start; }
}

/* ── Phone ── */
@media (max-width: 560px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; padding: 1.5rem; }
  .why-strip { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr !important; }
  .name-row { grid-template-columns: 1fr !important; }
  .form-panel { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .footer-main { padding: 2.5rem 1.5rem; }
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--red); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; position: relative; background: #0D0D0D; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute; top: 0; left: 0;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 13px;
}
.blog-card-body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-dark); margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 21px; line-height: 1.15; margin-bottom: 0.65rem; }
.blog-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; flex: 1; margin-bottom: 1.1rem; }
.blog-card .card-link { margin-top: auto; }

/* ---- Post article ---- */
.post-wrap { max-width: 780px; margin: 0 auto; padding: 3.5rem var(--gutter) 1rem; }
.post-meta-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center;
  font-family: var(--font-display); font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-dark); margin-bottom: 1.5rem;
}
.post-meta-bar .post-cat { color: var(--red); font-weight: 600; }
.post-featured { width: 100%; height: auto; display: block; margin-bottom: 2.5rem; border: 1px solid var(--border); }
.post-body { font-size: 16.5px; line-height: 1.85; color: var(--gray-light); }
.post-body > p:first-of-type { font-size: 18.5px; color: #fff; line-height: 1.7; }
.post-body h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  color: #fff; line-height: 1.1; margin: 2.75rem 0 1.1rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.post-body h3 { font-size: 20px; color: #fff; margin: 2rem 0 0.75rem; font-weight: 700; }
.post-body p { margin-bottom: 1.3rem; }
.post-body ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.post-body li { position: relative; padding-left: 1.6rem; margin-bottom: 0.65rem; }
.post-body li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; background: var(--red); }
.post-body strong { color: #fff; font-weight: 600; }
.post-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--red-dark); }
.post-cta {
  margin: 3rem 0 1rem; padding: 2.25rem 2.5rem;
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--red);
}
.post-cta h3 { font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 0.5rem; text-transform: uppercase; }
.post-cta p { color: var(--gray-mid); margin-bottom: 1.25rem; font-size: 15px; }
.post-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gray-mid); font-family: var(--font-display); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2rem; }
.post-back:hover { color: var(--red); }
@media (max-width: 560px) {
  .post-wrap { padding: 2.5rem 1.5rem 1rem; }
  .post-body h2 { font-size: 23px; }
  .post-cta { padding: 1.75rem 1.5rem; }
}

/* ---- Related-guide callout (cross-links to blog) ---- */
.related-guide {
  display: flex; align-items: center; gap: 1.25rem 1.75rem; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--red);
  padding: 1.5rem 1.85rem; transition: border-color 0.2s;
}
.related-guide:hover { border-color: var(--red); }
.related-guide .rg-tag {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red); font-weight: 600; flex-shrink: 0;
}
.related-guide .rg-title {
  font-family: var(--font-display); font-size: 22px; line-height: 1.1; color: #fff;
  font-weight: 700; flex: 1; min-width: 220px; transition: color 0.2s;
}
.related-guide:hover .rg-title { color: var(--red); }
.related-guide .rg-link {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--red); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}

/* ---- FAQ accordion ---- */
.faq-list { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0; position: relative;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff;
  letter-spacing: 0.3px; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--red); line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--red); }
.faq-item p { padding: 0 2.5rem 1.5rem 0; margin: 0; color: var(--gray-mid); font-size: 15px; line-height: 1.8; }
.faq-item p a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }

/* ---- Individual lift detail page ---- */
.lift-wrap { max-width: 1120px; margin: 0 auto; }
.lift-top { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3rem; align-items: start; }
.lift-img-box {
  background: #fff; border: 1px solid var(--border); padding: 2.5rem;
  display: flex; align-items: center; justify-content: center; min-height: 360px;
}
.lift-img-box img { max-width: 100%; max-height: 440px; width: auto; object-fit: contain; }
.lift-lead { font-size: 17px; line-height: 1.85; color: var(--gray-light); margin-bottom: 1.5rem; }
.lift-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.75rem; }
.lift-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1px solid var(--border); padding: 8px 13px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-mid); font-weight: 600;
}
.lift-badge i { color: var(--red); font-size: 16px; }
.lift-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.1rem; }
.lift-note { font-size: 14px; color: var(--gray-mid); }
.lift-note a { color: var(--red); text-decoration: underline; }
.lift-specs { margin-top: 3rem; }
.lift-spec-table { width: 100%; max-width: 720px; }
@media (max-width: 860px) {
  .lift-top { grid-template-columns: 1fr; gap: 2rem; }
  .lift-img-box { min-height: 240px; padding: 1.5rem; }
}

/* ---- Enriched lift page (overview / features / specs / warranty) ---- */
.lift-subnav {
  position: sticky; top: 90px; z-index: 50;
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  background: rgba(10,10,10,0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); padding: 0.8rem var(--gutter);
}
.lift-subnav a {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-mid); font-weight: 600;
  padding: 7px 15px; border: 1px solid var(--border); transition: color 0.2s, border-color 0.2s;
}
.lift-subnav a:hover { color: #fff; border-color: var(--red); }
.lift-section { scroll-margin-top: 160px; margin-top: 3.5rem; }
.lift-overview p { font-size: 16.5px; line-height: 1.85; color: var(--gray-light); margin-bottom: 1.25rem; max-width: 840px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 0.5rem 2.5rem; max-width: 980px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.feature-item i { color: var(--red); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.feature-item span { color: var(--gray-light); font-size: 15px; line-height: 1.55; }
.lift-warranty { border: 1px solid var(--border); border-left: 4px solid var(--red); background: var(--surface); max-width: 900px; }
.lift-warranty summary { cursor: pointer; list-style: none; padding: 1.35rem 1.75rem; font-family: var(--font-display); font-size: 21px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; display: flex; justify-content: space-between; align-items: center; }
.lift-warranty summary::-webkit-details-marker { display: none; }
.lift-warranty summary::after { content: "+"; color: var(--red); font-size: 26px; line-height: 1; }
.lift-warranty[open] summary::after { content: "\2212"; }
.lift-warranty-body { padding: 0 1.75rem 1.75rem; color: var(--gray-mid); font-size: 15px; line-height: 1.75; }
.lift-warranty-body h4 { color: #fff; font-family: var(--font-display); font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin: 1.4rem 0 0.6rem; }
.lift-warranty-body ul { list-style: none; margin: 0.4rem 0 0.5rem; padding: 0; }
.lift-warranty-body li { position: relative; padding-left: 1.4rem; margin-bottom: 0.4rem; }
.lift-warranty-body li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; background: var(--red); }
.lift-warranty-body strong { color: #fff; }

/* ---- Enriched lift page: tighter spacing + variety ---- */
.lift-section { margin-top: 0; }
.lift-pad { padding-top: 3.25rem; padding-bottom: 3.25rem; }
.lift-pad .section-h2 { margin-bottom: 1.1rem; }
.lift-spec-war { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; align-items: start; }
.lift-spec-war .section-label { margin-top: 0; }
.lift-overview p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .lift-spec-war { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---- Features section: white banner variant ---- */
.lift-features-light { background: #ffffff; }
.lift-features-light .section-h2 { color: #0A0A0A; }
.lift-features-light .feature-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.lift-features-light .feature-item span { color: #1A1A1A; }
.lift-features-light .feature-item i { color: var(--red); }
