/* ============================================================
   GOACPROS DESIGN12 HOMEPAGE v3.7 — 2026-07-22 — Emergency Caller + GEO chunked
   FULL HOMEPAGE MOCKUP
   Base: v2.2.0 staging (Friday deployed)
   + session fixes: refrigerant expandable, button copy tuned,
     TCPA consent line, all phone CTAs lit with test number
   ============================================================ */

:root {
  --bg: #FAF7F2; --surface: #FFFFFF; --surface-soft: #F1EADE;
  --text: #0F1F3D; --muted: #46556B; --accent: #F4A261;
  --accent-ink: #A85A17; --accent-text: #0F1F3D; --border: #CFC5B4;
  --focus-outer: #0F1F3D; --focus-inner: #F4A261;
  --header-bg: rgba(250, 247, 242, 0.86);
  --shadow-color: rgba(15, 31, 61, 0.14);
  --shadow-strong: rgba(15, 31, 61, 0.28);
  --footer-bg: #0A0F1A; --footer-surface: #141C2E;
  --footer-border: rgba(200, 200, 220, 0.10);
  --footer-muted: #6B7D96; --footer-text: #B0BCCC;
  --border-button: #8A7D6E;
  --accent-headline: #C07A2D;
}
[data-theme="dark"] {
  --bg: #081326; --surface: #0F1F3D; --surface-soft: #132846;
  --text: #FAF7F2; --muted: #AAB6C8; --accent: #F4A261;
  --accent-ink: #F4A261; --accent-text: #0F1F3D;
  --border: rgba(250, 247, 242, 0.14);
  --header-bg: rgba(8, 19, 38, 0.88);
  --shadow-color: rgba(0, 0, 0, 0.22);
  --shadow-strong: rgba(0, 0, 0, 0.45);
  --footer-bg: #040B18; --footer-surface: #0A1526;
  --footer-border: rgba(250, 247, 242, 0.07);
  --footer-muted: #5A6E88; --footer-text: #8A9BB2;
  --border-button: rgba(250, 247, 242, 0.32);
  --accent-headline: #F4A261;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, system-ui, -apple-system, sans-serif; font-weight: 450; transition: background .2s ease, color .2s ease; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--text); }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* ── TOPLINE ── */
.topline { border-bottom: 1px solid var(--border); background: var(--surface); color: var(--muted); font-size: 13px; }
.topline-inner { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 10px 0; }
.status { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ── HEADER ── */
header { position: sticky; top: 0; z-index: 10; background: var(--header-bg); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-bar { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo { font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.site-logo .a-mark { color: var(--accent); }
nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 650; color: var(--muted); }
nav a { display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap; }
nav a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--text); white-space: nowrap; letter-spacing: -.01em; min-height: 44px; transition: color .15s ease; }
.header-phone:hover { color: var(--accent-ink); }
.header-phone-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 750; color: var(--text); white-space: nowrap; min-height: 40px; padding: 8px 18px; border: 1px solid var(--accent); border-radius: 999px; transition: background .15s ease, transform .15s ease; }
.header-phone-btn:hover { background: rgba(244, 162, 97, 0.08); transform: translateY(-1px); color: var(--text); }
.theme-toggle { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; font-size: 17px; }

/* ── BUTTONS ── */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 14px; padding: 14px 20px; font-weight: 750; border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .15s ease, border-color .15s ease, background .15s ease; font-family: inherit; font-size: inherit; text-decoration: none; }
.button:hover { transform: translateY(-1px); color: inherit; }
.button-primary { background: var(--accent); color: var(--accent-text); animation: amber-glow 2.8s ease-in-out infinite; }
.button-primary:hover { color: var(--accent-text); }
.button-secondary { background: transparent; color: var(--text); border-color: var(--border); }

@keyframes amber-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(244, 162, 97, 0.35); }
  50% { box-shadow: 0 0 28px rgba(244, 162, 97, 0.55); }
}

/* ── HERO ── */
.hero { padding: 48px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .84fr; align-items: start; gap: 64px; }
h1 { margin: 0; font-size: clamp(48px, 6vw, 86px); line-height: .98; letter-spacing: -.07em; max-width: 760px; }
.hero-copy { color: var(--muted); font-size: 20px; line-height: 1.6; max-width: 620px; margin: 28px 0 0; }
.hero-copy strong { color: var(--text); font-weight: 750; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 34px; }
.cta-group { display: flex; flex-direction: column; gap: 9px; }
.cta-note { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.4; padding-left: 2px; }

