/* ═══════════════════════════════════════════════════════════════
   CVEXTRAS — Premium Commercial Vehicle Accessories
   Dark Industrial / Automotive Aesthetic
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black:      #0D0D0D;
  --dark:       #1A1A1A;
  --mid:        #2B2B2B;
  --yellow:     #FFC107;
  --yellow-dim: rgba(255, 193, 7, 0.12);
  --blue:       #00AEEF;
  --blue-dim:   rgba(0, 174, 239, 0.12);
  --white:      #FFFFFF;
  --grey-text:  #9A9A9A;
  --border:     rgba(255,255,255,0.07);

  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;

  --radius:     4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION COMMON ─────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-heading em {
  font-style: normal;
  color: var(--yellow);
}
.section-sub {
  color: var(--grey-text);
  font-size: 1rem;
  max-width: 480px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-eyebrow::before { display: none; }
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover { background: #ffd54f; box-shadow: 0 0 28px rgba(255,193,7,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-nav {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 22px;
  font-size: 13px;
}
.btn-nav:hover { background: #ffd54f; }

.btn-sm {
  background: var(--mid);
  color: var(--white);
  padding: 10px 18px;
  font-size: 13px;
  border: 1.5px solid var(--border);
}
.btn-sm:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-sm svg { width: 15px; height: 15px; }

.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-wrap.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  position: relative;
}
.logo-cv { color: var(--yellow); }
.logo-extras { color: var(--white); }
.logo-slash {
  display: inline-block;
  width: 3px;
  height: 20px;
  background: var(--yellow);
  margin-left: 4px;
  transform: skewX(-15deg);
  margin-bottom: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--yellow); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

/* Subtle grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  opacity: 0.4;
}

/* Yellow diagonal slash */
.hero-diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
}
.hero-diagonal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--yellow) 0%, transparent 100%);
  transform: skewX(-8deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.2);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-heading .line-1 { display: block; color: var(--white); }
.hero-heading .line-accent {
  display: block;
  color: var(--yellow);
  font-size: clamp(4rem, 10.5vw, 9.5rem);
  -webkit-text-stroke: 2px var(--yellow);
  color: transparent;
  letter-spacing: -0.03em;
}
.hero-heading .line-2 { display: block; color: var(--white); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--grey-text);
  font-weight: 400;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.35s both;
  max-width: 440px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s ease 0.5s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.9s ease 0.65s both;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num sup {
  font-size: 0.7rem;
  color: var(--yellow);
  font-weight: 700;
  vertical-align: super;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Van illustration */

.van-svg { width: 100%; height: auto; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--grey-text);
  animation: fadeIn 1.5s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--grey-text), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 0.9; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── TICKER ─────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}
.tick-dot { font-size: 8px; opacity: 0.6; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame {
  position: relative;
}
.about-img-placeholder {
  background: var(--black);
  border: 1px solid var(--mid);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 3px;
  background: var(--yellow);
}
.about-img-placeholder svg { width: 100%; height: auto; }

.about-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 12px 20px;
  border-radius: 2px;
}

