/* =========================================================
   GraceCarz — Salford, Manchester
   Palette: jet-black / racing-red / gold / off-white
   ========================================================= */

/* --- ROOT -------------------------------------------------------------- */
:root {
  --ink:     #0A0A0A;
  --brand:   #C8102E;
  --green:   #4FAF24;
  --paper:   #F5F4EF;
  --accent:  #D4AF37;
  --gold:    #D4AF37;
  --silver:  #B0B8C1;
  --mid:     #181818;
  --mid2:    #242424;
  --border:  rgba(200,16,46,0.25);
  --font-display: 'Barlow Condensed', Impact, Arial Narrow, sans-serif;
  --font-body:    'Barlow', Arial, sans-serif;
  --max-w: 1240px;
  --r: 3px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- CONTAINER --------------------------------------------------------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* --- SECTION LABELS ---------------------------------------------------- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 56ch;
  margin: 0.75rem auto 0;
}

/* --- BUTTONS ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), transform 0.18s ease, box-shadow 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }
.btn--brand { background: var(--brand); color: #fff; box-shadow: 0 2px 16px rgba(200,16,46,0.3); }
.btn--brand:hover { background: #a00d24; box-shadow: 0 4px 24px rgba(200,16,46,0.45); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--outline-dark { background: transparent; color: var(--paper); border: 1.5px solid rgba(255,255,255,0.45); }
.btn--outline-dark:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1daf55; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }

/* --- KEYFRAMES (5+ required) ------------------------------------------- */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes underlineDraw {
  from { width: 0; }
  to   { width: 48px; }
}

@keyframes btnShimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* btn shimmer effect */
.btn--brand::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btnShimmer 2.5s ease infinite;
}

/* --- NAV --------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav--scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo-link { flex-shrink: 0; }
.nav__logo { height: 62px; width: auto; }
.footer__logo { height: auto; width: 210px; max-width: 100%; }
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,244,239,0.8);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__phone {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.03em;
}
.nav__phone:hover { color: var(--accent); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--mid);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 1rem; }

/* --- HERO -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform-origin: center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.72) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 1.5rem 80px;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(245,244,239,0.8);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero__scroll-hint span:first-child {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: floatBadge 2s ease-in-out infinite;
}
.hero__scroll-hint span:last-child {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* --- MARQUEE ----------------------------------------------------------- */
.marquee-wrap {
  background: var(--brand);
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
}
.marquee-track span.marquee-dot {
  font-size: 1.4rem;
  color: var(--gold);
  padding: 0 0.25rem;
  line-height: 1;
  position: relative;
  top: 1px;
}
.marquee-dot::before { content: '\2022'; }

/* --- SERVICES ---------------------------------------------------------- */
.services {
  padding: 80px 0 0;
  background: var(--ink);
}
.services__intro {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}
.services__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
  position: relative;
  display: inline-block;
}
.services__intro h2::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--brand);
  margin: 0.5rem auto 0;
  transform-origin: left;
  animation: underlineDraw 0.8s 0.4s var(--ease) both;
}
.services__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.services__panel {
  border-right: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.services__panel:last-child { border-right: none; }
/* Logo badge colour-coding: Sell=red, Source=green, Buy=gold */
.services__panel--sell   { --svc: var(--brand);  --svc-ink: #fff; }
.services__panel--source { --svc: var(--green);  --svc-ink: #fff; }
.services__panel--buy    { --svc: var(--gold);   --svc-ink: var(--ink); }
.services__panel-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mid2);
}
.services__panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.services__panel:hover .services__panel-img { transform: scale(1.06); }
.services__panel-body {
  flex: 1;
  padding: 2rem;
  background: var(--mid);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 3px solid var(--svc, var(--brand));
  transition: background 0.3s;
}
.services__panel:hover .services__panel-body { background: var(--mid2); }
.services__panel-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--svc, var(--accent));
}
.services__panel-verb {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--paper);
  line-height: 1.1;
}
.services__panel-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--svc, var(--brand));
}
.services__panel-body p:not(.services__panel-tag) {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.65;
  flex: 1;
}
.services__panel-body .btn { margin-top: 0.5rem; align-self: flex-start; }
.services__panel-body .btn--brand {
  background: var(--svc, var(--brand));
  color: var(--svc-ink, #fff);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.services__panel-body .btn--brand:hover { filter: brightness(0.92); box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

/* --- HOW IT WORKS ------------------------------------------------------ */
.how-it-works {
  padding: 100px 0;
  background: var(--mid);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: lineGrow 1.2s var(--ease) both;
  transform-origin: center;
}
.how-it-works__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.how-it-works__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: steps;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.steps__item {
  padding: 0 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.steps__item:first-child { padding-left: 0; }
.steps__item:last-child { padding-right: 0; }
.steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: var(--mid);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand);
  margin: 0 auto 1.5rem;
}
.steps__item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 0.75rem;
}
.steps__item p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.65;
}

