/* ================================================================
   CarMax İvedik — style.css
   Premium dark automotive aesthetic
   Palette: #080808 / #0f0f0f / #151515 · #C8102E · #ffffff
   ================================================================ */

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

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --red:        #C8102E;
  --red-dim:    rgba(200, 16, 46, 0.12);
  --red-mid:    rgba(200, 16, 46, 0.35);
  --bg-0:       #080808;
  --bg-1:       #0f0f0f;
  --bg-2:       #151515;
  --bg-3:       #1a1a1a;
  --bg-4:       #222222;
  --line:       rgba(255, 255, 255, 0.07);
  --line-light: rgba(255, 255, 255, 0.12);
  --white:      #ffffff;
  --off-white:  rgba(255, 255, 255, 0.85);
  --muted:      rgba(255, 255, 255, 0.45);
  --subtle:     rgba(255, 255, 255, 0.20);
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t:          0.28s;
  --radius:     6px;
  --max-w:      1200px;
}

/* ── Base ────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

::selection {
  background: var(--red);
  color: var(--white);
}

/* ── Layout ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography helpers ──────────────────────────────────────────── */
.accent { color: var(--red); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--red);
}
.section-label--white {
  color: var(--subtle);
}
.section-label--white::before {
  background: var(--subtle);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0;
}
.section-title--light { color: var(--white); }

.section-header {
  margin-bottom: 72px;
}
.section-header .section-title {
  margin-top: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease),
              transform var(--t) var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform var(--t) var(--ease);
}
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: #a60c25;
  border-color: #a60c25;
  transform: translateY(-2px);
}

.btn--line {
  background: transparent;
  color: var(--white);
  border-color: var(--line-light);
}
.btn--line:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ── Reveal animation base ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   GOOGLE REVIEWS BAR
   ================================================================ */
.reviews-bar {
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  padding: 0;
  position: relative;
  z-index: 150;
}
.reviews-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.reviews-bar__inner::-webkit-scrollbar { display: none; }

.reviews-bar__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.reviews-bar__google {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.reviews-bar__score {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
}
.reviews-bar__stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.reviews-bar__count {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.reviews-bar__items {
  display: flex;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.review-chip {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.review-chip:last-child { border-right: none; }
.review-chip__stars {
  color: #FBBC05;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.review-chip p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-chip span {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
  display: block;
}

.reviews-bar__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  transition: color var(--t) var(--ease);
}
.reviews-bar__cta svg { width: 13px; height: 13px; }
.reviews-bar__cta:hover { color: var(--white); }

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed;
  top: 40px; /* sits below reviews bar height */
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  top: 0; /* slides up to cover reviews bar on scroll */
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
  text-decoration: none;
}
.logo__svg {
  width: 72px;
  height: auto;
  display: block;
}
.logo__svg--sm { width: 56px; }
.logo__city {
  font-family: var(--font-head);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 9px 16px;
  position: relative;
  transition: color var(--t) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav__link:hover {
  color: var(--white);
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link--cta {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: #a60c25;
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-0);
}

/* ── YouTube video background ── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 16:9 ratio fills viewport */
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100vh, calc(100% * 9 / 16));
  min-width: 100%;
  min-height: 56.25vw;
  border: none;
  pointer-events: none;
}

/* Dark overlay so text stays readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 116px; /* reviews bar ~40px + header ~76px */
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Hero content — centered/left, full width (no car SVG column) */
.hero__content {
  max-width: 680px;
  padding: 60px 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow__line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title--accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}
/* Underline accent for the accent word */
.hero__title--accent::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  opacity: 0.4;
}

.hero__sub {
  font-size: 1.0rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 44px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right: car SVG */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px 40px;
}

.car-silhouette {
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 8px 48px rgba(200, 16, 46, 0.10));
}

.hero__glow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero__scroll-hint span {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
  padding: 130px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services__divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
  transition: background var(--t) var(--ease);
}
.service-item:hover {
  /* very subtle hover — no box shadows */
}

