/* Augusta Rodent Control — dark local-business design adapted from the client-supplied
   ClearDefense Pest Control reference: near-black navy sections, bright cyan accents,
   cyan pill eyebrows, italic accent headings, dark cards. Rodent-only, connector-safe. */

:root {
  --bg-900: #090f18;   /* page base, near-black */
  --bg-850: #0b1320;   /* darkest sections / hero */
  --bg-800: #0e1826;   /* standard section */
  --bg-750: #111e30;   /* alt "gray" section */
  --card: #13202f;
  --card-2: #17273c;
  --card-line: rgba(255, 255, 255, .085);
  --cyan-400: #34c0ee;
  --cyan-500: #2bb8e6;
  --cyan-600: #1aa6d6;
  --cyan-700: #1690bb;
  --ink: #ffffff;
  --body: #a7b7c9;
  --muted: #7d8ea2;
  --line: rgba(255, 255, 255, .10);
  --gold: #f5b301;
  --shadow: 0 20px 48px rgba(0, 0, 0, .45);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, .30);
  --radius: 14px;
  --f-display: 'Poppins', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
  background: var(--bg-900);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-400); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); line-height: 1.16; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.05rem); font-weight: 800; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.24rem; }
p { margin: 0 0 1.1rem; }
.hl { color: var(--cyan-400); font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 66px 0; background: var(--bg-800); }
.section--tight { padding: 46px 0; }
.section--gray { background: var(--bg-750); }
.eyebrow { display: inline-block; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--cyan-400); background: rgba(43, 184, 230, .12); border: 1px solid rgba(43, 184, 230, .28); padding: .32rem .7rem; border-radius: 999px; margin: 0 0 1rem; }
.lead { font-size: 1.16rem; color: var(--body); }
.center { text-align: center; }
.measure { max-width: 760px; }
.measure.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--f-display); font-weight: 600; font-size: 1rem; border-radius: 9px; padding: .8rem 1.5rem; border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-blue { background: var(--cyan-500); color: #05121c; box-shadow: 0 10px 26px rgba(43, 184, 230, .30); }
.btn-blue:hover { background: var(--cyan-400); }
.btn-navy { background: var(--cyan-500); color: #05121c; box-shadow: 0 10px 26px rgba(43, 184, 230, .28); }
.btn-navy:hover { background: var(--cyan-400); }
.btn-white { background: #fff; color: #06121e; }
.btn-white:hover { background: #e7f5fb; }
.btn-outline { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--cyan-500); color: var(--cyan-400); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-lg { font-size: 1.1rem; padding: .95rem 1.7rem; }
.btn-block { width: 100%; justify-content: center; }

/* Utility top bar (thin dark bar) */
.utilitybar { background: var(--bg-850); color: #cdd9e6; font-size: .9rem; border-bottom: 1px solid var(--line); }
.utilitybar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; padding-top: 5px; padding-bottom: 5px; }
.utilitybar .u-left { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.utilitybar .u-left svg { color: var(--cyan-400); }
.utilitybar .u-right { display: inline-flex; align-items: center; gap: 22px; }
.utilitybar a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.utilitybar a svg { color: var(--cyan-400); }
.utilitybar a:hover { text-decoration: none; color: var(--cyan-400); }
.utilitybar .u-right span { color: var(--muted); }
.utilitybar svg { flex: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10, 16, 25, .92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 800; color: #fff; font-size: 1.14rem; line-height: 1.05; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 46px; height: 46px; flex: none; }
.brand small { display: block; font-size: .7rem; font-weight: 600; color: var(--cyan-400); letter-spacing: .04em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-family: var(--f-display); font-weight: 500; font-size: .98rem; color: #d6e0ea; }
.nav a:hover { color: var(--cyan-400); text-decoration: none; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--f-display); font-weight: 800; color: #fff; font-size: 1.16rem; white-space: nowrap; }
.header-phone small { display: block; font-size: .66rem; font-weight: 600; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.menu-toggle { display: none; }
.header-call .hc-icon { display: none; }

/* Quick-nav strip under hero */
.quicknav { background: var(--bg-850); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quicknav .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 30px; min-height: 54px; padding-top: 10px; padding-bottom: 10px; }
.quicknav a { font-family: var(--f-display); font-weight: 600; font-size: .9rem; color: #cdd9e6; letter-spacing: .01em; }
.quicknav a:hover { color: var(--cyan-400); text-decoration: none; }
.quicknav .qn-label { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--muted); }

/* Hero (dark scrim over photo) */
.hero { position: relative; color: #fff; background: var(--bg-850); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(100deg, rgba(6, 11, 18, .96) 0%, rgba(8, 15, 24, .90) 46%, rgba(11, 24, 40, .62) 100%), var(--hero-img); background-size: cover; background-position: center; }
.hero-inner { position: relative; padding: 76px 0 84px; max-width: 690px; }
.hero .eyebrow { color: var(--cyan-400); }
.hero h1 { color: #fff; max-width: 20ch; }
.hero-tagline { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.15rem, 2.3vw, 1.55rem); color: #fff; margin: 0 0 14px; line-height: 1.25; }
.hero p { color: #c6d3e0; font-size: 1.22rem; max-width: 47ch; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero-rating .g { font-family: var(--f-display); font-weight: 700; color: #fff; font-size: .95rem; }
.hero-rating .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 1px; }
.hero-rating .rt { color: #c6d3e0; font-size: .88rem; }
.hero-feature { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 8px; font-family: var(--f-display); font-weight: 600; color: #fff; font-size: .96rem; }
.hero-feature span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-feature b { color: var(--cyan-400); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-badges span { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-display); font-weight: 500; font-size: .95rem; color: #e3edf6; }
.hero-badges svg { flex: none; }
.hero-note { margin: 14px 0 0; font-size: .92rem; color: #8ba3bb; }
.hero-note a { color: #c6d3e0; text-decoration: underline; }
.hero-note a:hover { color: var(--cyan-400); }

/* About + stat cards (dark tiles) */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 22px 20px; }
.stat-card .big { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: .25rem; display: flex; align-items: center; gap: .5rem; }
.stat-card .big svg { color: var(--cyan-400); flex: none; }
.stat-card .small { font-size: .93rem; color: var(--body); margin: 0; }

/* Feature cards */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.feature-card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); text-align: center; }
.feature-card .ic { width: 52px; height: 52px; margin: 0 auto 14px; color: var(--cyan-400); }
.feature-card h3 { font-size: 1.14rem; margin-bottom: .4rem; color: #fff; }
.feature-card p { font-size: .96rem; color: var(--body); margin: 0; }

/* Symptom grid */
.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.symptom-card { background: var(--card); border: 1px solid var(--card-line); border-top: 3px solid var(--cyan-500); border-radius: 12px; padding: 22px 20px; box-shadow: var(--shadow-sm); }
.symptom-card h3 { font-size: 1.1rem; margin-bottom: .35rem; color: #fff; }
.symptom-card p { margin: 0; font-size: .96rem; color: var(--body); }

/* Service cards (photo + dark body) */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.service-card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); color: #fff; display: flex; flex-direction: column; transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; border-color: rgba(43,184,230,.45); }
.service-card .thumb { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; background: #0c1622; }
.service-card .sc-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.service-card h3 { font-size: 1.16rem; margin: 0; color: #fff; }
.service-card p { font-size: .95rem; color: var(--body); margin: 0; flex: 1; }
.service-card .more { font-family: var(--f-display); font-weight: 600; color: var(--cyan-400); font-size: .94rem; }

/* Advantage (icon list + plan card) */
.advantage { background: var(--bg-850); color: #fff; }
.advantage h2, .advantage .eyebrow { color: #fff; }
.advantage .eyebrow { color: var(--cyan-400); }
.advantage .adv-sub { color: var(--body); }
.adv-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; margin-top: 32px; }
.plan-card { background: var(--card-2); color: #fff; border: 1px solid var(--card-line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 26px; }
.plan-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: .2rem; }
.plan-card .pc-sub { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.plan-steps { display: grid; gap: 16px; }
.plan-step { display: flex; gap: 14px; align-items: flex-start; }
.plan-step .n { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--cyan-500); color: #05121c; font-family: var(--f-display); font-weight: 700; display: grid; place-items: center; font-size: .95rem; }
.plan-step h4 { margin: 0 0 .1rem; font-size: 1rem; color: #fff; }
.plan-step p { margin: 0; font-size: .9rem; color: var(--body); }
.adv-list { display: grid; gap: 4px; }
.adv-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border-radius: 12px; border: 1px solid transparent; border-bottom: 1px solid rgba(255,255,255,.08); }
.adv-item:first-child { background: rgba(43,184,230,.10); border: 1px solid rgba(43,184,230,.3); }
.adv-item:first-child .ai-ic { background: var(--cyan-500); color: #05121c; }
.adv-item .ai-ic { flex: none; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--cyan-400); display: grid; place-items: center; }
.adv-item h3 { font-size: 1.05rem; margin: 0 0 .2rem; color: #fff; }
.adv-item p { font-size: .92rem; margin: 0; color: var(--body); }

/* Reviews strip */
.reviews { background: var(--bg-750); }
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.reviews-head .rh-score { display: flex; align-items: center; gap: 12px; }
.reviews-head .g { font-family: var(--f-display); font-weight: 700; color: #fff; font-size: 1.2rem; }
.reviews-head .num { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; color: #fff; }
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 1px; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review-card .rc-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; margin-bottom: 10px; }
.review-card p { font-size: .96rem; color: var(--body); margin: 0 0 14px; }
.review-card .rc-name { font-family: var(--f-display); font-weight: 700; color: #fff; font-size: .96rem; }
.review-card .rc-area { color: var(--muted); font-size: .86rem; }

/* Service area */
.area-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.area-cols { columns: 2; column-gap: 26px; margin: 18px 0 0; padding: 0; list-style: none; }
.area-cols li { break-inside: avoid; padding: 7px 0 7px 26px; position: relative; font-weight: 600; color: #eaf1f7; font-family: var(--f-display); font-size: .96rem; }
.area-cols li::before { content: ""; position: absolute; left: 0; top: 11px; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(43,184,230,.16); }
.area-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--card-line); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 26px 20px; box-shadow: var(--shadow-sm); }
.step .num { width: 46px; height: 46px; border-radius: 50%; background: var(--cyan-500); color: #05121c; font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 1.08rem; color: #fff; }
.step p { font-size: .94rem; color: var(--body); margin: 0; }

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; font-size: 1.02rem; color: var(--body); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--cyan-500); }
.checklist li::after { content: ""; position: absolute; left: 7px; top: 9px; width: 8px; height: 4px; border-left: 2px solid #05121c; border-bottom: 2px solid #05121c; transform: rotate(-45deg); }

/* Get-a-quote band (cyan) */
.getquote { background: linear-gradient(120deg, var(--cyan-600), var(--cyan-500)); color: #05121c; }
.getquote .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.getquote h2 { color: #05121c; margin: 0 0 .2rem; }
.getquote .eyebrow { color: #05121c; background: rgba(5,18,28,.12); border-color: rgba(5,18,28,.28); }
.getquote p { color: #08313f; margin: 0; max-width: 46ch; }
.getquote .gq-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; min-width: 260px; }
.getquote .gq-phone { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: #05121c; text-align: center; }
.getquote .gq-cta span { color: #08313f !important; }

/* Call band */
.callband { background: var(--bg-850); color: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.callband .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.callband h2 { color: #fff; margin: 0; }
.callband p { color: var(--body); margin: .3rem 0 0; }
.callband--blue { background: linear-gradient(120deg, var(--cyan-600), var(--cyan-500)); border: none; }
.callband--blue h2 { color: #05121c; }
.callband--blue p { color: #08313f; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--card); border: 1px solid var(--card-line); border-radius: 10px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 18px 20px; font-family: var(--f-display); font-weight: 600; color: #fff; font-size: 1.04rem; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--cyan-400); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 20px 18px; color: var(--body); }
.faq details > div p:last-child { margin-bottom: 0; }

/* Page hero (inner pages) */
.page-hero { background: linear-gradient(120deg, var(--bg-850), var(--bg-750)); color: #fff; padding: 50px 0 44px; border-bottom: 1px solid var(--line); }
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--body); font-size: 1.14rem; max-width: 60ch; margin-bottom: 20px; }
.breadcrumbs { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumbs a { color: #c6d3e0; }
.page-hero .hero-actions { margin-top: 8px; }

/* Article / prose */
.prose { max-width: 760px; color: var(--body); }
.prose h2 { margin-top: 1.8em; color: #fff; }
.prose h3 { margin-top: 1.4em; color: #fff; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5rem; }
.prose strong { color: #e6eef5; }
.prose .callout { background: rgba(43,184,230,.10); border-left: 4px solid var(--cyan-500); padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 1.4rem 0; color: #d6e2ee; }
.layout-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }
.sidebar .card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.sidebar .card h3 { font-size: 1.08rem; color: #fff; }
.sidebar .call-card { background: linear-gradient(140deg, var(--card-2), #10203a); border-color: rgba(43,184,230,.3); text-align: center; }
.sidebar .call-card h3 { color: #fff; }
.sidebar .call-card .num { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: #fff; }
.sidebar ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sidebar ul a { font-weight: 600; }

/* Footer */
.site-footer { background: var(--bg-850); color: #97a8bb; padding: 56px 0 26px; font-size: .95rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.site-footer a { color: #97a8bb; }
.site-footer a:hover { color: var(--cyan-400); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-brand .logo { width: 46px; height: 46px; margin-bottom: 12px; }
.footer-phone { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: #fff; margin: 6px 0; }
.footer-phone a { color: #fff; }
.disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; font-size: .83rem; color: #6f8093; line-height: 1.6; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; font-size: .85rem; }

/* Sticky mobile call bar */
.sticky-call { display: none; }

/* Responsive */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .adv-grid { grid-template-columns: 1fr; gap: 26px; }
  .trust-row, .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .symptom-grid, .service-cards, .steps, .review-cards { grid-template-columns: repeat(2, 1fr); }
  .split, .area-grid { grid-template-columns: 1fr; gap: 26px; }
  .layout-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav, .header-phone { display: none; }
  .utilitybar .u-left { display: none; }
  .utilitybar .container { justify-content: center; }
  .header-cta { gap: 10px; }
  .header-call { width: 46px; height: 46px; padding: 0; border-radius: 50%; justify-content: center; }
  .header-call .hc-label { display: none; }
  .header-call .hc-icon { display: block; }
  .menu-toggle { display: inline-flex; }
  .brand { font-size: 1rem; gap: 9px; }
  .brand .logo { width: 40px; height: 40px; }
  .header-inner { min-height: 64px; }
  .quicknav { display: none; }
  .getquote .container { flex-direction: column; align-items: flex-start; }
  .getquote .gq-cta { width: 100%; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  .section { padding: 48px 0; }
  .symptom-grid, .service-cards, .steps, .sidebar, .feature-cards, .review-cards, .stat-grid { grid-template-columns: 1fr; }
  .area-cols { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .callband .container { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  main { padding-bottom: 76px; }
  .sticky-call {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--cyan-500); box-shadow: 0 -6px 18px rgba(0,0,0,.4);
  }
  .sticky-call a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 15px; font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; color: #05121c; }
  .sticky-call a:hover { text-decoration: none; }
}

/* Simple mobile nav (checkbox toggle, no JS) */
.mobile-menu { display: none; }
@media (max-width: 820px) {
  #navtoggle:checked ~ .mobile-menu { display: block; }
  .mobile-menu { position: absolute; left: 0; right: 0; top: 100%; background: var(--bg-800); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px 0; }
  .mobile-menu a { display: block; padding: 12px 22px; font-family: var(--f-display); font-weight: 500; color: #d6e0ea; border-bottom: 1px solid rgba(255,255,255,.06); }
  .mobile-menu a:hover { background: rgba(255,255,255,.04); text-decoration: none; color: var(--cyan-400); }
}