.about-cert-strip {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cert {
  flex: 1;
  min-width: 120px;
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert span { color: var(--yellow); font-size: 16px; }

.about-text { }
.about-text p {
  color: var(--grey-text);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-features {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.af-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.af-item.revealed { opacity: 1; transform: translateX(0); }
.af-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-dim);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
}
.af-icon svg { width: 20px; height: 20px; }
.af-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2px;
}
.af-item span {
  font-size: 0.85rem;
  color: var(--grey-text);
}

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

.product-card {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
  min-height: 300px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card.revealed { opacity: 1; transform: translateY(0); }
.product-card:hover {
  border-color: rgba(255,193,7,0.3);
  box-shadow: inset 0 0 40px rgba(255,193,7,0.04);
  z-index: 1;
}

.product-card--large {
  grid-column: span 2;
  min-height: 380px;
}
.product-card--accent {
  background: linear-gradient(135deg, #1a1200, var(--dark));
  border-color: rgba(255,193,7,0.15);
}
.product-card--accent .pc-number { color: rgba(255,193,7,0.1); }

/* Abstract background textures */
.pc-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-size: cover;
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .pc-bg { opacity: 0.09; transform: scale(1.04); }
.pc-bg--wheels  { background: radial-gradient(circle at center, var(--yellow) 20%, transparent 70%); }
.pc-bg--roof    { background: linear-gradient(135deg, var(--blue) 0%, transparent 60%); opacity: 0.07; }
.pc-bg--grille  { background: repeating-linear-gradient(0deg, var(--white) 0%, transparent 10%, transparent 90%, var(--white) 100%); background-size: 100% 20px; }
.pc-bg--body    { background: linear-gradient(to right, var(--yellow) 0%, transparent 70%); }
.pc-bg--interior{ background: radial-gradient(ellipse at bottom left, var(--blue) 0%, transparent 60%); opacity: 0.08; }

.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 60%);
}

.pc-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pc-icon {
  width: 48px; height: 48px;
  color: var(--yellow);
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.product-card:hover .pc-icon { transform: scale(1.1); }
.pc-icon svg { width: 48px; height: 48px; }

.pc-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  display: block;
  margin-bottom: 8px;
  opacity: 0.7;
}
.pc-content h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--white);
}
.pc-content p {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.pc-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.product-card:hover .pc-link { gap: 14px; }
.pc-link span { transition: transform var(--transition); }
.product-card:hover .pc-link span { transform: translateX(4px); }

.pc-number {
  position: absolute;
  bottom: 20px; right: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color var(--transition);
}
.product-card:hover .pc-number { color: rgba(255,193,7,0.07); }

.products-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

/* ─── WHY US ─────────────────────────────────────────────────── */
.why { padding: 0; }
.why-inner {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.why-inner::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}
.why-inner > .container { padding-top: 100px; padding-bottom: 100px; }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.why-left { position: sticky; top: 100px; }
.why-left p {
  color: var(--grey-text);
  font-size: 1rem;
  margin-bottom: 36px;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item.revealed { opacity: 1; transform: translateX(0); }
.why-item:hover .why-num { color: var(--yellow); }

.why-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--mid);
  line-height: 1;
  transition: color var(--transition);
  padding-top: 2px;
}
.why-body h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}
.why-body p {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ─── FEATURED PRODUCTS ──────────────────────────────────────── */
.featured {
  padding: 120px 0;
  background: var(--black);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feat-card {
  background: var(--dark);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}
.feat-card.revealed { opacity: 1; transform: translateY(0); }
.feat-card:hover {
  border-color: rgba(255,193,7,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.feat-img {
  position: relative;
  overflow: hidden;
}
.feat-img-placeholder {
  background: var(--black);
  width: 100%;
}
.feat-img-placeholder svg { width: 100%; height: auto; }
.feat-img-placeholder:hover svg { transform: scale(1.04); }
.feat-img-placeholder svg { transition: transform 0.4s ease; }
.feat-card:hover .feat-img-placeholder svg { transform: scale(1.04); }

.feat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 2px;
}
.feat-badge--blue { background: var(--blue); color: var(--white); }

.feat-info { padding: 22px 22px 18px; }
.feat-cat {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.feat-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.feat-info p {
  font-size: 0.82rem;
  color: var(--grey-text);
  line-height: 1.5;
  margin-bottom: 16px;
}
.feat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.feat-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey-text);
}
.feat-price strong {
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 800;
}

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-diagonal-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,193,7,0.03) 40%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-eyebrow { margin-bottom: 20px; }
.cta-heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.cta-heading em { font-style: normal; color: var(--yellow); }
.cta-text > p {
  color: var(--grey-text);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 420px;
}

.cta-contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-text);
  font-size: 0.95rem;
}
.cta-contact-item svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; }
.cta-contact-item a { color: var(--white); transition: color var(--transition); }
.cta-contact-item a:hover { color: var(--yellow); }

