/* ================================================================
   Boston ECU Lab — Shared Stylesheet
   To change accent color per page, add a small <style> block:
   <style>:root{--accent:#00f5d4;--accent-rgb:0,245,212}</style>
   ================================================================ */

:root {
  /* Base palette */
  --black:      #060608;
  --surface:    #0c0c10;
  --card:       #111116;
  --card-hover: #16161c;
  --border:     #1e1e26;
  --border2:    #2a2a36;
  --white:      #f0f0f5;
  --text:       #e8e8ee;
  --muted:      #6e7080;
  --steel:      #8e9199;
  --gold:       #d4a853; /* brand gold — always gold regardless of page accent */

  /* Accent — overridden per page with a tiny inline <style> block */
  --accent:     #d4a853;
  --accent-rgb: 212, 168, 83;

  /* Layout */
  --radius:    8px;
  --radius-lg: 14px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── BASE ─── */
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge  { animation: fadeUp .5s ease both; }
.page-hero h1 { animation: fadeUp .5s .08s ease both; }
.hero-sub    { animation: fadeUp .5s .16s ease both; }
.hero-actions { animation: fadeUp .5s .24s ease both; }
.hero-stats  { animation: fadeUp .5s .32s ease both; }

/* ── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
nav.scrolled { height: 58px; background: rgba(6,6,8,0.96); box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.logo:hover .logo-mark { background: rgba(var(--accent-rgb), 0.07); }
.logo-mark svg { width: 16px; height: 16px; }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .14em; color: var(--white); }
.logo-text span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius);
  font-size: 13px; font-family: 'Outfit', sans-serif; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition); border: none;
}
.btn-outline {
  background: transparent; border: 1px solid var(--border2); color: var(--muted);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(var(--accent-rgb), 0.07); }
.btn-fill { background: var(--accent); color: #0a0a0a; font-weight: 700; box-shadow: 0 2px 16px rgba(var(--accent-rgb), 0.2); }
.btn-fill:hover { opacity: .9; transform: translateY(-1px); }
.btn-steel { background: var(--steel); color: var(--black); font-weight: 600; }
.btn-steel:hover { background: #9ea2aa; transform: translateY(-1px); }
.btn-large { padding: 15px 32px; font-size: 14px; border-radius: var(--radius-lg); }

/* ── PAGE HERO ─── */
.page-hero {
  position: relative; padding: 160px 48px 90px; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(74,142,255,0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(74,142,255,0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 0%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -250px; left: 40%; width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 28px;
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .1em;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb span { color: var(--border2); }
.breadcrumb .current { color: var(--accent); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.07);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .14em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 24px;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: .92; letter-spacing: .03em; color: var(--white); margin-bottom: 20px;
  text-transform: uppercase;
}
.page-hero h1 .accent { color: var(--accent); }

.hero-sub { font-size: 17px; color: var(--steel); max-width: 620px; line-height: 1.75; font-weight: 300; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.hs-item { background: var(--card); padding: 24px; }
.hs-value { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--white); line-height: 1; letter-spacing: .04em; margin-bottom: 4px; }
.hs-label { font-size: 12px; color: var(--muted); font-weight: 300; }

/* ── SECTIONS ─── */
.section { padding: 100px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .25em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }

.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); letter-spacing: .04em; color: var(--white); line-height: 1; margin-bottom: 16px; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 540px; line-height: 1.75; font-weight: 300; }
.section-local { font-size: 14px; color: var(--muted); max-width: 720px; line-height: 1.8; font-weight: 300; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── SERVICE CARDS ─── */
.sd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.sd-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column;
}
.sd-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.sd-header { padding: 24px 24px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.sd-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .04em; color: var(--white); line-height: 1.1; }
.sd-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--accent); letter-spacing: .04em; white-space: nowrap; }
.sd-body { padding: 20px 24px; flex: 1; }
.sd-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.sd-features { display: flex; flex-direction: column; gap: 8px; }
.sd-feat { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text); }
.sd-feat::before { content: '—'; color: var(--accent); font-family: 'DM Mono', monospace; font-size: 12px; flex-shrink: 0; }
.sd-footer { padding: 14px 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.sd-time { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: .1em; }
.sd-method { font-size: 10px; padding: 3px 8px; border-radius: 4px; font-family: 'DM Mono', monospace; background: rgba(var(--accent-rgb), 0.07); color: var(--accent); }

/* ── CITIES ─── */
.cities-section { padding: 100px 48px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 48px; }
.city-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px 20px; transition: all var(--transition); text-decoration: none; display: block;
}
.city-card:hover { border-color: var(--accent); transform: translateY(-2px); background: var(--card-hover); }
.city-name { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: .06em; color: var(--white); margin-bottom: 4px; }
.city-sub { font-size: 11px; color: var(--muted); }
.city-arrow { font-size: 14px; color: var(--accent); float: right; margin-top: -18px; }