/* Full-width trust band below hero — contained, breathing */
.trust-band { padding: 0 0 40px; }
.trust-band-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding: 22px 40px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; }
.trust-point { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-weight: 650; letter-spacing: -.005em; }
.trust-point svg { width: 16px; height: 16px; flex: 0 0 auto; stroke: var(--accent); stroke-width: 2.5; fill: none; }
.tcpa-band { padding: 18px 0 0; text-align: center; }
.tcpa-band p { margin: 0 auto; color: var(--muted); font-size: 12px; line-height: 1.5; font-weight: 500; opacity: 0.75; max-width: 720px; padding: 0 20px; }

/* ── ROUTE CARD ── */
.route-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 28px; box-shadow: 0 20px 80px var(--shadow-color); }
.route-card h2 { margin: 0; font-size: 28px; letter-spacing: -.045em; }
.route-card > p { color: var(--muted); line-height: 1.55; margin: 10px 0 24px; }
.symptoms { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sym-btn { width: 100%; min-height: 52px; padding: 10px 14px; border-radius: 14px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font: inherit; font-size: 14px; font-weight: 650; text-align: left; cursor: pointer; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease; }
.sym-btn:hover { border-color: var(--accent); }
.sym-btn[aria-pressed="true"] { border-color: var(--accent); background: rgba(244, 162, 97, 0.04); box-shadow: inset 0 0 0 1px var(--accent); }
.sym-btn strong { display: block; font-size: 14px; }
.sym-desc { display: block; color: var(--muted); font-weight: 550; font-size: 12.5px; line-height: 1.4; margin-top: 3px; }
.router-detail { border: 1px solid var(--accent); border-radius: 14px; padding: 20px 24px; margin-top: 12px; background: rgba(244, 162, 97, 0.04); }
.router-detail-title { font-weight: 700; font-size: 1.05rem; margin: 0 0 8px; }
.router-detail-body { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.router-detail[hidden], #router-cta[hidden], #router-cta-note[hidden] { display: none !important; }
#router-cta { width: 100%; min-height: 56px; margin-top: 12px; }
#router-cta-note { margin-top: 10px; text-align: center; padding-left: 0; }
.disclosure { color: var(--muted); font-size: 13px; line-height: 1.55; margin-top: 14px; padding: 12px 14px; background: var(--surface-soft); border-radius: 12px; border-left: 3px solid var(--accent); }

/* ── URGENT ── */
.urgent { padding: 0 0 32px; }
.urgent-card {
  max-width: 760px; margin: 0 auto;
  padding: 40px 44px;
  border-left: 3px solid var(--accent);
  border-radius: 0 20px 20px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.urgent-card h2 { margin: 0 0 16px; font-size: 28px; letter-spacing: -.045em; line-height: 1.2; }
.urgent-card .intro { color: var(--muted); line-height: 1.65; margin: 0 0 18px; font-size: 16px; }
.urgent-card p { color: var(--muted); line-height: 1.65; margin: 0 0 24px; font-size: 16px; }
.urgent-card strong { color: var(--text); font-weight: 750; }
.urgent-signs-label { margin: 0 0 12px; font-size: 15px; font-weight: 700; color: var(--text); }
.urgent-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 10px; }
.urgent-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 15px; line-height: 1.5; color: var(--text); }
.urgent-list li:before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 9px; }
.urgent-resolution { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 20px; border-top: 1px solid var(--border); }
.urgent-resolution p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; }

/* ── AFTER HOURS ── */
.afterhours { padding: 0 0 32px; }
.after-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 40px 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.after-card h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.05em; }
.after-card p { color: var(--muted); line-height: 1.6; margin: 0 0 10px; max-width: 640px; font-size: 15px; }
.after-card strong { color: var(--text); font-weight: 750; }

/* ── SECTION CONTAINMENT ── */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: 34px; letter-spacing: -.055em; }
.section-head p { margin: 0; max-width: 520px; color: var(--muted); line-height: 1.55; }
.contained { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 40px 48px 48px; }
.contained .card { background: var(--bg); }