.service-item__icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtle);
  position: relative;
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease);
  flex-shrink: 0;
}
.service-item__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dim);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.service-item:hover .service-item__icon {
  border-color: var(--red-mid);
  color: var(--off-white);
}
.service-item:hover .service-item__icon::before {
  opacity: 1;
}
.service-item__icon svg {
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1;
}

.service-item__body {
  padding-top: 4px;
}

.service-item__num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 14px;
}

.service-item__title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.service-item__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 28px;
}

.service-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color var(--t) var(--ease), gap var(--t) var(--ease);
}
.service-item__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t) var(--ease);
}
.service-item__link:hover {
  color: var(--red);
}
.service-item__link:hover svg {
  transform: translateX(4px);
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 20px;
  text-align: center;
  gap: 6px;
}

.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.stat__suffix {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.stat__sep {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

/* ================================================================
   BRANDS
   ================================================================ */
.brands {
  padding: 100px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--line);
}
.brands__header {
  text-align: center;
  margin-bottom: 60px;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px 32px;
  border: 1px solid var(--line);
  background: var(--bg-4);
  color: rgba(255,255,255,0.35);
  transition: color var(--t) var(--ease),
              background var(--t) var(--ease),
              border-color var(--t) var(--ease);
  position: relative;
  cursor: default;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.brand-card:hover {
  color: var(--white);
  background: var(--bg-3);
  border-color: var(--line-light);
}
.brand-card:hover::before {
  transform: scaleX(1);
}
.brand-card svg {
  display: block;
  width: 100%;
  max-width: 100px;
  height: 44px;
}
.brand-card__label {
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: 140px 0;
  background: var(--bg-0);
  border-top: 1px solid var(--line);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Left: text */
.about__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.7;
  margin-top: 28px;
  margin-bottom: 18px;
}
.about__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about__checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}
.about__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--off-white);
}
.about__checklist li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Right: CSS geo art */
.about__visual {
  /* Defer stagger on this reveal element */
  transition-delay: 0.15s;
}

.about__geo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  overflow: hidden;
}

/* Two panels split diagonally */
.geo__panel {
  position: absolute;
  inset: 0;
}
.geo__panel--dark {
  background: var(--bg-2);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border: 1px solid var(--line);
}
/* The red slash */
.geo__panel--red {
  background: var(--red);
  clip-path: polygon(0 0, 18% 0, 0 18%);
  opacity: 0.95;
}

/* Decorative horizontal lines */
.geo__lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.geo__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.geo__line--1 { top: 25%; }
.geo__line--2 { top: 50%; background: rgba(255,255,255,0.05); }
.geo__line--3 { top: 75%; }

/* Vertical lines too */
.geo__lines::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33.33%;
  width: 1px;
  background: var(--line);
}
.geo__lines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66.66%;
  width: 1px;
  background: var(--line);
}

/* Large number badge centered in the panel */
.geo__badge {
  position: absolute;
  bottom: 10%;
  right: 10%;
  text-align: right;
}
.geo__badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.geo__badge-num span {
  color: var(--red);
}
.geo__badge-text {
  display: block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Bottom-left red accent corner bar */
.geo__corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 4px;
  background: var(--red);
}

/* Large ghosted text in background */
.about__geo::before {
  content: 'PPF';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--white);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  padding: 130px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.faq__sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 36px;
}

.faq__phone {
  font-size: 0.72rem;
}

/* FAQ accordion */
.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 0;
  text-align: left;
  color: var(--off-white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--t) var(--ease);
}
.faq-item__q span { flex: 1; }
.faq-item__q:hover { color: var(--white); }
.faq-item.open .faq-item__q { color: var(--white); }

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--t) var(--ease), color var(--t) var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--red);
}

