/* ===============================================================
   Diamond Auto Detailing — Unick-style with purple accent
   =============================================================== */

:root {
  --bg: #000000;
  /* --bg-2 unified to pure black so What We Do, FAQ, Footer, etc. match the header.
     To switch back to the slightly warmer black, change to: #0c0c0e
     (kept below as --bg-2-soft for easy comparison) */
  --bg-2: #000000;
  --bg-2-soft: #0c0c0e;     /* alt value — swap into --bg-2 if you want softer */

  --surface: #15151a;
  --surface-2: #1c1c22;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.18);

  --text: #ffffff;
  --muted: #a0a0a8;
  --soft: #d8d8dc;

  --purple: #9929d5;
  --purple-2: #b148e8;
  --purple-deep: #6e1ba0;
  --purple-glow: rgba(153, 41, 213, .35);

  --max: 1280px;
  --r-pill: 999px;
  --r-card: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   PRIMITIVES
   ============================================================ */

.section-title {
  font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--text);
}

.kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  border: 1.5px solid transparent;
  border-radius: 4px;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--purple);
  color: var(--text);
  border-color: var(--purple);
  box-shadow: 0 8px 24px var(--purple-glow);
}
.btn--primary:hover { background: var(--purple-2); border-color: var(--purple-2); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--bg); }

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}
.nav__brand-img {
  height: 50px;
  width: auto;
  display: block;
  mix-blend-mode: screen;     /* black background → transparent on dark page */
  filter: drop-shadow(0 0 14px rgba(153, 41, 213, .2));
  transition: filter .3s, transform .15s;
}
.nav__brand:hover .nav__brand-img {
  filter: drop-shadow(0 0 22px rgba(153, 41, 213, .45));
  transform: translateY(-1px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.nav__links a span { font-size: 9px; color: var(--muted); }
.nav__links a:hover, .nav__links a.active { color: var(--purple); }

/* Header buttons (phone circle + quote pill) */
.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: transparent;
  transition: background .2s, border-color .2s, transform .15s, color .2s;
  flex-shrink: 0;
}
.nav__phone:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--purple-glow);
}
.nav__quote {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 22px;
  background: var(--purple);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 8px 26px var(--purple-glow);
  transition: background .2s, transform .15s, box-shadow .25s;
}
.nav__quote:hover {
  background: var(--purple-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--purple-glow);
}
.nav__quote-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(0,0,0,.18);
  border-radius: 50%;
  transition: transform .25s, background .25s;
}
.nav__quote:hover .nav__quote-arrow {
  transform: translateX(3px);
  background: rgba(0,0,0,.3);
}

.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); }

/* ============================================================
   HERO (asymmetric, left-aligned)
   ============================================================ */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 100px 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55) saturate(1.1);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    /* top + bottom fade-to-black so the hero blends seamlessly with header & next section */
    linear-gradient(180deg,
      #000 0%,
      rgba(0,0,0,.0) 6%,
      rgba(0,0,0,.0) 92%,
      #000 100%),
    /* darker on the left so the text reads cleanly */
    linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.15) 100%),
    /* purple glow around the car (right-center) */
    radial-gradient(ellipse at 72% 55%, rgba(153,41,213,.32), transparent 55%);
}
.hero__badge {
  position: absolute;
  top: 30px; right: 32px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple-2);
  background: rgba(0,0,0,.4);
  border: 1px solid var(--purple);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 460px;
  gap: 50px;
  align-items: center;
}
.hero__content {
  max-width: 720px;
  text-align: left;
}
.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text);
}
.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--purple-2);
  text-shadow: 0 0 30px var(--purple-glow);
}
.hero__lead {
  color: var(--soft);
  font-size: 16px;
  max-width: 540px;
  margin: 0 0 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 10px 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, color .2s;
}
.hero__play:hover { border-color: var(--purple); color: var(--purple-2); }
.hero__play-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text);
  padding-left: 2px;
  box-shadow: 0 0 18px var(--purple-glow);
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.hero-stat {
  padding: 0 26px 0 0;
  text-align: left;
  border: none;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat__sep {
  color: var(--purple);
  font-size: 14px;
  margin: 0 22px 0 0;
  opacity: .6;
}
.hero-stat__num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
}
.hero-stat__label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   POPULAR SERVICES (5 vertical cards)
   ============================================================ */