/* Form */
.cta-form-wrap {}
.cta-form {
  background: var(--black);
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  padding: 40px 36px;
  border-radius: var(--radius);
}
.cta-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  color: var(--white);
}
.form-group { margin-bottom: 16px; }
.form-input {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: block;
}
.form-input::placeholder { color: rgba(154,154,154,0.6); }
.form-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,193,7,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 20px; display: inline-flex; }
.footer-logo { font-size: 1.8rem; }
.footer-brand > p {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--grey-text);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col a:hover { color: var(--yellow); padding-left: 6px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(154,154,154,0.6);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(154,154,154,0.6);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--grey-text); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card--large { grid-column: span 2; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-left { position: static; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .hero-heading { font-size: clamp(2.8rem, 12vw, 5rem); }
  
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-diagonal { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card--large { grid-column: span 1; }
  .featured-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .cta-form { padding: 28px 22px; }
  .section-heading { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-cta-row { flex-direction: column; }
  .btn { justify-content: center; }
  .about-cert-strip { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-badge { font-size: 9px; }
  .about-tag { bottom: -12px; right: -8px; font-size: 11px; padding: 10px 14px; }
  .why-item { grid-template-columns: 44px 1fr; }
  .why-num { font-size: 2rem; }
}

/* ─── VEHICLES ───────────────────────────────────────────────── */
.vehicles {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.vehicle-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.vehicle-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
}
.vc-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.vc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.vehicle-card:hover .vc-img img {
  transform: scale(1.05);
}
.vc-info {
  padding: 24px;
}
.vc-info h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.vc-info p {
  color: var(--grey-text);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ─── MODAL ──────────────────────────────────────────────────── */
.vehicle-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-content {
  background: var(--dark);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--grey-text);
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition);
}
.close-modal:hover { color: var(--yellow); }
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}
.modal-gallery .main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.thumb-row img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.thumb-row img:hover { border-color: var(--yellow); }
.modal-details h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.specs-list li {
  font-size: 0.9rem;
  color: var(--grey-text);
}
.specs-list strong {
  color: var(--white);
}
.modal-details p {
  color: var(--grey-text);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .modal-body { grid-template-columns: 1fr; }
}
/* ─── LIGHT MODE THEME ─────────────────────────────────────────── */
body.light-mode {
  --black: #ffffff;
  --dark: #f2f4f6;
  --mid: #ffffff;
  --light: #161616;
  --white: #111111;
  --yellow: #d19700;
  --yellow-dim: rgba(209, 151, 0, 0.1);
  --border: #dee2e6;
  --grey-text: #596068;
}

body, .footer, .vehicles, .products, .featured, .cta-section, .about, .why, .about-page-content, .about-page-header {
  transition: background-color var(--transition), border-color var(--transition);
}

body.light-mode .hero-bg-grid,
body.light-mode .cta-grid-bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
}

body.light-mode .pc-overlay {
  background: linear-gradient(to top, rgba(233,235,238,0.9) 0%, transparent 70%);
}

body.light-mode .vehicle-modal {
  background: rgba(255,255,255,0.95);
}

body.light-mode .nav-wrap {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
body.light-mode .nav-wrap.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
body.light-mode .nav-links a {
  color: #333333;
}
body.light-mode .nav-links a:hover {
  color: var(--yellow);
}
body.light-mode .burger span {
  background: #111111;
}
body.light-mode .theme-toggle {
  color: #111111 !important;
}
body.light-mode .logo-extras {
  color: #111111;
}
@media (max-width: 768px) {
  body.light-mode .nav-links {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
}

body.light-mode .theme-toggle .moon-icon {
  display: none;
}
body.light-mode .theme-toggle .sun-icon {
  display: block !important;
}
body.light-mode .btn-ghost {
  color: #111111;
  border-color: rgba(0,0,0,0.3);
}
body.light-mode .btn-ghost:hover {
  border-color: var(--yellow);
}
body.light-mode .footer-bottom p {
  color: rgba(0,0,0,0.6);
}
body.light-mode .footer-legal a {
  color: rgba(0,0,0,0.6);
}
body.light-mode .pc-number {
  color: rgba(0,0,0,0.06);
}

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.review-card {
  background: var(--mid);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
}
.review-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}
body.light-mode .review-author { border-top-color: rgba(0,0,0,0.05); }

.ra-initial {
  width: 44px; height: 44px;
  background: var(--yellow-dim);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.ra-info {
  display: flex;
  flex-direction: column;
}
.ra-info strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.ra-info span {
  font-size: 0.8rem;
  color: var(--grey-text);
}
.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}


/* ─── SELL YOUR CAR ────────────────────────────────────────────── */
.sell-car {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.sell-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sell-form-wrap {
  background: var(--dark);
  padding: 4px;
  border-radius: var(--radius);
}
.sell-form {
  border-top: none;
}
.form-section-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 24px 0 12px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
body.light-mode .form-section-title {
  color: #111111;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .sell-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}


/* ─── FINANCE ────────────────────────────────────────────────── */
.finance {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.finance-card {
  background: var(--mid);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition);
  text-align: center;
}
.finance-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
}
.fc-icon {
  width: 60px; height: 60px;
  background: var(--yellow-dim);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.fc-icon svg { width: 30px; height: 30px; }
.finance-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.finance-card p {
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.finance-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.finance-footer p {
  color: var(--grey-text);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .finance-grid { grid-template-columns: 1fr; }
}


body.light-mode .van-svg { filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); }
body.light-mode .van-svg rect[fill='url(#vanGrad)'] { fill: #e9ecef; }
body.light-mode .van-svg path[fill='#1A1A1A'] { fill: #fdfdfd; stroke: #dee2e6; }
body.light-mode .van-svg ellipse[fill='#0D0D0D'], 
body.light-mode .van-svg circle[fill='#111'], 
body.light-mode .van-svg circle[fill='#1a1a1a'] { fill: #dee2e6; stroke: #c8cdd2; }
body.light-mode .van-svg circle[fill='#0D0D0D'] { fill: #6c757d; }
body.light-mode .van-svg line[stroke='#333'], 
body.light-mode .van-svg line[stroke='#444'], 
body.light-mode .van-svg line[stroke='#555'] { stroke: #adb5bd; }
body.light-mode .van-svg rect[fill='#0D0D0D'], 
body.light-mode .van-svg rect[fill='#2B2B2B'] { fill: #adb5bd; }

/* FIX HERO VEHICLE LAYOUT AND Z-INDEX OVERLAP */
.hero-vehicle {
  position: absolute;
  right: -5%;
  bottom: 5%;
  width: 50%; /* reduced from 55% to prevent overlap */
  z-index: 0; /* Behind the content */
  pointer-events: none;
  opacity: 0.6; /* a bit lighter so text is readable if overlaps */
}
.hero-content {
  position: relative;
  z-index: 5; /* Ensure content is above SVG */
}

/* Fix mobile view to prevent overlap */
@media (max-width: 1024px) {
  .hero-vehicle { width: 60%; opacity: 0.3; right: -10%; }
}


/* ─── LOCATION ───────────────────────────────────────────────── */
.location {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.location-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.location-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loc-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
}
.location-details h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.location-details p {
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.loc-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.loc-reviews .stars {
  color: var(--grey-text); /* empty stars */
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.loc-reviews .review-count {
  font-size: 0.9rem;
  color: var(--grey-text);
}
@media (max-width: 900px) {
  .location-wrapper { grid-template-columns: 1fr; }
  .map-container { min-height: 300px; }
}


/* Fix hero image alignment */
.hero-vehicle {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 50% !important;
  height: 100% !important;
  z-index: 1 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-vehicle img {
  width: 90%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--black);
}
body.light-mode .hero-vehicle img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(0,0,0,0.05);
  background: var(--white);
}
@media (max-width: 1024px) {
  .hero-vehicle {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 40px !important;
    justify-content: center !important;
  }
  .hero-vehicle img {
    height: auto;
    max-height: 350px;
  }
}
