:root {
  --cr-teal:       #8F00FF;
  --cr-teal-deep:  #6E00C4;
  --cr-teal-pale:  #F3E5FF;
  --cr-teal-glow:  rgba(143,0,255,0.15);
  --cr-navy:       #211527;
  --cr-navy-mid:   #2B1A33;
  --cr-slate:      #4B3E56;
  --cr-muted:      #7D7089;
  --cr-light:      #F8F5FB;
  --cr-white:      #FFFFFF;
  --cr-border:     rgba(143,0,255,0.15);
  --cr-shadow:     0 8px 40px rgba(13,27,42,0.12);
  --cr-shadow-lg:  0 24px 80px rgba(13,27,42,0.18);
  --cr-amber:      #FF9F1C;

  --font-flex: 'Google Sans Flex', 'Google Sans', sans-serif;
  --font-body: 'Google Sans', sans-serif;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cr-white);
  color: var(--cr-navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.material-icons-round{font-family:'Material Icons Round';font-weight:normal;font-style:normal;line-height:1;display:inline-block;}

/* ══ UTILITY ══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cr-teal-pale); border: 1px solid var(--cr-border);
  color: var(--cr-teal-deep); font-size: 11px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 16px;
}
.section-tag .mi { font-size: 14px; }

.section-title {
  font-family: var(--font-flex);
  font-size: clamp(32px, 3.8vw, 52px);
  font-variation-settings: 'wght' 720;
  line-height: 1.1; color: var(--cr-navy); margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-title em { font-style: normal; color: var(--cr-teal); }

.section-sub {
  font-size: 16px; line-height: 1.75; color: var(--cr-muted); max-width: 560px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cr-teal); color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 13px 26px; border-radius: var(--r);
  transition: all 0.25s; position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(143,0,255,0.35);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.btn-primary:hover { background: var(--cr-teal-deep); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(143,0,255,0.45); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:disabled { background: #D9C7ED; box-shadow: none; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--cr-teal);
  font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: var(--r);
  border: 1.5px solid var(--cr-teal);
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--cr-teal); color: #fff; }

.reveal { opacity: 1; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.cr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(143,0,255,0.1);
  transition: box-shadow 0.3s;
}
.cr-nav.scrolled { box-shadow: 0 4px 30px rgba(13,27,42,0.1); }
.cr-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.logo img{ height: 64px; margin-top: 2px;}
.cr-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-flex); font-variation-settings: 'wght' 800;
  font-size: 21px; color: var(--cr-navy); flex-shrink: 0;
  letter-spacing: -0.5px;
}
.cr-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cr-teal), var(--cr-teal-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(143,0,255,0.4); color: #fff; font-size: 19px;
  flex-shrink: 0;
}
.cr-logo span { color: var(--cr-teal); }

.cr-nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.cr-nav-links a {
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--cr-slate);
  transition: all 0.2s; white-space: nowrap;
}
.cr-nav-links a:hover { background: var(--cr-teal-pale); color: var(--cr-teal-deep); }

.cr-nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cr-nav-phone { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--cr-navy); }
.cr-nav-phone .mi { font-size: 17px; color: var(--cr-teal); }
@media(max-width:980px){ .cr-nav-links,.cr-nav-phone{display:none;} }

/* ══════════════════════════════════════════════
   HERO — dark, matches v7's cr-hero
══════════════════════════════════════════════ */
.cr-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #FBF8FF 0%, #F6EEFF 45%, #FDF9FF 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(143,0,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,0,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,0,255,0.10) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.hero-orb2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,0,196,0.08) 0%, transparent 65%);
  bottom: -100px; left: 5%;
}
.hero-line {
  position: absolute; top: 0; left: 50%;
  width: 1px; height: 100%; background: linear-gradient(180deg, transparent, rgba(143,0,255,0.12), transparent);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 20px 18px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; align-items: center; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cr-teal-pale); border: 1px solid var(--cr-border);
  color: var(--cr-teal-deep); font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 14px; border-radius: 30px;
  margin-bottom: 24px;
}
.hero-eyebrow .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--cr-teal); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(.7);} }

.hero-title {
  font-family: var(--font-flex);
  font-size: clamp(40px, 4.6vw, 64px);
  font-variation-settings: 'wght' 800;
  line-height: 1.08; letter-spacing: -1px;
  color: var(--cr-navy); margin-bottom: 22px;
}
.hero-title .accent { color: var(--cr-teal); }

.hero-desc { font-size: 17px; line-height: 1.75; color: var(--cr-slate); margin-bottom: 36px; max-width: 460px; }
.hero-desc strong { color: var(--cr-navy); font-weight: 500; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(43,26,51,0.12);
  color: var(--cr-navy); font-size: 14px; font-weight: 500;
  padding: 13px 24px; border-radius: var(--r); transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(43,26,51,0.05);
}
.hero-btn-ghost:hover { background: var(--cr-teal-pale); border-color: var(--cr-border); color: var(--cr-teal-deep); }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-flex); font-variation-settings: 'wght' 750; font-size: 28px; color: var(--cr-navy); line-height: 1; }
.hero-stat-num sup { font-size: 14px; color: var(--cr-teal); }
.hero-stat-label { font-size: 12px; color: var(--cr-muted); margin-top: 3px; letter-spacing: 0.3px; }
.hero-stat-div { width: 1px; background: rgba(43,26,51,0.12); align-self: stretch; }

/* Hero Right — plate entry widget (same glass-card language as v7's hero-widget) */
.hero-widget {
  background: #fff;
  border: 1px solid rgba(43,26,51,0.08);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 32px 80px rgba(43,26,51,0.14), inset 0 1px 0 rgba(255,255,255,0.6);
}
.widget-title { font-family: var(--font-flex); font-variation-settings: 'wght' 700; font-size: 22px; color: var(--cr-navy); margin-bottom: 6px; letter-spacing: -0.3px; }
.widget-sub { font-size: 13px; color: var(--cr-muted); margin-bottom: 26px; }