/* ── BRANDS ─── */
.brands-section { padding: 100px 48px; }
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 48px; }
.brand-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; transition: all var(--transition); text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
}
.brand-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .06em; color: var(--white); line-height: 1; }
.brand-name span { color: var(--accent); }
.brand-count { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: .1em; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.brand-tag { font-size: 10px; padding: 2px 7px; border: 1px solid var(--border2); border-radius: 4px; color: var(--muted); font-family: 'DM Mono', monospace; }

/* ── REVIEWS ─── */
.reviews-section { border-top: 1px solid var(--border); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.review-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all var(--transition);
}
.review-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.75; font-weight: 300; font-style: italic; margin-bottom: 20px; }
.review-meta { display: flex; align-items: center; gap: 8px; }
.review-name { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--white); letter-spacing: .06em; }
.review-sep { color: var(--border2); font-size: 10px; }
.review-car { font-size: 12px; color: var(--muted); }

/* ── FAQ ─── */
.faq-wrap { padding: 100px 48px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 6px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item.open { border-color: var(--border2); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; cursor: pointer; background: var(--card); user-select: none; }
.faq-q:hover { background: var(--card-hover); }
.faq-q span:first-child { font-size: 14px; font-weight: 500; color: var(--text); }
.faq-arr { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--accent); flex-shrink: 0; transition: all var(--transition); }
.faq-item.open .faq-arr { transform: rotate(180deg); background: rgba(var(--accent-rgb), 0.07); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── CTA BOX ─── */
.cta-box { margin-top: 60px; padding: 44px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 32px; background: var(--card); border: 1px solid var(--border); }
.cta-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--white); letter-spacing: .04em; margin-bottom: 4px; }
.cta-box h3 .accent { color: var(--accent); }
.cta-box p { font-size: 14px; color: var(--muted); font-weight: 300; }
.cta-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── FOOTER ─── */
footer { padding: 48px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: .06em; opacity: 0.5; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* ── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(10px);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .28s ease; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #0a0a12; border: 1px solid var(--border2); border-radius: 20px; padding: 40px;
  max-width: 540px; width: 100%; position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform .32s cubic-bezier(0.16,1,0.3,1);
  max-height: 92vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.modal-eyebrow { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .2em; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; }
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 38px; letter-spacing: .04em; color: var(--white); line-height: 1; margin-bottom: 5px; }
.modal-title span { color: var(--accent); }
.modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; font-weight: 300; }
.m-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.m-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.m-label { font-size: 10px; font-family: 'DM Mono', monospace; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.m-input, .m-select, .m-textarea { background: var(--surface); border: 1px solid var(--border2); border-radius: 8px; padding: 10px 13px; font-size: 13px; font-family: 'Outfit', sans-serif; color: var(--text); width: 100%; outline: none; transition: border-color .2s; }
.m-input:focus, .m-select:focus, .m-textarea:focus { border-color: var(--accent); }
.m-input::placeholder, .m-textarea::placeholder { color: var(--muted); opacity: .5; }
.m-select option { background: #111; color: var(--text); }
.m-textarea { resize: vertical; min-height: 82px; }
.m-submit { width: 100%; padding: 14px; margin-top: 6px; background: var(--accent); color: #0a0a0a; border: none; border-radius: 12px; font-size: 14px; font-family: 'Outfit', sans-serif; font-weight: 700; cursor: pointer; transition: all .2s; }
.m-submit:hover { opacity: .9; transform: translateY(-1px); }
.m-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }
.m-success { text-align: center; padding: 16px 0; display: none; }
.m-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(52,217,122,.1); border: 1px solid rgba(52,217,122,.25); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 14px; }

/* ── HAMBURGER ─── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; background: transparent; border: 1px solid var(--border2); border-radius: 8px; padding: 10px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; flex-shrink: 0; }
.hamburger span { display: block; width: 100%; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ─── */
.mnav-overlay { display: none; position: fixed; inset: 0; z-index: 200; justify-content: flex-end; }
.mnav-overlay.open { display: flex; }
.mnav-dim { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.mnav-drawer { position: relative; width: 82%; max-width: 320px; background: #0c0c12; display: flex; flex-direction: column; height: 100%; border-left: 1px solid #1e1e28; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.mnav-overlay.open .mnav-drawer { transform: translateX(0); }
.mnav-head { padding: 0 16px; height: 58px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #1a1a22; flex-shrink: 0; }
.mnav-scroll { flex: 1; overflow-y: auto; padding: 20px 14px; -webkit-overflow-scrolling: touch; }
.mnav-scroll::-webkit-scrollbar { width: 3px; }
.mnav-scroll::-webkit-scrollbar-thumb { background: #2a2a36; }
.mnav-section-label { font-size: 9px; letter-spacing: .22em; color: #3a3a4a; text-transform: uppercase; margin: 0 0 8px 2px; font-family: 'DM Mono', monospace; }
.mnav-brand { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 8px; text-decoration: none; margin-bottom: 4px; background: #0f0f16; border: 1px solid #1a1a22; border-left: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.mnav-brand:hover, .mnav-brand:active { background: #131320; border-left-color: var(--gold); }
.mnav-brand-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mnav-brand-name { font-size: 13px; font-weight: 500; color: #e8e8ee; line-height: 1.2; }
.mnav-brand-sub { font-size: 10px; color: #44445a; margin-top: 2px; line-height: 1.3; }
.mnav-divider { height: 1px; background: #161622; margin: 16px 0; }
.mnav-svc { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; text-decoration: none; color: #8888a0; font-size: 13px; transition: background 0.15s, color 0.15s; }
.mnav-svc:hover, .mnav-svc:active { background: #0f0f16; color: #e8e8ee; }
.mnav-svc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.mnav-secondary { display: flex; gap: 6px; margin-top: 4px; }
.mnav-sec-link { flex: 1; text-align: center; padding: 9px 4px; font-size: 11px; color: #44445a; text-decoration: none; border-radius: 7px; background: #0f0f16; border: 1px solid #1a1a22; transition: color 0.15s; }
.mnav-sec-link:hover { color: #aaaacc; }
.mnav-sec-link.gold { color: var(--gold); background: rgba(212,168,83,0.07); border-color: rgba(212,168,83,0.2); }
.mnav-foot { flex-shrink: 0; padding: 14px 14px 24px; border-top: 1px solid #1a1a22; display: flex; flex-direction: column; gap: 8px; }
.mnav-phone { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border: 1px solid #2a2a36; border-radius: 8px; font-size: 13px; color: #666; text-decoration: none; }
.mnav-cta-btn { display: block; background: var(--gold); color: #060608; font-size: 14px; font-weight: 600; text-align: center; padding: 13px; border-radius: 9px; text-decoration: none; border: none; width: 100%; cursor: pointer; font-family: 'Outfit', sans-serif; }
.mnav-x { width: 34px; height: 34px; border: 1px solid #2a2a36; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #555; font-size: 16px; cursor: pointer; background: transparent; flex-shrink: 0; }
.nav-mobile-quote { display: none; align-items: center; padding: 8px 16px; background: var(--gold); color: #060608; font-size: 12px; font-weight: 600; font-family: 'Outfit', sans-serif; border: none; border-radius: 7px; cursor: pointer; white-space: nowrap; }

/* ── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-outline,
  .nav-cta .btn-fill { display: none !important; }
  .nav-mobile-quote { display: inline-flex !important; }
  .page-hero { padding: 100px 20px 60px; }
  .page-hero h1 { font-size: 52px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 20px; }
  .cities-section { padding: 70px 20px; }
  .brands-section { padding: 70px 20px; }
  .sd-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { padding: 70px 20px; }
  .cta-box { flex-direction: column; text-align: center; padding: 32px 20px; }
  .cta-btns { justify-content: center; }
  .m-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

@media (max-width: 600px) {
  .page-hero { padding: 84px 16px 44px; }
  .page-hero h1 { font-size: 38px; }
  .section { padding: 52px 16px; }
  .cities-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
