/* AXLON Autos — match layout-reference.png */

:root {
  --red: #E30613;
  --red-dark: #C10510;
  --black: #000000;
  --ink: #111;
  --muted: #666;
  --line: #E8E8E8;
  --gray: #F4F4F4;
  --white: #fff;
  --star: #F5B400;
  --wrap: 1200px;
  --hdr: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --display: "Montserrat", sans-serif;
  --body: "Open Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--hdr); }
body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 10px;
}

.head {
  text-align: center;
  margin-bottom: 44px;
}

.head h2,
.matters__copy h2,
.choose__panel h2,
.process h2,
.pricing h2,
.faq h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: .25s var(--ease);
}
.btn--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--hdr);
  background: var(--black);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo__img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}
.logo__img--footer {
  height: 72px;
  max-width: 200px;
}
.logo__text {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .04em;
}
.logo__text b { font-weight: 800; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}
.nav > a,
.nav__drop > a {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.88);
  padding: 10px 14px;
  transition: color .2s;
}
.nav > a:hover,
.nav > a.is-active,
.nav__drop > a:hover { color: var(--red); }
.nav__drop { position: relative; }
.nav__drop i { font-style: normal; font-size: 10px; }
.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #1a1a1a;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s;
  box-shadow: 0 12px 28px rgba(0,0,0,.4);
}
.nav__drop:hover .nav__menu { opacity: 1; visibility: visible; transform: none; }
.nav__menu a {
  display: block;
  padding: 10px 16px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}
.nav__menu a:hover { color: var(--red); background: rgba(255,255,255,.04); }
.header__cta { flex-shrink: 0; min-height: 42px; padding: 0 20px; }
.nav-btn {
  display: none;
  margin-left: auto;
  width: 34px;
  flex-direction: column;
  gap: 5px;
}
.nav-btn span {
  display: block;
  height: 2px;
  background: var(--white);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--hdr));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.hero__media {
  position: absolute;
  inset: 0;
  background:
    url("images/hero.png")
    center / cover no-repeat;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.25) 100%),
    linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 40%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-left: max(20px, calc((100vw - var(--wrap)) / 2));
  margin-right: auto;
  width: min(100% - 40px, 680px);
  padding: 70px 0 90px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 span {
  color: var(--red);
  display: inline-block;
}
.hero__content > p {
  max-width: 520px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust {
  position: relative;
  z-index: 2;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 0;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

/* ========== FEATURES ========== */
.features {
  background: var(--gray);
  padding: 48px 0;
}
.features__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features__card {
  background: var(--white);
  text-align: center;
  padding: 32px 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
}
.features__card svg { margin: 0 auto 14px; }
.features__card h3 {
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 8px;
}
.features__card p {
  font-size: .9rem;
  color: var(--muted);
}

/* ========== WHY MATTERS ========== */
.matters {
  padding: 100px 0;
  background: var(--white);
}
.matters__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.matters__photo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 560px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}
.matters__photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.matters__photo:hover img {
  transform: scale(1.04);
}
.matters__accent {
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  background: var(--red);
  border-radius: 0 4px 4px 0;
  z-index: 1;
}
.matters__copy h2 {
  margin-bottom: 14px;
}
.matters__intro {
  font-size: .98rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.matters__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.matters__list article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 14px;
  background: var(--gray);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.matters__list article:hover {
  border-color: rgba(227, 6, 19, .25);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  background: var(--white);
}
.matters__list .ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .1);
  display: grid;
  place-items: center;
}
.matters__list h4 {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.matters__list p {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ========== SERVICES ========== */
.services {
  padding: 90px 0;
  background: #f7f7f7;
}
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.services__eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.services__titles h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.02em;
}
.services__titles h2 span {
  color: var(--red);
}
.services__lead {
  max-width: 320px;
  text-align: right;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--muted);
  flex-shrink: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc {
  background: var(--white);
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}
.svc__media {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: visible;
  z-index: 1;
}
.svc__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
  transition: transform .45s var(--ease);
}
.svc:hover .svc__media img {
  transform: scale(1.05);
}
.svc__icon {
  position: absolute;
  left: 16px;
  bottom: -22px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(227, 6, 19, .35);
  z-index: 3;
}
.svc__body {
  position: relative;
  padding: 34px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc__body h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.svc__body h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: rgba(227, 6, 19, .45);
  margin-top: 10px;
}
.svc__body > p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
}
.svc__btn {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: background .2s, transform .2s;
}
.svc__btn:hover {
  background: var(--red-dark);
  transform: translateX(2px);
}