.plate-input-wrap {
  display: flex; align-items: stretch; border-radius: var(--r-sm);
  overflow: hidden; margin-bottom: 10px;
  background: #fff; border: 2px solid rgba(43,26,51,0.15);
  box-shadow: 0 2px 10px rgba(43,26,51,0.06);
  width: 520px;
  max-width: 100%;
}
.plate-flag { width: 44px; flex-shrink: 0; background: var(--cr-teal); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; }
.plate-flag .star { color: #FFC72C; font-size: 14px; line-height: 1; }
.plate-flag span { font-size: 8.5px; font-weight: 700; letter-spacing: 0.5px; margin-top: 2px; }
#plateInput {
  flex: 1; border: none; outline: none; font-family: var(--font-flex); font-variation-settings: 'wght' 700;
  font-size: 46px; letter-spacing: 2px; text-transform: uppercase; color: var(--cr-navy);
  padding: 24px 14px; background: #fff;
}
#plateInput::placeholder{ color:#C9BFD3; letter-spacing:1px; }
.plate-error { font-size: 12px; color: #DC2626; font-weight: 600; margin: -2px 0 12px; display: none; }
.plate-error.show { display: block; }
.widget-hint { font-size: 12px; color: var(--cr-muted); margin-bottom: 22px; }

.widget-divider { display: flex; align-items: center; gap: 10px; margin: 20px 0 14px; color: var(--cr-muted); font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.widget-divider::before, .widget-divider::after { content: ''; flex: 1; height: 1px; background: rgba(43,26,51,0.12); }

.brand-quick { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-chip {
  padding: 9px 14px; border-radius: 30px; border: 1px solid rgba(43,26,51,0.12);
  font-size: 12px; font-weight: 600; color: var(--cr-slate); transition: all .2s;
  background: var(--cr-light);
}
.brand-chip:hover { border-color: var(--cr-teal); color: #fff; background: var(--cr-teal); }

.widget-cta {
  width: 100%; padding: 15px; margin-top: 6px;
  background: linear-gradient(135deg, var(--cr-teal), var(--cr-teal-deep));
  color: #fff; font-size: 15px; font-weight: 600;
  border-radius: var(--r); border: none; cursor: pointer;
  transition: all 0.25s; font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(143,0,255,0.4);
}
.widget-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(143,0,255,0.55); }
.widget-footer { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-size: 12px; color: var(--cr-muted); }
.widget-footer .mi { font-size: 14px; color: rgba(143,0,255,0.6); }

@media(max-width:900px){ .hero-inner{grid-template-columns:1fr;gap:56px;padding:60px 20px;}.plate-input-wrap{width:100%;}#plateInput{font-size: 26px;} }
@media(max-width:480px){ .hero-widget{padding:24px;}  #plateInput{font-size:20px;padding:18px 10px;} .plate-flag{width:38px;} .widget-title{font-size:19px;} }

/* ══════════════════════════════════════════════
   WHY SELL — trust grid (reveal-card language)
══════════════════════════════════════════════ */
.cr-why { padding: 50px 0; background: var(--cr-white); }
.cr-why-header { text-align: center; margin-bottom: 56px; }
.cr-why-header .section-sub { margin: 0 auto; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.trust-card {
  background: var(--cr-light); border-radius: var(--r-lg);
  padding: 34px 28px; border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--cr-shadow); border-color: var(--cr-border); background: #fff; }
.trust-card-icon {
  width: 54px; height: 54px; border-radius: var(--r);
  background: var(--cr-teal-pale); display: flex; align-items: center; justify-content: center;
  color: var(--cr-teal); font-size: 24px; margin-bottom: 18px;
}
.trust-card h3 { font-family: var(--font-flex); font-size: 18px; font-weight: 700; color: var(--cr-navy); margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--cr-muted); line-height: 1.7; }
@media(max-width:900px){ .trust-grid{grid-template-columns:1fr;} }

/* ══════════════════════════════════════════════
   HOW IT WORKS — identical steps-grid pattern to v7
══════════════════════════════════════════════ */
.cr-steps { padding: 100px 0; background: var(--cr-light); }
.cr-steps-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.cr-steps-header { text-align: center; margin-bottom: 64px; }
.cr-steps-header .section-sub { margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 48px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cr-teal), transparent); opacity: 0.3;
}
.step-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px 24px; text-align: center;
  border: 1.5px solid rgba(0,0,0,0.05); transition: all 0.35s; position: relative; overflow: hidden;
}
.step-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--cr-teal); transform: scaleX(0); transform-origin: center; transition: transform 0.35s; }
.step-card:hover { border-color: var(--cr-border); box-shadow: var(--cr-shadow); transform: translateY(-6px); }
.step-card:hover::after { transform: scaleX(1); }
.step-num { position: absolute; top: 18px; right: 20px; font-family: var(--font-flex); font-variation-settings: 'wght' 900; font-size: 48px; color: rgba(143,0,255,0.07); line-height: 1; }
.step-card:hover .step-num { color: rgba(143,0,255,0.12); }
.step-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%; background: var(--cr-teal-pale);
  border: 2px solid rgba(143,0,255,0.2); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: var(--cr-teal); font-size: 32px; transition: all 0.3s; position: relative; z-index: 1;
}
.step-card:hover .step-icon-wrap { background: var(--cr-teal); color: #fff; border-color: var(--cr-teal); box-shadow: 0 8px 28px rgba(143,0,255,0.35); }
.step-title { font-size: 17px; font-weight: 700; color: var(--cr-navy); margin-bottom: 9px; font-family: var(--font-flex); }
.step-desc { font-size: 13.5px; line-height: 1.7; color: var(--cr-muted); }
@media(max-width:900px){ .steps-grid{grid-template-columns:1fr 1fr;} .steps-grid::before{display:none;} }
@media(max-width:560px){ .steps-grid{grid-template-columns:1fr;} }

/* ══════════════════════════════════════════════
   STORIES — identical pattern to v7
══════════════════════════════════════════════ */
.cr-stories { padding: 100px 0; background: #fff; overflow: hidden; }
.cr-stories-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.cr-stories-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.stories-rating-badge { display: flex; align-items: center; gap: 12px; background: var(--cr-light); border-radius: var(--r-lg); padding: 14px 20px; box-shadow: var(--cr-shadow); border: 1px solid rgba(143,0,255,0.1); flex-shrink: 0; }
.rating-stars { font-size: 18px; letter-spacing: 2px; color: var(--cr-amber); }
.rating-score { font-family: var(--font-flex); font-variation-settings: 'wght' 800; font-size: 26px; color: var(--cr-navy); }
.rating-label { font-size: 12px; color: var(--cr-muted); }
.stories-track-wrap { position: relative; }
.stories-track { display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 24px; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.stories-track::-webkit-scrollbar { display: none; }
.story-card { flex: 0 0 320px; background: var(--cr-light); border-radius: var(--r-xl); padding: 28px; border: 1px solid rgba(0,0,0,0.05); scroll-snap-align: start; transition: all 0.3s; display: flex; flex-direction: column; gap: 16px; }
.story-card:hover { transform: translateY(-5px); box-shadow: var(--cr-shadow); border-color: var(--cr-border); background: #fff; }
.story-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.story-quote-icon { font-size: 40px; color: var(--cr-teal); opacity: 0.25; line-height: 1; font-family: Georgia, serif; }
.story-stars { font-size: 14px; letter-spacing: 1px; color: var(--cr-amber); }
.story-text { font-size: 14px; line-height: 1.75; color: var(--cr-slate); flex: 1; }
.story-car { display: flex; align-items: center; gap: 8px; background: var(--cr-teal-pale); border-radius: var(--r-sm); padding: 8px 12px; font-size: 12px; color: var(--cr-teal-deep); font-weight: 500; width: fit-content; }
.story-car .mi { font-size: 16px; }
.story-author { display: flex; align-items: center; gap: 12px; }
.story-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-flex); font-variation-settings: 'wght' 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.story-name { font-size: 14px; font-weight: 600; color: var(--cr-navy); }
.story-meta { font-size: 12px; color: var(--cr-muted); margin-top: 1px; }

/* ══════════════════════════════════════════════
   FAQ — identical pattern to v7
══════════════════════════════════════════════ */
.cr-faq { padding: 100px 0; background: var(--cr-light); }
.cr-faq-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.cr-faq-header { text-align: center; margin-bottom: 52px; }
.cr-faq-header .section-sub { margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: var(--r-lg); border: 1.5px solid transparent; overflow: hidden; transition: all 0.3s; }
.faq-item.open { border-color: var(--cr-teal); box-shadow: 0 6px 24px rgba(143,0,255,0.1); }
.faq-q { display: flex; align-items: center; gap: 14px; padding: 20px 22px; cursor: pointer; width: 100%; text-align: left; background: none; border: none; font-family: var(--font-body); transition: all 0.2s; }
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--cr-navy); flex: 1; line-height: 1.4; }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: rgba(143,0,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--cr-teal); font-size: 18px; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--cr-teal); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 20px; }
.faq-a p { font-size: 14px; line-height: 1.8; color: var(--cr-muted); border-top: 1px solid rgba(143,0,255,0.08); padding-top: 14px; }

/* ══════════════════════════════════════════════
   CLOSING CTA
══════════════════════════════════════════════ */
.cr-cta-band { padding: 0 0 100px; background: var(--cr-light); }
.cta-band {
  background: linear-gradient(135deg, var(--cr-teal), var(--cr-teal-deep));
  border-radius: var(--r-xl); padding: 60px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.16), transparent 60%); }
.cta-band h2 { font-family: var(--font-flex); font-variation-settings: 'wght' 750; color: #fff; font-size: clamp(26px,3vw,36px); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 26px; position: relative; }
.cta-band .btn-primary { background: #fff; color: var(--cr-teal-deep); box-shadow: 0 14px 34px rgba(0,0,0,0.2); position: relative; }
.cta-band .btn-primary:hover { background: var(--cr-teal-pale); }

/* ══════════════════════════════════════════════
   FOOTER — identical pattern to v7
══════════════════════════════════════════════ */
.cr-footer { background: var(--cr-light); border-top: 1px solid rgba(43,26,51,0.06); padding: 64px 0 0; }
.cr-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 0 48px 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-flex); font-variation-settings: 'wght' 800; font-size: 20px; color: var(--cr-navy); margin-bottom: 16px; letter-spacing: -0.3px; }
.footer-brand-logo .cr-logo-mark { width: 32px; height: 32px; font-size: 16px; }
.footer-brand-logo span { color: var(--cr-teal); }
.footer-tagline { font-size: 14px; color: var(--cr-muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: rgba(43,26,51,0.45); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: var(--cr-slate); transition: color 0.2s; }
.footer-col li a:hover { color: var(--cr-teal); }
.footer-bottom { border-top: 1px solid rgba(43,26,51,0.08); padding: 20px 48px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--cr-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--cr-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--cr-teal); }
@media(max-width:900px){ .cr-footer-grid{grid-template-columns:1fr 1fr;} }

/* ══════════════════════════════════════════════
   WIZARD OVERLAY — post-plate-entry flow, same tokens
══════════════════════════════════════════════ */
.wizard { position: fixed; inset: 0; background: var(--cr-light); z-index: 2000; display: none; flex-direction: column; }
.wizard.active { display: flex; }
.wiz-top { height: var(--nav-h); flex-shrink: 0; display: flex; align-items: center; gap: 18px; padding: 0 28px; border-bottom: 1px solid rgba(143,0,255,0.1); background: #fff; }
.wiz-back { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(33,21,39,0.12); color: var(--cr-slate); transition: all .2s; flex-shrink: 0; }
.wiz-back:hover { border-color: var(--cr-teal); color: var(--cr-teal); }
.wiz-progress-track { flex: 1; height: 6px; border-radius: 4px; background: var(--cr-teal-pale); overflow: hidden; }
.wiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--cr-teal), var(--cr-teal-deep)); border-radius: 4px; transition: width .4s cubic-bezier(.3,.8,.4,1); width: 8%; }
.wiz-step-count { font-family: var(--font-flex); font-variation-settings: 'wght' 700; font-size: 12px; color: var(--cr-muted); flex-shrink: 0; white-space: nowrap; }
.wiz-close { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cr-muted); transition: all .2s; flex-shrink: 0; }
.wiz-close:hover { background: var(--cr-teal-pale); color: var(--cr-teal); }

