/* ============================================================
   YOUR MOBILE MECHANIC, LLC — Stylesheet  v5
   Manrope (body) · Sora (headings)
   Navy #0B1D3E · Blue #1B4FD8 · White backgrounds
   ============================================================ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --navy:    #0B1D3E;
  --blue:    #1B4FD8;
  --blue-lt: #3B6EFF;
  --blue-bg: #EBF0FF;
  --blue-mid:#DBEAFE;
  --green:   #16A34A;
  --green-bg:#DCFCE7;
  --text:    #1E293B;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --bg:      #F8FAFC;
  --white:   #FFFFFF;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;

  --shadow-sm:  0 1px 4px rgba(11,29,62,.07);
  --shadow-md:  0 4px 18px rgba(11,29,62,.10);
  --shadow-lg:  0 12px 40px rgba(11,29,62,.13);

  --font-body: 'Manrope', sans-serif;
  --font-head: 'Sora', sans-serif;

  --wrap: 1160px;
  --gap:  clamp(16px, 4vw, 28px);
}

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

/* ── Layout helpers ─────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section { padding-block: clamp(72px, 8vw, 112px); }

/* ── Section labels / headings ──────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-bg);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 { margin-bottom: 12px; }
.section-head p  { color: var(--muted); font-size: 1.05rem; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.18;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }

.blue { color: var(--blue); }

/* ── Icon sizes ─────────────────────────────────────────────── */
.ico-xs  { width: 15px; height: 15px; flex-shrink: 0; }
.ico-sm  { width: 20px; height: 20px; flex-shrink: 0; }
.ico-lg  { width: 28px; height: 28px; flex-shrink: 0; }
.ico-star{ width: 16px; height: 16px; flex-shrink: 0; }
.fill    { fill: #FBBF24; stroke: #FBBF24; }
.fill-sm { fill: #FBBF24; stroke: #FBBF24; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,79,216,.35);
}
.btn-primary:hover {
  background: var(--blue-lt);
  box-shadow: 0 6px 22px rgba(27,79,216,.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-bg);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--blue-bg);
  transform: translateY(-1px);
}

/* ── Pills ──────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}
.pill-blue {
  background: var(--blue-bg);
  color: var(--blue);
}
.pill-green {
  background: var(--green-bg);
  color: var(--green);
}

/* ── Fade-in ────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.logo { display: flex; align-items: center; }
.logo-svg {
  width: 180px;
  height: 36px;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--blue-bg); color: var(--blue); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
  white-space: nowrap;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--blue-lt); transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #1a2f5e 60%, #1B4FD8 100%);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(27,79,216,.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(59,110,255,.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-pills .pill-blue {
  background: rgba(255,255,255,.12);
  color: #CBD5FF;
  border: 1px solid rgba(255,255,255,.18);
}
.hero-pills .pill-green {
  background: rgba(22,163,74,.18);
  color: #86EFAC;
  border: 1px solid rgba(22,163,74,.25);
}
.hero-copy h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-copy h1 .blue { color: #93C5FD; }
.hero-sub {
  color: #CBD5E1;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

/* Stat card */
.hero-card-wrap { position: relative; }
.stat-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.stat-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.star-col { display: flex; flex-direction: column; gap: 4px; }
.stars { display: flex; gap: 3px; }
.stat-caption { font-size: 12px; color: var(--muted); font-weight: 600; }
.stat-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-item strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-item span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.stat-ico { color: var(--blue); margin-bottom: 6px; }

/* Floating quote */
.hero-quote {
  position: absolute;
  bottom: -24px;
  left: -40px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  max-width: 260px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border-left: 3px solid var(--blue);
}
.hq-stars { display: flex; gap: 2px; margin-bottom: 7px; }
.hero-quote p {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
}
.hero-quote span {
  font-size: 11px;
  color: var(--muted);
}

