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

:root {
  --red: #E2001A;
  --dark: #111111;
  --mid: #444444;
  --light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --darker: #0a0a0a;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

a.logo {
  text-decoration: none;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }

.logo img {
  height: 40px;
  display: block;
  object-fit: contain;
}
/* fallback text logo */
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--dark);
  text-decoration: none;
}
.logo-text sup {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: super;
  color: var(--mid);
}

.headerflex
{
  display: flex;
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 150px;
}
.activenave
{
  color: red;
}
nav a {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover { background: var(--light); color: var(--red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.light-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
}
.toggle-pill {
  width: 36px; height: 20px;
  background: var(--dark);
  border-radius: 10px;
  position: relative;
}
.toggle-pill::after {
  content: '';
  position: absolute;
  right: 3px; top: 3px;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
}
.icon-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  transition: background 0.2s;
}
.icon-btn:hover { background: var(--light); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--dark); fill: none; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  /* height: calc(100vh - var(--header-h)); */
  overflow: hidden;
}
.hero img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-cta {
  position: absolute;
  top: 60px;
  right: 60px;
}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-book:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-book svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.2s;
}
.btn-book:hover svg { transform: translateX(4px); }

/* ── SECTION COMMON ── */
section { padding: 40px 40px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
h2.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--mid);
  font-weight: 400;
  /* max-width: 700px; */
  line-height: 1.6;
  margin-bottom: 48px;
}

/* ── WE ARE MAHINDRA ── */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card img {
  width: 100%;
  /* aspect-ratio: 4/3; */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}
.about-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.about-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}
.card-line {
  width: 40px;
  height: 2px;
  background: var(--dark);
  margin-bottom: 16px;
}

/* ── PASSENGER VEHICLES ── */
.vehicles-section {
  background: var(--white);
  padding-top: 0;
}
.tab-row {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
}
.tab-btn.active {
  color: var(--dark);
  border-bottom-color: var(--dark);
}

.vehicle-showcase {
  display: flex;
  align-items: center;
  gap: 60px;
}
.vehicle-img-wrap {
  flex: 1;
  position: relative;
}
.vehicle-img-wrap img {
  width: 100%;
  max-width: 680px;
  object-fit: contain;
  display: block;
}
.vehicle-info {
  flex: 0 0 300px;
}
.vehicle-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.vehicle-price {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 6px;
}
.vehicle-price span {
  font-weight: 700;
  color: var(--dark);
  font-size: 18px;
}
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.2s, color 0.2s;
}
.btn-explore:hover { background: var(--dark); color: var(--white); }
.btn-explore svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

.nav-arrows {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.arrow-btn:hover { border-color: var(--dark); background: var(--dark); }
.arrow-btn:hover svg { stroke: white; }
.arrow-btn svg { width: 18px; height: 18px; stroke: var(--dark); fill: none; }

/* ── STATS ── */
.stats-section {
  background: var(--white);
  padding: 0 40px 80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  background: var(--light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  color: var(--mid);
  font-weight: 500;
}

/* ── CTA ROW ── */
.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 40px 40px;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: var(--dark);
}
.cta-card:hover { border-color: var(--dark); background: var(--light); }
.cta-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-card-left svg { width: 28px; height: 28px; stroke: var(--dark); fill: none; flex-shrink: 0; }
.cta-card span {
  font-weight: 700;
  font-size: 16px;
}
.cta-card .arrow-circle {
  width: 36px; height: 36px;
  border: 1.5px solid #ccc;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cta-card:hover .arrow-circle { background: var(--dark); border-color: var(--dark); }
.cta-card:hover .arrow-circle svg { stroke: white; }
.cta-card .arrow-circle svg { width: 16px; height: 16px; stroke: var(--dark); fill: none; }

/* ── COMMERCIAL ── */
.commercial-section {
  background: var(--white);
  padding: 40px 40px;
}
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.commercial-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.commercial-main img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}
.commercial-main-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}
.commercial-main-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.commercial-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}
.commercial-item {
  display: flex;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  /* padding: 25px 16px; */
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.commercial-item:hover { border-color: var(--dark); background: var(--light); }

.commercial-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  
}
.btn-explore-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  margin-right: 20px;
}
.btn-explore-sm:hover { background: var(--dark); color: white; }
.btn-explore-sm svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ── XEV 9e BANNER ── */
.xev-banner {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  min-height: 340px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 40px 24px;
}
.xev-text-side {
  width: 30%;
}
.xev-img-side {
  width: 70%;
}
.xev-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.xev-text-side {
  background: #f5f5f5;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.xev-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.xev-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
}
.xev-pra
{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  margin-top: 10px;
}
.btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
  width: fit-content;
  margin-top: 25px;
}
.btn-know-more:hover { background: #333; }
.btn-know-more svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ── ADVENTURE / M4U ── */
.banner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 40px 80px;
}
.banner-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
}
.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 32px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6px;
  line-height: 1;
}
.banner-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.btn-explore-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid white;
  background: transparent;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-explore-white:hover { background: white; color: var(--dark); }