.wiz-body { flex: 1; overflow-y: auto; display: flex; align-items: center; justify-content: center; padding: 50px 24px; }
.wiz-step { width: 100%; max-width: 560px; opacity: 0; transform: translateX(40px); display: none; }
.wiz-step.active { display: block; animation: wizIn .45s cubic-bezier(.2,.9,.25,1) forwards; }
@keyframes wizIn { from{opacity:0;transform:translateX(40px);} to{opacity:1;transform:translateX(0);} }

.wiz-eyebrow { font-family: var(--font-flex); font-variation-settings: 'wght' 700; font-size: 11.5px; color: var(--cr-teal); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px; }
.wiz-title { font-family: var(--font-flex); font-variation-settings: 'wght' 750; font-size: clamp(24px,3vw,32px); color: var(--cr-navy); margin-bottom: 10px; line-height: 1.2; }
.wiz-sub { font-size: 14.5px; color: var(--cr-muted); margin-bottom: 32px; line-height: 1.6; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.opt-grid.single { grid-template-columns: 1fr; }
.opt-card { border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r); padding: 18px 20px; display: flex; align-items: center; gap: 14px; transition: all .2s ease; text-align: left; background: #fff; }
.opt-card:hover { border-color: var(--cr-teal); background: var(--cr-teal-pale); }
.opt-card.selected { border-color: var(--cr-teal); background: var(--cr-teal-pale); box-shadow: 0 0 0 3px rgba(143,0,255,0.1); }
.opt-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--cr-teal-pale); color: var(--cr-teal); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.opt-card.selected .opt-icon { background: var(--cr-teal); color: #fff; }
.opt-label { font-weight: 700; font-size: 14.5px; color: var(--cr-navy); }
.opt-desc { font-size: 12px; color: var(--cr-muted); margin-top: 2px; }

.wiz-field { margin-bottom: 20px; }
.wiz-field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--cr-slate); margin-bottom: 8px; }
.wiz-input { width: 100%; padding: 15px 16px; border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r); font-size: 16px; font-family: var(--font-body); color: var(--cr-navy); transition: all .2s; background: #fff; }
.wiz-input:focus { outline: none; border-color: var(--cr-teal); box-shadow: 0 0 0 3px rgba(143,0,255,0.1); }

.km-display { font-family: var(--font-flex); font-variation-settings: 'wght' 750; font-size: 34px; color: var(--cr-teal); margin-bottom: 6px; }
.km-display span { font-size: 15px; color: var(--cr-muted); font-family: var(--font-body); }
input[type="range"] { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 4px; background: var(--cr-teal-pale); margin: 18px 0; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--cr-teal); border: 4px solid #fff; box-shadow: 0 3px 10px rgba(143,0,255,0.4); cursor: pointer; }
.km-range-labels { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--cr-muted); }

.phone-field { display: flex; border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r); overflow: hidden; }
.phone-prefix { background: var(--cr-teal-pale); color: var(--cr-teal-deep); font-weight: 700; font-size: 15px; display: flex; align-items: center; padding: 0 16px; }
.phone-field input { border: none; flex: 1; padding: 15px 16px; font-size: 16px; font-family: var(--font-flex); color: var(--cr-navy); }
.phone-field input:focus { outline: none; }
.wiz-consent { font-size: 12px; color: var(--cr-muted); margin-top: 14px; line-height: 1.6; }

.otp-boxes { display: flex; gap: 12px; margin-bottom: 18px; }
.otp-box { width: 56px; height: 64px; border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r); text-align: center; font-family: var(--font-flex); font-variation-settings: 'wght' 750; font-size: 26px; color: var(--cr-navy); background: #fff; transition: all .2s; }
.otp-box:focus { outline: none; border-color: var(--cr-teal); box-shadow: 0 0 0 3px rgba(143,0,255,0.1); }
.otp-box.filled { border-color: var(--cr-teal); background: var(--cr-teal-pale); }
.otp-demo { font-size: 12.5px; color: var(--cr-muted); background: var(--cr-teal-pale); border: 1px dashed rgba(143,0,255,0.25); border-radius: 10px; padding: 10px 14px; margin-bottom: 18px; }
.otp-demo strong { color: var(--cr-teal-deep); }
.otp-resend { font-size: 13px; color: var(--cr-muted); }
.otp-resend b { color: var(--cr-teal); cursor: pointer; }

.car-found-card { border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r-lg); padding: 24px; background: #fff; margin-bottom: 20px; display: flex; gap: 18px; align-items: center; }
.car-found-icon { width: 64px; height: 64px; border-radius: 14px; background: var(--cr-teal-pale); color: var(--cr-teal); display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.car-found-name { font-family: var(--font-flex); font-variation-settings: 'wght' 800; font-size: 18px; color: var(--cr-navy); margin-bottom: 4px; }
.car-found-meta { font-size: 13px; color: var(--cr-muted); }
.car-found-tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.car-found-tag { font-size: 11px; font-weight: 700; background: var(--cr-light); color: var(--cr-slate); padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(143,0,255,0.12); }
.lookup-loading { display: flex; flex-direction: column; align-items: center; padding: 50px 0; gap: 18px; }
.lookup-spinner { width: 44px; height: 44px; border-radius: 50%; border: 4px solid var(--cr-teal-pale); border-top-color: var(--cr-teal); animation: spin .8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg);} }
.lookup-loading p { font-size: 14px; color: var(--cr-muted); font-weight: 600; }

.price-reveal { text-align: center; }
.price-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--cr-teal-pale); color: var(--cr-teal-deep); font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 30px; margin-bottom: 22px; }
.price-amount { font-family: var(--font-flex); font-variation-settings: 'wght' 800; font-size: clamp(42px,7vw,60px); color: var(--cr-navy); margin-bottom: 8px; }
.price-range { font-size: 13.5px; color: var(--cr-muted); margin-bottom: 30px; }
.price-breakdown { text-align: left; border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r-lg); padding: 22px 24px; background: #fff; margin-bottom: 26px; }
.pb-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 9px 0; border-bottom: 1px dashed rgba(143,0,255,0.14); }
.pb-row:last-child { border-bottom: none; font-weight: 700; color: var(--cr-teal-deep); padding-top: 14px; }
.pb-row span:first-child { color: var(--cr-slate); }

.date-chips { display: flex; gap: 10px; overflow-x: auto; margin-bottom: 24px; padding-bottom: 4px; }
.date-chip { flex-shrink: 0; width: 64px; padding: 12px 0; border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r); text-align: center; transition: all .2s; background: #fff; }
.date-chip .dow { font-size: 11px; color: var(--cr-muted); font-weight: 700; text-transform: uppercase; }
.date-chip .dnum { font-family: var(--font-flex); font-variation-settings: 'wght' 800; font-size: 19px; margin-top: 3px; color: var(--cr-navy); }
.date-chip.selected { border-color: var(--cr-teal); background: var(--cr-teal-pale); }
.date-chip.selected .dnum { color: var(--cr-teal-deep); }
.slot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.slot-chip { border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r); padding: 12px 8px; text-align: center; font-size: 13px; font-weight: 600; transition: all .2s; background: #fff; color: var(--cr-navy); }
.slot-chip:hover { border-color: var(--cr-teal); }
.slot-chip.selected { border-color: var(--cr-teal); background: var(--cr-teal-pale); color: var(--cr-teal-deep); font-weight: 700; }

.confirm-wrap { text-align: center; }
.confirm-check { width: 80px; height: 80px; border-radius: 50%; background: #16A672; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 24px; animation: pop .5s cubic-bezier(.3,1.5,.5,1); }
@keyframes pop { from{transform:scale(0);} to{transform:scale(1);} }
.confirm-summary { text-align: left; border: 1.5px solid rgba(143,0,255,0.14); border-radius: var(--r-lg); padding: 22px 24px; background: #fff; margin: 26px 0; }
.cs-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 9px 0; border-bottom: 1px solid var(--cr-light); }
.cs-row:last-child { border-bottom: none; }
.cs-row span:first-child { color: var(--cr-muted); }
.cs-row span:last-child { font-weight: 700; color: var(--cr-navy); }

.wiz-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }
.wiz-nav .btn-primary { flex: 1; justify-content: center; }
@media(max-width:560px){ .opt-grid{grid-template-columns:1fr;} .otp-box{width:46px;height:56px;font-size:22px;} .car-found-card{flex-direction:column;text-align:center;} }