.popular {
  padding: 100px 0 0;
  background: var(--bg);
}
.popular__head {
  text-align: left;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.popular__head > div:first-child { flex: 1; min-width: 280px; }
.popular__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  padding: 0 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.pop-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}
.pop-card--lg {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.pop-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s, filter .3s;
  filter: brightness(.7);
}
.pop-card:hover img { transform: scale(1.06); filter: brightness(.9); }
.pop-card__badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  background: var(--purple);
  color: var(--text);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px var(--purple-glow);
}
.pop-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.95));
  color: var(--text);
}
.pop-card--lg .pop-card__body { padding: 36px 32px; }
.pop-card__body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.pop-card--lg .pop-card__body h3 { font-size: 2.2rem; }
.pop-card__body p {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.55;
}
.pop-card--lg .pop-card__body p { font-size: 15px; max-width: 480px; margin-bottom: 16px; }
.pop-card__cta {
  display: inline-block;
  margin-top: 14px;
  color: var(--purple-2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--purple);
  padding-bottom: 4px;
}
.pop-card__cta:hover { color: var(--text); border-color: var(--text); }

/* ============================================================
   ADDITIONAL SERVICES (horizontal banners)
   ============================================================ */

.additional {
  padding: 100px 0;
  background: var(--bg);
}
.additional__title {
  margin-bottom: 50px;
}
.strip {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 22px;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.strip img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55);
  transition: transform .6s;
}
.strip:hover img { transform: scale(1.04); }
.strip__body {
  position: relative;
  z-index: 2;
  padding: 40px 50px;
  color: var(--text);
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strip__body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.strip__price {
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 600;
}
.strip__list {
  list-style: none;
  margin-top: 8px;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text);
}
.strip__list li { margin-bottom: 4px; }

/* ============================================================
   ABOUT + VIDEO
   ============================================================ */

.about {
  padding: 100px 0;
  background: var(--bg-2);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about__media:hover img { transform: scale(1.03); }

.about__copy .section-title { margin-bottom: 14px; }
.about__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.about__copy p {
  color: var(--soft);
  margin-bottom: 16px;
  font-size: 14.5px;
}
.about__actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why {
  padding: 100px 0;
  background: var(--bg);
}
.why__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.why__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  position: relative;
  background: var(--surface);
  border-radius: 10px;
  padding: 36px 28px;
  transition: transform .3s, background .3s;
  overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); background: var(--surface-2); }
.why-card__bgnum {
  position: absolute;
  top: -28px; right: -8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9rem;
  line-height: 1;
  color: var(--text);
  opacity: .04;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.why-card:hover .why-card__bgnum { color: var(--purple); opacity: .12; }
.why-card > * { position: relative; z-index: 1; }
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: var(--purple);
  color: var(--text);
  border-radius: 8px;
  font-size: 28px;
  margin-bottom: 26px;
  box-shadow: 0 8px 20px var(--purple-glow);
}
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 14px;
  color: var(--text);
}
.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 100px 0;
  background: var(--bg);
}
.faq__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.faq__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: color .2s;
}
.faq__item summary:hover { color: var(--purple-2); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text);
  font-size: 22px;
  transition: transform .3s, color .3s;
}
.faq__item[open] summary i { transform: rotate(45deg); color: var(--purple); }
.faq__item p {
  padding: 0 4px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   ALT SECTIONS (image + text)
   ============================================================ */

.alt-section {
  padding: 90px 0;
  background: var(--bg);
}
.alt-section + .alt-section { border-top: 1px solid var(--border); }
.alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.alt-grid--reverse > :first-child { order: 0; }
.alt-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.alt-copy .section-title { margin-bottom: 22px; }
.alt-copy p {
  color: var(--soft);
  font-size: 14.5px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.alt-copy strong { color: var(--text); }
.alt-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 24px 0 14px;
  letter-spacing: .02em;
}
.alt-bullets {
  list-style: none;
  margin: 14px 0 24px;
}
.alt-bullets li {
  color: var(--soft);
  font-size: 14.5px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.alt-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ============================================================
   BEFORE/AFTER SLIDER (PC-style, clip-path based)
   ============================================================ */

.ba {
  --pos: 50%;
  --divider-opacity: 1;       /* JS sets to 0 at extremes */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.ba__base {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba__before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  pointer-events: none;
}
.ba__before img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* After-mask: mirror of before — clips so the "After" label rides with the slider */
.ba__after-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--pos));
  pointer-events: none;
}
.ba__label {
  position: absolute;
  top: 14px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}
