/* ============================================================
   USProz Pest Control — Enhanced Responsive CSS v2
   Light Theme | Mobile-First Design
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg: #F8FAFC;
  --s1: #FFFFFF;
  --s2: #F1F5F9;
  --s3: #E2E8F0;
  --s4: #CBD5E1;
  --border: #E2E8F0;
  --border2: #CBD5E1;
  --accent: #16A34A;
  --accent2: #15803D;
  --accent3: rgba(22,163,74,.08);
  --gold: #D97706;
  --gold2: #B45309;
  --goldbg: rgba(217,119,6,.08);
  --red: #DC2626;
  --blue: #2563EB;
  --purple: #7C3AED;
  --text: #111827;
  --muted: #6B7280;
  --faint: #9CA3AF;
  --shadow: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-green: 0 4px 20px rgba(22,163,74,.18);
  --r: 8px;
  --rl: 14px;
  --rx: 20px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --nav-h: 66px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 15px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--text); }
button { font-family: var(--font); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--s2); }
::-webkit-scrollbar-thumb { background: var(--s4); border-radius: 3px; }

/* ---- Layout ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.bg-s1 { background: var(--s1); }
.bg-s2 { background: var(--s2); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.text-center { text-align: center; }
.hidden { display: none !important; }
.mt8  { margin-top: 8px; }
.mt12 { margin-top: 12px; }
.mt16 { margin-top: 16px; }
.mt20 { margin-top: 20px; }
.mt48 { margin-top: 48px; }
.mb8  { margin-bottom: 8px; }
.mb12 { margin-bottom: 12px; }
.mb16 { margin-bottom: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r); font-weight: 700; font-size: 14px;
  cursor: pointer; border: none; transition: all .18s; white-space: nowrap;
  text-decoration: none; font-family: var(--font);
}
.btn:active { transform: scale(.98); }
.btn-primary  { background: var(--accent);  color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,.3); }
.btn-primary:hover  { background: var(--accent2); transform: translateY(-1px); box-shadow: var(--shadow-green); }
.btn-outline  { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover  { background: var(--accent3); }
.btn-ghost    { background: transparent; color: var(--muted); border: 1.5px solid var(--border2); }
.btn-ghost:hover    { border-color: var(--accent); color: var(--accent); }
.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 15px 32px; font-size: 16px; border-radius: var(--rl); }
.btn-xl  { padding: 18px 40px; font-size: 17px; border-radius: var(--rl); }

/* Call Button */
.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--gold); color: #fff; border: none;
  padding: 14px 28px; border-radius: var(--rl);
  font-weight: 800; font-size: 15px; cursor: pointer;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 16px rgba(217,119,6,.35);
  font-family: var(--font);
}
.btn-call:hover  { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217,119,6,.4); }
.btn-call:active { transform: scale(.98); }
.pulse { animation: pulse 2.5s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(217,119,6,.35); }
  55%      { box-shadow: 0 0 0 16px rgba(217,119,6,0); }
}

/* ============================================================
   BADGES
   ============================================================ */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 13px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-green { background: rgba(22,163,74,.1);  color: var(--accent); border: 1.5px solid rgba(22,163,74,.2); }
.badge-gold  { background: rgba(217,119,6,.1);  color: var(--gold);   border: 1.5px solid rgba(217,119,6,.2); }
.badge-blue  { background: rgba(37,99,235,.1);  color: var(--blue);   border: 1.5px solid rgba(37,99,235,.2); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 500;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow .3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: 1340px; margin: 0 auto;
  padding: 0 20px; gap: 12px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 900; color: var(--text); }
.nav-logo-icon { width: 36px; height: 36px; background: var(--accent); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; flex-shrink: 0; }
.nav-logo-sub  { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-btn {
  background: none; border: none; color: var(--muted);
  padding: 8px 13px; border-radius: var(--r);
  cursor: pointer; font-size: 13px; font-weight: 600;
  font-family: var(--font); transition: .15s; text-decoration: none;
}
.nav-btn:hover { color: var(--text); background: var(--s2); }

.nav-dd { position: relative; }
.dd-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); min-width: 215px; padding: 8px;
  z-index: 600; box-shadow: var(--shadow-lg); display: none;
  animation: fadeDown .15s ease;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.dd-menu.open { display: block; }