.btn-explore-white svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ── LATEST BUZZ ── */
.buzz-section {
  padding: 40px 40px;
  background: var(--white);
}
.buzz-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.buzz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.buzz-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.buzz-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.10); }
.buzz-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.buzz-card-body {
  padding: 16px;
}
.buzz-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.buzz-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.buzz-sub {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
  margin-top: 6px;
}

/* ── AWARDS ── */
.awards-section {
  padding: 40px 40px;
  background: var(--light);
}
.awards-scroll {
  display: grid;
    grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.awards-scroll::-webkit-scrollbar { display: none; }
.award-card {
  flex: 0 0 200px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.award-card img {
  width: 100%;
  padding: 12px;
  aspect-ratio: 2.2;
  object-fit: contain;
  display: block;
}
.award-caption {
  padding: 10px 14px 14px;
  font-size: 11px;
  color: var(--mid);
  line-height: 1.4;
  font-weight: 500;
  border-top: 1px solid var(--border);
}

/* ── ADDITIONAL LINKS ── */
.links-section {
  padding: 40px 40px;
  background: var(--white);
}
.links-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.links-row {
  display: flex;
  gap: 16px;
}
.ext-link {
  display: inline;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.ext-link:hover { border-color: var(--dark); background: var(--light); }
.ext-link svg { width: 14px; height: 14px; stroke: var(--mid); fill: none; }

/* ── CAREERS ── */
.careers-band {
  margin: 0 40px 80px;
  background-image: url(https://auto.mahindra.com/on/demandware.static/-/Sites-amc-Library/default/dw2b5f6f05/homepage/job_desktop.png);
  background-size: cover;
  border-radius: 12px;
  padding: 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.careers-eyebrow {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.careers-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
  line-height: 1;
}
.btn-know-more-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-know-more-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-know-more-white svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ── FOOTER ── */
footer {
  background: #f9f9f9;
  border-top: 1px solid var(--border);
  padding: 60px 40px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.footer-contact {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 6px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 24px;
}
.social-row {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: var(--dark); background: var(--dark); color: white; }
.social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--dark); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--mid);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--dark); }
.footer-copy {
  font-size: 12px;
  color: var(--mid);
}

/* ── WHATSAPP BAR ── */
.whatsapp-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  justify-content: flex-end;
}
.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  text-decoration: none;
  margin-right: 40px;
}
.wa-btn svg { width: 20px; height: 20px; }

/* ── CHAT BUBBLE ── */
.chat-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 52px; height: 52px;
  background: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.chat-fab:hover { transform: scale(1.1); }
.chat-fab svg { width: 24px; height: 24px; stroke: white; fill: none; }

