/* Austin Rodent Control — Axiom style: royal blue + orange + hexagons.
   Dark utility topbar with gradient accent, full-bleed photo hero with blue
   overlay, honeycomb hexagon feature frames, hexagon-icon service cards,
   solid-blue numbered process, DIY-vs-pro comparison table, hexagon feature
   grid, accordion FAQ, blue footer. Barlow Condensed heads + Inter body.
   Rats-only, connector-safe (no reviews, ratings, awards, or certifications). */

:root {
  --blue: #1670c8;
  --blue-600: #115aa3;
  --blue-700: #0d4680;
  --blue-800: #0a3663;
  --blue-900: #082a4d;
  --blue-050: #eaf3fc;
  --blue-100: #d5e7f8;
  --orange: #f7941e;
  --orange-600: #e37d09;
  --orange-050: #fef1dc;
  --green: #3fa64b;
  --green-600: #2f8a3b;
  --ink: #13233a;
  --body: #47566a;
  --muted: #6b7a8d;
  --line: #e2e8f1;
  --gray-50: #f2f6fb;
  --gray-100: #e8eff7;
  --white: #ffffff;
  --shadow: 0 22px 48px rgba(10, 42, 77, 0.16);
  --shadow-sm: 0 6px 18px rgba(10, 42, 77, 0.10);
  --radius: 8px;
  --f-head: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
  --hex: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  --hexpat: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96' viewBox='0 0 56 96'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='2'%3E%3Cpath d='M28 1 55 16v32L28 63 1 48V16z'/%3E%3Cpath d='M0 49 27 64v32L0 111'/%3E%3Cpath d='M56 49 29 64v32'/%3E%3C/g%3E%3C/svg%3E");
}