/* Left accent border on open item */
.faq-item.open {
  border-left: 2px solid var(--red);
  padding-left: 20px;
  margin-left: -22px; /* pull left to align text */
}
.faq-item.open .faq-item__q { padding-top: 26px; }

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s var(--ease);
}
.faq-item.open .faq-item__a {
  max-height: 400px;
}
.faq-item__a p {
  padding: 0 0 26px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.82;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: 130px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: start;
}

/* Left info */
.contact__sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 48px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--t) var(--ease);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail:hover { color: var(--white); }

.contact-detail__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.contact-detail:hover .contact-detail__icon {
  border-color: var(--red-mid);
  background: var(--red-dim);
}
.contact-detail__icon svg {
  width: 18px;
  height: 18px;
}
.contact-detail__icon--green {
  color: #25d366;
}
.contact-detail__icon--green svg {
  width: 20px;
  height: 20px;
}

.contact-detail__label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-detail__value {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
}

/* Right: form */
.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 48px;
}

.contact-form__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-4);
  border: 1px solid var(--line);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.04);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23666' stroke-width='1.5'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}
.form-group select option { background: var(--bg-3); }
.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.55;
  text-align: center;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo .logo__city { display: none; }

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease), background var(--t) var(--ease);
}
.footer__social svg {
  width: 14px;
  height: 14px;
}
.footer__social:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red-dim);
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 13px 18px 13px 14px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}
.whatsapp-float__label { white-space: nowrap; }

/* ================================================================
   RESPONSIVE — Tablet (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }
  .hero__content { padding: 80px 0 20px; }
  .hero__visual {
    padding: 0 0 60px;
    justify-content: flex-start;
  }
  .car-silhouette { max-width: 100%; }
  .hero__scroll-hint { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .about__geo {
    max-width: 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .stats-bar__inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr auto 1fr;
  }
  .stat:nth-child(4),
  .stat:nth-child(5),
  .stat:nth-child(6),
  .stat:nth-child(7) {
    /* Handled via nth-child reflow */
  }
}

/* ================================================================
   RESPONSIVE — Tablet (brands)
   ================================================================ */
@media (max-width: 1024px) {
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-bar__items { display: none; }
}

/* ================================================================
   RESPONSIVE — Mobile (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Reviews bar */
  .reviews-bar__items { display: none; }
  .reviews-bar__cta { border-left: none; padding-left: 0; }
  .header { top: 44px; }

  /* Brands */
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .brands { padding: 64px 0; }

  /* Header */
  .nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 16px 0 24px;
    z-index: 190;
  }
  .nav.open { display: block; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0 20px;
  }
  .nav__link {
    display: block;
    padding: 14px 12px;
    font-size: 0.8rem;
  }
  .nav__link::after { display: none; }
  .nav__link--cta {
    margin-top: 8px;
    text-align: center;
    display: block;
  }
  .hamburger { display: flex; }

  /* Hero */
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  /* Services */
  .services { padding: 80px 0; }
  .service-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .service-item__icon {
    width: 64px;
    height: 64px;
  }
  .service-item__icon svg { width: 36px; height: 36px; }

  /* Stats */
  .stats-bar__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .stat__sep:nth-child(2),
  .stat__sep:nth-child(6) {
    display: none;
  }
  .stat__sep:nth-child(4) {
    grid-column: 1 / 3;
    width: 100%;
    height: 1px;
  }

  /* About */
  .about { padding: 80px 0; }
  .about__inner { gap: 48px; }
  .about__geo { aspect-ratio: 4 / 3; }
  .about__geo::before { font-size: 5rem; }
  .geo__badge-num { font-size: 3rem; }

  /* FAQ */
  .faq { padding: 80px 0; }
  .faq-item.open {
    margin-left: -12px;
    padding-left: 10px;
  }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* WhatsApp float */
  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

/* ================================================================
   RESPONSIVE — Small mobile (≤480px)
   ================================================================ */
@media (max-width: 480px) {
  .stats-bar__inner {
    grid-template-columns: 1fr;
  }
  .stat__sep {
    width: 100%;
    height: 1px;
    grid-column: 1;
  }
  .stat { padding: 36px 20px; }
}