/* ==== MERGED SECOND FILE ADDITIONS ==== */
/* ══════════════════════════════════════════════
   CARSRIGHT — DESIGN SYSTEM
══════════════════════════════════════════════ */
:root {
  --cr-teal:       #8F00FF;
  --cr-teal-deep:  #6E00C4;
  --cr-teal-pale:  #F3E5FF;
  --cr-teal-glow:  rgba(143,0,255,0.15);
  --cr-navy:       #211527;
  --cr-navy-mid:   #2B1A33;
  --cr-slate:      #4B3E56;
  --cr-muted:      #7D7089;
  --cr-light:      #F8F5FB;
  --cr-white:      #FFFFFF;
  --cr-border:     rgba(143,0,255,0.15);
  --cr-shadow:     0 8px 40px rgba(13,27,42,0.12);
  --cr-shadow-lg:  0 24px 80px rgba(13,27,42,0.18);

  --font-flex: 'Google Sans Flex', 'Google Sans', sans-serif;
  --font-body: 'Google Sans', sans-serif;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cr-white);
  color: var(--cr-navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }


/* ══ UTILITY ══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cr-teal-pale); border: 1px solid var(--cr-border);
  color: var(--cr-teal-deep); font-size: 11px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 16px;
}
.section-tag .mi { font-size: 14px; }

.section-title {
  font-family: var(--font-flex);
  font-size: clamp(32px, 3.8vw, 52px);
  font-variation-settings: 'wght' 720;
  line-height: 1.1; color: var(--cr-navy); margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-title em { font-style: normal; color: var(--cr-teal); }

.section-sub {
  font-size: 16px; line-height: 1.75; color: var(--cr-muted); max-width: 560px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cr-teal); color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 13px 26px; border-radius: var(--r);
  transition: all 0.25s; position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(143,0,255,0.35);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.btn-primary:hover { background: var(--cr-teal-deep); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(143,0,255,0.45); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--cr-teal);
  font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: var(--r);
  border: 1.5px solid var(--cr-teal);
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--cr-teal); color: #fff; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.cr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(143,0,255,0.1);
  transition: box-shadow 0.3s;
}
.cr-nav.scrolled { box-shadow: 0 4px 30px rgba(13,27,42,0.1); }


.logo img{ height: 64px; margin-top: 2px;}
.cr-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-flex); font-variation-settings: 'wght' 800;
  font-size: 22px; color: var(--cr-navy); flex-shrink: 0;
  letter-spacing: -0.5px;
}
.cr-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cr-teal), var(--cr-teal-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(143,0,255,0.4);
}
.cr-logo-mark svg { width: 20px; height: 20px; fill: #fff; }
.cr-logo span { color: var(--cr-teal); }

.cr-nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.cr-nav-links a {
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--cr-slate);
  transition: all 0.2s; white-space: nowrap;
}
.cr-nav-links a:hover { background: var(--cr-teal-pale); color: var(--cr-teal-deep); }
.cr-nav-links a.active { color: var(--cr-teal); font-weight: 600; }

.cr-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Login dropdown */
.cr-login-wrap { position: relative; }
.cr-login-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r);
  border: 1.5px solid rgba(143,0,255,0.3);
  font-size: 13px; font-weight: 500; color: var(--cr-navy);
  background: #fff; transition: all 0.2s; cursor: pointer;
}
.cr-login-btn:hover { border-color: var(--cr-teal); color: var(--cr-teal); }
.cr-login-btn .mi { font-size: 18px; transition: transform 0.25s; }
.cr-login-btn .material-icons-round:last-child {
    transition: transform 0.3s ease;
}

.cr-login-wrap.open .cr-login-btn .material-icons-round:last-child {
    transform: rotate(180deg);
}

.cr-login-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid rgba(143,0,255,0.12);
  box-shadow: 0 20px 60px rgba(13,27,42,0.15);
  min-width: 240px; padding: 10px;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.cr-login-wrap.open .cr-login-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

.cr-login-header {
  padding: 8px 10px 12px;
  font-size: 10px; font-weight: 600; color: var(--cr-muted);
  letter-spacing: 1.2px; text-transform: uppercase;
  border-bottom: 1px solid rgba(143,0,255,0.08); margin-bottom: 6px;
}

.cr-login-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: var(--r-sm);
  cursor: pointer; transition: all 0.18s; width: 100%;
  text-align: left;
}
.cr-login-item:hover { background: var(--cr-teal-pale); }
.cr-login-item-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.cr-login-item-text { flex: 1; }
.cr-login-item-name { font-size: 14px; font-weight: 600; color: var(--cr-navy); }
.cr-login-item-desc { font-size: 11px; color: var(--cr-muted); margin-top: 1px; }
.cr-login-item .mi-sm { font-size: 16px; color: var(--cr-muted); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cr-navy); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 999; padding: 24px; overflow-y: auto;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--r);
  font-size: 16px; font-weight: 500; color: var(--cr-navy);
  border: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu a:hover { background: var(--cr-teal-pale); color: var(--cr-teal); }
.mobile-menu .mi { font-size: 20px; color: var(--cr-teal); }
.mobile-login-section { margin-top: 16px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 16px; }
.mobile-login-section h4 { font-size: 11px; font-weight: 600; color: var(--cr-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; padding-left: 4px; }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.cr-hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #FBF8FF 0%, #F6EEFF 45%, #FDF9FF 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

/* Geometric background */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(143,0,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,0,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,0,255,0.09) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.hero-orb2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,133,119,0.06) 0%, transparent 65%);
  bottom: -100px; left: 5%;
}
.hero-line {
  position: absolute; top: 0; left: 50%;
  width: 1px; height: 100%; background: linear-gradient(180deg, transparent, rgba(143,0,255,0.12), transparent);
}


/* Hero Left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cr-teal-pale); border: 1px solid var(--cr-border);
  color: var(--cr-teal-deep); font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 14px; border-radius: 30px;
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cr-teal);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-flex);
  font-size: clamp(44px, 5vw, 72px);
  font-variation-settings: 'wght' 800;
  line-height: 1.05; letter-spacing: -1px;
  color: var(--cr-navy); margin-bottom: 24px;
}
.hero-title .accent { color: var(--cr-teal); }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(43,26,51,0.35);
}

.hero-desc {
  font-size: 17px; line-height: 1.75; color: var(--cr-slate);
  margin-bottom: 40px; max-width: 460px;
}
.hero-desc strong { color: var(--cr-navy); font-weight: 500; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(43,26,51,0.12);
  color: var(--cr-navy); font-size: 14px; font-weight: 500;
  padding: 13px 24px; border-radius: var(--r); transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(43,26,51,0.05);
}
.hero-btn-ghost:hover { background: var(--cr-teal-pale); border-color: var(--cr-border); color: var(--cr-teal-deep); }

.hero-stats { display: flex; gap: 32px; }
.hero-stat-num {
  font-family: var(--font-flex); font-variation-settings: 'wght' 750;
  font-size: 28px; color: var(--cr-navy); line-height: 1;
}
.hero-stat-num sup { font-size: 14px; color: var(--cr-teal); }
.hero-stat-label { font-size: 12px; color: var(--cr-muted); margin-top: 3px; letter-spacing: 0.3px; }
.hero-stat-div { width: 1px; background: rgba(43,26,51,0.12); align-self: stretch; }

/* Hero Right — Car Selector Widget */
.hero-widget {
  background: #fff;
  border: 1px solid rgba(43,26,51,0.08);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 32px 80px rgba(43,26,51,0.14), inset 0 1px 0 rgba(255,255,255,0.6);
}

.widget-title {
  font-family: var(--font-flex); font-variation-settings: 'wght' 700;
  font-size: 22px; color: var(--cr-navy); margin-bottom: 6px; letter-spacing: -0.3px;
}
.widget-sub { font-size: 13px; color: var(--cr-muted); margin-bottom: 28px; }

.widget-tabs {
  display: flex; gap: 6px; background: var(--cr-light);
  border-radius: var(--r); padding: 5px; margin-bottom: 24px;
}
.widget-tab {
  flex: 1; padding: 9px 10px; border-radius: 9px; text-align: center;
  font-size: 12px; font-weight: 600; color: var(--cr-muted);
  cursor: pointer; transition: all 0.2s;
}
.widget-tab.active {
  background: var(--cr-teal-pale); color: var(--cr-teal-deep);
  border: 1px solid var(--cr-border);
}

.widget-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.widget-select-full { grid-column: 1/-1; }

.widget-label {
  font-size: 10px; font-weight: 600; color: var(--cr-muted);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}

