/* ============================================================================
   TriCoast Electrical — site.css
   HOME-TECH design system — dark, glassmorphic, cyan/violet/blue gradient.
   Re-implemented from the OWNER-APPROVED prototype prototypes/home-tech.html.
   Class names are UNCHANGED from the prior "Professional Bay" system so every
   page restyles globally; legacy tokens are aliased to dark-theme values.
   Read DESIGN-SYSTEM.md before adding classes — do not invent new component
   names when an existing one fits.
   ========================================================================= */

/* ===================== TOKENS ===================== */
:root {
  /* Core palette (new) */
  --bg:           #05060f;
  --bg-2:         #080a1a;
  --panel:        rgba(18,22,46,0.55);
  --panel-2:      rgba(20,26,54,0.70);
  --panel-border: rgba(120,150,255,0.16);
  --ink:          #eef1ff;
  --ink-2:        #cdd6ff;
  --muted:        #9aa3c7;
  --muted-2:      #6f78a3;
  --cyan:         #22e5ff;
  --blue:         #5b8cff;
  --violet:       #a855f7;
  --grad:         linear-gradient(105deg, #22e5ff 0%, #5b8cff 45%, #a855f7 100%);
  --grad-soft:    linear-gradient(105deg, rgba(34,229,255,0.16), rgba(168,85,247,0.16));

  /* Legacy aliases — remapped so un-migrated inline var() refs stay on-theme.
     Prefer the core palette in new markup. */
  --teal:       var(--cyan);
  --teal-deep:  var(--cyan);
  --accent:     var(--cyan);
  --accent-deep:#16b6cf;
  --mist:       rgba(34,229,255,0.10);
  --mist-2:     var(--bg-2);
  --surface:    var(--bg);
  --white:      var(--bg);
  --slate:      var(--muted);
  --line:       var(--panel-border);
  --line-soft:  rgba(120,150,255,0.09);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 6px 18px -10px rgba(0,0,0,0.7);
  --shadow-md: 0 14px 40px -16px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-lg: 0 30px 80px -30px rgba(0,0,0,0.85);
  --glow:      0 24px 50px -24px rgba(35,80,255,0.55);

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;

  --font:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Space Grotesk', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sans:    var(--font); /* legacy alias */

  --maxw: 1180px;
}

/* ===================== BASE / RESET ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 0.4em; font-weight: 700; color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4rem); line-height: 1.04; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 1.1rem + 2.6vw, 2.7rem); }
h3 { font-size: 1.16rem; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
blockquote, figure { margin: 0; }
button { font-family: var(--font); }
::selection { background: rgba(139,92,255,0.4); color: #fff; }

/* Gradient text helper (replaces old teal <em>) */
.grad-text,
.hero h1 em, .post-hero h1 em, .answer-box .big em {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.wrap-narrow { max-width: 820px; }
.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.028em; }

/* ===================== AMBIENT BACKGROUND ===================== */
/* Rendered once by the layout, fixed behind all content. */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient .glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.42; }
.ambient .g1 { width: 560px; height: 560px; background: radial-gradient(circle, #1b3bff, transparent 70%); top: -180px; left: -120px; animation: float1 18s ease-in-out infinite; }
.ambient .g2 { width: 620px; height: 620px; background: radial-gradient(circle, #a855f7, transparent 70%); top: 30%; right: -220px; animation: float2 22s ease-in-out infinite; }
.ambient .g3 { width: 480px; height: 480px; background: radial-gradient(circle, #22e5ff, transparent 70%); bottom: -160px; left: 30%; animation: float1 26s ease-in-out infinite reverse; }
.ambient .grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(120,150,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(120,150,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,40px); } }
/* Keep page content above the ambient layer */
.site-header, main, .site-footer, .mobile-call, .flash, .skip-link { position: relative; z-index: 1; }

/* ===================== REVEAL ON SCROLL ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== HELPERS / SECTION SCAFFOLD ===================== */
.section { padding: clamp(64px, 8vw, 108px) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.seg-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 38px; }

.kicker { font-family: var(--display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; display: block; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: #cfe0ff;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--panel-border); background: var(--panel); backdrop-filter: blur(8px);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.eyebrow.light { color: #cfe0ff; }
.eyebrow.center { justify-content: center; }

/* Accessibility helpers */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--cyan); color: #04121a; padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 800; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

/* Flash messages */
.flash { margin: 0; padding: 14px 24px; text-align: center; font-weight: 700; font-size: 0.96rem; }
.flash--notice { background: rgba(34,229,255,0.10); color: #bdefff; border-bottom: 1px solid var(--panel-border); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 0.97rem;
  padding: 14px 24px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary, .btn-accent { background: var(--grad); color: #070815; box-shadow: 0 10px 30px -8px rgba(91,140,255,0.6); }
.btn-primary:hover, .btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(91,140,255,0.85); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--ink); border-color: var(--panel-border); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(120,150,255,0.4); background: rgba(255,255,255,0.08); }
.btn-light { background: #eef6ff; color: #070815; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.4); }
.btn-outline-light { border-color: rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.04); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-call { background: linear-gradient(105deg, rgba(34,229,255,0.14), rgba(168,85,247,0.14)); border: 1px solid rgba(34,229,255,0.35); color: #cfe9ff; }
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 0 26px -4px rgba(34,229,255,0.55); }
.btn-call .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(34,229,255,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,229,255,0.6); } 70% { box-shadow: 0 0 0 9px rgba(34,229,255,0); } 100% { box-shadow: 0 0 0 0 rgba(34,229,255,0); } }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,6,15,0.6);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(120,150,255,0.08);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(5,6,15,0.85); border-color: rgba(120,150,255,0.18); }
.nav { display: flex; align-items: center; gap: 22px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(150deg, rgba(34,229,255,0.16), rgba(168,85,247,0.16));
  border: 1px solid var(--panel-border);
  display: grid; place-items: center;
}
.brand .mark svg { width: 24px; height: 24px; }
.brand .name { font-family: var(--display); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.brand .name span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand .tag { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { position: relative; font-size: 0.92rem; font-weight: 500; color: var(--muted); padding: 9px 12px; border-radius: 9px; transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; width: 0; margin: 0 auto; background: var(--grad); border-radius: 2px; transition: width .25s ease; }
.nav-links a:hover::after { width: calc(100% - 24px); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex: none; margin-left: auto; }
.nav-links + .nav-actions { margin-left: 0; }
.nav-phone { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.nav-phone .lbl { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.nav-phone .num { font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.nav-phone:hover .num { color: var(--cyan); }

.menu-btn { display: none; background: rgba(255,255,255,0.04); border: 1px solid var(--panel-border); border-radius: 10px; width: 46px; height: 46px; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.menu-btn svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 74px 0 0; z-index: 49; background: rgba(5,6,15,0.97); backdrop-filter: blur(14px); padding: 18px 24px 40px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-family: var(--display); font-size: 1.1rem; font-weight: 600; padding: 16px 6px; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mobile-menu .btn { width: 100%; margin-top: 18px; border-bottom: none; }

/* ===================== BREADCRUMBS ===================== */
.crumbs { background: rgba(8,10,26,0.6); border-bottom: 1px solid var(--line-soft); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 13px 0; font-size: 0.82rem; font-weight: 500; color: var(--muted); }
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs a:hover { color: var(--cyan); }
.crumbs .sep { color: rgba(120,150,255,0.3); }
.crumbs li[aria-current] { color: var(--ink); font-weight: 700; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: clamp(50px, 7vw, 100px) 0 clamp(60px, 8vw, 96px);
}
.hero-grid--single { grid-template-columns: 1fr; max-width: 820px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--panel);
  border: 1px solid var(--panel-border); border-radius: 999px; padding: 7px 14px;
  font-size: 0.82rem; font-weight: 600; color: #cfe0ff; backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.hero-pill .badge { background: var(--grad-soft); color: #cfe9ff; font-weight: 700; padding: 4px 10px; border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.03em; border: 1px solid var(--panel-border); }

.hero h1 { font-weight: 700; font-size: clamp(2.3rem, 1.3rem + 3.6vw, 3.9rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 0.34em; }
.hero h1 em { font-style: normal; }
.hero .sub { font-size: clamp(1.04rem, 0.98rem + 0.4vw, 1.2rem); color: var(--muted); max-width: 560px; margin-bottom: 22px; }
.hero .sub strong { color: var(--ink); font-weight: 600; }
.hero .credline { font-size: 0.86rem; font-weight: 600; color: var(--ink-2); margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.hero .credline span { display: inline-flex; align-items: center; gap: 6px; }
.hero .credline svg { width: 16px; height: 16px; color: var(--cyan); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-fine { margin-top: 16px; font-size: 0.92rem; color: var(--muted); max-width: 560px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--panel-border); }
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-item .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(34,229,255,0.08); border: 1px solid rgba(34,229,255,0.18); display: grid; place-items: center; flex: none; }
.trust-item .ic svg { width: 20px; height: 20px; color: var(--cyan); }
.trust-item b { display: block; font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.trust-item span { font-size: 0.78rem; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; }

/* Hero visual card — "energy core" glass card */
.hero-visual { position: relative; }
.hv-card { background: linear-gradient(160deg, rgba(20,26,54,0.7), rgba(8,10,26,0.5)); border-radius: 28px; box-shadow: var(--shadow-lg); padding: 24px; position: relative; overflow: hidden; border: 1px solid var(--panel-border); backdrop-filter: blur(12px); }
.hv-illus { border-radius: var(--r-md); height: 224px; position: relative; overflow: hidden; background: radial-gradient(120% 120% at 50% -10%, rgba(34,229,255,0.18), transparent 55%), linear-gradient(180deg, #0a0e24 0%, #0c1230 60%, #140a2e 120%); }
.hv-card .meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 12px; }
.hv-card .meta .left b { display: block; font-size: 1.02rem; color: var(--ink); }
.hv-card .meta .left span { font-size: 0.8rem; color: var(--muted); }
.hv-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--grad-soft); color: #cfe9ff; font-weight: 700; font-size: 0.78rem; padding: 8px 13px; border-radius: 999px; border: 1px solid var(--panel-border); }
.hv-tag svg { width: 15px; height: 15px; }

.hv-photo-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px; gap: 8px; color: #cfe0e8; border: 2px dashed rgba(34,229,255,0.5); border-radius: var(--r-md); margin: 10px; }
.hv-photo-ph .warn { font-weight: 800; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--cyan); text-transform: uppercase; }
.hv-photo-ph .desc { font-size: 0.82rem; color: #aec7cb; max-width: 240px; line-height: 1.4; }
.hv-photo-ph svg { width: 34px; height: 34px; color: rgba(34,229,255,0.7); }

.float-card { position: absolute; background: rgba(12,16,38,0.82); border-radius: 14px; box-shadow: 0 14px 40px -16px rgba(0,0,0,0.9); padding: 13px 15px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--panel-border); backdrop-filter: blur(10px); }
.float-card .fic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex: none; background: rgba(34,229,255,0.10); border: 1px solid rgba(34,229,255,0.2); }
.float-card .fic svg { color: var(--cyan); }
.float-card b { font-size: 0.9rem; display: block; line-height: 1.2; color: var(--ink); }
.float-card span { font-size: 0.74rem; color: var(--muted); }
.float-a { top: -22px; right: -18px; animation: bob 6s ease-in-out infinite; }
.float-b { bottom: -26px; left: -22px; animation: bob 7s ease-in-out infinite .8s; }
.float-card svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Divider (use sparingly on dark theme; fill must be --bg/--bg-2) */
.divider { display: block; width: 100%; line-height: 0; }
.divider svg { width: 100%; height: auto; display: block; }

/* ===================== ARTICLE HERO (blog) ===================== */
.post-hero { position: relative; overflow: hidden; padding: clamp(34px, 5vw, 56px) 0 clamp(40px, 5vw, 60px); }
.post-hero .cat { display: inline-flex; align-items: center; gap: 8px; background: var(--panel); border: 1px solid var(--panel-border); border-radius: 999px; padding: 6px 14px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; backdrop-filter: blur(8px); }
.post-hero h1 { font-weight: 700; max-width: 880px; font-size: clamp(1.9rem, 1.2rem + 3vw, 3.1rem); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 0.4em; }
.post-hero h1 em { font-style: normal; }
.post-hero .crumbs { background: none; border-bottom: none; margin-bottom: 10px; }
.post-hero .crumbs ol { padding: 0; }
.byline { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 8px; }
.byline .who { display: flex; align-items: center; gap: 12px; }
.byline .av { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; color: #070815; background: var(--grad); }
.byline .av svg { width: 24px; height: 24px; }
.byline .who b { display: block; font-size: 0.95rem; color: var(--ink); }
.byline .who span { font-size: 0.82rem; color: var(--muted); }
.byline .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.byline .metaline { font-size: 0.84rem; color: var(--muted); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; }
.byline .metaline svg { width: 15px; height: 15px; color: var(--cyan); }

/* ===================== TRUST BAR (credential strip) ===================== */
.credband { background: rgba(8,10,26,0.7); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); color: var(--ink-2); padding: 24px 0; }
.credband .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; }
.credband .item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; }
.credband .item svg { width: 19px; height: 19px; color: var(--cyan); flex: none; }
.credband .sep { width: 1px; height: 22px; background: rgba(120,150,255,0.16); }

/* ===================== SERVICE CARDS ===================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.big3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.svc-card {
  background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.4));
  border: 1px solid var(--panel-border); border-radius: var(--r-md);
  padding: 26px 24px 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; backdrop-filter: blur(8px);
}
.svc-card::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .3s ease; }
.svc-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--glow); border-color: rgba(120,150,255,0.4); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(34,229,255,0.08); border: 1px solid rgba(34,229,255,0.18); color: var(--cyan); }
.svc-ic svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: 6px; color: var(--ink); }
.svc-card h3 a { color: inherit; }
.svc-card h3 a:hover { color: var(--cyan); }
.svc-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.svc-card .price { display: inline-flex; align-items: baseline; gap: 6px; font-size: 0.83rem; color: var(--cyan); font-weight: 700; }
.svc-card .price small { color: var(--muted); font-weight: 600; }
.svc-card .spacer { flex: 1; }
.svc-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.87rem; color: var(--ink); margin-top: 14px; }
.svc-more svg { width: 15px; height: 15px; transition: transform .18s ease; color: var(--cyan); }
.svc-card:hover .svc-more svg, .rest-card:hover .svc-more svg { transform: translateX(4px); }
.svc-more.alt { color: var(--cyan); }
.svc-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.svc-links .svc-more { margin-top: 14px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.svc-tags span { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); background: var(--panel); border: 1px solid var(--panel-border); border-radius: 999px; padding: 7px 14px; }

/* Compact secondary service cards */
.more-head { margin: 48px 0 18px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.rest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rest-card { background: linear-gradient(160deg, rgba(18,22,46,0.5), rgba(8,10,26,0.35)); border: 1px solid var(--panel-border); border-radius: var(--r-sm); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; display: flex; gap: 14px; align-items: flex-start; backdrop-filter: blur(8px); }
.rest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(120,150,255,0.4); }
.rest-ic { width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; background: rgba(34,229,255,0.08); border: 1px solid rgba(34,229,255,0.18); color: var(--cyan); }
.rest-ic svg { width: 20px; height: 20px; }
.rest-card h4 { margin: 0 0 3px; font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.rest-card h4 a { color: inherit; }
.rest-card h4 a:hover { color: var(--cyan); }
.rest-card p { margin: 0; font-size: 0.84rem; color: var(--muted); }

/* ===================== WHY / DIFFERENTIATORS ===================== */
.why { background: var(--bg-2); position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 14px; }
.why-card { background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.4)); border-radius: var(--r-md); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--panel-border); display: flex; gap: 20px; align-items: flex-start; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative; overflow: hidden; backdrop-filter: blur(8px); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--glow); border-color: rgba(120,150,255,0.4); }
.why-card .ring { position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--grad); opacity: 0.12; filter: blur(20px); }
.why-card > *:not(.ring) { position: relative; z-index: 1; }
.why-ic { width: 56px; height: 56px; border-radius: 15px; flex: none; display: grid; place-items: center; color: #070815; background: var(--grad); }
.why-ic svg { width: 28px; height: 28px; }
.why-ic.a, .why-ic.b, .why-ic.c, .why-ic.d { background: var(--grad); }
.why-ic.b { background: linear-gradient(150deg, #5b8cff, #a855f7); }
.why-ic.c { background: linear-gradient(150deg, #22e5ff, #5b8cff); }
.why-ic.d { background: linear-gradient(150deg, #a855f7, #22e5ff); }
.why-card h3 { margin-bottom: 7px; color: var(--ink); }
.why-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.area-note { margin-top: 22px; font-size: 0.96rem; color: var(--muted); }

/* Trust wedge (location pages) */
.wedge { background: var(--bg); }
.wedge-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: start; }
.wedge-list { display: grid; gap: 16px; margin-top: 22px; }
.wedge-list li { display: flex; gap: 16px; align-items: flex-start; background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); padding: 20px 22px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.wedge-list li:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); border-color: rgba(120,150,255,0.4); }
.wedge-list .wic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; color: #070815; background: var(--grad); }
.wedge-list .wic svg { width: 22px; height: 22px; }
.wedge-list b { display: block; font-size: 1.0rem; margin-bottom: 3px; color: var(--ink); }
.wedge-list p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.pull-quote { background: linear-gradient(155deg, rgba(16,20,48,0.92), rgba(34,14,60,0.92)); color: #fff; border: 1px solid rgba(34,229,255,0.22); border-radius: var(--r-lg); padding: 34px 32px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.pull-quote .stars { display: inline-flex; gap: 2px; margin-bottom: 14px; }
.pull-quote .stars svg { width: 16px; height: 16px; }
.pull-quote .q { font-size: 1.08rem; line-height: 1.55; color: #e7f1f4; margin-bottom: 20px; }
.pull-quote .q::before { content: "\201C"; font-weight: 800; color: var(--cyan); font-size: 1.6rem; vertical-align: -0.3em; margin-right: 3px; }
.pull-quote .by { display: flex; align-items: center; gap: 12px; }
.pull-quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 800; color: #070815; flex: none; }
.pull-quote .by b { display: block; font-size: 0.95rem; }
.pull-quote .by span { font-size: 0.8rem; color: #9fc0c5; }
.pull-quote .kicker { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.92rem; color: #c4d4dd; text-transform: none; letter-spacing: normal; }

/* ===================== STEPS (how a job runs) ===================== */
.how { background: var(--bg); }
.steps { display: grid; gap: 16px; margin-top: 36px; counter-reset: step; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: flex-start; background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); padding: 22px 24px; transition: transform .18s ease, box-shadow .18s ease; }
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.step .num { counter-increment: step; width: 48px; height: 48px; border-radius: 13px; flex: none; background: var(--grad); color: #070815; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: 5px; font-size: 1.06rem; color: var(--ink); }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Compact permit steps */
.permits { background: var(--bg-2); }
.permit-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 50px; align-items: start; }
.permit-steps { display: grid; gap: 14px; counter-reset: step; margin: 6px 0 0; }
.permit-steps li { display: flex; gap: 16px; align-items: flex-start; background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.permit-steps li::before { counter-increment: step; content: counter(step); flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); color: #070815; font-weight: 800; font-size: 0.95rem; }
.permit-steps b { display: block; font-size: 0.98rem; margin-bottom: 2px; color: var(--ink); }
.permit-steps span { font-size: 0.9rem; color: var(--muted); }
.permit-callout { background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-left: 4px solid var(--cyan); border-radius: var(--r-md); padding: 22px 24px; box-shadow: var(--shadow-sm); margin-top: 18px; }
.permit-callout h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.permit-callout p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ===================== INCLUDED CHECKLIST ===================== */
.inc-grid { display: grid; gap: 14px; margin-top: 8px; }
.inc-item { display: flex; gap: 16px; align-items: flex-start; background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.inc-item:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }
.inc-item .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(34,229,255,0.08); border: 1px solid rgba(34,229,255,0.18); color: var(--cyan); }
.inc-item .ic svg { width: 22px; height: 22px; }
.inc-item b { font-size: 1.02rem; color: var(--ink); }
.inc-item p { margin: 4px 0 0; color: var(--muted); font-size: 0.95rem; }

/* ===================== COMPARE ===================== */
.auto { background: var(--bg-2); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.cmp-card { background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.4)); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--panel-border); }
.cmp-card.win { border: 1.5px solid rgba(34,229,255,0.4); box-shadow: var(--glow); }
.cmp-card .tophead { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cmp-card .badge { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.cmp-card.lose .badge { background: var(--panel); color: var(--muted); }
.cmp-card.win .badge { background: var(--grad-soft); color: #cfe9ff; }
.cmp-card h3 { margin: 0; color: var(--ink); }
.cmp-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-2); padding: 7px 0; }
.cmp-list svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.cmp-card.lose svg { color: #c77; }
.cmp-card.win svg { color: var(--cyan); }

/* ===================== STATS BAND ===================== */
.stats { background: var(--bg-2); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 85% 0%, rgba(34,229,255,0.12), transparent 60%), radial-gradient(540px 300px at 5% 120%, rgba(168,85,247,0.12), transparent 60%); }
.stats .wrap { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; text-align: center; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--panel-border); background: rgba(120,150,255,0.12); }
.stat { background: linear-gradient(160deg, rgba(16,20,44,0.85), rgba(8,10,26,0.85)); padding: 34px 26px; }
.stat .n, .stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 1.4rem + 2.2vw, 2.8rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; }
.stat .n em { font-style: normal; }
.stat .l, .stat .label { font-size: 0.86rem; color: var(--muted); margin-top: 10px; }

/* ===================== STORM / GENERATOR FEATURE ===================== */
.storm { background: var(--bg); }
.storm-card { border-radius: var(--r-lg); overflow: hidden; position: relative; background: linear-gradient(135deg, rgba(14,18,44,0.9), rgba(30,12,56,0.9)); border: 1px solid rgba(34,229,255,0.22); color: #fff; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; }
.storm-left { padding: clamp(34px, 4vw, 56px); position: relative; z-index: 2; }
.storm-left .eyebrow { color: var(--cyan); }
.storm-left h2 { color: #fff; }
.storm-left p { color: #c3cbef; max-width: 460px; }
.storm-stat { display: flex; gap: 28px; margin: 26px 0 30px; flex-wrap: wrap; }
.storm-stat .b, .storm-stat .big { font-family: var(--display); font-weight: 700; font-size: 1.9rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; letter-spacing: -0.02em; }
.storm-stat .t, .storm-stat .cap { font-size: 0.82rem; color: var(--muted); margin-top: 4px; max-width: 200px; }
.storm-list { display: grid; gap: 10px; margin: 0 0 30px; }
.storm-list li { display: flex; align-items: center; gap: 11px; font-size: 0.96rem; color: #dde2ff; }
.storm-list svg { width: 20px; height: 20px; color: var(--cyan); flex: none; }
.storm-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.storm-right { position: relative; min-height: 320px; overflow: hidden; }
.storm-right .gen { position: absolute; inset: 0; display: grid; place-items: center; }
.storm-right .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(34,229,255,0.25); }
.ring.r1 { width: 120px; height: 120px; } .ring.r2 { width: 220px; height: 220px; } .ring.r3 { width: 330px; height: 330px; opacity: 0.6; }
.gen-badge { position: relative; z-index: 2; width: 132px; height: 132px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #1b3a6a, #0a1a35); border: 1px solid rgba(34,229,255,0.2); display: grid; place-items: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(34,229,255,0.18); }
.gen-badge svg { width: 58px; height: 58px; color: var(--cyan); filter: drop-shadow(0 0 10px rgba(34,229,255,0.5)); }

/* ===================== SERVICE AREA ===================== */
.area { background: var(--bg); }
.area-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.area-list li { display: flex; align-items: center; gap: 11px; background: var(--panel); border: 1px solid var(--panel-border); border-radius: 12px; padding: 13px 16px; font-weight: 500; font-size: 0.94rem; transition: all .18s ease; }
.area-list li:hover { border-color: rgba(34,229,255,0.45); background: var(--grad-soft); transform: translateY(-3px); box-shadow: 0 0 22px -6px rgba(34,229,255,0.4); }
.area-list li a { flex: 1; color: var(--ink); }
.area-list li a:hover { color: var(--cyan); }
.area-list li .pin { width: 26px; height: 26px; border-radius: 8px; background: rgba(34,229,255,0.10); border: 1px solid rgba(34,229,255,0.2); display: grid; place-items: center; flex: none; }
.area-list li .pin svg { width: 15px; height: 15px; color: var(--cyan); }
.area-list li.flag { background: var(--grad-soft); border-color: rgba(34,229,255,0.4); }
.area-list li.flag .pin { background: var(--grad); border: none; }
.area-list li.flag .pin svg { color: #070815; }
.area-list li .star { margin-left: auto; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.08em; color: var(--cyan); text-transform: uppercase; }
.surround { margin-top: 18px; font-size: 0.9rem; color: var(--muted); }
.surround a { color: var(--cyan); font-weight: 700; }

/* Cities pill row (home-tech .cities/.city) */
.cities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.city { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 12px; border: 1px solid var(--panel-border); background: var(--panel); font-weight: 500; font-size: 0.92rem; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; color: var(--ink); }
.city svg { width: 16px; height: 16px; color: var(--cyan); }
.city:hover { transform: translateY(-3px); border-color: rgba(34,229,255,0.45); box-shadow: 0 0 22px -6px rgba(34,229,255,0.4); }
.city.flagship { background: var(--grad-soft); border-color: rgba(34,229,255,0.4); }

.map-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(160deg, #0c1230 0%, #10163a 60%, #160a2e 130%); position: relative; aspect-ratio: 1 / 0.92; border: 1px solid var(--panel-border); }
.map-card svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-legend { position: absolute; left: 18px; bottom: 18px; background: rgba(12,16,38,0.9); border: 1px solid var(--panel-border); border-radius: 11px; padding: 11px 14px; font-size: 0.78rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 9px; backdrop-filter: blur(6px); }
.map-legend .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(34,229,255,0.25); }
.wpi-note { margin-top: 18px; display: flex; align-items: flex-start; gap: 11px; background: var(--panel); border: 1px solid var(--panel-border); border-radius: 12px; padding: 14px 16px; font-size: 0.88rem; color: var(--ink-2); }
.wpi-note svg { width: 20px; height: 20px; color: var(--cyan); flex: none; margin-top: 1px; }
.wpi-note b { color: var(--ink); }

/* ===================== COST ===================== */
.cost { background: var(--bg-2); }
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.cost-card { background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--shadow-sm); border-top: 3px solid transparent; background-clip: padding-box; position: relative; }
.cost-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); }
.cost-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(34,229,255,0.08); border: 1px solid rgba(34,229,255,0.18); color: var(--cyan); margin-bottom: 14px; }
.cost-card .ic svg { width: 24px; height: 24px; }
.cost-card h3 { margin-bottom: 8px; font-size: 1.05rem; color: var(--ink); }
.cost-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.cost-foot { margin-top: 28px; font-size: 0.96rem; color: var(--ink-2); font-weight: 500; max-width: 760px; }

.cost-callout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--panel-border); }
.cost-fig { background: linear-gradient(155deg, rgba(16,20,48,0.95), rgba(34,14,60,0.95)); color: #fff; padding: clamp(30px,4vw,46px); display: flex; flex-direction: column; justify-content: center; }
.cost-fig .lbl { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.cost-fig .amt { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); letter-spacing: -0.03em; line-height: 1; }
.cost-fig .amt span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cost-fig .note { font-size: 0.86rem; color: var(--muted); margin-top: 14px; }
.cost-body { background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.4)); padding: clamp(28px,4vw,42px); }
.cost-body h3 { margin-bottom: 12px; color: var(--ink); }
.cost-body p { color: var(--ink-2); font-size: 1rem; }

.table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--panel-border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); background: rgba(8,10,26,0.5); }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.cost-table caption { text-align: left; padding: 16px 18px 4px; font-weight: 800; color: var(--ink); }
.cost-table th { background: rgba(8,10,26,0.9); color: var(--ink); text-align: left; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 18px; }
.cost-table td { padding: 14px 18px; border-top: 1px solid var(--line-soft); color: var(--ink-2); }
.cost-table tbody tr:nth-child(even) { background: rgba(120,150,255,0.04); }
.cost-table td.num { font-weight: 800; color: var(--cyan); white-space: nowrap; }
.cost-table tfoot td { background: rgba(120,150,255,0.06); font-weight: 700; color: var(--ink); }

/* ===================== REVIEW (single, honest) ===================== */
.reviews { background: var(--bg-2); }
.rev-grid { display: grid; grid-template-columns: 1fr; max-width: 760px; margin: 14px auto 0; }
.rev-card { background: linear-gradient(160deg, rgba(18,22,46,0.62), rgba(8,10,26,0.42)); border-radius: var(--r-md); padding: 32px 30px; box-shadow: var(--shadow-md); border: 1px solid var(--panel-border); max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; backdrop-filter: blur(8px); }
.rev-card .stars { margin-bottom: 14px; }
.rev-card .stars svg { width: 16px; height: 16px; }
.rev-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.rev-card .quote { font-size: 1.06rem; color: #dde2ff; line-height: 1.6; margin-bottom: 22px; flex: 1; }
.rev-card .quote::before { content: "\201C"; font-weight: 800; color: var(--cyan); font-size: 1.5rem; vertical-align: -0.25em; margin-right: 2px; }
.rev-foot { display: flex; align-items: center; gap: 13px; }
.rev-av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #070815; font-weight: 800; font-size: 1rem; flex: none; background: var(--grad); }
.rev-foot b { display: block; font-size: 0.95rem; color: var(--ink); }
.rev-foot span { font-size: 0.82rem; color: var(--muted); }
.rev-verified { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 0.73rem; font-weight: 800; color: var(--cyan); }
.rev-verified svg { width: 14px; height: 14px; }
.rev-link { text-align: center; margin-top: 22px; }
.rev-link a { color: var(--cyan); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.rev-link a svg { width: 16px; height: 16px; }

/* Multi-review testimonial grid (home-tech) */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tst-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tst { padding: 28px 26px; border-radius: var(--r-md); border: 1px solid var(--panel-border); background: linear-gradient(160deg, rgba(18,22,46,0.62), rgba(8,10,26,0.42)); backdrop-filter: blur(8px); position: relative; transition: transform .25s ease, border-color .25s ease; display: flex; flex-direction: column; }
.tst:hover { transform: translateY(-4px); border-color: rgba(120,150,255,0.4); }
.tst .stars { margin-bottom: 14px; }
.tst .recommended { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan); }
.tst .recommended svg { width: 16px; height: 16px; }
.tst blockquote { font-size: 0.96rem; color: #dde2ff; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.tst .who { display: flex; align-items: center; gap: 13px; }
.tst .who .av { width: 44px; height: 44px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; color: #070815; background: var(--grad); font-size: 0.95rem; }
.tst .who .n { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.tst .who .m { color: var(--muted); font-size: 0.78rem; }

/* Aggregate rating summary strip/badge */
.rating-summary { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding: 22px 26px; border-radius: var(--r-md); border: 1px solid var(--panel-border); background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.42)); backdrop-filter: blur(8px); }
.rating-summary.center { justify-content: center; text-align: center; }
.rating-summary .rs-score { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: none; }
.rating-summary .rs-num { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 1.6rem + 1.8vw, 3rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; }
.rating-summary .rs-score .stars svg { width: 17px; height: 17px; }
.rating-summary .rs-meta { display: flex; flex-direction: column; gap: 3px; }
.rating-summary .rs-meta b { font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.rating-summary .rs-meta span { font-size: 0.86rem; color: var(--muted); }
.rating-summary .rs-link { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; color: var(--cyan); }
.rating-summary .rs-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.rating-summary .rs-link:hover svg { transform: translateX(4px); }
.rating-summary.center .rs-link { margin-left: 0; }

/* ===================== NEEDS-REAL-DATA PLACEHOLDER ===================== */
.needs-data { border: 2px dashed rgba(34,229,255,0.45); background: linear-gradient(160deg, rgba(34,229,255,0.05), rgba(168,85,247,0.05)); border-radius: var(--r-md); padding: 16px 18px; margin: 18px 0; color: #cfe0ff; }
.needs-data .nd-head { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.needs-data .nd-head svg { width: 17px; height: 17px; flex: none; }
.needs-data p { margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--muted); }
.needs-data strong { color: var(--ink); }
.needs-data .nd-photos { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 14px; }
.needs-data .nd-photo { aspect-ratio: 4/3; border: 1.5px dashed rgba(34,229,255,0.4); border-radius: 10px; display: grid; place-items: center; text-align: center; font-size: 0.78rem; font-weight: 600; color: #8fb6bb; padding: 8px; background: rgba(255,255,255,0.02); }

/* ===================== FAQ ===================== */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 30px auto 0; display: grid; gap: 12px; }
.faq-item { background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 22px; height: 22px; flex: none; transition: transform .2s ease; color: var(--cyan); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .body { padding: 0 24px 22px; color: var(--muted); font-size: 0.96rem; }
.faq-item .body a { color: var(--cyan); font-weight: 600; }
.faq-item .body p { margin: 0 0 0.7em; }
.faq-item .body p:last-child { margin-bottom: 0; }

/* ===================== CTA BAND ===================== */
.cta-band { background: var(--bg); position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; text-align: center; border-radius: 28px; padding: clamp(44px,7vw,80px) clamp(24px,5vw,60px); border: 1px solid rgba(34,229,255,0.25); background: linear-gradient(135deg, rgba(16,20,48,0.92), rgba(34,14,60,0.92)); overflow: hidden; }
.cta-band .wrap::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(91,140,255,0.4), transparent 65%); top: -300px; left: 50%; transform: translateX(-50%); filter: blur(40px); pointer-events: none; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #c8cfef; max-width: 580px; margin: 0 auto 30px; font-size: 1.08rem; position: relative; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }
.cta-band .reassure { margin-top: 24px; font-size: 0.85rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; position: relative; }
.cta-band .reassure span { display: inline-flex; align-items: center; gap: 7px; }
.cta-band .reassure svg { width: 16px; height: 16px; color: var(--cyan); }

.cta-panel { background: linear-gradient(135deg, rgba(16,20,48,0.92), rgba(34,14,60,0.92)); border: 1px solid rgba(34,229,255,0.25); color: #fff; border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-lg); margin: 40px 0; position: relative; overflow: hidden; }
.cta-panel h2 { color: #fff; margin: 0 0 0.4em; }
.cta-panel p { color: #c4d4dd; max-width: 540px; }
.cta-panel .cta-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 22px; }
.cta-panel .reassure { margin-top: 22px; font-size: 0.85rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 22px; }
.cta-panel .reassure span { display: inline-flex; align-items: center; gap: 7px; }
.cta-panel .reassure svg { width: 16px; height: 16px; color: var(--cyan); }

/* ===================== BLOG ARTICLE TYPOGRAPHY ===================== */
.post-section { padding: clamp(44px, 6vw, 72px) 0; }
.post-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 54px; align-items: start; }
.article { max-width: 720px; }
.article h2 { margin-top: 44px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 28px; }
.article p { color: var(--ink-2); }
.article p, .article li { font-size: 1.04rem; }
.article a.inline { color: var(--cyan); font-weight: 600; border-bottom: 1px solid rgba(34,229,255,0.3); }
.article a.inline:hover { border-color: var(--cyan); }
.article strong { font-weight: 700; color: var(--ink); }
.article hr { border: none; border-top: 1px solid var(--panel-border); margin: 40px 0; }

.prose p { color: var(--ink-2); font-size: 1.06rem; }
.prose p.lead { font-size: 1.18rem; color: var(--ink); font-weight: 500; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a.tlink, .article a.tlink { color: var(--cyan); font-weight: 700; border-bottom: 1.5px solid rgba(34,229,255,0.3); }
.prose a.tlink:hover, .article a.tlink:hover { border-color: var(--cyan); }
.pullquote { margin: 22px 0; padding: 18px 24px; border-left: 4px solid var(--cyan); background: rgba(34,229,255,0.06); border-radius: 0 12px 12px 0; font-size: 1.1rem; font-weight: 500; color: var(--ink-2); font-style: italic; }

.answer-box { background: linear-gradient(135deg, rgba(16,20,48,0.95), rgba(34,14,60,0.95)); border: 1px solid rgba(34,229,255,0.25); color: #fff; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; margin-bottom: 36px; }
.answer-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(560px 300px at 90% -10%, rgba(34,229,255,0.18), transparent 60%); }
.answer-box > * { position: relative; }
.answer-box .lbl { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.answer-box .lbl svg { width: 16px; height: 16px; }
.answer-box .big { font-family: var(--display); font-size: clamp(1.5rem, 1rem + 2vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 10px; }
.answer-box .big em { font-style: normal; }
.answer-box p { color: #c4d4dd; font-size: 0.98rem; margin: 0; }

.body-list { display: grid; gap: 14px; margin: 0 0 1.2em; }
.body-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-2); }
.body-list li .bi { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; margin-top: 1px; background: rgba(34,229,255,0.10); border: 1px solid rgba(34,229,255,0.2); color: var(--cyan); }
.body-list li .bi svg { width: 15px; height: 15px; }

.factors { display: grid; gap: 16px; margin: 26px 0 8px; }
.factor { background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.factor:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(120,150,255,0.4); }
.factor .num { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #070815; background: var(--grad); }
.factor h3 { margin: 2px 0 5px; font-size: 1.05rem; color: var(--ink); }
.factor p { margin: 0; font-size: 0.97rem; color: var(--muted); }

.pratfall { background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-left: 4px solid var(--cyan); border-radius: var(--r-md); padding: 24px 26px; margin: 26px 0; }
.pratfall .ph { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.pratfall .ph svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }
.pratfall p { margin: 0 0 0.7em; color: var(--ink-2); font-size: 0.99rem; }
.pratfall p:last-child { margin-bottom: 0; }
.pratfall--accent { border-left-color: var(--violet); }

.risk-list { display: grid; gap: 12px; margin: 18px 0 0; }
.risk-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-2); font-size: 0.99rem; }
.risk-list li .ri { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; margin-top: 1px; background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.25); color: #c89bff; }
.risk-list li .ri svg { width: 15px; height: 15px; }

.incl-list { display: grid; gap: 12px; margin: 18px 0 0; }
.incl-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-2); font-size: 0.99rem; }
.incl-list li .ci { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; margin-top: 1px; background: rgba(34,229,255,0.10); border: 1px solid rgba(34,229,255,0.2); color: var(--cyan); }
.incl-list li .ci svg { width: 15px; height: 15px; }

/* ===================== SIDEBAR (blog) ===================== */
.sidebar { display: grid; gap: 20px; position: sticky; top: 96px; }
.side-card { background: linear-gradient(160deg, rgba(18,22,46,0.55), rgba(8,10,26,0.4)); border: 1px solid var(--panel-border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 24px; }
.side-card.quote-card { background: linear-gradient(135deg, rgba(16,20,48,0.92), rgba(34,14,60,0.92)); border: 1px solid rgba(34,229,255,0.25); color: #fff; box-shadow: var(--shadow-md); }
.side-card.quote-card h4 { color: #fff; }
.side-card.quote-card p { color: #c4d4dd; }
.side-card h4 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.side-card p { font-size: 0.9rem; color: var(--muted); margin: 0 0 16px; }
.side-card .btn { width: 100%; }
.side-card .btn + .btn { margin-top: 10px; }
.price-chip { display: inline-flex; flex-direction: column; gap: 2px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; }
.price-chip .pc-l { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8fb6bb; font-weight: 800; }
.price-chip .pc-n { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--cyan); letter-spacing: -0.02em; }

.toc h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc ul { display: grid; gap: 2px; }
.toc a { display: block; font-size: 0.9rem; font-weight: 500; color: var(--ink-2); padding: 8px 12px; border-radius: 8px; border-left: 2px solid transparent; }
.toc a:hover { background: rgba(120,150,255,0.06); color: var(--cyan); border-left-color: var(--cyan); }

.links-card ul { display: grid; gap: 10px; }
.links-card a { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: var(--ink-2); }
.links-card a:hover { color: var(--cyan); }
.links-card a svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }

.lic-card { display: flex; gap: 12px; align-items: flex-start; }
.lic-card svg.shield { width: 30px; height: 30px; color: var(--cyan); flex: none; }
.lic-card b { display: block; font-size: 0.9rem; color: var(--ink); }
.lic-card span { font-size: 0.82rem; color: var(--muted); }

/* ===================== FORMS (quote form, contact) ===================== */
.quote-form { background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.45)); border: 1px solid var(--panel-border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(24px, 3.5vw, 38px); backdrop-filter: blur(10px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { display: block; font-weight: 700; font-size: 0.86rem; margin-bottom: 6px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--panel-border); border-radius: var(--r-sm); font-family: var(--font); font-size: 1rem; color: var(--ink); background: rgba(8,10,26,0.6); transition: border-color .15s ease, box-shadow .15s ease; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted-2); }
.form-field select option { background: #0c1024; color: var(--ink); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,229,255,0.18); }
.form-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.form-fine { font-size: 0.82rem; color: var(--muted); margin: 14px 0 0; }

/* Housecall Pro lead-capture embed. Housecall's script.js auto-sizes the
   iframe height; min-height is a floor for before/if the script loads. */
.hcp-lead-embed { scroll-margin-top: 100px; }
.hcp-lead-iframe { display: block; width: 100%; min-height: 720px; border: 0; }

/* ===================== CALCULATOR WIDGET ===================== */
.calc-card { background: linear-gradient(160deg, rgba(18,22,46,0.6), rgba(8,10,26,0.45)); border: 1px solid var(--panel-border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(24px, 3.5vw, 38px); max-width: 760px; margin: 0 auto; backdrop-filter: blur(10px); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.calc-field label { display: block; font-weight: 700; font-size: 0.86rem; margin-bottom: 6px; color: var(--ink); }
.calc-field input, .calc-field select { width: 100%; padding: 13px 15px; border: 1px solid var(--panel-border); border-radius: var(--r-sm); font-family: var(--font); font-size: 1rem; color: var(--ink); background: rgba(8,10,26,0.6); transition: border-color .15s ease, box-shadow .15s ease; }
.calc-field select option { background: #0c1024; color: var(--ink); }
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,229,255,0.18); }
.calc-result { margin-top: 24px; border-radius: var(--r-md); padding: 22px 26px; color: #fff; background: linear-gradient(135deg, rgba(16,20,48,0.95), rgba(34,14,60,0.95)); border: 1px solid rgba(34,229,255,0.25); display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.calc-result .lbl { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #8fb6bb; }
.calc-result .amt { font-family: var(--display); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; }
.calc-note { margin-top: 14px; font-size: 0.84rem; color: var(--muted); }

/* ===================== FOOTER ===================== */
.site-footer { background: rgba(4,5,12,0.85); border-top: 1px solid rgba(120,150,255,0.1); color: var(--muted); padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
.site-footer .brand .name { color: var(--ink); }
.site-footer .brand .name span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-footer .brand .tag { color: var(--muted-2); }
.foot-about { margin-top: 18px; font-size: 0.92rem; max-width: 320px; line-height: 1.6; }
.foot-lic { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; background: rgba(34,229,255,0.06); border: 1px solid rgba(34,229,255,0.3); border-radius: 12px; padding: 12px 16px; color: #cfe0ff; }
.foot-lic svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }
.foot-lic b { display: block; color: var(--ink); font-size: 0.86rem; }
.foot-lic span { font-size: 0.78rem; }
.foot-col h4 { font-family: var(--display); color: #cfe0ff; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 4px 0 18px; }
.foot-col ul li { margin-bottom: 11px; }
.foot-col a { font-size: 0.92rem; transition: color .15s ease; }
.foot-col a:hover { color: var(--cyan); }
.foot-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 15px; font-size: 0.92rem; }
.foot-contact svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 2px; }
.foot-contact a:hover { color: var(--ink); }
.foot-areas { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.86rem; line-height: 1.7; color: var(--muted-2); }
.foot-areas a { color: var(--cyan); font-weight: 600; }
.foot-areas a:hover { color: var(--ink); }
.foot-bottom { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.82rem; color: var(--muted-2); }
.foot-bottom a:hover { color: var(--ink); }
.site-footer .needs-data { margin: 12px 0 0; padding: 10px 12px; }
.site-footer .needs-data p { font-size: 0.82rem; }

/* ===================== STICKY MOBILE CALL BAR ===================== */
.mobile-call { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(5,6,15,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--panel-border); box-shadow: 0 -6px 22px rgba(0,0,0,0.5); gap: 10px; }
.mobile-call .btn { flex: 1; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1120px) {
  .nav-links, .nav-phone { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero .sub, .hero-fine { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust, .credline { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .area-grid, .wedge-grid, .permit-grid { grid-template-columns: 1fr; gap: 36px; }
  .storm-card { grid-template-columns: 1fr; }
  .storm-right { min-height: 240px; order: -1; }
  .cost-callout { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .svc-grid, .big3-grid, .rest-grid, .rev-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
}
@media (max-width: 760px) {
  .mobile-call { display: flex; }
  body { padding-bottom: 72px; }
  .svc-grid, .svc-grid--2, .big3-grid, .rest-grid, .rev-grid, .tst-grid, .tst-grid--2, .why-grid, .cost-grid, .compare { grid-template-columns: 1fr; }
  .rating-summary { justify-content: center; text-align: center; }
  .rating-summary .rs-link { margin-left: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .area-list { grid-template-columns: 1fr; }
  .seg-head { flex-direction: column; align-items: flex-start; }
  .form-grid, .calc-grid { grid-template-columns: 1fr; }
  .float-a { top: -14px; right: 4px; transform: scale(0.9); }
  .float-b { bottom: -16px; left: 0; transform: scale(0.9); }
  .needs-data .nd-photos { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .hero-cta .btn { flex: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