/* ========== WHY CHOOSE (full bleed) ========== */
.choose {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.choose__bg {
  position: absolute;
  inset: 0;
  background:
    url("images/why-choose.jpg")
    left center / cover no-repeat;
}
.choose__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.88) 68%, rgba(0,0,0,.94) 100%);
}
.choose__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--wrap));
  display: flex;
  justify-content: flex-end;
  padding: 70px 0;
}
.choose__panel {
  width: min(100%, 560px);
}
.choose__panel h2 {
  color: var(--white);
  margin-bottom: 32px;
}
.choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.choose__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  line-height: 1.35;
}
.choose__item .ico {
  background: rgba(227,6,19,.15);
}

/* ========== PROCESS ========== */
.process {
  padding: 80px 0;
  background: var(--white);
}
.process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process__track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed #ddd;
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.process__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: .85rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px var(--white);
}
.process__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.process__step h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.process__step p {
  font-size: .88rem;
  color: var(--muted);
}

/* ========== PRICING ========== */
.pricing {
  padding: 80px 0;
  background: var(--gray);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  padding: 36px 28px 30px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan--hot {
  border: 2px solid var(--red);
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(227,6,19,.14);
}
.plan__ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 8px;
}
.plan--hot h3 { margin-top: 20px; }
.plan h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.plan__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 22px;
}
.plan__price sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.plan__price span { font-size: 1.2rem; }
.plan ul {
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}
.plan li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  color: #444;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.plan .btn { width: 100%; }

/* ========== REVIEWS ========== */
.reviews {
  padding: 80px 0 60px;
  background: var(--white);
}
.reviews .head { margin-bottom: 36px; }
.reviews__wrap {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 14px;
  align-items: center;
}
.reviews__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  background: var(--gray);
  border: 1px solid var(--line);
  padding: 28px 24px;
}
.review.is-hidden { display: none; }
.stars {
  color: var(--star);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.review > p {
  font-size: .92rem;
  font-style: italic;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.65;
}
.review__who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review__who img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review__who strong {
  display: block;
  font-family: var(--display);
  font-size: .88rem;
  color: var(--ink);
}
.review__who span {
  font-size: .75rem;
  color: var(--muted);
}
.reviews__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.reviews__nav:hover { background: var(--red-dark); }

/* ========== FAQ ========== */
.faq {
  padding: 60px 0 90px;
  background: var(--gray);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.faq__q span {
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform .25s;
}
.faq__item.open .faq__q span { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq__a p {
  padding: 0 18px 16px;
  font-size: .88rem;
  color: var(--muted);
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: 90px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    url("images/final-cta.jpg")
    center / cover no-repeat;
}
.cta__shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta p {
  color: rgba(255,255,255,.85);
  margin-bottom: 26px;
}
.cta .hero__actions { justify-content: center; }

/* ========== CONTACT FORMS ========== */
.contact {
  padding: 88px 0 92px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(430px, 1.08fr);
  gap: 44px;
  align-items: stretch;
}
.contact__intro {
  display: flex;
  flex-direction: column;
}
.contact__map {
  margin-top: 22px;
  flex: 1 1 auto;
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 0;
  display: block;
}
.contact__intro h2,
.contact-page__hero h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.02em;
}
.contact__intro > p {
  margin-top: 14px;
  font-size: .98rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 20px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .09);
  border-color: rgba(227, 6, 19, .3);
}
.contact-card span {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.contact-card strong {
  display: block;
  font-family: var(--display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-card strong a {
  color: inherit;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-card p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--muted);
}
.contact__page-link {
  display: inline-flex;
  margin-top: 2px;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}
.contact__page-link:hover { color: var(--red-dark); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .10);
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-form__lead {
  font-size: .94rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__field--full {
  grid-column: 1 / -1;
}
.contact-form label,
.contact-form legend {
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #2b2f33;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #e6e6e6;
  border-radius: 11px;
  padding: 13px 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .93rem;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa0a6; }
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover { border-color: #cfcfcf; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .13);
}
.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.contact-form__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-check {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1.5px solid #e6e6e6;
  border-radius: 11px;
  padding: 11px 13px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, background .2s;
}
.contact-check:hover { border-color: #cfcfcf; }
.contact-check:has(input:checked) {
  border-color: var(--red);
  background: rgba(227, 6, 19, .05);
}
.contact-check input {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--red);
}
.contact-check span {
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}
.contact-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 2px;
}
.contact-form__consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--red);
}
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.contact-form__actions .btn { flex: 1 1 auto; min-width: 150px; }
.contact-form__note {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 12px;
}
/* Ghost button sits on a white form card — give it a dark outline so it's visible */
.contact-form__actions .btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.contact-form__actions .btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.contact-page {
  padding: 88px 0 96px;
  background: var(--white);
}
.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(440px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}
.contact-page__stack {
  display: grid;
  gap: 18px;
}
.contact-panel {
  background: #111;
  color: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}
.contact-panel--light {
  background: #f7f7f7;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .06);
}
.contact-panel h2,
.contact-panel h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.contact-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 12px;
}
.contact-panel p {
  color: inherit;
  opacity: .9;
  font-size: .95rem;
  line-height: 1.65;
}
.contact-panel__list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-panel__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-panel__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: visible;
}
.contact-panel__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-panel__item strong {
  display: block;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: inherit;
}
.contact-panel__item span {
  display: block;
  font-size: .9rem;
  line-height: 1.55;
  opacity: .85;
}
.contact-panel__map {
  margin-top: 18px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}