.widget-select, .widget-input {
  width: 100%; background: var(--cr-light);
  border: 1px solid rgba(43,26,51,0.1);
  border-radius: var(--r-sm); padding: 12px 14px;
  font-size: 14px; font-family: var(--font-body);
  color: var(--cr-navy); outline: none; transition: all 0.22s;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(43,26,51,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.widget-select option { background: #fff; color: var(--cr-navy); }
.widget-select:focus, .widget-input:focus {
  border-color: rgba(143,0,255,0.5);
  box-shadow: 0 0 0 3px rgba(143,0,255,0.1);
  background-color: var(--cr-teal-pale);
}
.widget-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.widget-input { background-image: none; }
.widget-input::placeholder { color: rgba(43,26,51,0.35); }
.widget-cta {
  width: 100%; padding: 15px; margin-top: 6px;
  background: linear-gradient(135deg, var(--cr-teal), var(--cr-teal-deep));
  color: #fff; font-size: 15px; font-weight: 600;
  border-radius: var(--r); border: none; cursor: pointer;
  transition: all 0.25s; font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(143,0,255,0.4);
}
.widget-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(143,0,255,0.55); }
.widget-cta .mi { font-size: 20px; }

.widget-footer {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 16px; font-size: 12px; color: var(--cr-muted);
}
.widget-footer .mi { font-size: 14px; color: rgba(143,0,255,0.6); }
.mb-28{margin-bottom: 28px;}

/* ══════════════════════════════════════════════
   TRUE CONDITION SLIDER SECTION
══════════════════════════════════════════════ */
.cr-reveal-section { padding: 100px 0; background: var(--cr-white); }
.cr-reveal-header { text-align: center; margin-bottom: 64px; }
.cr-reveal-header .section-sub { margin: 0 auto; }

/* Before/After Slider */
.reveal-slider-wrap {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; user-select: none;
  box-shadow: var(--cr-shadow-lg);
  border: 1px solid rgba(143,0,255,0.1);
  max-width: 900px; margin: 0 auto;
  aspect-ratio: 16/7;
  background: #38244e;

}

.reveal-side {
  position: absolute; inset: 0;

}
.reveal-before, .reveal-after {
  flex: 1; padding: 48px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
}

/* After panel fills full width — sits behind */
.reveal-after {
  position: absolute; inset: 0;
  padding: 48px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(135deg, #170023, #33005c);
}
/* Before panel overlays on top — only IT gets clipped */
.reveal-after {
  position: absolute; inset: 0;
  padding: 0px 0px 80px calc(50% + 48px); /* left padding pushes content to right half */
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(135deg, #170023, #33005c);
}

/* Icon grids on sides */
.reveal-before::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(220,38,38,0.04) 0px, rgba(220,38,38,0.04) 1px, transparent 1px, transparent 30px);
}
.reveal-after::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(143,0,255,0.04) 0px, rgba(143,0,255,0.04) 1px, transparent 1px, transparent 30px);
}

.reveal-label {
  position: relative; z-index: 2;
  font-family: var(--font-flex); font-variation-settings: 'wght' 700;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px; padding: 5px 12px; border-radius: 30px;
  display: inline-block; width: fit-content;
}
.reveal-before .reveal-label { background: rgba(220,38,38,0.2); color: #fc8181; border: 1px solid rgba(220,38,38,0.3); }
.reveal-after .reveal-label { background: rgba(143,0,255,0.2); color: #C77DFF; border: 1px solid rgba(143,0,255,0.3); }

.reveal-heading {
  position: relative; z-index: 2;
  font-family: var(--font-flex); font-variation-settings: 'wght' 750;
  font-size: clamp(20px, 3vw, 32px); color: #fff; line-height: 1.15; margin-bottom: 10px;
}
.reveal-desc {
  position: relative; z-index: 2;
  font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55);
}

.reveal-items {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 7px; margin-top: 16px;
}
.reveal-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.reveal-item .ri { font-size: 16px; }
.reveal-before .reveal-item .ri { color: #fc8181; }
.reveal-after .reveal-item .ri { color: #C77DFF; }

.reveal-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: translateX(-50%); z-index: 10;
  cursor: ew-resize; transition: left 0s;
}
.reveal-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; z-index: 11;
}
.reveal-handle .mi { font-size: 22px; color: var(--cr-teal); }

/* Slide cards below */
.reveal-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.reveal-card {
  background: var(--cr-light); border-radius: var(--r-lg);
  padding: 24px; border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.reveal-card:hover { transform: translateY(-4px); box-shadow: var(--cr-shadow); border-color: var(--cr-border); }
.reveal-card-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--cr-teal-pale); display: flex; align-items: center; justify-content: center;
  color: var(--cr-teal); font-size: 22px; margin-bottom: 14px;
}
.reveal-card h4 { font-size: 15px; font-weight: 600; color: var(--cr-navy); margin-bottom: 5px; }
.reveal-card p { font-size: 13px; color: var(--cr-muted); line-height: 1.6; }


/* ══════════════════════════════════════════════
   VIDEO LISTINGS SECTION
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   CAR LISTINGS — SPINNY-STYLE (light bg)
══════════════════════════════════════════════ */
.cr-videos {
  padding: 80px 0 100px;
  background: #eedff5;
  position: relative;
}
.cr-videos-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── Section header ── */
.cr-videos-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.cr-videos-header .section-title { color: var(--cr-navy); margin-bottom: 8px; }
.cr-videos-header .section-title em { color: var(--cr-teal); }
.cr-videos-header .section-sub { color: var(--cr-muted); }

/* ── Toolbar: filters + sort ── */
.vl-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.vl-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.vl-filter-chip {
  padding: 8px 18px; border-radius: 30px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #fff;
  font-size: 13px; font-weight: 600; color: var(--cr-slate);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
  white-space: nowrap; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.vl-filter-chip:hover { border-color: var(--cr-teal); color: var(--cr-teal); }
.vl-filter-chip.active {
  background: var(--cr-teal); border-color: var(--cr-teal);
  color: #fff; box-shadow: 0 3px 10px rgba(143,0,255,0.3);
}
.vl-result-count {
  font-size: 13px; color: var(--cr-muted); white-space: nowrap;
}
.vl-result-count strong { color: var(--cr-navy); }

/* ── Grid ── */
.vl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* ══ CARD ══ */
.vl-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.vl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13), 0 0 0 1px rgba(143,0,255,0.18);
}
.vl-card.hidden { display: none; }

/* ── Image area ── */
.vl-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
  background: #e8ecf0;
}
.vl-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.vl-card:hover .vl-thumb-img { transform: scale(1.04); }

/* Photo count badge */
.vl-photo-count {
  position: absolute; bottom: 10px; left: 10px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.58); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 6px;
  backdrop-filter: blur(4px);
}
.vl-photo-count .material-icons-round { font-size: 13px; }