.dd-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--r); font-size: 13px; color: var(--muted); transition: .12s; text-decoration: none; }
.dd-item:hover { color: var(--text); background: var(--s2); }

.nav-call { font-size: 13px; padding: 9px 18px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; border-radius: var(--r); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: #fff; z-index: 490; overflow-y: auto;
  border-top: 1px solid var(--border);
  padding: 16px 20px 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mob-link { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 15px; font-weight: 500; }
.mob-link:hover { color: var(--accent); }
.mob-link-icon { font-size: 18px; width: 28px; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #F0FDF4 0%, #F8FAFC 45%, #FFFBEB 100%);
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(22,163,74,.12) 1px, transparent 0);
  background-size: 40px 40px; pointer-events: none;
}
.hero-glow1 { position: absolute; top: -80px; left: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(22,163,74,.07), transparent 70%); pointer-events: none; }
.hero-glow2 { position: absolute; bottom: -80px; right: -40px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(217,119,6,.06), transparent 70%); pointer-events: none; }

.hero-content { position: relative; z-index: 2; padding: 64px 0 60px; width: 100%; }
.hero-badges   { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-h1 { font-size: clamp(2.2rem, 6vw, 4.8rem); letter-spacing: -.025em; margin-bottom: 18px; line-height: 1.06; }
.hero-h1 em    { font-style: normal; color: var(--accent); }
.hero-p  { color: var(--muted); font-size: 1.05rem; max-width: 520px; line-height: 1.78; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-ico { width: 30px; height: 30px; background: var(--s2); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stat-strip { background: var(--s1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
.stat-grid  { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-item  { padding: 22px 16px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: 1.9rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-lbl   { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 5px; font-weight: 700; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.eyebrow   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 10px; }
.section-h { font-size: clamp(1.8rem, 4vw, 2.9rem); letter-spacing: -.02em; margin-bottom: 12px; }
.section-sub { color: var(--muted); max-width: 580px; font-size: .97rem; line-height: 1.72; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.svc-card {
  background: var(--s1); border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 24px 20px;
  cursor: pointer; transition: all .22s;
  text-decoration: none; display: block; box-shadow: var(--shadow);
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(22,163,74,.14); }
.svc-icon  { width: 48px; height: 48px; background: rgba(22,163,74,.1); border: 1.5px solid rgba(22,163,74,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px; transition: .2s; }
.svc-card:hover .svc-icon { background: rgba(22,163,74,.18); border-color: var(--accent); }
.svc-name  { font-size: 14px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.svc-desc  { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.svc-price { font-size: 12px; font-weight: 700; color: var(--gold); }
.svc-arrow { font-size: 12px; color: var(--accent); font-weight: 700; margin-top: 10px; display: flex; align-items: center; gap: 4px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.process-card { background: var(--s1); border: 1.5px solid var(--border); border-radius: var(--rl); padding: 26px 22px; display: flex; gap: 16px; box-shadow: var(--shadow); }
.process-num  { font-size: 2.6rem; font-weight: 900; color: var(--accent); opacity: .22; line-height: 1; min-width: 52px; }
.process-title{ font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   US MAP
   ============================================================ */
.map-wrap { background: var(--s1); border: 1.5px solid var(--border); border-radius: var(--rl); padding: 28px 20px; overflow-x: auto; box-shadow: var(--shadow); }
.us-map   { display: grid; grid-template-columns: repeat(11, minmax(38px, 46px)); gap: 4px; width: fit-content; margin: 0 auto; }
.state-btn { height: 42px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; cursor: pointer; transition: all .18s; background: var(--s2); color: var(--muted); border: 1.5px solid var(--border); user-select: none; }
.state-btn:hover, .state-btn.active { background: rgba(22,163,74,.12); color: var(--accent); border-color: var(--accent); transform: scale(1.1); z-index: 2; position: relative; }
.state-blank { height: 42px; }
.map-state-info { margin-top: 20px; }
.state-info-card { background: var(--s2); border: 1.5px solid var(--accent); border-radius: var(--rl); padding: 20px; box-shadow: var(--shadow); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: var(--s1); border: 1.5px solid var(--border); border-radius: var(--rl); padding: 24px; box-shadow: var(--shadow); transition: all .2s; }
.testi-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text  { font-size: 13px; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testi-author{ display: flex; align-items: center; gap: 11px; }
.author-av   { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #fff; flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 700; }
.author-meta { font-size: 11px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border: 1.5px solid var(--border); border-radius: var(--rl); overflow: hidden; background: var(--s1); box-shadow: var(--shadow); }
.faq-row  { border-bottom: 1px solid var(--border); }
.faq-row:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 18px 22px;
  cursor: pointer; font-size: 14px; font-weight: 700;
  background: none; border: none; color: var(--text);
  font-family: var(--font); text-align: left; gap: 12px; transition: .15s;
}
.faq-q:hover { color: var(--accent); background: var(--s2); }
.faq-icon { width: 24px; height: 24px; border: 1.5px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 300; color: var(--muted); transition: .2s; flex-shrink: 0; background: var(--s2); }
.faq-row.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); background: rgba(22,163,74,.1); }
.faq-a { font-size: 13.5px; color: var(--muted); line-height: 1.78; padding: 0 22px 18px; display: none; background: var(--s2); }
.faq-row.open .faq-a { display: block; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #F8FAFC 100%); border-top: 1px solid var(--border); }
.cta-section .container { padding: 70px 20px; }
.cta-phone  { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.cta-banner { background: linear-gradient(135deg, #F0FDF4, #ECFDF5); border: 2px solid var(--accent); border-radius: var(--rx); padding: 48px 40px; text-align: center; box-shadow: 0 4px 24px rgba(22,163,74,.1); }
.cta-banner h2 { font-size: clamp(1.5rem, 3.5vw, 1.9rem); margin-bottom: 10px; }
.cta-banner p  { color: var(--muted); margin-bottom: 18px; font-size: 14px; }

/* ============================================================
   DETAIL PAGES (Service / Location)
   ============================================================ */
.detail-hero { background: linear-gradient(135deg, #F0FDF4 0%, #F8FAFC 100%); border-bottom: 1.5px solid var(--border); padding: 96px 0 56px; }
.breadcrumb-nav { display: flex; gap: 7px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb-nav a { color: var(--muted); transition: .1s; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav span { color: var(--faint); }

.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.detail-h1    { font-size: clamp(1.9rem, 5vw, 3.4rem); letter-spacing: -.025em; margin-bottom: 16px; }
.detail-p     { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 560px; margin-bottom: 18px; }
.svc-icon-big { font-size: 3.2rem; margin-bottom: 14px; display: block; }

.detail-sidebar { background: var(--s1); border: 1.5px solid var(--border); border-radius: var(--rl); padding: 24px; position: sticky; top: 82px; box-shadow: var(--shadow-md); }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; gap: 10px; }
.info-row:last-child { border-bottom: none; }
.info-row span { color: var(--muted); flex-shrink: 0; }
.info-row strong { text-align: right; }

.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.feature-list li { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.feature-list li::before { content: "✓"; color: var(--accent); font-weight: 900; font-size: 12px; margin-top: 1px; flex-shrink: 0; }

/* ============================================================
   CHIPS / TAGS
   ============================================================ */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--s2); border: 1.5px solid var(--border); color: var(--muted); padding: 6px 13px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: .15s; text-decoration: none; display: inline-block; }
.chip:hover { border-color: var(--accent); color: var(--accent); background: rgba(22,163,74,.06); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--text); color: rgba(255,255,255,.85); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 44px; margin-bottom: 44px; }
.footer-brand { font-size: 20px; font-weight: 900; margin-bottom: 14px; color: #fff; display: flex; align-items: center; gap: 10px; }
.footer-brand-icon { width: 34px; height: 34px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #fff; flex-shrink: 0; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.75; margin-bottom: 20px; }
.footer-grid h5 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.38); margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.58); padding: 4px 0; cursor: pointer; transition: .1s; text-decoration: none; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.32); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.32); transition: .1s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   PAGER
   ============================================================ */
.pager { display: flex; gap: 6px; margin-top: 24px; flex-wrap: wrap; }
.pager a { padding: 7px 13px; background: var(--s1); border: 1.5px solid var(--border); border-radius: var(--r); font-size: 13px; color: var(--muted); transition: .15s; text-decoration: none; font-weight: 600; box-shadow: var(--shadow); }
.pager a:hover, .pager a.active { border-color: var(--accent); color: var(--accent); background: rgba(22,163,74,.06); }

/* ============================================================
   WHY SECTION (Homepage)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; background: rgba(22,163,74,.1); border: 1.5px solid rgba(22,163,74,.2); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-title { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.why-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.stat-card  { background: var(--s1); border: 1.5px solid var(--border); border-radius: 14px; padding: 20px; text-align: center; box-shadow: var(--shadow); }
.stat-card-num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.stat-card-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 5px; font-weight: 700; }

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  /* Nav */
  .nav-links, .nav-call { display: none; }
  .hamburger { display: flex; }
  .nav-logo-sub { display: none; }

  /* Hero */
  .hero-content { padding: 48px 0 44px; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-p  { font-size: .97rem; margin-bottom: 26px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn-call { width: 100%; justify-content: center; font-size: 16px; padding: 15px 24px; }
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .trust-row { gap: 12px; }
  .trust-item { font-size: 12px; }

  /* Stats */
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { display: none; }
  .stat-num { font-size: 1.5rem; }

  /* Services */
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-card { padding: 18px 16px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-card { padding: 20px 18px; }
  .process-num  { font-size: 2rem; min-width: 44px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 13px; }
  .faq-a { padding: 0 18px 16px; }

  /* Why section */
  .why-grid  { grid-template-columns: 1fr; gap: 32px; }
  .stat-cards{ grid-template-columns: repeat(2, 1fr); }

  /* Detail pages */
  .detail-hero { padding: 80px 0 44px; }
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .detail-sidebar { position: static; }
  .feature-list { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section .container { padding: 52px 16px; }
  .cta-phone { font-size: 2rem; }
  .cta-banner { padding: 32px 20px; border-radius: var(--rl); }
  .cta-banner h2 { font-size: 1.4rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-icon { display: none; }

  /* Section headers */
  .section-h { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Map */
  .map-wrap { padding: 20px 12px; }
  .us-map   { grid-template-columns: repeat(11, minmax(30px, 38px)); gap: 3px; }
  .state-btn { height: 36px; font-size: 9px; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(5) { display: none; }
  .chip { font-size: 11px; padding: 5px 11px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .badge { font-size: 11px; padding: 4px 10px; }
  .btn-call { font-size: 14px; padding: 13px 22px; }
  .detail-h1 { font-size: 1.7rem; }
  .section-h { font-size: 1.5rem; }
  .cta-phone { font-size: 1.7rem; }
  .us-map { grid-template-columns: repeat(11, minmax(26px, 32px)); gap: 2px; }
  .state-btn { height: 30px; font-size: 8px; }
}

/* ============================================================
   RESPONSIVE — Extra Small (≤360px)
   ============================================================ */
@media (max-width: 360px) {
  .hero-btns { flex-direction: column; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY — Touch improvements
   ============================================================ */
@media (hover: none) {
  .svc-card:hover { transform: none; box-shadow: var(--shadow); }
  .btn-call:hover { transform: none; }
  .btn-primary:hover { transform: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .main-nav, .hamburger, .mobile-menu, .btn-call, .cta-section, .site-footer { display: none !important; }
  body { font-size: 12pt; }
  .container { max-width: 100%; }
}