.contact-panel--light .contact-panel__map {
  border-color: var(--line);
}
.contact-panel__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-panel__list--compact {
  gap: 12px;
}

.contact-page__form h2 {
  margin-bottom: 12px;
}
.contact-page__form .contact-form__lead {
  margin-bottom: 20px;
}

/* ========== FOOTER ========== */
.footer {
  background: #000;
  color: rgba(255,255,255,.72);
  padding-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1.35fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer__brand .logo { margin-bottom: 14px; }
.footer__brand p {
  font-size: .88rem;
  max-width: 280px;
  margin-bottom: 18px;
  line-height: 1.7;
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--white);
  transition: background .2s, color .2s;
}
.socials a:hover,
.footer .socials a:hover {
  background: var(--red);
  color: #fff;
}
.footer h4 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 9px; font-size: .88rem; }
.footer a:hover { color: var(--red); }
.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer__contact .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
  flex-shrink: 0;
}
.footer__map {
  margin-top: 14px;
  height: 130px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  text-align: center;
}
.footer__bar p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .services__lead {
    text-align: left;
    max-width: 520px;
  }
}
@media (max-width: 980px) {
  .nav-btn { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    top: var(--hdr);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: .3s var(--ease);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav > a, .nav__drop > a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding-left: 10px;
  }
  .nav__drop.is-open .nav__menu { display: block; }

  .trust__row { grid-template-columns: 1fr 1fr; }
  .features__row,
  .matters__grid,
  .pricing__grid,
  .faq__grid,
  .choose__grid { grid-template-columns: 1fr; }
  .matters__list { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: 1fr 1fr; }
  .process__track::before { display: none; }
  .plan--hot { transform: none; }
  .reviews__track { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .matters__photo, .matters__photo img { min-height: 360px; }
  .choose__inner { justify-content: stretch; }
  .choose__panel { width: 100%; }
  .contact__grid,
  .contact-page__layout {
    grid-template-columns: 1fr;
  }
  .contact__cards,
  .contact-form__grid,
  .contact-form__checks {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .trust__row,
  .process__track,
  .footer__grid,
  .features__row { grid-template-columns: 1fr; }
  .reviews__wrap { grid-template-columns: 1fr; }
  .reviews__nav { display: none; }
  .hero__actions .btn { width: 100%; }
  .contact__cards,
  .contact-form__grid,
  .contact-form__checks {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 22px;
  }
  .contact-panel {
    padding: 22px;
  }
}
@media (max-width: 420px) {
  .services__grid { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
}

/* ========================================================
   SERVICE SUBPAGES (suspension, steering, shocks, tires, brakes)
   ======================================================== */
.nav__drop > a.is-active { color: var(--red); }

/* Page hero — shorter than the homepage hero */
.phero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.phero__bg {
  position: absolute;
  inset: 0;
  background: var(--phero-img) center / cover no-repeat;
}
.phero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 52%, rgba(0,0,0,.35) 100%);
}
.phero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 66px 0;
}
.phero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--white);
  margin: 12px 0 14px;
}
.phero h1 span { color: var(--red); }
.phero__content > p {
  color: rgba(255,255,255,.9);
  font-size: 1.02rem;
  max-width: 560px;
  margin-bottom: 26px;
}
.phero__content .hero__actions { justify-content: flex-start; }