/* Play / Video badge */
.vl-play-badge {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.62); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.vl-play-badge .material-icons-round { font-size: 14px; color: #ff4444; }
.vl-card:hover .vl-play-badge { background: rgba(0,0,0,0.8); }

/* Top badges row */
.vl-badges-top {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.vl-certified-badge {
  display: flex; align-items: center; gap: 4px;
  background: #fff; color: var(--cr-teal-deep);
  font-size: 10px; font-weight: 700; letter-spacing: 0.4px;
  padding: 4px 9px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.vl-certified-badge .material-icons-round { font-size: 12px; color: var(--cr-teal); }

.vl-fuel-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px;
}
.vl-fuel-badge.petrol   { background: #f3e5ff; color: #6E00C4; }
.vl-fuel-badge.diesel   { background: #fff8e1; color: #b45309; }
.vl-fuel-badge.electric { background: #ecfdf5; color: #059669; }

/* Wishlist heart */
.vl-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  transition: all 0.2s;
  z-index: 2;
}
.vl-wishlist:hover { background: #fff; transform: scale(1.1); }
.vl-wishlist .material-icons-round { font-size: 17px; color: #ccc; transition: color 0.2s; }
.vl-wishlist.liked .material-icons-round { color: #ef4444; }

/* ── Card Body ── */
.vl-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }

/* Car title */
.vl-car-name {
  font-family: var(--font-flex);
  font-variation-settings: 'wght' 700;
  font-size: 15px; color: var(--cr-navy);
  margin-bottom: 2px; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vl-car-variant {
  font-size: 11.5px; color: var(--cr-muted);
  margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Specs row — km · fuel · transmission */
.vl-specs {
  display: flex; gap: 0; align-items: center;
  margin-bottom: 12px;
  background: #F4F7F9; border-radius: 8px;
  overflow: hidden;
}
.vl-spec {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 7px 4px;
  border-right: 1px solid rgba(0,0,0,0.07);
  text-align: center;
}
.vl-spec:last-child { border-right: none; }
.vl-spec-val {
  font-size: 11.5px; font-weight: 700; color: var(--cr-navy);
  white-space: nowrap;
}
.vl-spec-key {
  font-size: 9.5px; color: var(--cr-muted);
  letter-spacing: 0.3px; margin-top: 2px; text-transform: uppercase;
}

/* Price block */
.vl-price-row {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
}
.vl-price {
  font-family: var(--font-flex);
  font-variation-settings: 'wght' 800;
  font-size: 19px; color: var(--cr-navy); line-height: 1;
}
.vl-price-emi {
  font-size: 11px; color: var(--cr-muted);
}
.vl-price-emi strong { color: var(--cr-teal-deep); }

/* Location */
.vl-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--cr-muted);
  margin-bottom: 14px;
}
.vl-location .material-icons-round { font-size: 13px; color: var(--cr-teal); }

/* CTA row */
.vl-cta-row {
  display: flex; gap: 8px; margin-top: auto;
}
.vl-btn-primary {
  flex: 1; padding: 10px 12px;
  background: var(--cr-teal);
  border: none; border-radius: 10px;
  color: #fff; font-size: 13px; font-weight: 600;
  font-family: var(--font-body); cursor: pointer;
  transition: all 0.22s; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  box-shadow: 0 3px 10px rgba(143,0,255,0.28);
}
.vl-btn-primary:hover { background: var(--cr-teal-deep); box-shadow: 0 6px 18px rgba(143,0,255,0.4); }
.vl-btn-primary .material-icons-round { font-size: 15px; }

.vl-btn-video {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; border: 1.5px solid rgba(0,0,0,0.1);
  background: #fff; color: var(--cr-slate);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.vl-btn-video:hover { background: #fff0f0; border-color: #fca5a5; }
.vl-btn-video .material-icons-round { font-size: 18px; color: #ef4444; }

/* Inspected tick row */
.vl-inspected {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--cr-teal-deep); font-weight: 600;
  margin-bottom: 10px;
}
.vl-inspected .material-icons-round { font-size: 14px; }

/* ── Load more ── */
.vl-show-more { text-align: center; margin-top: 40px; }
.vl-show-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 30px;
  border: 1.5px solid var(--cr-teal);
  background: #fff;
  color: var(--cr-teal); font-size: 14px; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.vl-show-btn:hover { background: var(--cr-teal); color: #fff; box-shadow: 0 6px 20px rgba(143,0,255,0.3); }
.vl-show-btn .material-icons-round { font-size: 18px; }
.vl-show-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.vl-show-btn:disabled:hover { background: #fff; color: var(--cr-teal); }

/* ── Video Modal ── */
.vl-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,12,20,0.9); backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 20px;
}
.vl-modal-overlay.open { display: flex; }
.vl-modal-box {
  width: 100%; max-width: 880px;
  background: #fff; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: vlModalIn 0.32s cubic-bezier(0.16,1,0.3,1);
}
@keyframes vlModalIn {
  from { opacity: 0; transform: scale(0.94) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.vl-modal-iframe-wrap { position: relative; padding-top: 56.25%; background: #000; }
.vl-modal-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vl-modal-info {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.vl-modal-car-name {
  font-family: var(--font-flex); font-variation-settings: 'wght' 700;
  font-size: 18px; color: var(--cr-navy);
}
.vl-modal-car-sub { font-size: 12px; color: var(--cr-muted); margin-top: 3px; }
.vl-modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f4f7f9; border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--cr-slate); font-size: 18px;
  cursor: pointer; flex-shrink: 0; transition: all 0.2s; font-family: monospace;
}
.vl-modal-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

/* ── Responsive ── */
@media (max-width: 1100px) { .vl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .vl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .vl-grid { grid-template-columns: 1fr; } .cr-videos-inner { padding: 0 16px; } .vl-toolbar { flex-direction: column; align-items: flex-start; } }


/* ══════════════════════════════════════════════
   99+ QUALITY CHECKS — ACCORDION SLIDER
══════════════════════════════════════════════ */
.cr-checks { padding: 100px 0; background: var(--cr-light); }
.cr-checks-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.cr-checks-header { margin-bottom: 56px; }

.cr-checks-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* Left: accordion */
.checks-accordion { display: flex; flex-direction: column; gap: 10px; }
.ca-item {
  background: #fff; border-radius: var(--r-lg);
  border: 1.5px solid transparent;
  overflow: hidden; transition: all 0.3s; cursor: pointer;
}
.ca-item.active { border-color: var(--cr-teal); box-shadow: 0 8px 30px rgba(143,0,255,0.12); }

.ca-head {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
}
.ca-num {
  font-family: var(--font-flex); font-variation-settings: 'wght' 800;
  font-size: 22px; color: rgba(0,0,0,0.08);
  min-width: 32px; transition: color 0.3s;
}
.ca-item.active .ca-num { color: var(--cr-teal); }
.ca-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--cr-light); display: flex; align-items: center; justify-content: center;
  color: var(--cr-muted); font-size: 20px; flex-shrink: 0; transition: all 0.3s;
}
.ca-item.active .ca-icon { background: var(--cr-teal-pale); color: var(--cr-teal); }
.ca-title { font-size: 15px; font-weight: 600; color: var(--cr-navy); flex: 1; }
.ca-count { font-size: 11px; font-weight: 700; color: var(--cr-muted); background: var(--cr-light); padding: 3px 9px; border-radius: 30px; }
.ca-item.active .ca-count { background: var(--cr-teal-pale); color: var(--cr-teal); }
.ca-arrow { font-size: 18px; color: var(--cr-muted); transition: transform 0.3s; }
.ca-item.active .ca-arrow { transform: rotate(90deg); color: var(--cr-teal); }

.ca-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}
.ca-item.active .ca-body { max-height: 200px; padding: 0 20px 18px; }
.ca-body p { font-size: 13px; color: var(--cr-muted); line-height: 1.75; margin-bottom: 12px; }
.ca-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ca-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--cr-teal-pale); color: var(--cr-teal-deep);
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 30px;
}
.ca-tag .mi { font-size: 13px; }

/* Right: visual panel */
.checks-visual {
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.checks-panel {
  background: var(--cr-navy); border-radius: var(--r-xl);
  padding: 36px; overflow: hidden; position: relative;
  min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
}
.checks-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(143,0,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,0,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.panel-content { position: relative; z-index: 2; }
.panel-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(143,0,255,0.15); border: 1px solid rgba(143,0,255,0.25);
  color: #C77DFF; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 30px; margin-bottom: 18px;
}
.panel-title {
  font-family: var(--font-flex); font-variation-settings: 'wght' 700;
  font-size: 26px; color: #fff; margin-bottom: 8px; line-height: 1.2;
}
.panel-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }

.panel-checkgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.panel-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.panel-check .mi { font-size: 16px; color: #C77DFF; }

.panel-footer {
  position: relative; z-index: 2; margin-top: 28px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.panel-stat-num {
  font-family: var(--font-flex); font-variation-settings: 'wght' 800;
  font-size: 36px; color: var(--cr-teal);
}
.panel-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Progress bar */
.checks-progress { display: flex; gap: 6px; margin-top: 16px; position: relative; z-index: 2; }
.progress-bar {
  flex: 1; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.1); cursor: pointer; transition: all 0.2s;
}
.progress-bar.active { background: var(--cr-teal); }
.progress-bar:hover { background: rgba(143,0,255,0.5); }


/* ══════════════════════════════════════════════
   3 SIMPLE STEPS
══════════════════════════════════════════════ */
.cr-steps { padding: 100px 0; background: #fff; }
.cr-steps-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.cr-steps-header { text-align: center; margin-bottom: 72px; }
.cr-steps-header .section-sub { margin: 0 auto; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 48px; left: 16.67%; right: 16.67%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cr-teal), transparent);
  opacity: 0.3;
}

.step-card {
  background: var(--cr-light); border-radius: var(--r-xl);
  padding: 36px 28px; text-align: center;
  border: 1.5px solid transparent; transition: all 0.35s;
  position: relative; overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--cr-teal); transform: scaleX(0); transform-origin: center;
  transition: transform 0.35s;
}
.step-card:hover { border-color: var(--cr-border); background: #fff; box-shadow: var(--cr-shadow); transform: translateY(-6px); }
.step-card:hover::after { transform: scaleX(1); }

.step-num {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-flex); font-variation-settings: 'wght' 900;
  font-size: 56px; color: rgba(143,0,255,0.07); line-height: 1;
  pointer-events: none; transition: color 0.35s;
}
.step-card:hover .step-num { color: rgba(143,0,255,0.12); }

.step-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--cr-teal-pale);
  border: 2px solid rgba(143,0,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--cr-teal); font-size: 36px;
  transition: all 0.3s; position: relative; z-index: 1;
}
.step-card:hover .step-icon-wrap { background: var(--cr-teal); color: #fff; border-color: var(--cr-teal); box-shadow: 0 8px 28px rgba(143,0,255,0.35); }

.step-title { font-size: 18px; font-weight: 700; color: var(--cr-navy); margin-bottom: 10px; }
.step-desc { font-size: 14px; line-height: 1.7; color: var(--cr-muted); }


/* ══════════════════════════════════════════════
   CUSTOMER STORIES
══════════════════════════════════════════════ */
.cr-stories { padding: 100px 0; background: var(--cr-light); overflow: hidden; }
.cr-stories-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.cr-stories-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.stories-rating-badge {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--r-lg); padding: 14px 20px;
  box-shadow: var(--cr-shadow); border: 1px solid rgba(143,0,255,0.1);
  flex-shrink: 0;
}
.rating-stars { font-size: 18px; letter-spacing: 2px; }
.rating-score {
  font-family: var(--font-flex); font-variation-settings: 'wght' 800;
  font-size: 26px; color: var(--cr-navy);
}
.rating-label { font-size: 12px; color: var(--cr-muted); }

.stories-track-wrap { position: relative; }
.stories-track-wrap::before,
.stories-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.stories-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--cr-light), transparent); }
.stories-track-wrap::after { right: 0; background: linear-gradient(270deg, var(--cr-light), transparent); }