/* --- STOCK ------------------------------------------------------------- */
.stock {
  padding: 100px 0;
  background: var(--ink);
}
.stock__intro {
  text-align: center;
  margin-bottom: 3rem;
}
.stock__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.stock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.stock__card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stock__card:hover { border-color: var(--brand); box-shadow: 0 4px 24px rgba(200,16,46,0.15); }
.stock__card-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--mid2); }
.stock__card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.stock__card:hover .stock__card-img { transform: scale(1.05); }
.stock__card-body { padding: 1.5rem; }
.stock__card-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
  animation: dotPulse 2s ease-in-out infinite;
  display: inline-block;
}
.stock__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 0.25rem;
}
.stock__card-spec { font-size: 0.9rem; color: var(--silver); margin-bottom: 0.5rem; }
.stock__card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}
.stock__cta { text-align: center; }
.stock__cta p { color: var(--silver); max-width: 52ch; margin: 0 auto 1.5rem; }

/* --- STATS BAND -------------------------------------------------------- */
.stats-band {
  background: var(--brand);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(0,0,0,0.05) 20px, rgba(0,0,0,0.05) 21px
  );
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.stats-band__item { padding: 0 1rem; }
.stats-band__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stats-band__label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* --- ABOUT ------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.about__img-col { overflow: hidden; position: relative; background: var(--mid2); }
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about__content {
  padding: 80px 80px 80px 60px;
  background: var(--mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.about__content p { font-size: 1rem; color: var(--silver); line-height: 1.75; }
.about__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.25rem 0; }
.badge {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  animation: floatBadge 3s ease-in-out infinite;
}
.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 1s; }

/* --- REVIEWS ----------------------------------------------------------- */
.reviews {
  padding: 100px 0;
  background: var(--ink);
}
.reviews__intro {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--paper);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  padding: 2rem;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.review-card__stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 0.1em; }
.review-card blockquote p { font-size: 1rem; color: var(--silver); line-height: 1.7; font-style: italic; }
.review-card footer strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
}

/* --- CONTACT ----------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  overflow: hidden;
}
.contact__info {
  padding: 80px 60px;
  background: var(--mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--paper);
}
.contact__info > p { font-size: 1rem; color: var(--silver); line-height: 1.75; max-width: 46ch; }
.contact__details { display: flex; flex-direction: column; gap: 0.85rem; }
.contact__details li { display: flex; align-items: center; gap: 1rem; }
.contact__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.contact__details a { color: var(--paper); font-weight: 500; }
.contact__details a:hover { color: var(--accent); }
.contact__details span { color: var(--silver); }
.contact__form-wrap {
  padding: 80px 60px 80px 60px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--paper);
  width: 100%;
  transition: border-color 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
::placeholder { color: rgba(176,184,193,0.5); }
.form-note { font-size: 0.85rem; color: var(--silver); opacity: 0.7; margin-top: -0.25rem; }

/* --- FOOTER ------------------------------------------------------------ */
.footer {
  background: var(--mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__brand p { font-size: 0.95rem; color: var(--silver); }
.footer__brand img { height: 40px; width: auto; }
.footer__brand img.footer__logo { height: auto; width: 210px; max-width: 100%; }
.footer__location { font-size: 0.85rem; color: rgba(176,184,193,0.6); }
.footer__links h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links ul li a { font-size: 0.9rem; color: var(--silver); transition: color 0.2s; }
.footer__links ul li a:hover { color: var(--paper); }
.footer__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer__contact a { font-size: 0.9rem; color: var(--silver); display: block; transition: color 0.2s; }
.footer__contact a:hover { color: var(--paper); }
.footer__whatsapp { color: #25D366; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
}
.footer__bottom p { font-size: 0.85rem; color: rgba(176,184,193,0.5); }

/* --- WHATSAPP FAB ------------------------------------------------------ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-fab img { width: 28px; height: 28px; }

/* --- ASSURANCES / WHY US ----------------------------------------------- */
.assure {
  padding: 100px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.assure__intro {
  text-align: center;
  margin-bottom: 3.25rem;
}
.assure__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.assure__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.assure__card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.assure__card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.assure__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.08);
  color: var(--accent);
  flex: 0 0 auto;
}
.assure__icon svg { width: 1.55rem; height: 1.55rem; display: block; }
.assure__card:hover .assure__icon { border-color: var(--accent); background: rgba(212,175,55,0.14); }
.assure__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--paper);
  line-height: 1.2;
}
.assure__card p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.65;
}

/* --- HOW IT WORKS: 4-STEP VARIANT + TIMEFRAME NOTE --------------------- */
.steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps--4::before { left: calc(12.5% + 1rem); right: calc(12.5% + 1rem); }
.steps--4 .steps__item { padding: 0 1.5rem; }

.timeline-note {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 3.5rem auto 0;
  max-width: 780px;
  padding: 1.75rem 1.9rem;
  background: var(--mid2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
}
.timeline-note__mark {
  flex: 0 0 auto;
  color: var(--accent);
  margin-top: 0.15rem;
}
.timeline-note__mark svg { width: 2rem; height: 2rem; display: block; }
.timeline-note__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 0.4rem;
}
.timeline-note__body p {
  font-size: 0.98rem;
  color: var(--silver);
  line-height: 1.7;
}