/* Breadcrumbs */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.crumbs a { color: rgba(255,255,255,.72); transition: color .2s; }
.crumbs a:hover { color: var(--red); }
.crumbs b { color: var(--red); font-weight: 700; }

/* Two-column split section (intro / what's included) */
.split { padding: 90px 0; background: var(--white); }
.split--alt { background: var(--gray); }
.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--flip .split__grid { direction: rtl; }
.split--flip .split__grid > * { direction: ltr; }
.split__media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
/* Fixed ratio on the img itself → every intro / what's-included image renders
   the exact same size, regardless of the source photo's dimensions. */
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Symptoms photo (service pages only — scoped via #signs, homepage uses #about).
   Uniform, balanced height instead of the tall 560px portrait box. */
.matters#signs .matters__photo { min-height: 0; height: 460px; }
.matters#signs .matters__photo img { min-height: 0; height: 100%; aspect-ratio: auto; }
.split__copy h2 { margin-bottom: 14px; }
.split__copy > p { margin-bottom: 22px; line-height: 1.7; }

/* Checklist (what's included / symptoms) */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.checklist--single { grid-template-columns: 1fr; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: .93rem;
  color: #333;
  line-height: 1.5;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(227,6,19,.12);
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* Related services */
.related { padding: 80px 0; background: var(--white); }
.related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.related__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.related__card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0,0,0,.13); }
.related__card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.related__card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 18px 6px;
}
.related__card span {
  margin-top: auto;
  padding: 0 18px 18px;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
}

@media (max-width: 980px) {
  .split__grid { grid-template-columns: 1fr; gap: 32px; }
  .split--flip .split__grid { direction: ltr; }
  .related__grid { grid-template-columns: 1fr 1fr; }
  .checklist { grid-template-columns: 1fr; }
}
/* Stats band (About page) */
.stats { background: var(--black); padding: 56px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__item { padding: 6px 8px; }
.stats__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  color: var(--red);
}
.stats__label {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-top: 10px;
}

@media (max-width: 640px) {
  .phero { min-height: 340px; }
  .related__grid { grid-template-columns: 1fr; }
  .matters#signs .matters__photo { height: 300px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.preloader__logo {
  width: clamp(150px, 40vw, 210px);
  height: auto;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1);    opacity: .88; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.preloader__bar {
  position: relative;
  width: 180px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}
.preloader__bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 40%;
  border-radius: 3px;
  background: var(--red);
  animation: preloaderBar 1.1s ease-in-out infinite;
}
@keyframes preloaderBar {
  0%   { left: -40%; }
  100% { left: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__logo { animation: none; }
  .preloader__bar span { animation-duration: 1.8s; }
}

/* ========== SCROLL REVEAL & MOTION ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Subtle header depth once the user scrolls */
.header { transition: box-shadow .3s var(--ease); }
.header.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