/* Wave */
.hero-wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-bottom: -1px;
}
.hero-wave svg { width: 100%; display: block; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: 18px;
}
.trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 8px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.trust-item i { color: var(--blue); }
.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about-card {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.about-svg { width: 100%; border-radius: var(--r-md); }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge-pill i { color: var(--blue); }

.about-text .section-label { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 16px; }
.about-lead {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.6;
}
.about-text > p {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.75;
}
.about-values { display: flex; flex-direction: column; gap: 16px; }
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.value-row > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.value-row strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.value-row span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: default;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue);
}
.svc-card.svc-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.svc-featured .svc-icon-wrap {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.svc-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.svc-featured h3 { color: var(--white); }
.svc-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}
.svc-featured p { color: rgba(255,255,255,.82); }

/* Tag row */
.also-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 26px;
}
.also-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-row span {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s, border-color .15s, color .15s;
}
.tag-row span:hover {
  background: var(--blue-bg);
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--white); }
.overall-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.overall-rating strong {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
}
.overall-rating span { font-size: 0.875rem; color: var(--muted); }

/* Drag-scroll track */
.rev-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  cursor: grab;
  scrollbar-width: none;
  margin-inline: calc(-1 * clamp(20px, 5vw, 48px));
  padding-inline: clamp(20px, 5vw, 48px);
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-track.dragging { cursor: grabbing; }

.rev-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow .2s;
}
.rev-card:hover { box-shadow: var(--shadow-md); }
.rev-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rev-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.rev-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.rev-meta strong {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}
.rev-meta span { font-size: 11px; color: var(--muted); }
.rev-stars { display: flex; gap: 2px; margin-left: auto; }

.rev-card blockquote {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  position: relative;
  padding-left: 14px;
  border-left: 3px solid var(--blue-mid);
}

.drag-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 40%, var(--blue) 100%);
  padding-block: clamp(52px, 6vw, 80px);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-copy h2 { color: var(--white); margin-bottom: 8px; }
.cta-copy p  { color: rgba(255,255,255,.72); font-size: 1.05rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info .section-label { margin-bottom: 14px; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: box-shadow .2s, border-color .2s;
}
.info-card:hover { box-shadow: var(--shadow-sm); }
.info-card-cta {
  border-color: var(--blue);
  background: var(--blue-bg);
  cursor: pointer;
}
.info-card-cta:hover {
  box-shadow: var(--shadow-md);
  background: var(--blue);
}
.info-card-cta:hover strong,
.info-card-cta:hover span { color: var(--white) !important; }
.info-card-cta:hover .info-ico { background: rgba(255,255,255,.2); }
.info-card-cta:hover .info-ico i { color: var(--white); }
.info-card-cta:hover .info-arrow { color: var(--white); }

.info-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: background .2s;
}
.info-card > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.info-card strong {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
  transition: color .2s;
}
.info-card span {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color .2s;
}
.info-arrow { color: var(--blue); transition: color .2s; }

.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1877F2;
  color: var(--white);
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background .2s, transform .2s;
}
.fb-btn:hover { background: #0f62d8; transform: translateY(-1px); }

/* Map */
.contact-map { display: flex; flex-direction: column; gap: 12px; }
.map-frame {
  width: 100%;
  height: 400px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.map-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.map-note i { color: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding-top: clamp(52px, 6vw, 72px);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { max-width: 300px; }
.footer-logo-svg {
  width: 180px;
  height: 36px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom { padding-block: 20px; }
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: clamp(60px, 8vw, 90px);
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 580px; }
  .hero-card-wrap { max-width: 440px; margin-inline: auto; }
  .hero-quote { left: auto; right: -20px; bottom: -20px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-card { max-width: 480px; margin-inline: auto; }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { height: 300px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 14px; font-size: 1rem; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero-inner { gap: 40px; }
  .hero-pills { justify-content: center; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-quote {
    position: static;
    max-width: 100%;
    margin-top: 24px;
    text-align: left;
  }

  /* Trust */
  .trust-dot { display: none; }
  .trust-inner { gap: 10px 20px; }

  /* About */
  .about-text { text-align: center; }
  .about-values { align-items: flex-start; }
  .value-row { text-align: left; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Reviews */
  .rev-card { flex: 0 0 280px; }

  /* CTA band */
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-card-wrap { max-width: 100%; }
  .hero-quote { display: none; }
  .about-badges { justify-content: center; }
  .info-card { flex-wrap: wrap; }
  .also-wrap { padding: 16px 18px; }
}