* { 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.66; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); line-height: 1.04; margin: 0 0 .4em; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
p { margin: 0 0 1.1rem; }
.acc { color: var(--orange); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 82px 0; }
.section--tight { padding: 52px 0; }
.section--gray { background: var(--gray-50); }
.eyebrow { display: inline-block; color: var(--orange); font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .95rem; margin: 0 0 .6rem; }
.eyebrow.center { display: block; text-align: center; }
.lead { font-size: 1.12rem; color: var(--body); font-family: var(--f-body); }
.center { text-align: center; }
.measure { max-width: 760px; }
.sec-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.sec-head h2 { position: relative; padding-bottom: 18px; }
.sec-head h2::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 66px; height: 4px; border-radius: 3px; background: var(--orange); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--f-head); font-weight: 700; font-size: 1.08rem; text-transform: uppercase; letter-spacing: .04em; border-radius: 6px; padding: .82rem 1.7rem; border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s, color .15s, border-color .15s; text-decoration: none; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(247,148,30,.32); }
.btn-orange:hover { background: var(--orange-600); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(22,112,200,.28); }
.btn-blue:hover { background: var(--blue-600); color: #fff; }
.btn-white { background: #fff; color: var(--blue-700); }
.btn-white:hover { background: var(--blue-050); color: var(--blue-700); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }
.btn-outline-blue { background: transparent; color: var(--blue-600); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-lg { font-size: 1.18rem; padding: .95rem 2rem; }
.btn-block { width: 100%; }

/* Utility topbar (dark, gradient accent underline) */
.topbar { background: var(--blue-900); color: #d6e4f2; font-size: .9rem; border-bottom: 3px solid; border-image: linear-gradient(90deg, var(--blue) 0%, var(--green) 50%, var(--orange) 100%) 1; }
.topbar .container { display: flex; align-items: center; gap: 22px; min-height: 42px; padding-top: 5px; padding-bottom: 5px; }
.topbar .tb-msg { margin-right: auto; display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.topbar .tb-msg svg { width: 15px; height: 15px; color: var(--orange); }
.topbar a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--orange); text-decoration: none; }
.topbar a svg { width: 15px; height: 15px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 46px; height: 50px; flex: none; }
.wordmark { font-family: var(--f-head); font-weight: 800; font-size: 1.4rem; line-height: .95; color: var(--ink); text-transform: uppercase; letter-spacing: .01em; white-space: nowrap; }
.wordmark .wm-blue { color: var(--blue); }
.wordmark small { display: block; font-family: var(--f-body); font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; white-space: normal; }
.nav { display: flex; align-items: center; gap: 20px; }
.nav a { font-family: var(--f-head); font-weight: 600; font-size: .96rem; color: var(--ink); text-transform: uppercase; letter-spacing: .01em; white-space: nowrap; }
.nav a:hover { color: var(--blue); text-decoration: none; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--f-head); font-weight: 700; color: var(--ink); font-size: 1.24rem; white-space: nowrap; display: inline-flex; align-items: center; gap: .45rem; }
.header-phone .hp-ic { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; flex: none; }
.menu-toggle { display: none; }

/* ---------- HERO (full-bleed photo + blue overlay) ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--blue-900); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(8,42,77,.95) 0%, rgba(10,54,99,.86) 40%, rgba(17,90,163,.55) 75%, rgba(17,90,163,.3) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 640px; padding: 92px 0 96px; }
.hero .eyebrow { color: var(--orange); }
.hero h1 { color: #fff; margin-bottom: .3em; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.hero h1 .acc { color: var(--orange); }
.hero-lead { color: #dbe8f5; font-size: 1.2rem; max-width: 50ch; }
.hero-points { list-style: none; margin: 20px 0 4px; padding: 0; display: grid; gap: 10px; }
.hero-points li { position: relative; padding-left: 32px; color: #eaf2fb; font-weight: 500; }
.hero-points li svg { position: absolute; left: 0; top: 2px; width: 21px; height: 21px; color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 26px; }
.hero-badge { position: absolute; z-index: 2; right: 6%; top: 24%; width: 150px; height: 168px; display: none; }
.hero-badge .hexbadge { width: 100%; height: 100%; clip-path: var(--hex); background: rgba(255,255,255,.14); border: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px; backdrop-filter: blur(2px); }
.hero-badge .hexbadge strong { font-family: var(--f-head); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; color: #fff; line-height: 1; }
.hero-badge .hexbadge span { color: #d9e7f5; font-size: .78rem; margin-top: 6px; }

/* ---------- Quote bar (orange strip under hero) ---------- */
.quotebar { background: var(--ink); color: #fff; }
.quotebar .container { display: flex; align-items: center; justify-content: center; gap: 12px 26px; flex-wrap: wrap; padding: 15px 24px; text-align: center; }
.quotebar strong { font-family: var(--f-head); font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .05em; font-size: 1.16rem; }
.quotebar span { color: #cdd7e2; font-weight: 500; }

/* ---------- Honeycomb hex features ---------- */
.hexfeat-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; margin-bottom: 26px; }
.hexfeat-row:last-child { margin-bottom: 0; }
.hexfeat-row.flip .hexfeat-media { order: 2; }
.hexfeat-media { display: flex; justify-content: center; min-width: 0; }
.hexframe { position: relative; width: 100%; max-width: 340px; aspect-ratio: 1 / 1.1547; clip-path: var(--hex); background: var(--blue-100); }
.hexframe img { width: 100%; height: 100%; object-fit: cover; }
.hexfeat-copy .eyebrow { color: var(--blue); }
.hexfeat-copy h3 { font-size: 1.7rem; color: var(--ink); }
.hexfeat-copy .learn { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--orange); margin-top: 4px; }
.hexfeat-copy .learn svg { width: 18px; height: 18px; }

/* ---------- Value strip (compliant, no numbers) ---------- */
.valueprops { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vprop { text-align: center; padding: 6px 10px; }
.vprop .vp-ic { width: 60px; height: 66px; margin: 0 auto 14px; clip-path: var(--hex); background: var(--blue); color: #fff; display: grid; place-items: center; }
.vprop .vp-ic svg { width: 30px; height: 30px; }
.vprop strong { display: block; font-family: var(--f-head); font-weight: 700; text-transform: uppercase; color: var(--ink); font-size: 1.2rem; margin-bottom: .2rem; }
.vprop span { color: var(--muted); font-size: .95rem; }

/* ---------- Service cards (hexagon icon) ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px 26px; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .14s ease, border-color .14s; }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-100); text-decoration: none; }
.service .sv-ic { width: 66px; height: 72px; clip-path: var(--hex); background: linear-gradient(160deg, var(--blue) 0%, var(--blue-700) 100%); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.service .sv-ic svg { width: 34px; height: 34px; }
.service h3 { color: var(--ink); font-size: 1.24rem; margin-bottom: .45rem; }
.service p { color: var(--muted); font-size: .95rem; margin: 0 0 1.1rem; flex: 1; }
.service .sv-link { font-family: var(--f-head); font-weight: 700; font-size: 1rem; color: var(--orange); text-transform: uppercase; letter-spacing: .05em; display: inline-flex; align-items: center; gap: .35rem; }
.service .sv-link svg { width: 16px; height: 16px; }

/* ---------- Blue numbered process ---------- */
.process { position: relative; background: linear-gradient(120deg, var(--blue-800) 0%, var(--blue-600) 100%); color: #fff; overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; background-image: var(--hexpat); background-size: 56px 96px; opacity: .9; pointer-events: none; }
.process .container { position: relative; }
.process .sec-head h2 { color: #fff; }
.process .sec-head .lead { color: #cfe0f2; }
.process .sec-head h2::after { background: var(--orange); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px 22px; }
.step .step-num { width: 54px; height: 60px; clip-path: var(--hex); background: var(--orange); color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 1.7rem; display: grid; place-items: center; margin-bottom: 15px; }
.step h3 { font-size: 1.28rem; color: #fff; }
.step p { color: #cfe0f2; font-size: .95rem; margin: 0; }

/* ---------- Feature grid (hexagon icon cards) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); text-align: center; }
.why-card .wc-ic { width: 62px; height: 68px; clip-path: var(--hex); background: linear-gradient(160deg, var(--blue) 0%, var(--blue-700) 100%); color: #fff; display: grid; place-items: center; margin: 0 auto 16px; }
.why-card .wc-ic svg { width: 32px; height: 32px; }
.why-card h3 { color: var(--ink); font-size: 1.3rem; margin-bottom: .4rem; }
.why-card p { margin: 0; color: var(--body); font-size: .97rem; }

/* ---------- Comparison table (compliant) ---------- */
.compare { position: relative; background: linear-gradient(120deg, var(--blue-800) 0%, var(--green-600) 140%); color: #fff; overflow: hidden; }
.compare::before { content: ""; position: absolute; inset: 0; background-image: var(--hexpat); background-size: 56px 96px; pointer-events: none; }
.compare .container { position: relative; }
.compare .sec-head h2 { color: #fff; }
.compare .sec-head .lead { color: #d7e7f2; }
.compare-table { max-width: 940px; margin: 0 auto; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr; align-items: center; }
.compare-row + .compare-row { border-top: 1px solid rgba(255,255,255,.12); }
.compare-row > div { padding: 15px 16px; text-align: center; font-size: .95rem; }
.compare-row .cmp-feat { text-align: left; font-weight: 500; color: #eaf2fb; }
.compare-head { background: rgba(0,0,0,.16); }
.compare-head > div { font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.02rem; color: #fff; }
.compare-head .cmp-us { color: var(--orange); }
.compare-row .cmp-us { background: rgba(247,148,30,.12); font-weight: 600; color: #fff; }
.cmp-yes { color: #7ee08a; font-weight: 700; }
.cmp-no { color: #ff9a9a; font-weight: 700; }
.cmp-mid { color: #f4d58a; }

/* ---------- Signs grid ---------- */
.signs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sign-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .14s, box-shadow .14s; }
.sign-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sign-card .sg-ic { width: 46px; height: 51px; clip-path: var(--hex); background: var(--blue); color: #fff; display: grid; place-items: center; margin-bottom: 14px; }
.sign-card .sg-ic svg { width: 24px; height: 24px; }
.sign-card h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: .35rem; }
.sign-card p { margin: 0; font-size: .95rem; color: var(--body); }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.area-list { columns: 2; column-gap: 26px; margin: 20px 0 24px; padding: 0; list-style: none; }
.area-list li { break-inside: avoid; padding: 7px 0 7px 26px; position: relative; font-weight: 600; color: var(--ink); font-family: var(--f-head); font-size: 1.08rem; text-transform: uppercase; letter-spacing: .01em; }
.area-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 13px; height: 15px; clip-path: var(--hex); background: var(--orange); }
.area-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }

/* ---------- Contact CTA (call-only) ---------- */
.contact-cta { position: relative; color: #fff; overflow: hidden; background: var(--blue-900); }
.contact-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .22; }
.contact-cta::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(8,42,77,.95) 0%, rgba(17,90,163,.8) 75%); }
.contact-cta .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.contact-cta h2 { color: #fff; }
.contact-cta .cc-copy p { color: #d7e5f3; }
.contact-cta .cc-points { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.contact-cta .cc-points li { position: relative; padding-left: 32px; color: #eaf2fb; font-weight: 500; }
.contact-cta .cc-points li svg { position: absolute; left: 0; top: 2px; width: 21px; height: 21px; color: var(--orange); }
.callbox { background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px 34px; text-align: center; border-top: 6px solid var(--orange); }
.callbox .cb-tag { display: inline-block; color: var(--blue); font-family: var(--f-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; margin-bottom: 8px; }
.callbox h3 { color: var(--ink); font-size: 1.7rem; margin-bottom: .35rem; }
.callbox p { color: var(--muted); font-size: .98rem; margin: 0 0 18px; }
.callbox .cb-num { display: block; font-family: var(--f-head); font-weight: 800; font-size: 2.5rem; color: var(--blue); margin-bottom: 14px; line-height: 1; }
.callbox .cb-num:hover { text-decoration: none; }
.callbox .cb-hours { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.callband { background: linear-gradient(120deg, var(--blue-800) 0%, var(--blue-600) 100%); color: #fff; position: relative; overflow: hidden; }
.callband::before { content: ""; position: absolute; inset: 0; background-image: var(--hexpat); background-size: 56px 96px; pointer-events: none; }
.callband .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.callband h2 { color: #fff; margin: 0; }
.callband p { color: #cfe0f2; margin: .35rem 0 0; }
.callband--orange { background: var(--orange); }
.callband--orange::before { opacity: .5; }
.callband--orange h2 { color: #fff; }
.callband--orange p { color: rgba(255,255,255,.9); }
.callband--orange .btn-white { color: var(--orange-600); }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; background: var(--blue-900); color: #fff; padding: 66px 0 60px; overflow: hidden; background-size: cover; background-position: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,42,77,.94) 0%, rgba(10,54,99,.82) 55%, rgba(17,90,163,.6) 100%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #dbe8f5; font-size: 1.14rem; max-width: 62ch; margin-bottom: 20px; font-family: var(--f-body); }
.breadcrumbs { font-size: .84rem; color: #a9c2dc; margin-bottom: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.breadcrumbs a { color: #d3e2f1; }

/* ---------- Article / prose / sidebar ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; color: var(--ink); }
.prose h3 { margin-top: 1.3em; color: var(--ink); }
.prose p, .prose li { font-family: var(--f-body); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5rem; }
.prose .callout { background: var(--blue-050); border-left: 4px solid var(--orange); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.4rem 0; }
.layout-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 46px; align-items: start; }
.sidebar { position: sticky; top: 104px; display: grid; gap: 20px; }
.sidebar .card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.sidebar .card h3 { font-size: 1.24rem; color: var(--ink); }
.sidebar .call-card { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-700) 100%); color: #fff; text-align: center; border: none; }
.sidebar .call-card h3 { color: #fff; }
.sidebar .call-card p { color: #d7e5f3; font-family: var(--f-body); }
.sidebar .call-card .num { font-family: var(--f-head); font-weight: 800; font-size: 1.9rem; }
.sidebar .call-card .num a { color: #fff; }
.sidebar ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sidebar ul a { font-weight: 600; color: var(--ink); font-family: var(--f-head); text-transform: uppercase; font-size: 1rem; letter-spacing: .01em; }
.sidebar ul a:hover { color: var(--blue); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 20px 22px; font-family: var(--f-head); font-weight: 700; color: var(--ink); font-size: 1.28rem; text-transform: uppercase; letter-spacing: .01em; 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-family: var(--f-body); width: 28px; height: 28px; flex: none; border-radius: 6px; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 22px 20px; color: var(--body); font-family: var(--f-body); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--blue-900); color: #a9c2dc; padding: 60px 0 26px; font-size: .96rem; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background-image: var(--hexpat); background-size: 56px 96px; pointer-events: none; }
.site-footer .container { position: relative; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-family: var(--f-head); font-size: 1.14rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 15px; }
.site-footer a { color: #a9c2dc; font-family: var(--f-body); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-brand .wordmark { color: #fff; margin-bottom: 12px; white-space: normal; }
.footer-brand .wordmark small { color: #8fb0d0; }
.footer-brand p { font-family: var(--f-body); }
.footer-phone { font-family: var(--f-head); font-weight: 800; font-size: 1.8rem; color: #fff; margin: 8px 0 4px; }
.footer-phone a { color: #fff; }
.foot-hours { display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; font-family: var(--f-body); }
.foot-hours span:nth-child(even) { color: #fff; text-align: right; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.09); display: grid; place-items: center; }
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: .82rem; color: #7f9bb8; line-height: 1.6; font-family: var(--f-body); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; font-size: .85rem; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1320px) {
  .header-inner { gap: 14px; }
  .wordmark { font-size: 1.28rem; }
  .nav { gap: 13px; }
  .nav a { font-size: .85rem; }
  .header-cta .btn { padding: .72rem 1.15rem; font-size: 1rem; }
}
@media (max-width: 1000px) {
  .hero-inner { padding: 66px 0 70px; max-width: none; }
  .valueprops { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .hexfeat-row, .hexfeat-row.flip { grid-template-columns: 1fr; gap: 28px; }
  .hexfeat-row.flip .hexfeat-media { order: 0; }
  .hexfeat-media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .signs-grid { grid-template-columns: 1fr 1fr; }
  .area-grid, .contact-cta .container { grid-template-columns: 1fr; gap: 30px; }
  .layout-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn-orange { display: none; }
  .header-inner { min-height: 64px; gap: 12px; }
  .wordmark { white-space: normal; font-size: 1.34rem; line-height: 1; }
  .menu-toggle { display: inline-flex; padding: .5rem .65rem; }
  .topbar .tb-msg { display: none; }
  .topbar .container { justify-content: center; }
  .compare-table { font-size: .86rem; }
  .compare-row { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .compare-row > div { padding: 12px 8px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .valueprops, .services, .steps, .why-grid, .signs-grid, .sidebar { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .area-list { columns: 1; }
  .callband .container { flex-direction: column; text-align: center; }
  .compare-head .cmp-feat { font-size: .8rem; }
  main { padding-bottom: 74px; }
  .sticky-call { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--orange); box-shadow: 0 -6px 18px rgba(0,0,0,.2); }
  .sticky-call a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 15px; font-family: var(--f-head); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .03em; color: #fff; }
  .sticky-call a:hover { text-decoration: none; }
}
@media (max-width: 420px) {
  .wordmark { font-size: 1.18rem; white-space: normal; }
  .brand .logo { width: 38px; height: 42px; }
  .container { padding: 0 18px; }
}

/* Mobile nav */
.mobile-menu { display: none; }
@media (max-width: 860px) {
  #navtoggle:checked ~ .mobile-menu { display: block; }
  .mobile-menu { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 0; }
  .mobile-menu a { display: block; padding: 12px 24px; font-family: var(--f-head); font-weight: 600; color: var(--ink); text-transform: uppercase; font-size: 1.05rem; border-bottom: 1px solid var(--gray-100); }
  .mobile-menu a:hover { background: var(--gray-50); text-decoration: none; }
}