.ba__label--before {
  left: 14px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  color: #fff;
}
.ba__label--after {
  right: 14px;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px var(--purple-glow);
}
.ba__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255,255,255,.6);
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 4;
  opacity: var(--divider-opacity);
  transition: opacity .15s ease;
}
.ba__handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 78px;
  height: 40px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: ew-resize;
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
  z-index: 5;
  transition: transform .15s, background .15s;
}
.ba__handle:hover {
  background: var(--purple);
  box-shadow: 0 10px 28px var(--purple-glow);
}
.ba__handle:hover { transform: translate(-50%, -50%) scale(1.05); }

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */

.reviews {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg);
}
.reviews__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.25);
  z-index: 0;
}
.reviews__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.reviews__title { margin-bottom: 50px; }

/* Featured testimonial (above the carousel) */
.rev-featured {
  position: relative;
  max-width: 880px;
  margin: 0 auto 60px;
  padding: 50px 60px;
  background: linear-gradient(160deg, rgba(153,41,213,.18) 0%, rgba(0,0,0,.6) 100%);
  border: 1px solid var(--purple);
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px var(--purple-glow);
}
.rev-featured__mark {
  position: absolute;
  top: 12px; left: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 9rem;
  line-height: 1;
  color: var(--purple);
  opacity: .35;
  pointer-events: none;
}
.rev-featured blockquote {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 30px;
}
.rev-featured blockquote em {
  font-style: italic;
  color: var(--purple-2);
  font-weight: 600;
}
.rev-featured figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rev-featured figcaption img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple);
}
.rev-featured figcaption div { flex: 1; }
.rev-featured figcaption strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.rev-featured figcaption span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}
.rev-featured__stars {
  color: #fbbc05;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews__carousel {
  position: relative;
  margin-bottom: 40px;
}
.reviews__viewport {
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 22px;
  transition: transform .5s ease;
}
.rev-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  flex: 0 0 calc(25% - 17px);
  min-height: 180px;
}
.rev-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rev-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
  object-fit: cover;
  flex-shrink: 0;
}
.rev-card header > div { flex: 1; min-width: 0; }
.rev-card header strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rev-card header small { color: var(--muted); font-size: 11px; }
.rev-card__logo {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-card__stars {
  color: #fbbc05;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.rev-card p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.55;
}
.rev-card__more { color: var(--purple); font-size: 12px; display: inline-block; margin-top: 6px; }

.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--text);
  border: 0;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 18px var(--purple-glow);
  z-index: 4;
  transition: background .2s, transform .2s;
}
.rev-arrow:hover { background: var(--purple-2); transform: translateY(-50%) scale(1.08); }
.rev-arrow--prev { left: -22px; }
.rev-arrow--next { right: -22px; }

.reviews__cta { margin-top: 30px; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
}
.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner__content .section-title { margin-bottom: 30px; }
.cta-banner__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */

.quote {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.quote__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.3);
}
.quote__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quote__copy .section-title { margin-bottom: 20px; }
.quote__copy p {
  color: var(--soft);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.quote__copy strong { color: var(--text); }
.quote__copy .btn { margin-top: 18px; }

.quote__form {
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.qrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.qfield { display: flex; flex-direction: column; gap: 8px; }
.qfield label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.qfield input, .qfield select, .qfield textarea {
  background: transparent;
  border: 1px solid var(--purple);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.qfield input::placeholder, .qfield textarea::placeholder { color: var(--muted); }
.qfield input:focus, .qfield select:focus, .qfield textarea:focus {
  outline: none;
  border-color: var(--purple-2);
  background: rgba(153,41,213,.05);
}
.qfield select { color: var(--soft); }
.qfield select option { background: var(--bg); color: var(--text); }
.qfield textarea { resize: vertical; min-height: 80px; }

.quote__submit {
  padding: 18px;
  background: var(--purple);
  border: 0;
  border-radius: 4px;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 8px 22px var(--purple-glow);
  transition: background .2s, transform .15s;
}
.quote__submit:hover { background: var(--purple-2); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  position: relative;
  background: var(--bg-2);
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.footer__watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(7rem, 22vw, 18rem);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(153, 41, 213, .35);
  letter-spacing: .02em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.footer__grid, .footer__base { position: relative; z-index: 1; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand .nav__brand-name { font-size: 26px; }
.footer__brand .nav__brand-sub { font-size: 11px; }
.footer__col h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: var(--soft);
  margin-bottom: 12px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--purple); }
.footer__base {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   HERO FORM (PC Detailing style)
   ============================================================ */

.hero__form-wrap {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.hero-form__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--purple-2);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.hero-form {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--purple);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 0 28px -4px rgba(153,41,213,.6);
}
.hf-input {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  color: var(--purple);
  font-family: inherit;
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 16px;
  outline: none;
  transition: box-shadow .2s;
}
.hf-input::placeholder { color: var(--purple); opacity: .85; }
.hf-input:focus { box-shadow: 0 0 0 2px var(--purple-2); }

.hf-honeypot {
  position: absolute;
  left: -9999px;
  width: 0; height: 0;
  opacity: 0;
}

.hf-label {
  display: block;
}
.hf-label > span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  margin-bottom: 6px;
  font-weight: 500;
}

.hf-phone {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding-left: 12px;
  gap: 8px;
  transition: box-shadow .2s;
}
.hf-phone:focus-within { box-shadow: 0 0 0 2px var(--purple-2); }
.hf-phone__flag { font-size: 18px; line-height: 1; }
.hf-phone__code {
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
}
.hf-phone__input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 8px;
  font-family: inherit;
  color: var(--purple);
  font-size: 14.5px;
  font-weight: 500;
  outline: none;
}
.hf-phone__input::placeholder { color: rgba(153,41,213,.5); }

.hf-select {
  position: relative;
}
.hf-select select {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  color: var(--purple);
  font-family: inherit;
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 40px 12px 16px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: box-shadow .2s;
}
.hf-select select:focus { box-shadow: 0 0 0 2px var(--purple-2); }
.hf-chev {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  pointer-events: none;
}

.hf-error {
  color: #ff7878;
  font-size: 13px;
  margin: 4px 0 0;
}

.hf-submit {
  margin-top: 6px;
  border-radius: 16px;
  border: 1.5px solid var(--purple-2);
  background: transparent;
  color: var(--purple-2);
  font-family: inherit;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .04em;
  padding: 14px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}
.hf-submit:hover:not(:disabled) {
  background: rgba(177,72,232,.12);
  transform: translateY(-2px);
}
.hf-submit:disabled { opacity: .6; cursor: not-allowed; }

.hf-done {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--purple);
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 0 28px -4px rgba(153,41,213,.6);
}
.hf-done__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--purple-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hf-done p { color: rgba(255,255,255,.85); font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero__layout { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-wrap { justify-self: stretch; max-width: 100%; }
  .popular__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .pop-card--lg { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .rev-card { flex: 0 0 calc(33.33% - 15px); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 22px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }

  .hero { min-height: auto; padding: 80px 0; }
  .hero__badge { position: static; display: inline-block; margin-bottom: 18px; }
  .hero__stats { flex-wrap: wrap; gap: 10px; }
  .hero-stat__sep { display: none; }
  .hero-stat { padding: 10px 20px 10px 0; border-right: 1px solid var(--border); }
  .hero-stat:last-child { border-right: 0; }
  .rev-featured { padding: 36px 28px; }
  .rev-featured__mark { font-size: 6rem; }

  .popular__grid { grid-template-columns: 1fr 1fr; }
  .pop-card--lg { grid-column: span 2; aspect-ratio: 16/10; }
  .strip__list { position: static; transform: none; margin-top: 12px; }
  .about__grid { grid-template-columns: 1fr; }
  .why__head, .faq__head { flex-direction: column; align-items: flex-start; }
  .why__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 0; }
  .alt-grid { grid-template-columns: 1fr; gap: 30px; }
  .alt-grid--reverse > :first-child { order: 1; }
  .alt-grid--reverse > :last-child { order: 0; }
  .rev-card { flex: 0 0 calc(50% - 11px); }
  .quote__grid { grid-template-columns: 1fr; }
  .qrow { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .popular__grid { grid-template-columns: 1fr; }
  .rev-card { flex: 0 0 100%; }
  .rev-arrow--prev { left: 6px; }
  .rev-arrow--next { right: 6px; }
  .footer__grid { grid-template-columns: 1fr; }
  .strip__body { padding: 24px 20px; }
}