/* ── SERVICES ── */
.services { padding: 0 0 32px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 24px; min-height: 154px; transition: border-color .15s ease, transform .15s ease; }
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card strong { display: block; font-size: 18px; letter-spacing: -.025em; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; line-height: 1.5; }
.card .arrow { color: var(--accent-ink); margin-top: 18px; display: inline-flex; align-items: center; justify-content: center; font-weight: 750; font-size: 14px; height: 36px; padding: 0 14px; border-radius: 10px; background: var(--surface-soft); transition: background .15s ease, color .15s ease; letter-spacing: .02em; }
.card:hover .arrow { background: var(--accent); color: var(--accent-text); }

/* ── COSTS ── */
.costs { padding: 0 0 32px; }
.costs .contained .cards { grid-template-columns: repeat(4, 1fr); }

/* ── DECIDE ── */
.decide { padding: 0 0 32px; }
.decide-label { margin: 24px 0 8px; color: var(--muted); font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.decide-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.decide-list li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 16px 4px; border-bottom: 1px solid var(--border); align-items: center; }
.decide-num { color: var(--accent-ink); font-weight: 800; letter-spacing: .16em; font-size: 12px; }
.decide-list strong { font-size: 17px; letter-spacing: -.02em; font-weight: 700; color: var(--text); }
.decide-payoff { margin: 20px 0 0; padding: 16px 18px; background: var(--surface-soft); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; color: var(--text); font-size: 15px; line-height: 1.55; font-weight: 500; }
.decide-payoff strong { color: var(--text); font-weight: 750; }

/* ── REFRIGERANT (v3.5: expandable cards + section CTA) ── */
.refrig { padding: 0 0 32px; }
.refrig-bridge {
  max-width: 860px; margin: 0 auto;
  padding: 32px 40px;
  border-left: 3px solid var(--accent);
  border-radius: 0 20px 20px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.alert-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(244, 162, 97, 0.12); border: 1px solid rgba(244, 162, 97, 0.3); border-radius: 10px; padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--accent-ink); margin-bottom: 16px; letter-spacing: .01em; }
.refrig-bridge h2 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.04em; line-height: 1.25; }
.refrig-bridge > p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0 0 24px; }
.refrig-bridge > p strong { color: var(--text); font-weight: 750; }
.q-label { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px; }
.q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.q-card { background: transparent; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .15s ease; display: flex; flex-direction: column; }
.q-card:hover { border-color: var(--accent); }
.q-card[data-open="true"] { border-color: var(--accent); background: rgba(244, 162, 97, 0.04); grid-column: 1 / -1; }
.q-trigger { width: 100%; background: transparent; border: none; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; cursor: pointer; font-family: inherit; color: var(--text); text-align: left; font-size: 14px; font-weight: 700; line-height: 1.35; flex: 1; }
.q-trigger .chevron { color: var(--accent-ink); flex: 0 0 auto; transition: transform .2s ease; display: inline-flex; align-items: center; }
.q-trigger .chevron svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.q-card[data-open="true"] .q-trigger .chevron { transform: rotate(180deg); }
.q-answer { padding: 0 16px 16px; color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.q-answer[hidden] { display: none; }
.section-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 20px; border-top: 1px solid var(--border); }
.button-tier2 { background: transparent; color: var(--text); border-color: var(--accent); }