.stories-track {
  display: flex; gap: 20px;
  overflow-x: auto; padding: 8px 4px 24px;
  scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
}
.stories-track::-webkit-scrollbar { display: none; }

.story-card {
  flex: 0 0 320px; background: #fff; border-radius: var(--r-xl);
  padding: 28px; border: 1px solid rgba(0,0,0,0.05);
  scroll-snap-align: start; transition: all 0.3s;
  display: flex; flex-direction: column; gap: 16px;
}
.story-card:hover { transform: translateY(-5px); box-shadow: var(--cr-shadow); border-color: var(--cr-border); }

.story-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.story-quote-icon { font-size: 40px; color: var(--cr-teal); opacity: 0.25; line-height: 1; font-family: Georgia, serif; }
.story-stars { font-size: 14px; letter-spacing: 1px; }

.story-text {
  font-size: 14px; line-height: 1.75; color: var(--cr-slate);
  flex: 1;
}

.story-car {
  display: flex; align-items: center; gap: 8px;
  background: var(--cr-teal-pale); border-radius: var(--r-sm);
  padding: 8px 12px; font-size: 12px; color: var(--cr-teal-deep); font-weight: 500;
}
.story-car .mi { font-size: 16px; }

.story-author { display: flex; align-items: center; gap: 12px; }
.story-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-flex); font-variation-settings: 'wght' 800;
  font-size: 15px; color: #fff; flex-shrink: 0;
}
.story-name { font-size: 14px; font-weight: 600; color: var(--cr-navy); }
.story-meta { font-size: 12px; color: var(--cr-muted); margin-top: 1px; }

.stories-nav { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.story-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.15); transition: all 0.25s; cursor: pointer; border: none;
}
.story-dot.active { background: var(--cr-teal); width: 24px; border-radius: 4px; }


/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.cr-faq { padding: 100px 0; background: #fff; }
.cr-faq-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.cr-faq-header { text-align: center; margin-bottom: 52px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--cr-light); border-radius: var(--r-lg);
  border: 1.5px solid transparent; overflow: hidden; transition: all 0.3s;
}
.faq-item.open { background: #fff; border-color: var(--cr-teal); box-shadow: 0 6px 24px rgba(143,0,255,0.1); }

.faq-q {
  display: flex; align-items: center; gap: 14px; padding: 20px 22px;
  cursor: pointer; width: 100%; text-align: left; background: none; border: none;
  font-family: var(--font-body); transition: all 0.2s;
}
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--cr-navy); flex: 1; line-height: 1.4; }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(143,0,255,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--cr-teal); font-size: 18px; transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--cr-teal); color: #fff; transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 20px; }
.faq-a p { font-size: 14px; line-height: 1.8; color: var(--cr-muted); border-top: 1px solid rgba(143,0,255,0.08); padding-top: 14px; }


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.cr-footer {
  background: var(--cr-light);
  border-top: 1px solid rgba(43,26,51,0.06);
  padding: 64px 0 0;
}
.cr-footer-grid {
  max-width: 1200px; margin: 0 auto; 
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-flex); font-variation-settings: 'wght' 800;
  font-size: 20px; color: var(--cr-navy); margin-bottom: 16px; letter-spacing: -0.3px;
}
.footer-brand-logo .cr-logo-mark { width: 32px; height: 32px; }
.footer-brand-logo span { color: var(--cr-teal); }
.footer-tagline { font-size: 14px; color: var(--cr-muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 9px;
  background: #fff; border: 1px solid rgba(43,26,51,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cr-slate); font-size: 17px; transition: all 0.2s;
}
.footer-social:hover { background: var(--cr-teal); color: #fff; border-color: var(--cr-teal); }

.footer-col h4 {
  font-size: 12px; font-weight: 600; color: rgba(43,26,51,0.45);
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 14px; color: var(--cr-slate); transition: color 0.2s;
}
.footer-col li a:hover { color: var(--cr-teal); }

.footer-bottom {
  border-top: 1px solid rgba(43,26,51,0.08);
  padding: 20px 0px;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--cr-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--cr-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--cr-teal); }

/* ══ Login Modal ══ */
.cr-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,27,42,0.8); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.cr-modal-overlay.open { display: flex; }
.cr-modal {
  background: #fff; border-radius: var(--r-xl); padding: 0;
  width: 100%; max-width: 420px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 28px 28px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.modal-role-badge {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.modal-role-icon {
  width: 42px; height: 42px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.modal-role-name { font-size: 20px; font-weight: 700; color: var(--cr-navy); }
.modal-role-desc { font-size: 13px; color: var(--cr-muted); }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cr-light); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--cr-muted); flex-shrink: 0;
  transition: all 0.2s;
}
.modal-close:hover { background: #fee2e2; color: #dc2626; }

.modal-body { padding: 24px 28px 28px; }
.modal-field { margin-bottom: 16px; }
.modal-label { font-size: 11px; font-weight: 600; color: var(--cr-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; display: block; }
.modal-input {
  width: 100%; padding: 12px 14px; border-radius: var(--r);
  border: 1.5px solid rgba(0,0,0,0.12); font-size: 14px; font-family: var(--font-body);
  color: var(--cr-navy); outline: none; transition: all 0.22s; background: #fff;
}
.modal-input:focus { border-color: var(--cr-teal); box-shadow: 0 0 0 3px rgba(143,0,255,0.1); }
.modal-input::placeholder { color: rgba(0,0,0,0.3); }
.modal-forgot { text-align: right; margin-top: -8px; margin-bottom: 20px; }
.modal-forgot a { font-size: 12px; color: var(--cr-teal); }
.modal-cta {
  width: 100%; padding: 14px; border-radius: var(--r);
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  color: #fff; border: none; cursor: pointer; transition: all 0.25s;
}
.modal-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.modal-switch { text-align: center; margin-top: 16px; font-size: 13px; color: var(--cr-muted); }
.modal-switch span { color: var(--cr-teal); font-weight: 500; cursor: pointer; }


/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-widget { max-width: 100%; }
  .cr-checks-layout { grid-template-columns: 1fr; }
  .checks-visual { position: static; }
  .cr-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .steps-grid::before { display: none; }
  .reveal-cards { grid-template-columns: repeat(2, 1fr); }
  .widget-selects { grid-template-columns: 1fr; }
  .widget-select-full { grid-column: 1; }
}
@media (max-width: 768px) {
  .container, .cr-steps-inner, .cr-checks-inner, .cr-stories-inner, .cr-faq-inner, .cr-reveal-section .container { padding: 0 20px; }
  .hero-inner { padding: 60px 20px; }
  .cr-nav-links, .cr-nav-right .btn-primary { display: none; }
  @media (max-width: 768px) {

  .cr-nav-inner{
    display: flex;
    align-items: center;
    width: 100%;
  }

  /* Logo stays on the left */
  .logo{
    flex-shrink: 0;
  }

  /* Hide desktop links */
  .cr-nav-links{
    display: none;
  }

  /* Push the right-side icons to the end */
  .cr-nav-right{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Show only the login icon */
  .cr-login-btn span:not(.mi){
    display: none;
  }

  /* Hamburger at the extreme right */
  .hamburger{
    display: flex;
    margin-left: 10px;
    flex-shrink: 0;
  }

  /* Hide Book Inspection button */
  .cr-nav-right .btn-primary{
    display: none;
  }
}
  .cr-footer-grid { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .footer-bottom { padding: 20px; flex-direction: column; text-align: center; }
  .reveal-cards { grid-template-columns: 1fr; }
  .reveal-side { flex-direction: column; }
  .reveal-slider-wrap { aspect-ratio: auto; height: auto; }
  .cr-stories-header { flex-direction: column; }
  .cr-login-btn span:not(.mi) { display: none; }
}
@media (max-width: 600px) {
  .hero-title-sell br, .hero-title br { display: none; }
}
@media (max-width: 480px) {
  .hero-stats, .hero-stats-sell { flex-wrap: wrap; gap: 20px; }
  .hero-ctas { flex-direction: column; }
}

/* ══════════════════════════════════════
   BOOK INSPECTION WIZARD — ENHANCED v2
   (OTP + Payment + Updated flow)
══════════════════════════════════════ */

/* Wrapper card */
.wizard-wrap {
  background: rgba(8, 20, 34, 0.72);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(143,0,255,0.22);
  border-radius: var(--r-xl);
  padding: 28px 26px 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(143,0,255,0.06);
  position: relative;
  overflow: hidden;
}
.wizard-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,0,255,0.5), transparent);
}

