/* ============================================================
   VANS PARTS MIDLANDS — Shared Stylesheet
   Automotive: black / red / white  ·  Oswald display + Inter body
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --bg:            #0A0A0A;
  --surface:       #141414;
  --surface-alt:   #1C1C1C;
  --bg-light:      #F5F5F5;
  --fg:            #FFFFFF;
  --fg-muted:      #AAAAAA;
  --fg-dark:       #111111;
  --fg-dark-muted: #666666;
  --border:        #2A2A2A;
  --border-light:  #E0E0E0;
  --accent:        #CC1010;
  --accent-dark:   #A80D0D;
  --accent-hover:  #E81414;
  --font-display:  'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:         72px;
  --max-w:         1180px;
  --gutter:        clamp(16px, 4vw, 40px);
  --section-y:     clamp(56px, 7vw, 96px);
  --radius-sm:     4px;
  --radius-md:     10px;
  --radius-lg:     20px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.9rem;
}
.red-divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 14px 0 22px;
}
.red-divider.center { margin-left: auto; margin-right: auto; }

/* ---- Context helpers ---- */
.on-dark h2, .on-dark h3 { color: var(--fg); }
.on-dark p { color: var(--fg-muted); }
.on-light h2, .on-light h3, .on-light h4 { color: var(--fg-dark); }
.on-light p { color: var(--fg-dark-muted); }
.on-light .eyebrow { color: var(--accent); }
.on-light .red-divider { background: var(--accent); }
.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(204,16,16,0.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--fg-dark);
  border-color: rgba(0,0,0,0.25);
}
.btn-ghost-dark:hover {
  background: rgba(0,0,0,0.06);
  border-color: var(--fg-dark);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1DAE53;
  border-color: #1DAE53;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 7px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-links a.active { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-phone:hover { color: var(--accent-hover); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #0A0A0A;
  border-bottom: 1px solid var(--border);
  padding: 16px var(--gutter) 24px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 11px 16px;
  font-weight: 500;
  color: var(--fg-muted);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  font-size: 1rem;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-menu-ctas {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,16,16,0.14);
  border: 1px solid rgba(204,16,16,0.32);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ff7a7a;
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero h1 .red { color: var(--accent); }
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  color: rgba(255,255,255,0.72);
  margin: 1.2rem 0 2rem;
  max-width: 540px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-short { min-height: clamp(320px, 45vh, 520px); }
.hero-short .hero-content { padding: 60px 0; }

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--accent);
  padding: 20px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-item {
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- Section shells ---- */
section { padding: var(--section-y) 0; }
.section-dark    { background: var(--bg); }
.section-surface { background: var(--surface); }
.section-light   { background: var(--bg-light); }
.section-white   { background: #fff; }

.section-header { margin-bottom: clamp(36px, 5vw, 60px); }
.section-header.center { text-align: center; }
.section-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-top: 10px;
  line-height: 1.74;
}
.section-intro.center { margin-left: auto; margin-right: auto; }
.on-light .section-intro { color: var(--fg-dark-muted); }

/* ---- Service cards grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.service-card {
  background: var(--surface);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.22s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { background: var(--surface-alt); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px;
  background: rgba(204,16,16,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card-cta:hover { color: var(--accent-hover); }

/* ---- Why Us grid ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
.why-icon {
  width: 46px; height: 46px;
  background: rgba(204,16,16,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.why-item p { font-size: 0.82rem; color: var(--fg-dark-muted); line-height: 1.65; }

/* ---- Testimonial cards ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.t-card:hover { border-color: rgba(204,16,16,0.5); transform: translateY(-2px); }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars span { color: #FFC107; font-size: 0.9rem; }
.t-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 18px;
}
.t-author { display: flex; align-items: center; gap: 11px; }
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.875rem; color: var(--fg); }
.t-meta { font-size: 0.72rem; color: var(--fg-muted); margin-top: 2px; }
.google-mark {
  position: absolute;
  top: 18px; right: 18px;
  display: flex; align-items: center; gap: 4px;
  font-size: 0.68rem;
  color: var(--fg-muted);
  font-weight: 600;
}

/* ---- Contact strip ---- */
.contact-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}
.info-block { display: flex; align-items: flex-start; gap: 13px; }
.info-icon {
  width: 42px; height: 42px;
  background: rgba(204,16,16,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; flex-shrink: 0;
}
.info-label {
  font-size: 0.68rem; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; margin-bottom: 2px;
}
.info-value { font-weight: 600; font-size: 0.92rem; color: var(--fg); }
.info-value a { color: inherit; }
.info-value a:hover { color: var(--accent); }

/* ---- CTA section ---- */
.cta-block {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-block h2 { margin-bottom: 14px; }
.cta-block p { color: var(--fg-muted); font-size: 1rem; max-width: 500px; margin: 0 auto 28px; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---- Parts categories ---- */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.part-cat {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.2s;
}
.part-cat:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.part-cat-icon {
  width: 56px; height: 56px;
  background: rgba(204,16,16,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.part-cat h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--fg-dark);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.part-cat p { font-size: 0.8rem; color: var(--fg-dark-muted); line-height: 1.55; }

/* ---- Process steps ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 31px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 62px; height: 62px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: #fff;
  margin: 0 auto 18px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.process-step p { font-size: 0.82rem; line-height: 1.65; }

/* ---- Trust grid ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.trust-icon {
  width: 46px; height: 46px;
  background: rgba(204,16,16,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; color: var(--accent);
}
.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--fg); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 5px;
}
.trust-item p { font-size: 0.845rem; color: var(--fg-muted); line-height: 1.65; }

/* ---- Recovery callout ---- */
.recovery-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.recovery-callout-icon { font-size: 3.2rem; flex-shrink: 0; }
.recovery-callout h3 { margin-bottom: 8px; }
.recovery-callout p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }

/* ---- About / split layouts ---- */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.split-2-center { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--fg-muted);
  font-size: 0.9rem;
  background: linear-gradient(135deg, #141414 0%, #1C1C1C 100%);
}
.img-ph-icon { font-size: 3rem; }

/* ---- Values list ---- */
.values-list { display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.value-num {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent); min-width: 32px;
  line-height: 1.3;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--fg); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 4px;
}
.value-item p { font-size: 0.845rem; color: var(--fg-muted); line-height: 1.6; }

/* ---- Team card ---- */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
}
.team-avatar {
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--fg);
  margin-bottom: 4px;
}
.team-role { font-size: 0.8rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.team-bio { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.7; }

/* ---- Contact page ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.contact-card-icon {
  width: 56px; height: 56px;
  background: rgba(204,16,16,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 14px;
  color: var(--accent);
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--fg); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 8px;
}
.contact-info-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }
.contact-info-card a { color: var(--accent); }
.contact-info-card a:hover { color: var(--accent-hover); }

.map-area {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--fg-muted);
  font-size: 0.875rem; text-align: center;
}
.map-icon { font-size: 2.4rem; color: var(--accent); }

/* ---- Contact form ---- */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-wrap .sub { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--fg-muted); text-transform: uppercase;
  letter-spacing: 0.12em;
}
input, select, textarea {
  font-family: var(--font-body); font-size: 0.9rem;
  padding: 11px 15px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg); transition: border-color 0.18s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(170,170,170,0.5); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(204,16,16,0.14);
}
select option { background: #1A1A1A; }
textarea { resize: vertical; min-height: 120px; }
.urgent-note {
  background: rgba(204,16,16,0.08);
  border: 1px solid rgba(204,16,16,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: rgba(255,120,120,0.9);
  margin-top: 16px;
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: #050505;
  border-top: 3px solid var(--accent);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.855rem; color: var(--fg-muted);
  line-height: 1.7; margin: 14px 0 20px;
  max-width: 280px;
}
.footer-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--fg); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.855rem; color: var(--fg-muted); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-ci { display: flex; gap: 10px; align-items: flex-start; }
.footer-ci-icon { flex-shrink: 0; color: var(--accent); font-size: 0.95rem; margin-top: 2px; }
.footer-ci-text { font-size: 0.845rem; color: var(--fg-muted); line-height: 1.5; }
.footer-ci-text strong { color: var(--fg); display: block; margin-bottom: 1px; }
.footer-ci-text a { color: var(--accent); }
.footer-ci-text a:hover { color: var(--accent-hover); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 14px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.76rem; color: var(--fg-muted); }
.footer-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 0.68rem;
  color: var(--fg-muted); font-weight: 600;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }

  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .parts-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-grid   { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-grid::before { display: none; }
  .trust-grid     { grid-template-columns: 1fr; }
  .split-2, .split-2-center { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .recovery-callout { flex-direction: column; gap: 16px; }
  .team-card { flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
  .stats-inner           { grid-template-columns: 1fr; }
  .stat-item             { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.22); }
  .stat-item:last-child  { border-bottom: none; }
  .hero-actions          { flex-direction: column; align-items: stretch; }
  .hero-actions .btn     { justify-content: center; }
  .cta-actions           { flex-direction: column; align-items: center; }
  .cta-actions .btn      { width: 100%; max-width: 320px; justify-content: center; }
  .services-grid         { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-item              { padding: 18px 14px; }
  .parts-grid            { grid-template-columns: 1fr 1fr; }
  .process-grid          { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }
  .footer-grid > *:first-child { grid-column: auto; }
  .strip-inner           { flex-direction: column; gap: 20px; }
  .form-row              { grid-template-columns: 1fr; }
}