/* ── PREP ── */
.prep { padding: 0 0 48px; }
.prep-list { list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--border); }
.prep-list li { display: grid; grid-template-columns: 56px 300px 1fr; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--border); align-items: baseline; }
.prep-num { color: var(--accent-ink); font-weight: 800; letter-spacing: .16em; font-size: 12px; }
.prep-list strong { font-size: 17px; letter-spacing: -.02em; }
.prep-desc { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ── HOW ── */
.how { padding: 48px 0; margin-bottom: 32px; background: var(--surface); border-block: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.step { border: 1px solid var(--border); border-radius: 22px; padding: 26px; background: var(--bg); }
.num { color: var(--accent-ink); font-weight: 800; letter-spacing: .16em; font-size: 12px; }
.step h3 { margin: 18px 0 10px; font-size: 20px; letter-spacing: -.035em; }
.step p { color: var(--muted); margin: 0; line-height: 1.55; }

/* ── COVERAGE ── */
.coverage { padding: 0 0 32px; }
.coverage-card { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 56px; }
.coverage-card h2 { margin: 0; font-size: 30px; letter-spacing: -.05em; line-height: 1.15; }
.coverage-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.chip { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; font-size: 15px; font-weight: 650; }
.chip small { margin-left: auto; color: var(--muted); font-weight: 500; font-size: 13px; }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.chip-link { width: 2px; height: 24px; background: var(--accent); margin: 0 auto; }

/* ── KNOWLEDGE ── */
.knowledge { padding: 0 0 32px; }

/* ── FAQ ── */
.faq { padding: 0 0 32px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner h2 { text-align: center; font-size: 34px; letter-spacing: -.055em; margin: 0 0 12px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; background: none; border: none; padding: 20px 4px; cursor: pointer; text-align: left; font: inherit; font-size: 17px; font-weight: 650; color: var(--text); letter-spacing: -.02em; }
.faq-q .mark { color: var(--accent-ink); font-size: 20px; font-weight: 700; }
.faq-a { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; padding: 0 4px 22px; max-width: 640px; }
.faq-panel[hidden] { display: none; }

/* ── TRUST ── */
.trust { padding: 0 0 24px; }
.trust-card { border: 1px solid var(--border); border-radius: 28px; padding: 48px 56px; }
.trust-card h2 { margin: 0 0 12px; font-size: 28px; letter-spacing: -.05em; line-height: 1.2; }
.trust-card .intro { color: var(--muted); line-height: 1.65; margin: 0; font-size: 15px; }
.trust-card strong { color: var(--text); font-weight: 750; }
.caveat { color: var(--muted); font-size: 13px; margin: 16px 0 0; }

/* ── ANTI-PATTERN ── */
.anti-pattern { padding: 0 0 40px; }
.anti-pattern-card { max-width: 760px; margin: 0 auto; padding: 32px 40px; border-left: 3px solid var(--accent); border-radius: 0 20px 20px 0; background: var(--surface); border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.anti-pattern-card p { color: var(--muted); font-size: 17px; line-height: 1.65; font-weight: 500; margin: 0; text-align: center; }
.anti-pattern-card strong { color: var(--text); font-weight: 700; }

/* ── FOOTER CTA ── */
.footer-cta { padding: 72px 0; text-align: center; background: var(--surface); border-top: 1px solid var(--border); }
.footer-cta h2 { font-size: 48px; letter-spacing: -.06em; margin: 0 0 18px; }
.footer-cta p { color: var(--muted); margin: 0 auto 28px; max-width: 540px; line-height: 1.6; }
.footer-cta strong { color: var(--text); font-weight: 750; }
.footer-cta .tcpa-consent { text-align: center; margin: 24px auto 0; max-width: 620px; }

/* ── FOOTER ── */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.site-footer-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; border-bottom: 1px solid var(--footer-border); align-items: start; }
.footer-brand { max-width: 380px; }
.footer-wordmark { font-size: 28px; font-weight: 800; letter-spacing: -.04em; color: #FAF7F2; }
.footer-wordmark .a-mark { color: var(--accent); }
.footer-tagline { margin: 12px 0 0; font-size: 17px; font-weight: 700; color: #E8E0D4; letter-spacing: -.01em; }
.footer-summary { margin: 10px 0 0; color: var(--footer-muted); font-size: 13.5px; line-height: 1.6; }
.footer-nav-title { margin: 0 0 16px; color: var(--footer-muted); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav-links { display: flex; flex-direction: column; gap: 2px; }
.footer-nav-links a { display: inline-flex; align-items: center; min-height: 38px; color: var(--footer-text); font-size: 14px; font-weight: 600; transition: color .15s ease; }
.footer-nav-links a:hover { color: #FAF7F2; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.footer-disclosure-band { padding: 24px 0; border-bottom: 1px solid var(--footer-border); }
.footer-disclosure-band p { margin: 0 auto; color: var(--footer-muted); font-size: 12px; line-height: 1.65; max-width: 900px; text-align: center; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0 28px; }
.footer-copyright { margin: 0; color: var(--footer-muted); font-size: 12px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { color: var(--footer-muted); font-size: 12px; font-weight: 600; min-height: 36px; display: inline-flex; align-items: center; }

/* ── MOBILE STICKY ── */
.mobile-call { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 20; align-items: center; justify-content: space-between; gap: 14px; min-height: 60px; padding: 8px 16px calc(8px + env(safe-area-inset-bottom, 0px)); background: var(--surface); border-top: 1px solid var(--border); box-shadow: 0 -8px 30px var(--shadow-color); }
.mobile-call-note { color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.35; }
.mobile-call .button { flex: 0 0 auto; min-height: 48px; padding: 12px 20px; font-size: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .topline-inner { justify-content: center; }
  .nav-bar > nav, .header-phone, .header-phone-btn { display: none; }
  .mobile-call { display: flex; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); letter-spacing: -.05em; }
  .hero-copy { font-size: 17px; margin-top: 20px; line-height: 1.55; }
  .hero-actions { margin-top: 24px; }
  .trust-band, .urgent, .afterhours, .services, .costs, .decide, .refrig, .coverage, .knowledge, .faq { padding-bottom: 28px !important; }
  .prep, .anti-pattern { padding-bottom: 32px !important; }
  .trust { padding-bottom: 20px !important; }
  .how { margin-bottom: 28px; padding: 36px 0; }
  .hero-grid, .cards, .steps, .coverage-card, .trust-card, .after-card { grid-template-columns: 1fr !important; }
  h1 { font-size: clamp(38px, 8vw, 54px); }
  .hero-copy { font-size: 18px; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .contained { padding: 28px 24px 32px; }
  .refrig-bridge, .after-card { padding: 28px 24px; gap: 24px; }
  .urgent-card { padding: 28px 24px; }
  .coverage-card, .trust-card { padding: 32px 24px; gap: 28px; }
  .prep-list li, .decide-list li { grid-template-columns: 1fr; gap: 4px; }
  .costs .contained .cards { grid-template-columns: 1fr 1fr; }
  .q-grid { grid-template-columns: 1fr; }
  .q-card[data-open="true"] { grid-column: auto; }
  .footer-cta h2 { font-size: clamp(28px, 7vw, 36px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button:hover, .card:hover { transform: none; } .button-primary { animation: none; box-shadow: 0 0 20px rgba(244, 162, 97, 0.45); } }

:is(a, button, [tabindex]):focus-visible { outline: 3px solid var(--focus-outer); outline-offset: 2px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Menu button (mobile) */
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font: inherit; cursor: pointer; }
@media (max-width: 1060px) { .menu-btn { display: inline-flex; align-items: center; justify-content: center; } }

/* WordPress homepage v3.7 adapters. */
.site-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.site-logo img { display: block; width: 190px; max-width: 100%; height: auto; }
.logo-dark { display: none !important; }
[data-theme="dark"] .logo-light { display: none !important; }
[data-theme="dark"] .logo-dark { display: block !important; }
[data-theme="light"] .logo-light { display: block !important; }
[data-theme="light"] .logo-dark { display: none !important; }
.header-phone-btn .ph-icon { font-size: 14px; }
.footer-wordmark-image { width: 220px; max-width: 100%; height: auto; display: block; }
.goacpros-phone-unconfigured .phone-cta { display: none !important; }
.admin-bar header { top: 32px; }
.faq-panel[hidden], .q-answer[hidden] { display: none; }
@media (max-width: 1060px) {
  .admin-bar header { top: 46px; }
  .goacpros-phone-unconfigured { padding-bottom: 0; }
}
@media (max-width: 782px) { .admin-bar header { top: 46px; } }

/* GOACPROS-RESPONSIVE-HOTFIX-V2.4.4
   Narrow-screen reflow only. No copy, color, icon, HTML, or desktop redesign. */
@media (max-width: 420px) {
  html,
  body,
  .topline-inner,
  .status,
  .hero-grid,
  .hero-grid > *,
  .hero-actions,
  .hero-actions > *,
  .cta-group,
  .route-card,
  .symptoms,
  .sym-btn,
  .cards,
  .cards > *,
  .mobile-call,
  .mobile-call > * {
    min-width: 0;
    max-width: 100%;
  }

  .topline-inner {
    padding-inline: 12px;
  }

  .status {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
  }

  .hero-actions,
  .hero-actions .cta-group {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.25;
  }

  .sym-btn {
    overflow-wrap: anywhere;
  }

  .costs .contained .cards {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100vw;
  }

  .mobile-call-note {
    min-width: 0;
    flex: 1 1 auto;
    overflow-wrap: anywhere;
  }

  .mobile-call .button {
    min-width: 0;
    max-width: 100%;
    flex: 0 1 auto;
    padding-inline: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  body {
    padding-bottom: calc(122px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-call {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-call-note {
    text-align: center;
  }

  .mobile-call .button {
    width: 100%;
  }
}


/* ============================================================
   GOACPROS-MOBILE-UX-V2.4.5
   FAIS-informed architecture, rewritten for GoACPros semantics.
   Scope: homepage mobile header, disclosure navigation, CTA hierarchy,
   and selected-router-result placement. No copy rewrite or desktop redesign.
   ============================================================ */
@media (max-width: 1060px) {
  body.goacpros-homepage-v37 {
    padding-bottom: 0;
  }

  body.goacpros-homepage-v37.mobile-menu-open {
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .goacpros-homepage-v37 header {
    z-index: 40;
  }

  .goacpros-homepage-v37 .nav-bar {
    width: min(1180px, calc(100% - 24px));
    height: 64px;
    gap: 8px;
  }

  .goacpros-homepage-v37 .site-logo {
    min-width: 0;
    flex: 0 1 auto;
  }

  .goacpros-homepage-v37 .site-logo img {
    width: clamp(118px, 38vw, 160px);
    max-width: 100%;
  }

  .goacpros-homepage-v37 .nav-actions {
    min-width: 0;
    margin-left: auto;
    gap: 6px;
  }

  .goacpros-homepage-v37 .theme-toggle-desktop {
    display: none;
  }

  .goacpros-homepage-v37 .mobile-header-call {
    display: inline-flex;
    min-width: 0;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--text);
    background: var(--surface);
    font-size: 12.5px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
  }

  .goacpros-homepage-v37 .mobile-header-call:hover {
    color: var(--text);
    background: var(--surface-soft);
  }

  .goacpros-homepage-v37 .menu-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    font-size: 20px;
  }

  .goacpros-homepage-v37 .mobile-menu:not([hidden]) {
    display: block;
    position: fixed;
    inset: var(--goacpros-mobile-menu-top, 64px) 0 0;
    z-index: 39;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding: 20px 16px calc(28px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    background: var(--bg);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px var(--shadow-color);
  }

  .goacpros-homepage-v37 .mobile-menu-inner {
    width: min(100%, 560px);
    margin: 0 auto;
    display: grid;
    gap: 10px;
  }

  .goacpros-homepage-v37 .mobile-menu a:not(.mobile-menu-call),
  .goacpros-homepage-v37 .mobile-menu-theme-toggle {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
  }

  .goacpros-homepage-v37 .mobile-menu a:not(.mobile-menu-call)::after {
    content: "→";
    color: var(--accent-ink);
  }

  .goacpros-homepage-v37 .mobile-menu-call {
    width: 100%;
    min-height: 56px;
    margin: 0 0 4px;
    white-space: normal;
    text-align: center;
  }

  .goacpros-homepage-v37 .mobile-menu-theme-toggle {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    color: var(--muted);
  }

  .goacpros-homepage-v37 .mobile-call {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .goacpros-homepage-v37 .symptoms {
    grid-template-columns: minmax(0, 1fr);
  }

  .goacpros-homepage-v37 .symptoms > .router-detail,
  .goacpros-homepage-v37 .symptoms > #router-cta,
  .goacpros-homepage-v37 .symptoms > #router-cta-note {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    margin-top: 0;
  }

  .goacpros-homepage-v37 .symptoms > .router-detail {
    scroll-margin-top: calc(var(--goacpros-mobile-menu-top, 64px) + 12px);
  }

  .goacpros-homepage-v37 .symptoms > #router-cta {
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .goacpros-homepage-v37 .symptoms > #router-cta-note {
    margin-bottom: 2px;
  }
}

@media (max-width: 420px) {
  .goacpros-homepage-v37 .route-card {
    padding: 22px 18px;
  }

  .goacpros-homepage-v37 .route-card h2 {
    font-size: 25px;
  }

  .goacpros-homepage-v37 .sym-btn {
    min-height: 64px;
    padding: 12px 14px;
  }
}

@media (max-width: 340px) {
  .goacpros-homepage-v37 .site-logo img {
    width: 112px;
  }

  .goacpros-homepage-v37 .mobile-header-call {
    padding-inline: 8px;
    font-size: 12px;
  }
}