/* ── Header ── */
.wiz-header {
  margin-bottom: 20px;
}
.wiz-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.wiz-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-flex);
  font-variation-settings: 'wght' 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.2px;
}
.wiz-brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cr-teal);
  box-shadow: 0 0 8px rgba(143,0,255,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
.wiz-step-pill {
  background: rgba(143,0,255,0.15);
  border: 1px solid rgba(143,0,255,0.25);
  color: #C77DFF;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Progress bars */
.wiz-progress {
  display: flex;
  gap: 5px;
}
.wiz-prog-step {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  transition: background 0.4s ease;
}
.wiz-prog-step.active {
  background: var(--cr-teal);
  box-shadow: 0 0 6px rgba(143,0,255,0.5);
}
.wiz-prog-step.done {
  background: rgba(143,0,255,0.5);
}

/* Fade animation */
@keyframes wizFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: wizFadeUp 0.3s ease forwards; }

/* ── Question card ── */
.question-card {
  margin-bottom: 18px;
}
.q-eyebrow {
  font-size: 10px; font-weight: 600;
  color: var(--cr-teal);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.q-title {
  font-family: var(--font-flex);
  font-variation-settings: 'wght' 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.q-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ── Options grid (4 cards) ── */
.opts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.opt-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  text-align: left;
  transition: all 0.22s;
  width: 100%;
  font-family: var(--font-body);
}
.opt-btn:hover {
  border-color: rgba(143,0,255,0.5);
  background: rgba(143,0,255,0.08);
}
.opt-btn.selected {
  background: rgba(143,0,255,0.18);
  border-color: var(--cr-teal);
  box-shadow: 0 0 0 1px rgba(143,0,255,0.3);
}
.opt-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
}
.opt-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}
.opt-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

/* ── Chips (make / model / year / city) ── */
.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(143,0,255,0.3) transparent;
}
.chips-wrap::-webkit-scrollbar { width: 4px; }
.chips-wrap::-webkit-scrollbar-thumb { background: rgba(143,0,255,0.3); border-radius: 4px; }

.chip {
  padding: 7px 14px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.chip:hover {
  border-color: rgba(143,0,255,0.5);
  color: #fff;
  background: rgba(143,0,255,0.1);
}
.chip.selected {
  background: var(--cr-teal);
  border-color: var(--cr-teal);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(143,0,255,0.4);
}

/* ── Datetime input ── */
.wiz-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.22s;
  color-scheme: light;
}
.wiz-input:focus {
  border-color: rgba(143,0,255,0.6);
  box-shadow: 0 0 0 3px rgba(143,0,255,0.12);
  background: rgba(143,0,255,0.07);
}
.wiz-input::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }

/* ── Summary card ── */
.summary-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  overflow: hidden;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.summary-row:last-child { border-bottom: none; }
.summary-key {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.summary-val {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary-edit {
  font-size: 10px;
  color: var(--cr-teal);
  cursor: pointer;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(143,0,255,0.12);
  transition: all 0.15s;
}
.summary-edit:hover { background: rgba(143,0,255,0.25); }

/* ── Action buttons row ── */
.wiz-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}

.btn-next {
  flex: 1;
  padding: 13px 20px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--cr-teal), var(--cr-teal-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(143,0,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(143,0,255,0.5);
}
.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-back {
  padding: 13px 16px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-back:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

/* ── Success state ── */
.success-state {
  text-align: center;
  padding: 16px 8px 8px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cr-teal), var(--cr-teal-deep));
  color: #fff;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 12px rgba(143,0,255,0.12), 0 8px 28px rgba(143,0,255,0.45);
  animation: successPop 0.5s cubic-bezier(0.16,1,0.3,1);
}
@keyframes successPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--font-flex);
  font-variation-settings: 'wght' 750;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}
.success-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 18px;
}
.success-ref {
  display: inline-block;
  background: rgba(143,0,255,0.15);
  border: 1px solid rgba(143,0,255,0.3);
  color: #C77DFF;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.success-details {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 14px 16px;
  margin: 16px 0;
  text-align: left;
}
.success-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.success-details-row:last-child { border-bottom: none; }
.success-details-row span:first-child { color: rgba(255,255,255,0.4); }
.success-details-row span:last-child { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ── Phone / OTP step ── */
.phone-input-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 12px;
}
.phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}
.wiz-text-input {
  flex: 1;
  padding: 13px 14px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.22s;
  letter-spacing: 0.5px;
}
.wiz-text-input:focus {
  border-color: rgba(143,0,255,0.6);
  box-shadow: 0 0 0 3px rgba(143,0,255,0.12);
  background: rgba(143,0,255,0.06);
}
.wiz-text-input::placeholder { color: rgba(255,255,255,0.28); }
.wiz-text-input.error { border-color: rgba(239,68,68,0.7); }

.otp-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 6px 0 14px;
}
.otp-box {
  width: 46px; height: 54px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-flex);
  text-align: center;
  outline: none;
  transition: all 0.2s;
  caret-color: var(--cr-teal);
}
.otp-box:focus {
  border-color: var(--cr-teal);
  box-shadow: 0 0 0 3px rgba(143,0,255,0.18);
  background: rgba(143,0,255,0.08);
}
.otp-box.filled { border-color: rgba(143,0,255,0.5); background: rgba(143,0,255,0.1); }

.otp-resend {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.otp-resend span {
  color: var(--cr-teal);
  cursor: pointer;
  font-weight: 500;
  text-decoration: underline;
}
.otp-timer {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.wiz-info-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(143,0,255,0.08);
  border: 1px solid rgba(143,0,255,0.2);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: 10px;
}
.wiz-info-note .mi { font-size: 15px; color: var(--cr-teal); flex-shrink: 0; margin-top: 1px; }

/* ── Payment step ── */
.pricing-card {
  background: linear-gradient(135deg, rgba(143,0,255,0.12), rgba(110,0,196,0.08));
  border: 1px solid rgba(143,0,255,0.3);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(143,0,255,0.15), transparent 70%);
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(143,0,255,0.2);
  border: 1px solid rgba(143,0,255,0.35);
  color: #C77DFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.pricing-currency {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}
.pricing-value {
  font-family: var(--font-flex);
  font-variation-settings: 'wght' 800;
  font-size: 42px;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.pricing-original {
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-weight: 400;
}
.pricing-saving {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 4px;
}
.pricing-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.pricing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.pricing-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
}
.pricing-item .mi { font-size: 14px; color: #C77DFF; }

.payment-methods {
  margin-bottom: 14px;
}
.payment-methods-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.pay-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  width: 100%;
  text-align: left;
}
.pay-btn:hover { border-color: rgba(143,0,255,0.4); background: rgba(143,0,255,0.07); }
.pay-btn.selected { border-color: var(--cr-teal); background: rgba(143,0,255,0.14); box-shadow: 0 0 0 1px rgba(143,0,255,0.25); }
.pay-btn-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pay-btn-name { font-size: 13px; font-weight: 600; color: #fff; }
.pay-btn-sub  { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.pay-btn .pay-radio {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.pay-btn.selected .pay-radio {
  border-color: var(--cr-teal);
  background: var(--cr-teal);
}
.pay-btn.selected .pay-radio::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}
.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}
.secure-note .mi { font-size: 13px; color: rgba(143,0,255,0.6); }

/* ── Step label section divider ── */
.step-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Address capture (city step) ── */
.addr-divider {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding: 10px 0 14px;
  border-top: 1px solid rgba(143,0,255,0.15);
  margin-top: 2px;
}
.addr-field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.addr-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.addr-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.addr-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.addr-req  { color: rgba(252,165,165,0.8); }
.addr-optional { color: rgba(255,255,255,0.22); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 9px; }

.addr-input {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s;
}
.addr-input:focus {
  border-color: rgba(143,0,255,0.55);
  box-shadow: 0 0 0 3px rgba(143,0,255,0.1);
  background: rgba(143,0,255,0.06);
}
.addr-input::placeholder { color: rgba(255,255,255,0.2); }
.addr-input.valid { border-color: rgba(143,0,255,0.4); }

.addr-full-preview {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(143,0,255,0.08);
  border: 1px solid rgba(143,0,255,0.2);
  border-radius: var(--r-sm);
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
/* ════════════════════════════════════════
   STEP TRANSITIONS
════════════════════════════════════════ */
.wiz-animate-out {
  animation: wizOut 220ms ease forwards;
}

.wiz-animate-in {
  animation: wizIn 260ms ease forwards;
}

@keyframes wizOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px) scale(0.98);
    filter: blur(4px);
  }
}

@keyframes wizIn {
  0% {
    opacity: 0;
    transform: translateX(20px) scale(0.98);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}
.btn-next {
  transition: all 0.2s ease;
}

.btn-next:active {
  transform: scale(0.96);
}

.opt-btn, .chip {
  transition: all 0.2s ease;
}

.opt-btn:active, .chip:active {
  transform: scale(0.96);
}