/* divider */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0 40px; }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2s infinite;
  opacity: 0.6;
}
.scroll-indicator svg { width: 20px; height: 20px; stroke: white; fill: none; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


/* ── BREADCRUMB ── */
.breadcrumb {
  background: #1e1e1e;
  padding: 12px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
}
.breadcrumb a { color: var(--mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--white); font-weight: 700; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero-video-wrap {
  width: 100%;
  height: 100%;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0.5;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 22px; height: 22px; stroke: white; fill: none; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── INTRO ── */
.intro-section {
  background: #fff;
  padding: 80px 40px 60px;
}
section#intro img {
  width: 180px;
  padding-bottom: 20px;
}
.intro-title {
  font-family: 'Barlow', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.intro-tagline {
  font-size: 20px;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.4;
}
.price-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.price-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}
.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  margin-bottom: 40px;
  max-width: 800px;
}
.price-value {
  color: #000;
}

.spec-engine {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}
.spec-power {
  font-size: 14px;
  color: #000;
}
.divider-line {
  width: 100%;
  height: 1px;
  background: #2a2a2a;
  margin-bottom: 32px;
}
.intro-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #000;
  background: transparent;
  color: #000;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-outline-white svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ── SUB-NAV ── */
.sub-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid #fff;
}
.sub-nav-inner {
  display: flex;
  align-items: center;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }

/* Model selector pills */
.model-pills {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  margin-right: 40px;
  border-right: 1px solid #2a2a2a;
  padding-right: 40px;
  flex-shrink: 0;
}
.model-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #444;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.model-pill:hover { color: #888; }
.model-pill.active { color: var(--white); border-bottom-color: var(--white); }