/* --- STOCK: CARD EXTRAS ------------------------------------------------ */
.stock__grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.stock__card { display: flex; flex-direction: column; }
.stock__card-img-wrap { position: relative; }
.stock__card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.stock__card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.stock__card-desc {
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 1.15rem;
}
.stock__card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}
.stock__card-actions .btn { flex: 1 1 auto; justify-content: center; }

.reserve-note {
  max-width: 780px;
  margin: 0 auto 3rem;
  padding: 1.25rem 1.6rem;
  background: var(--mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  text-align: center;
}
.reserve-note p {
  font-size: 0.98rem;
  color: var(--silver);
  line-height: 1.7;
}

/* --- PART EXCHANGE ----------------------------------------------------- */
.px {
  padding: 100px 0;
  background: var(--mid);
  border-top: 1px solid var(--border);
  position: relative;
}
.px::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.px__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: start;
}
.px__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1rem;
}
.px__copy p {
  font-size: 1.02rem;
  color: var(--silver);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 1.75rem;
}
.px__points { display: flex; flex-direction: column; gap: 1.5rem; }
.px__point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: var(--mid2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.px__point:hover { border-color: var(--accent); transform: translateX(4px); }
.px__point-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
}
.px__point h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--paper);
  margin-bottom: 0.35rem;
}
.px__point p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

/* --- NATIONWIDE DELIVERY ----------------------------------------------- */
.delivery {
  padding: 100px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.delivery__intro { text-align: center; margin-bottom: 3rem; }
.delivery__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.delivery__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: start;
}
.delivery__copy p {
  font-size: 1.02rem;
  color: var(--silver);
  line-height: 1.8;
}
.delivery__note {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--paper) !important;
  font-size: 0.95rem !important;
}
.delivery__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-content: flex-start;
}
.delivery__regions li {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.delivery__regions li:hover { border-color: var(--accent); color: var(--accent); background: var(--mid2); }

/* --- CONTACT EXTRAS ---------------------------------------------------- */
.contact__notes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.contact__notes li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.6;
}
.contact__notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.form-opt { font-weight: 400; opacity: 0.6; text-transform: none; letter-spacing: 0; }
.form-alert {
  padding: 0.9rem 1.15rem;
  border-radius: var(--r);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  border: 1px solid;
}
.form-alert--ok  { background: rgba(79,175,36,0.12); border-color: rgba(79,175,36,0.5); color: #b9e8a1; }
.form-alert--err { background: rgba(200,16,46,0.12); border-color: rgba(200,16,46,0.5); color: #ffb3bf; }
[hidden] { display: none !important; }

/* --- RESPONSIVE -------------------------------------------------------- */
@media (max-width: 1024px) {
  .services__panels { grid-template-columns: 1fr; }
  .services__panel { border-right: none; border-bottom: 1px solid var(--border); }
  .services__panel:last-child { border-bottom: none; }
  .about { grid-template-columns: 1fr; }
  .about__img-col { height: 340px; }
  .about__content { padding: 56px 1.5rem; }
  .contact { grid-template-columns: 1fr; }
  .contact__info { padding: 56px 1.5rem; }
  .contact__form-wrap { padding: 56px 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__actions .nav__phone { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero__eyebrow { font-size: 0.65rem; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .steps__item { padding: 0; }
  .stock__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 60px 0; }
  .stock { padding: 60px 0; }
  .reviews { padding: 60px 0; }
  .services { padding: 56px 0 0; }
}

@media (max-width: 480px) {
  .hero__content { padding: 100px 1rem 60px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* --- RESPONSIVE: NEW SECTIONS (must stay at the end of the file) -------- */
@media (max-width: 1140px) {
  .nav__links { gap: 1.4rem; }
  .nav__links a { font-size: 0.8rem; letter-spacing: 0.06em; }
  .nav__phone { font-size: 0.95rem; }
}

@media (max-width: 1024px) {
  .assure__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 3rem; }
  .steps--4::before { display: none; }
  .steps--4 .steps__item { padding: 0 1rem; }
  .px__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .px__copy p { max-width: none; }
  .delivery__body { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 768px) {
  .assure { padding: 60px 0; }
  .assure__grid { grid-template-columns: 1fr; }
  .px { padding: 60px 0; }
  .delivery { padding: 60px 0; }
  .steps--4 { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps--4 .steps__item { padding: 0; }
  .timeline-note { flex-direction: column; gap: 0.9rem; padding: 1.5rem 1.35rem; margin-top: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .reserve-note { text-align: left; }
  /* keep two car cards side-by-side on tablet (overrides the old 1-column rule) */
  .stock__grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 480px) {
  .stock__grid { grid-template-columns: 1fr; }
  .stock__card-actions .btn { flex: 1 1 100%; }
  .px__point { flex-direction: column; gap: 0.6rem; }
  .delivery__regions li { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
}