/* Section links */
.section-links {
  display: flex;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-links::-webkit-scrollbar { display: none; }
.sec-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7f7f7f;
  padding: 16px 20px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.sec-link.active { border-bottom-color: var(--white); }

/* ── SECTION HEADER ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.section-desc {
  font-size: 15px;
  color: #aaa;
  max-width: 420px;
  line-height: 1.7;
}

/* ── KEY HIGHLIGHTS ── */
.highlights-section {
  background: #000;
  padding: 60px 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hl-label {
  padding: 0 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 48px;
}

.hl-slide {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0 40px 40px;
  min-height: 600px;
}
.hl-content { padding-right: 60px; }
.hl-content .section-heading { font-size: 52px; }
.hl-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

/* Feature chips */
.feature-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 40px;
  border-top: 1px solid #1e1e1e;
}
.chip {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #aaa;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.chip:hover { border-color: #666; color: var(--white); }
.chip.active {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(201,169,110,0.12);
}

/* Tap to skip */
.tap-skip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  width: fit-content;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  margin: 0 40px 0;
  transition: color 0.2s, border-color 0.2s;
}
.tap-skip:hover { color: #aaa; border-color: #444; }
.tap-skip svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* progress bar */
.hl-progress {
  display: flex;
  gap: 4px;
  padding: 20px 40px;
}
.hl-progress-bar {
  height: 3px;
  flex: 1;
  background: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.hl-progress-bar .fill {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width 0.3s;
}
.hl-progress-bar.active .fill { width: 100%; }

/* ── JOURNEY STARTS HERE ── */
.journey-section {
  background: #b8966a;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 200px;
  overflow: hidden;
}
.journey-img {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.journey-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  max-height: 220px;
}
.journey-content {
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.journey-title {
  font-family: 'Barlow', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}
.btn-locate {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
}
.btn-locate:hover { background: #333; }
.btn-locate svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

/* ── FIXED BOTTOM BAR ── */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 12px 0 20px;
  pointer-events: none;
}

.bottom-pill {
  display: flex;
  align-items: center;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  pointer-events: all;
  gap: 4px;
  background: #000;
}

.bottom-action {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.bottom-action:hover { color: #ccc; }
.bottom-action svg {
  width: 17px; height: 17px;
  stroke: #aaa; fill: none;
  flex-shrink: 0;
}

.bottom-action--arrow {
  color: #fff;
  padding: 10px 22px;
  margin-left: 2px;
}

.model-pills img
{
  width: 100px;
}

.bottom-divider {
  width: 1px;
  height: 20px;
  background: #fff;
  flex-shrink: 0;
  margin: 0 2px;
}

/* ── PLACEHOLDER SECTIONS ── */
.placeholder-section {
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  padding: 80px 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.placeholder-inner {
  opacity: 0.3;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid);
}

/* animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }

.rv-tab {
      position: fixed;
      left: 17px;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg) translateX(-50%);
      transform-origin: left center;
      background: #1a3a8c;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 10px 20px;
      border-radius: 0 0 8px 8px;
      cursor: pointer;
      z-index: 999999;
      box-shadow: 2px 2px 12px rgba(0,0,0,0.15);
      white-space: nowrap;
      user-select: none;
      transition: background 0.2s, color 0.2s;
    }
    .rv-tab:hover { background: #142d70; color: #fff; }

    .rv-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 10000;
      backdrop-filter: blur(2px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s;
    }
    .rv-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .rv-drawer {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) translateY(100%);  /* hidden below screen */
      z-index: 10001;
      background: #f0f4ff;
      border-radius: 16px 16px 0 0;
      width: 90%;
      max-width: 900px;
      box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
      transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
      overflow: hidden;
    }
    .rv-drawer.active {
      transform: translateX(-50%) translateY(0);  
    bottom: 25% ;
    }

    .rv-handle {
      width: 40px;
      height: 4px;
      background: #c5cfe8;
      border-radius: 2px;
      margin: 12px auto 0;
    }

    .rv-header {
      background: #1a3a8c;
      padding: 18px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .rv-title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.2px;
    }
    .rv-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.2s;
      line-height: 1;
    }
    .rv-close:hover { background: rgba(255,255,255,0.2); }

    .rv-body {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 24px 28px 28px;
    }

    .rv-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      border: 1px solid #dce3f5;
      border-radius: 10px;
      padding: 0 15px 15px;
      background: #fff;
    }
    .rv-img-wrap {
      width: 100%;
      aspect-ratio: 4/3;
      background: #e2e9f8;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .rv-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 12px;
    }
    .rv-card h4 {
      font-size: 16px;
      font-weight: 700;
      margin: 0;
      color: #111;
    }
    .rv-card p {
      font-size: 13px;
      font-weight: 400;
      margin: 0;
      color: #555;
      line-height: 1.5;
    }
    .rv-btn {
      display: block;
      text-align: center;
      background: #1a3a8c;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      padding: 14px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s;
      margin-top: auto;
    }
    .rv-btn:hover { background: #142d70; }

 #quizOverlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    #quizOverlay.show {
      display: flex;
    }

    /* ── MODAL ── */
    .quiz-modal {
      background: #ffffff;
      border-radius: 16px;
      width: 100%;
      max-width: 580px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
      animation: modalIn 0.35s ease forwards;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.92) translateY(20px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* ── HEADER ── */
    .quiz-header {
      background: #1a3a8c;
      display: flex;
      align-items: stretch;
    }
    .quiz-header-inner {
      flex: 1;
      padding: 20px 24px 16px;
    }
    .quiz-badge {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #c9a96e;
      margin-bottom: 6px;
    }
    .quiz-header-title {
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.4;
    }
    .quiz-close-btn {
      background: none;
      border: none;
      color: rgba(255,255,255,0.55);
      font-size: 22px;
      cursor: pointer;
      padding: 16px 20px 0 0;
      align-self: flex-start;
      line-height: 1;
      transition: color 0.15s;
    }
    .quiz-close-btn:hover { color: #ffffff; }

    /* ── PROGRESS ── */
    .quiz-progress-track {
      height: 3px;
      background: rgba(255,255,255,0.15);
    }
    .quiz-progress-fill {
      height: 100%;
      background: #c9a96e;
      width: 0%;
      transition: width 0.4s ease;
    }

    /* ── BODY ── */
    .quiz-body {
      padding: 24px 24px 20px;
    }
    .quiz-step-label {
      font-size: 12px;
      font-weight: 600;
      color: #888;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }
    .quiz-question {
      font-size: 16px;
      font-weight: 600;
      color: #111;
      line-height: 1.55;
      margin-bottom: 20px;
    }

    /* ── OPTIONS ── */
    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 18px;
    }
    .quiz-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: #222;
      transition: border-color 0.15s, background 0.15s, color 0.15s;
      background: #fff;
      text-align: left;
      width: 100%;
      font-family: 'Barlow', sans-serif;
    }
    .quiz-option:hover:not(:disabled) {
      border-color: #2350c4;
      background: #e6f1fb;
      color: #1a3a8c;
    }
    .opt-letter {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
      color: #555;
    }
    .quiz-option.selected {
      border-color: #2350c4;
      background: #e6f1fb;
    }
    .quiz-option.selected .opt-letter {
      background: #2350c4;
      border-color: #2350c4;
      color: #fff;
    }
    .quiz-option.correct {
      border-color: #3B6D11;
      background: #EAF3DE;
      color: #27500A;
    }
    .quiz-option.correct .opt-letter {
      background: #639922;
      border-color: #639922;
      color: #fff;
    }
    .quiz-option.wrong {
      border-color: #A32D2D;
      background: #FCEBEB;
      color: #791F1F;
    }
    .quiz-option.wrong .opt-letter {
      background: #E24B4A;
      border-color: #E24B4A;
      color: #fff;
    }
    .quiz-option:disabled { cursor: default; }

    /* ── FEEDBACK ── */
    .quiz-feedback {
      font-size: 13px;
      font-weight: 500;
      padding: 10px 14px;
      border-radius: 8px;
      margin-bottom: 16px;
      display: none;
      line-height: 1.5;
    }
    .quiz-feedback.correct {
      background: #EAF3DE;
      color: #3B6D11;
      display: block;
    }
    .quiz-feedback.wrong {
      background: #FCEBEB;
      color: #A32D2D;
      display: block;
    }

    /* ── NEXT BTN ── */
    .quiz-next-btn {
      width: 100%;
      padding: 14px;
      background: #1a3a8c;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Barlow', sans-serif;
      cursor: pointer;
      transition: background 0.15s;
      display: none;
    }
    .quiz-next-btn:hover { background: #2350c4; }
    .quiz-next-btn.visible { display: block; }

    /* ── RESULT ── */
    .quiz-result {
      padding: 36px 28px 32px;
      text-align: center;
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .quiz-result.show { display: flex; }

    .result-score-ring {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      background: #e6f1fb;
      border: 3px solid #1a3a8c;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .result-score-num {
      font-size: 30px;
      font-weight: 700;
      color: #1a3a8c;
      line-height: 1;
    }
    .result-score-den {
      font-size: 12px;
      font-weight: 500;
      color: #2350c4;
    }
    .result-title {
      font-size: 19px;
      font-weight: 700;
      color: #111;
      line-height: 1.3;
    }
    .result-variant {
      display: inline-block;
      background: #1a3a8c;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 20px;
      border-radius: 50px;
      letter-spacing: 0.5px;
    }
    .result-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.65;
      max-width: 400px;
    }
    .result-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      max-width: 300px;
      padding: 15px 24px;
      background: #1a3a8c;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      font-family: 'Barlow', sans-serif;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
      margin-top: 4px;
    }
    .result-cta:hover { background: #2350c4; color: #fff; }
    .result-cta svg { width: 17px; height: 17px; stroke: currentColor; fill: none; flex-shrink: 0; }

    .result-retry {
      font-size: 13px;
      color: #888;
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'Barlow', sans-serif;
      text-decoration: underline;
      padding: 0;
    }
    .result-retry:hover { color: #333; }




