/* ================================================================
   TRUSHINE PRESSURE WASHING — MASTER STYLESHEET
   Design system: white-first, bold sans, azure + platinum + black
   Water / pressure-wash themed · Modular components
   Every section clearly labeled. Single source of style truth.
================================================================ */

/* ================================================================
   00 · DESIGN TOKENS  (edit here to restyle the entire site)
================================================================ */
:root {
  /* Brand — Pastel Azure + White + Black + Platinum */
  --azure-50:  #F1F8FD;
  --azure-100: #E1F0FB;
  --azure-200: #BFDFF5;
  --azure-300: #8FC8EB;   /* primary pastel azure */
  --azure-400: #5EAEDB;
  --azure-500: #3A90C6;
  --azure-600: #1E4E7E;   /* deep azure */
  --azure-700: #163A5F;
  --azure-800: #0F2640;
  --azure-900: #0A1A2E;

  --ink:       #0A0F1A;   /* midnight near-black */
  --ink-80:    #1B2230;
  --ink-60:    #39424F;
  --ink-40:    #6A7380;
  --ink-20:    #B4BAC3;

  --white:     #FFFFFF;
  --cream:     #F7FAFD;
  --mist:      #EEF4FA;
  --edge:      #E4EBF3;

  --plat-1:    #FBFCFD;
  --plat-2:    #E5E4E2;
  --plat-3:    #BFC1C2;
  --plat-4:    #8A8E93;

  --accent:    #8FC8EB;   /* alias */
  --accent-dark: #1E4E7E;

  /* Gradients */
  --g-water:     linear-gradient(135deg, #8FC8EB 0%, #3A90C6 55%, #1E4E7E 100%);
  --g-cta:       linear-gradient(135deg, #8FC8EB 0%, #5EAEDB 100%);
  --g-cta-hover: linear-gradient(135deg, #A6D3EF 0%, #6DB8DF 100%);
  --g-deep:      linear-gradient(180deg, #0F2640 0%, #0A0F1A 100%);
  --g-hero-dark: linear-gradient(180deg, rgba(10,15,26,.15) 0%, rgba(10,15,26,.55) 55%, rgba(10,15,26,.88) 100%);
  --g-card-dark: linear-gradient(180deg, rgba(10,15,26,0) 35%, rgba(10,15,26,.85) 100%);
  --g-platinum:  linear-gradient(135deg, #FBFCFD 0%, #E5E4E2 45%, #BFC1C2 100%);
  --g-mist:      linear-gradient(180deg, #FFFFFF 0%, #F1F8FD 100%);

  /* Typography */
  --font-display: "Outfit", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-eyebrow: .78rem;
  --fs-body:    1.05rem;
  --fs-lede:    1.22rem;
  --fs-h3:      clamp(1.35rem, 1.5vw + 1rem, 1.75rem);
  --fs-h2:      clamp(2rem, 2.8vw + 1rem, 3.4rem);
  --fs-h1:      clamp(2.6rem, 4.4vw + 1rem, 5.2rem);

  /* Rhythm */
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  22px;
  --radius-xl:  30px;
  --shadow-sm:  0 2px 10px rgba(15, 38, 64, .06);
  --shadow:     0 14px 40px -18px rgba(15, 38, 64, .22);
  --shadow-lg:  0 40px 80px -30px rgba(15, 38, 64, .35);
  --shadow-xl:  0 60px 120px -40px rgba(10, 15, 26, .45);
  --ring:       0 0 0 1px rgba(30, 78, 126, .10);

  --ease:   cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);

  --wrap: 1280px;
  --pad-y: clamp(72px, 9vw, 140px);
}

/* ================================================================
   01 · RESET / BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; color: var(--ink); }
h1 { font-size: var(--fs-h1); font-weight: 900; letter-spacing: -.035em; }
h2 { font-size: var(--fs-h2); font-weight: 900; letter-spacing: -.03em; }
h3 { font-size: var(--fs-h3); font-weight: 800; }
p  { margin: 0 0 1em 0; }
::selection { background: var(--azure-300); color: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding: var(--pad-y) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }
.section--dark { background: var(--g-deep); color: var(--white); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: var(--white); }
.section--cream { background: var(--cream); }
.section--mist  { background: var(--g-mist); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--azure-600);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--azure-100);
  margin-bottom: 18px;
}
.section--dark .eyebrow { background: rgba(143, 200, 235, .14); color: var(--azure-200); }

.lede {
  font-size: var(--fs-lede);
  color: var(--ink-60);
  max-width: 62ch;
  line-height: 1.55;
}
.section--dark .lede { color: rgba(255,255,255,.78); }

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.accent { color: var(--azure-500); }
.section--dark .accent { color: var(--azure-300); }

/* ================================================================
   02 · BUTTONS  (glassy, pill-shaped, reflective)
================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.005em;
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; }
.btn--primary {
  background: var(--g-cta);
  color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(58, 144, 198, .6), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -18px rgba(58,144,198,.75), inset 0 1px 0 rgba(255,255,255,.75); background: var(--g-cta-hover); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(10,15,26,.15);
}
.btn--ghost:hover { border-color: var(--azure-500); color: var(--azure-600); transform: translateY(-2px); }
.section--dark .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--azure-300); color: var(--azure-200); }
.btn--dark { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px -12px rgba(10,15,26,.55); }
.btn--dark:hover { background: var(--ink-80); transform: translateY(-2px); }
.btn--lg { padding: 20px 34px; font-size: 1.05rem; }

.ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ================================================================
   03 · TOP UTILITY BAR
================================================================ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  padding: 10px 0;
  position: relative;
  z-index: 40;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.topbar .bar-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .bar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.92); transition: color .2s; }
.topbar a:hover { color: var(--azure-300); }
.topbar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--azure-300);
  box-shadow: 0 0 0 4px rgba(143,200,235,.22);
  animation: pulse 2.2s infinite ease-out;
  display: inline-block;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(143,200,235,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(143,200,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,200,235,0); }
}
@media (max-width: 820px) { .topbar { display: none; } }

/* ================================================================
   04 · NAV  (sticky, white, backdrop blur, mega dropdown)
================================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--edge);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 14px 40px -22px rgba(15,38,64,.18); background: rgba(255,255,255,.96); }
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 18px; padding-bottom: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--g-water);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(58,144,198,.55), inset 0 1px 0 rgba(255,255,255,.55);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-logo {
  height: 86px;
  width: auto;
  object-fit: contain;
  display: block;
}
.foot .brand-logo {
  height: 72px;
}
@media (max-width: 600px) {
  .brand-logo { height: 62px; }
  .foot .brand-logo { height: 56px; }
}
.brand span small {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > a, .nav-links > .has-drop > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-80);
  border-radius: 10px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links > a:hover, .nav-links > .has-drop:hover > a { color: var(--azure-600); background: var(--azure-50); }

/* Dropdown container */
.has-drop { position: relative; }
.has-drop > a::after {
  content: ""; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-left: 4px; margin-top: -3px;
  transition: transform .2s;
}
.has-drop:hover > a::after, .has-drop:focus-within > a::after { transform: rotate(225deg); margin-top: 1px; }

.nav-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 560px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 60;
}
.has-drop:hover .nav-drop, .has-drop:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-drop::before {
  content: ""; position: absolute; top: -7px; left: 50%;
  width: 14px; height: 14px; background: #fff;
  border-top: 1px solid var(--edge); border-left: 1px solid var(--edge);
  transform: translateX(-50%) rotate(45deg);
}
.nav-drop a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink-80);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: .95rem;
  transition: background .2s, color .2s, transform .2s;
}
.nav-drop a:hover { background: var(--azure-50); color: var(--azure-700); transform: translateX(4px); }
.nav-drop a .ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--g-water); color: #fff; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
.nav-drop a .ico svg { width: 18px; height: 18px; }
.nav-drop a span b { display: block; color: var(--ink); }
.nav-drop a span small { display: block; font-size: .78rem; font-weight: 500; color: var(--ink-40); margin-top: 2px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}
.nav-phone:hover { color: var(--azure-600); }
.nav-phone svg { stroke: var(--azure-500); }

.hamburger {
  display: none;
  background: transparent; border: 0; padding: 8px;
  color: var(--ink);
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .nav-phone { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,15,26,.7);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #fff;
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { align-self: flex-end; background: transparent; border: 0; font-size: 28px; color: var(--ink); }
.drawer nav a {
  display: block; padding: 14px 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--edge);
}
.drawer nav a:hover { color: var(--azure-600); }

/* ================================================================
   05 · HOME HERO  (big photo bg, bold left headline, 2 ctas)
================================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--g-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image:
    linear-gradient(120deg, rgba(10,15,26,.75) 0%, rgba(10,15,26,.35) 55%, rgba(10,15,26,.55) 100%),
    linear-gradient(135deg, #163A5F 0%, #0A0F1A 100%);
  transform: scale(1.05);
  animation: slowZoom 22s ease-in-out infinite alternate;
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(143,200,235,.25) 0%, transparent 55%);
  mix-blend-mode: screen;
}
@keyframes slowZoom {
  from { transform: scale(1.05) translate(0,0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-water {
  position: absolute; inset: 0; z-index: -1;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.56  0 0 0 0 0.78  0 0 0 0 0.92  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: cover;
  opacity: .6;
  mix-blend-mode: screen;
}

.hero .wrap {
  position: relative; z-index: 2;
  padding-top: clamp(60px, 8vw, 140px);
  padding-bottom: clamp(60px, 8vw, 140px);
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px;
  width: 100%;
}
.hero-copy { max-width: 780px; }
.hero .eyebrow { background: rgba(143,200,235,.15); color: var(--azure-200); }

/* Hero resume banner (saved estimate pickup) */
.hero-resume{
  display:flex; align-items:center; gap:18px;
  padding: 14px 18px 14px 16px;
  margin-bottom: 22px;
  background: linear-gradient(95deg, rgba(94,174,219,.18) 0%, rgba(30,78,126,.35) 100%);
  border: 1px solid rgba(143,200,235,.35);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(10,15,26,.25), inset 0 1px 0 rgba(255,255,255,.08);
  color: #fff;
  max-width: 640px;
  animation: heroResumeIn .6s cubic-bezier(.16,1,.3,1) both;
  position: relative;
}
@keyframes heroResumeIn{
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-resume[hidden]{ display: none; }
.hero-resume-icon{
  flex: 0 0 42px;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--azure-500), var(--azure-600));
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(94,174,219,.40);
}
.hero-resume-icon svg{ width: 22px; height: 22px; color: #fff; }
.hero-resume-body{ flex: 1 1 auto; min-width: 0; }
.hero-resume-eyebrow{
  font-size: .70rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--azure-200);
  margin-bottom: 2px;
}
.hero-resume-title{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-resume-title #heroResumeTotal{
  color: var(--azure-200);
  font-weight: 800;
}
.hero-resume-addr{ font-weight: 500; color: rgba(255,255,255,.78); }
.hero-resume-meta{
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  margin-top: 2px;
}
.hero-resume-actions{ flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.hero-resume-close{
  background: transparent;
  border: none;
  color: rgba(255,255,255,.55);
  font-size: 1.5rem;
  line-height: 1;
  width: 28px; height: 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
}
.hero-resume-close:hover{
  background: rgba(255,255,255,.10);
  color: #fff;
}
@media (max-width: 640px){
  .hero-resume{ flex-wrap: wrap; padding: 12px; }
  .hero-resume-body{ flex: 1 1 calc(100% - 60px); }
  .hero-resume-actions{ flex: 1 1 100%; justify-content: space-between; margin-top: 6px; }
  .hero-resume-title{ white-space: normal; }
}

.hero h1 {
  color: #fff;
  margin: 14px 0 22px;
  text-shadow: 0 4px 40px rgba(10,15,26,.45);
}
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.9);
  color: transparent;
  font-style: italic;
  font-weight: 800;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.15vw + 0.8rem, 1.3rem);
  color: rgba(255,255,255,.88);
  max-width: 62ch;
  line-height: 1.55;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  margin-top: 38px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-trust .tr-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.86); font-size: .93rem; font-weight: 500; }
.hero-trust .tr-item svg { width: 20px; height: 20px; stroke: var(--azure-300); }
.hero-trust .stars { color: #FFC940; letter-spacing: 2px; }

/* ================================================================
   06 · STAT STRIP  (4 photo-bg stat cards with huge overlay numbers)
================================================================ */
.stat-strip {
  position: relative;
  margin-top: -80px;
  z-index: 3;
  padding: 0 clamp(20px, 4vw, 48px);
}
.stat-strip .stat-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--g-deep);
  box-shadow: var(--shadow-lg);
  color: #fff;
  isolation: isolate;
  min-height: 260px;
}
.stat-card .stat-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.stat-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,15,26,.55) 0%, rgba(10,15,26,.92) 100%);
}
.stat-card:hover .stat-bg { transform: scale(1.08); }
.stat-card .num {
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: .95;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.96);
}
.stat-card .num sub { font-size: .35em; vertical-align: super; margin-left: 4px; font-weight: 700; color: var(--azure-200); }
.stat-card .label {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
}
.stat-card .label small { display: block; font-weight: 500; font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 4px; }
@media (max-width: 980px) { .stat-strip .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stat-strip .stat-grid { grid-template-columns: 1fr; } .stat-card { aspect-ratio: 16/10; min-height: 200px; } }

/* ================================================================
   07 · SECTION INTRO  (eyebrow + h2 + lede, used everywhere)
================================================================ */
.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-intro .intro-left h2 { max-width: 14ch; }
.section-intro .intro-right { max-width: 52ch; }
@media (max-width: 860px) { .section-intro { grid-template-columns: 1fr; gap: 18px; } }

/* ================================================================
   08 · SERVICE CARDS  (tall portrait, photo bg, gradient overlay)
================================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  aspect-ratio: 3 / 4.2;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.svc-card .svc-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .9s var(--ease);
}
.svc-card:hover .svc-bg { transform: scale(1.1); }
.svc-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--g-card-dark);
}
.svc-card .tag {
  position: absolute; top: 18px; left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.92);
  color: var(--azure-700);
  backdrop-filter: blur(6px);
}
.svc-card .tag--hot { background: var(--g-cta); color: var(--ink); }
.svc-card .svc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px 24px;
  color: #fff;
}
.svc-card h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.svc-card .svc-desc {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 16px;
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
}
.svc-card:hover .svc-desc { max-height: 140px; opacity: 1; }
.svc-card .svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--azure-200);
  font-family: var(--font-display); font-weight: 700;
  font-size: .92rem;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
  width: 100%;
  transition: color .2s, gap .3s var(--ease);
}
.svc-card:hover .svc-link { color: var(--azure-300); gap: 14px; }
.svc-card .svc-link svg { width: 16px; height: 16px; stroke: currentColor; }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .svc-grid { grid-template-columns: 1fr; } .svc-card { min-height: 400px; } }

/* ================================================================
   09 · WAVE DIVIDERS  (SVG section separators — water themed)
================================================================ */
.wave-divider {
  position: relative;
  height: 90px;
  margin: 0;
  overflow: hidden;
}
.wave-divider svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; display: block; }
.wave-divider--top { transform: rotate(180deg); }

/* ================================================================
   10 · "THE TRUSHINE STANDARD"  (dark bg photo, 4 icon columns)
================================================================ */
.standard {
  position: relative;
  background: var(--g-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.standard .std-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  opacity: .22;
  filter: grayscale(.3);
}
.standard::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,15,26,.88) 0%, rgba(15,38,64,.7) 50%, rgba(10,15,26,.95) 100%);
}
.standard h2 { color: #fff; }
.std-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 60px;
}
.std-item { text-align: center; }
.std-item .std-ico {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(143,200,235,.12);
  border: 1.5px solid rgba(143,200,235,.35);
  color: var(--azure-300);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 30px -14px rgba(143,200,235,.4);
}
.std-item .std-ico svg { width: 36px; height: 36px; stroke: currentColor; }
.std-item h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.std-item p { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .std-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (max-width: 520px) { .std-grid { grid-template-columns: 1fr; } }

/* ================================================================
   11 · BEFORE/AFTER SLIDER
================================================================ */
.ba-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--ink);
  aspect-ratio: 16/9;
  cursor: ew-resize;
  user-select: none;
  isolation: isolate;
}
.ba-after, .ba-before {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after  { background-image: linear-gradient(120deg, #1E4E7E 0%, #0A0F1A 100%); }
.ba-before {
  background-image: linear-gradient(120deg, #4a4230 0%, #272018 100%);
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s linear;
}
.ba-pill {
  position: absolute; top: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
  z-index: 3;
}
.ba-pill.before { left: 24px; }
.ba-pill.after  { right: 24px; background: var(--g-cta); }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,.5);
  transform: translateX(-50%);
  z-index: 4;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 0 0 2px var(--azure-500);
  background-image:
    linear-gradient(90deg, transparent 47%, var(--azure-600) 47% 53%, transparent 53%),
    radial-gradient(#fff 30%, transparent 31%);
}
.ba-caption {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  background: rgba(10,15,26,.7);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 3;
  white-space: nowrap;
}

/* ================================================================
   12 · PRICING PLANS (4 cards, Most Popular highlighted)
================================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--azure-200); }
.plan-card.popular {
  border: 2px solid var(--azure-400);
  box-shadow: 0 30px 80px -28px rgba(58,144,198,.4);
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(180deg, #fff 0%, var(--azure-50) 100%);
}
.plan-card.popular:hover { transform: translateY(-14px) scale(1.03); }
.plan-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: var(--g-cta);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 10px 24px -10px rgba(58,144,198,.6);
  white-space: nowrap;
}
.plan-card .plan-icon {
  width: 56px; height: 56px; border-radius: 14px;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--azure-100);
  color: var(--azure-600);
}
.plan-card .plan-icon svg { width: 26px; height: 26px; stroke: currentColor; }
.plan-card h3 { font-size: 1.25rem; letter-spacing: -.02em; margin-bottom: 6px; }
.plan-card .plan-cadence { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--azure-600); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.plan-card p.plan-desc { font-size: .92rem; color: var(--ink-60); line-height: 1.55; margin-bottom: 22px; }
.plan-card ul.plan-feats {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.plan-card ul.plan-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--ink-80); line-height: 1.45;
}
.plan-card ul.plan-feats li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--azure-500); }
.plan-card .btn { width: 100%; justify-content: center; }
@media (max-width: 1100px) { .plans { grid-template-columns: repeat(2, 1fr); } .plan-card.popular { transform: none; } }
@media (max-width: 600px) { .plans { grid-template-columns: 1fr; } }

/* ================================================================
   13 · MEMBERSHIP SPLIT CARD
================================================================ */
.membership {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--g-deep);
  color: #fff;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
  position: relative;
}
.membership-copy { padding: clamp(40px, 5vw, 70px); position: relative; z-index: 2; }
.membership-copy .crown {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--g-cta);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  margin-bottom: 22px;
  box-shadow: 0 14px 34px -14px rgba(58,144,198,.7), inset 0 1px 0 rgba(255,255,255,.55);
}
.membership-copy .crown svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 2.2; }
.membership-copy h2 { color: #fff; }
.membership-copy p.lede { color: rgba(255,255,255,.78); }
.membership-feats { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.membership-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: rgba(255,255,255,.86); line-height: 1.4; }
.membership-feats li .chk {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(143,200,235,.18); border: 1px solid rgba(143,200,235,.45);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--azure-300);
}
.membership-feats li .chk svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 3; }
.membership-media {
  position: relative;
  background: var(--g-water);
  min-height: 420px;
}
.membership-media .m-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .75; }
.membership-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,15,26,.45) 0%, transparent 50%);
}
@media (max-width: 900px) { .membership { grid-template-columns: 1fr; } .membership-feats { grid-template-columns: 1fr; } }

/* ================================================================
   14 · PROBLEM GRID  (6 cards with icon boxes — service pages)
================================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prob-card {
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.prob-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--azure-200); }
.prob-card .prob-ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--azure-50);
  color: var(--azure-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .3s, color .3s, transform .3s;
}
.prob-card .prob-ico svg { width: 26px; height: 26px; stroke: currentColor; }
.prob-card:hover .prob-ico { background: var(--g-cta); color: var(--ink); transform: rotate(-6deg) scale(1.05); }
.prob-card h4, .prob-card h3 { font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -.01em; }
a.prob-card { text-decoration: none; color: inherit; cursor: pointer; }
.prob-card p { font-size: .94rem; color: var(--ink-60); line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }

/* ================================================================
   15 · WHY CHOOSE / SPLIT FEATURE LAYOUT
================================================================ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--g-water);
  box-shadow: var(--shadow-lg);
}
.split-media .media-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.split-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,26,.5) 100%);
}
.split-media .float-badge {
  position: absolute; left: 22px; bottom: 22px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  max-width: 280px;
}
.split-media .float-badge .stars { color: #FFC940; font-size: .95rem; letter-spacing: 2px; }
.split-media .float-badge b { font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.split-media .float-badge small { display: block; color: var(--ink-40); font-size: .78rem; }

.feature-list { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list li .f-ico {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--g-cta);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.feature-list li .f-ico svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.2; }
.feature-list li h4 { font-size: 1.1rem; margin-bottom: 4px; letter-spacing: -.01em; }
.feature-list li p { font-size: .94rem; color: var(--ink-60); line-height: 1.5; margin: 0; }
.section--dark .feature-list li p { color: rgba(255,255,255,.72); }
.section--dark .feature-list li h4 { color: #fff; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

/* ================================================================
   16 · REVIEWS RAIL (horizontal scroll with Google-styled cards)
================================================================ */
.reviews {
  position: relative;
}
.rail-wrap { position: relative; margin: 30px -20px 0; }
.rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 20px 40px;
}
.rail::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rc-user { display: flex; gap: 12px; align-items: center; }
.rc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--g-water);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.rc-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .98rem; }
.rc-time { font-size: .78rem; color: var(--ink-40); }
.rc-g {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  border: 1px solid var(--edge);
  display: flex; align-items: center; justify-content: center;
  font-family: "Product Sans", var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: #4285F4;
}
.rc-stars { color: #FFC940; letter-spacing: 1px; margin-bottom: 12px; }
.review-card p { font-size: .94rem; color: var(--ink-80); line-height: 1.6; margin: 0; }
.review-card p::before { content: "\201C"; font-size: 2rem; line-height: 0; color: var(--azure-300); vertical-align: -.4em; margin-right: 4px; font-family: serif; }
.rail-nav { display: flex; gap: 10px; margin-top: 10px; justify-content: flex-end; padding-right: 20px; }
.rail-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff;
  border: 1px solid var(--edge);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.rail-btn:hover { background: var(--azure-500); color: #fff; border-color: var(--azure-500); transform: scale(1.05); }
.rail-btn svg { width: 18px; height: 18px; stroke: currentColor; }

/* ================================================================
   17 · VIDEO REEL
================================================================ */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reel-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  /* button reset for .reel-item as <button> */
  border: 0;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
}
.reel-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reel-item .reel-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.reel-item:hover .reel-bg { transform: scale(1.08); }
.reel-item::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 45%, rgba(10,15,26,.88) 100%);
}
.reel-item .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--azure-700);
  box-shadow: 0 14px 30px -10px rgba(10,15,26,.55);
  transition: transform .3s var(--ease);
}
.reel-item:hover .play { transform: translate(-50%, -50%) scale(1.1); }
.reel-item .play svg { width: 22px; height: 22px; margin-left: 3px; fill: currentColor; }
.reel-item .reel-cap { position: absolute; bottom: 18px; left: 20px; right: 20px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .96rem; line-height: 1.3; }
.reel-item .reel-cap small { display: block; color: rgba(255,255,255,.65); font-weight: 500; font-size: .75rem; margin-top: 4px; }
@media (max-width: 1100px) { .reel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .reel-grid { grid-template-columns: 1fr; } }

/* ================================================================
   18 · SERVICE AREA MAP
================================================================ */
.area {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.area-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.area-list li {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-display); font-weight: 600;
  color: var(--ink-80); font-size: .96rem;
}
.area-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--azure-400);
  box-shadow: 0 0 0 3px rgba(143,200,235,.3);
}
.map-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--g-water);
  isolation: isolate;
}
.map-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--g-water);
  z-index: -1;
}
.map-card .map-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .9;
}
.map-card .map-pin {
  position: absolute; top: 48%; left: 55%;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--azure-300);
  box-shadow: 0 0 0 0 rgba(143,200,235,.7);
  animation: pin 2.2s infinite ease-out;
  transform: translate(-50%, -50%);
}
@keyframes pin {
  0%   { box-shadow: 0 0 0 0 rgba(143,200,235,.8); }
  80%  { box-shadow: 0 0 0 28px rgba(143,200,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,200,235,0); }
}
.map-card .hq-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  color: var(--ink);
}
.map-card .hq-badge b { display: block; font-weight: 800; }
.map-card .hq-badge small { color: var(--ink-40); font-size: .8rem; }
@media (max-width: 900px) { .area { grid-template-columns: 1fr; } }

/* ================================================================
   19 · PROJECT MOSAIC
================================================================ */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.proj {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.proj:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.proj .proj-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .8s var(--ease); }
.proj:hover .proj-bg { transform: scale(1.08); }
.proj::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,26,.82) 100%);
}
.proj .proj-cap { position: absolute; left: 20px; right: 20px; bottom: 18px; color: #fff; }
.proj .proj-cap span { font-family: var(--font-display); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--azure-200); }
.proj .proj-cap b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-top: 2px; }
.proj.hero { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
@media (max-width: 900px) { .mosaic { grid-template-columns: 1fr 1fr; } .proj.hero { grid-row: auto; aspect-ratio: 4/3; } }
@media (max-width: 560px) { .mosaic { grid-template-columns: 1fr; } }

/* ================================================================
   20 · FAQ ACCORDION
================================================================ */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--edge);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 4px;
  background: transparent; border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--azure-600); }
.faq-q .plus {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--azure-50);
  color: var(--azure-600);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .25s;
  font-size: 1.5rem; font-weight: 600; line-height: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--g-cta); color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease);
  color: var(--ink-60);
  font-size: .98rem;
  line-height: 1.65;
}
.faq-a > div { padding: 0 4px 24px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ================================================================
   21 · PAGE HERO (inner pages)
================================================================ */
.page-hero {
  position: relative;
  padding: clamp(90px, 12vw, 180px) 0 clamp(70px, 9vw, 140px);
  background: var(--g-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .ph-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  opacity: .35;
  filter: saturate(1.1);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,15,26,.6) 0%, rgba(15,38,64,.85) 100%);
}
.page-hero h1 { color: #fff; }
.page-hero p.lede { color: rgba(255,255,255,.8); }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 14px; font-family: var(--font-display); font-weight: 600; }
.breadcrumb a:hover { color: var(--azure-300); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ================================================================
   22 · QUOTE / LEAD FORM
================================================================ */
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 50px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--edge);
}
.form-card.dark {
  background: linear-gradient(160deg, #14243C 0%, #0A0F1A 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
}
.form-card .fc-head { margin-bottom: 26px; }
.form-card h3 { font-size: 1.5rem; }
.form-card.dark h3 { color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 7px;
}
.form-card.dark .field label { color: rgba(255,255,255,.65); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--edge);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-card.dark .field input,
.form-card.dark .field select,
.form-card.dark .field textarea {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--azure-400);
  box-shadow: 0 0 0 4px rgba(143,200,235,.2);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Checkbox service picker */
.svc-pick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.svc-pick label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--edge);
  border-radius: 12px;
  cursor: pointer;
  font-size: .94rem;
  font-weight: 500;
  transition: all .2s;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-80);
  margin: 0;
}
.svc-pick label:hover { border-color: var(--azure-300); background: var(--azure-50); }
.svc-pick input:checked + span { color: var(--azure-700); font-weight: 700; }
.svc-pick label:has(input:checked) { border-color: var(--azure-400); background: var(--azure-50); }
.form-card.dark .svc-pick label { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.form-card.dark .svc-pick label:has(input:checked) { background: rgba(143,200,235,.12); border-color: var(--azure-400); }

/* ================================================================
   23 · FINAL CTA BANNER
================================================================ */
.final-cta {
  position: relative;
  background: var(--g-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(143,200,235,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 90%, rgba(58,144,198,.2) 0%, transparent 55%);
}
.final-cta h2 { color: #fff; font-size: clamp(2.2rem, 3vw + 1rem, 3.8rem); }
.final-cta p { color: rgba(255,255,255,.8); max-width: 60ch; margin: 16px auto 34px; font-size: var(--fs-lede); }
.final-cta .ctas { justify-content: center; }
.final-cta .eyebrow { background: rgba(143,200,235,.15); color: var(--azure-200); }

/* ================================================================
   24 · FOOTER
================================================================ */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 24px;
  position: relative;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot .brand { color: #fff; }
.foot .tag { color: rgba(255,255,255,.55); font-size: .92rem; max-width: 42ch; margin-top: 18px; line-height: 1.6; }
.foot h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.foot ul a {
  color: rgba(255,255,255,.62);
  font-size: .93rem;
  transition: color .2s;
}
.foot ul a:hover { color: var(--azure-300); }
.foot-bot {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.foot-bot a { color: rgba(255,255,255,.55); }
.foot-bot a:hover { color: var(--azure-300); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ================================================================
   25 · STICKY MOBILE CTA BAR
================================================================ */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10,15,26,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(143,200,235,.2);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  z-index: 90;
  box-shadow: 0 -20px 40px -20px rgba(0,0,0,.4);
}
.mobile-cta a { flex: 1; justify-content: center; padding: 14px; font-size: .92rem; }
@media (max-width: 820px) { .mobile-cta { display: flex; } body { padding-bottom: 80px; } }

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

/* ================================================================
   27 · PROSE (for blog / content pages)
================================================================ */
.prose { max-width: 72ch; margin: 0 auto; font-size: 1.08rem; line-height: 1.8; color: var(--ink-80); }
.prose h2 { margin: 2em 0 .5em; font-size: 2rem; }
.prose h3 { margin: 1.8em 0 .4em; font-size: 1.4rem; }
.prose p { margin-bottom: 1em; }
.prose ul { padding-left: 1.3em; margin-bottom: 1em; }
.prose ul li { margin-bottom: .5em; }
.prose a { color: var(--azure-600); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 4px solid var(--azure-400); padding: 12px 0 12px 22px; margin: 30px 0; color: var(--ink-60); font-style: italic; }

/* ================================================================
   28 · UTILITIES
================================================================ */
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 820px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}
.mt-0 { margin-top: 0 !important; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 56px; }
.mb-s { margin-bottom: 14px; }
.mb-m { margin-bottom: 28px; }
.mb-l { margin-bottom: 56px; }
.text-white { color: #fff; }

/* ================================================================
   29 · TRUST STRIP  (5-stat row, reusable across pages)
================================================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 30px 34px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(30, 78, 126, 0.08);
  box-shadow: 0 14px 40px -22px rgba(30, 78, 126, 0.25);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-item b {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--g-water);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.trust-item span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-60);
  font-weight: 600;
}
@media (max-width: 880px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .trust-item b { font-size: 1.5rem; }
}

/* ================================================================
   30 · NEIGHBORHOOD + ZIP GRIDS  (city pages)
================================================================ */
.neighborhood-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
}
.nh-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.nh-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nh-list li svg {
  color: var(--azure-300);
  flex-shrink: 0;
}
.zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-content: flex-start;
}
.zip-pill {
  background: rgba(143, 200, 235, 0.12);
  color: var(--azure-300);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 1px solid rgba(143, 200, 235, 0.25);
}
@media (max-width: 820px) {
  .neighborhood-grid { grid-template-columns: 1fr; gap: 30px; }
  .nh-list { grid-template-columns: 1fr; }
}

/* ================================================================
   31 · CITY PILL ROW  (cross-city linking)
================================================================ */
.city-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  background: #fff;
  border: 1px solid rgba(30, 78, 126, 0.1);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 4px 12px -6px rgba(30, 78, 126, 0.15);
}
.city-pill:hover {
  background: var(--g-cta);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(94, 174, 219, 0.55);
}

/* ================================================================
   32 · PROMO CARDS  (seasonal promotions page)
================================================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.promo-card {
  position: relative;
  padding: 42px 38px 36px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(30, 78, 126, 0.08);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: all .35s ease;
  box-shadow: 0 14px 40px -22px rgba(30, 78, 126, 0.18);
}
.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--g-water);
  transform: scaleX(.3);
  transform-origin: left center;
  transition: transform .4s ease;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -22px rgba(30, 78, 126, 0.35);
  border-color: var(--azure-300);
}
.promo-card:hover::before {
  transform: scaleX(1);
}
.promo-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azure-600);
  padding: 6px 14px;
  background: rgba(143, 200, 235, 0.18);
  border-radius: 999px;
  margin-bottom: 18px;
}
.promo-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.promo-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--g-water);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}
.promo-card p {
  color: var(--ink-60);
  line-height: 1.6;
  font-size: .98rem;
  margin-bottom: 26px;
}
.promo-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 78, 126, 0.08);
}
.promo-fine {
  font-size: .82rem;
  color: var(--ink-60);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.promo-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--g-cta);
  color: var(--ink);
  transition: transform .3s ease;
}
.promo-card:hover .promo-arrow {
  transform: translateX(6px);
}
@media (max-width: 820px) {
  .promo-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ================================================================
   33 · SITEMAP GRID  (sitemap page)
================================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.sitemap-col h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--azure-300);
}
.sitemap-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sitemap-col ul a {
  color: var(--ink-80);
  text-decoration: none;
  font-size: .96rem;
  line-height: 1.5;
  transition: color .2s ease;
}
.sitemap-col ul a:hover {
  color: var(--azure-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 820px) {
  .sitemap-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .sitemap-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   34 · SATISFACTION GUARANTEE BADGE  (homepage + service pages)
================================================================ */
.guarantee-wrap {
  position: relative;
  padding: 70px 60px;
  background: linear-gradient(135deg, #F7FAFD 0%, #E9F3FA 100%);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(143, 200, 235, 0.28);
}
.guarantee-wrap::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 200, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.guarantee-seal {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--g-water);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 14px;
  box-shadow: 0 20px 40px -14px rgba(30, 78, 126, 0.4),
              inset 0 0 0 6px rgba(255, 255, 255, 0.25);
  position: relative;
  flex-shrink: 0;
}
.guarantee-seal strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.guarantee-seal small {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  margin-top: 8px;
  opacity: .9;
}
.guarantee-copy h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.guarantee-copy p {
  font-size: 1.08rem;
  color: var(--ink-80);
  line-height: 1.65;
  max-width: 62ch;
}
@media (max-width: 820px) {
  .guarantee-wrap { grid-template-columns: 1fr; padding: 44px 30px; text-align: center; justify-items: center; gap: 30px; }
  .guarantee-copy h3 { font-size: 1.6rem; }
}

/* ================================================================
   35 · WATER RIPPLE + DROPLET ACCENTS  (homepage polish)
================================================================ */
@keyframes ripple {
  0% { transform: scale(0.9); opacity: .45; }
  100% { transform: scale(2.4); opacity: 0; }
}
.ripple-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ripple-layer span {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(143, 200, 235, 0.55);
  border-radius: 50%;
  animation: ripple 5s ease-out infinite;
}
.ripple-layer span:nth-child(1) { top: 18%; left: 8%;  animation-delay: 0s;   }
.ripple-layer span:nth-child(2) { top: 62%; left: 72%; animation-delay: 1.6s; }
.ripple-layer span:nth-child(3) { top: 78%; left: 22%; animation-delay: 3.2s; }
.ripple-layer span:nth-child(4) { top: 22%; left: 82%; animation-delay: 2.4s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-14px) translateX(6px); }
}
.droplet-accent {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 68% 32% 58% 42% / 48% 62% 38% 52%;
  background: var(--g-water);
  opacity: .18;
  filter: blur(1px);
  animation: drift 8s ease-in-out infinite;
}

/* Enhanced wave divider with second layer */
.wave-div-stack {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.wave-div-stack svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.wave-div-stack svg:first-child { opacity: .55; }

/* Subtle water pattern under sections */
.section--water-tint {
  position: relative;
  background: linear-gradient(180deg, #F7FAFD 0%, #E9F3FA 100%);
}
.section--water-tint::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(143, 200, 235, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(94, 174, 219, 0.12) 0%, transparent 40%);
  pointer-events: none;
}
.section--water-tint > .wrap { position: relative; z-index: 1; }

/* ================================================================
   36 · EXIT INTENT / ENGAGEMENT MODAL
================================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 26, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: #fff;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 50px 44px 40px;
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px -30px rgba(10, 15, 26, 0.6);
}
.modal-backdrop.is-open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--ink-60);
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
}
.modal-close:hover { color: var(--ink); }
.modal h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.modal .modal-offer {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--g-water);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 14px 0;
}
.modal p {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 26px;
}
.modal .ctas { justify-content: center; }

/* ================================================================
   37 · RECENT JOB TOAST  (bottom-left social proof)
================================================================ */
.toast {
  position: fixed;
  left: 20px;
  bottom: 96px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px 14px 14px;
  box-shadow: 0 20px 50px -15px rgba(10, 15, 26, 0.35);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 320px;
  transform: translateX(-120%);
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 90;
  border: 1px solid rgba(143, 200, 235, 0.3);
}
.toast.is-shown { transform: translateX(0); }
.toast-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g-water);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-body b { display: block; font-size: .92rem; color: var(--ink); font-family: var(--font-display); font-weight: 700; line-height: 1.25; }
.toast-body span { display: block; font-size: .78rem; color: var(--ink-60); margin-top: 2px; }
@media (max-width: 720px) {
  .toast { left: 10px; right: 10px; max-width: none; bottom: 88px; }
}

/* ============================================================
   38. ADDRESS QUOTE STARTER (hero form)
============================================================ */
.addr-starter {
  margin-top: 22px;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px 18px 14px;
  box-shadow: 0 20px 60px -25px rgba(0, 0, 0, 0.55);
}
.addr-starter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E8F3FB;
  font-size: .82rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.addr-starter-label svg { width: 16px; height: 16px; color: var(--azure-300); }
.addr-starter-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.addr-starter-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0 16px;
  height: 52px;
  border-radius: 12px;
  outline: none;
  transition: box-shadow .2s, border-color .2s;
}
.addr-starter-row input:focus {
  border-color: var(--azure-400);
  box-shadow: 0 0 0 3px rgba(94, 174, 219, 0.35);
}
.addr-starter-row .btn { height: 52px; padding: 0 20px; white-space: nowrap; }
.addr-starter-foot {
  margin-top: 8px;
  font-size: .72rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
}
@media (max-width: 620px) {
  .addr-starter-row { flex-direction: column; }
  .addr-starter-row .btn { width: 100%; }
}

/* ============================================================
   39. BUNDLE CALCULATOR (service-plans page)
============================================================ */
.bundle-calc {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 34px 36px;
  box-shadow: var(--shadow-2);
  max-width: 960px;
  margin: 0 auto;
}
.bundle-calc h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.bundle-calc p.lede {
  color: var(--ink-60);
  margin: 0 0 24px;
  font-size: .98rem;
}
.bundle-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.bundle-opt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid var(--stroke);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all .18s ease;
  background: var(--cream);
}
.bundle-opt:hover { border-color: var(--azure-400); transform: translateY(-2px); }
.bundle-opt input { position: absolute; opacity: 0; pointer-events: none; }
.bundle-opt input:checked + .bundle-opt-body {
  color: var(--ink);
}
.bundle-opt:has(input:checked) {
  border-color: var(--azure-500);
  background: linear-gradient(135deg, #EDF6FC 0%, #ffffff 100%);
  box-shadow: 0 10px 30px -18px rgba(30, 78, 126, 0.3);
}
.bundle-opt-body {
  flex: 1;
}
.bundle-opt-body b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.bundle-opt-body span {
  display: block;
  font-size: .82rem;
  color: var(--ink-60);
  margin-top: 2px;
}
.bundle-opt-body em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: .8rem;
  color: var(--azure-700);
  font-weight: 600;
}
.bundle-summary {
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--azure-900) 0%, var(--ink) 100%);
  border-radius: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bundle-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bundle-summary-totals .sub {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
}
.bundle-summary-totals .final {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8FC8EB 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bundle-summary-totals .save {
  font-size: .82rem;
  color: #8FC8EB;
  font-weight: 600;
}

/* ============================================================
   40. PARTNER LOGOS + LICENSE BADGE STRIP
============================================================ */
.partner-strip {
  padding: 42px 0 50px;
  background: var(--cream);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.partner-strip .wrap { text-align: center; }
.partner-eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-50);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .72;
  transition: opacity .2s;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
  letter-spacing: .02em;
}
.partner-badge:hover { opacity: 1; }
.partner-badge svg {
  width: 34px;
  height: 34px;
  color: var(--azure-600);
}
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--azure-300);
  border-radius: 999px;
  box-shadow: 0 6px 20px -12px rgba(30, 78, 126, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--azure-700);
  font-size: .85rem;
}
.license-badge svg { width: 18px; height: 18px; }

/* ============================================================
   41. FORM SUCCESS CARD (contact page)
============================================================ */
.form-success {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 48px 42px;
  text-align: center;
  box-shadow: var(--shadow-2);
  max-width: 580px;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure-400) 0%, var(--azure-700) 100%);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 18px 40px -18px rgba(30, 78, 126, 0.6);
}
.form-success-icon svg { width: 36px; height: 36px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.form-success p {
  color: var(--ink-70);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 22px;
}
.form-success a.btn { margin-top: 4px; }

/* ============================================================
   42. SKIP LINK (accessibility)
============================================================ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  transition: top .2s;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--azure-400);
  outline-offset: 2px;
}

/* ============================================================
   43. LOCAL DEEP COPY BLOCK (matrix pages)
============================================================ */
.local-deep-block {
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}
.deep-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.deep-copy .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.deep-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.deep-para {
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.68;
  color: var(--ink-70);
  margin: 0 0 18px;
}
.deep-para:last-child { margin-bottom: 0; }
.deep-para::first-letter {
  color: var(--azure-700);
}

/* ============================================================
   44. RESPONSE-TIME COUNTER (topbar pill)
============================================================ */
.response-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(94, 174, 219, 0.18);
  border: 1px solid rgba(94, 174, 219, 0.32);
  color: #E8F3FB;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-left: 14px;
}
.response-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5BE4B6;
  box-shadow: 0 0 0 3px rgba(91, 228, 182, 0.25);
  animation: responsePulse 2.2s ease-in-out infinite;
}
@keyframes responsePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(91, 228, 182, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(91, 228, 182, 0.12); }
}
@media (max-width: 820px) {
  .response-pill { display: none; }
}

/* ============================================================
   45. MOBILE STAR RATING + STICKY BAR ENHANCEMENTS
============================================================ */
.mobile-cta-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--azure-200);
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 2px;
}
.mobile-cta-rating .stars {
  color: #FFD05C;
  letter-spacing: .5px;
  font-size: .85rem;
}

/* ============================================================
   46. QUOTE STARTER ON FINAL-CTA (compact variant)
============================================================ */
.cta-quote-starter {
  max-width: 520px;
  margin: 28px auto 0;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 8px;
}
.cta-quote-starter input {
  flex: 1;
  min-width: 0;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  padding: 0 16px;
  height: 46px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  outline: none;
}
.cta-quote-starter input:focus {
  box-shadow: 0 0 0 2px var(--azure-400);
}
.cta-quote-starter .btn { height: 46px; padding: 0 18px; }
@media (max-width: 540px) {
  .cta-quote-starter { flex-direction: column; }
  .cta-quote-starter .btn { width: 100%; }
}

/* ============================================================
   47. KEYBOARD FOCUS STATES
============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--azure-400);
  outline-offset: 2px;
  border-radius: 6px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* ============================================================
   48. REDUCED MOTION SUPPORT
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ripple-layer span { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   49. DROP-CAP INITIAL (first paragraph emphasis)
============================================================ */
.deep-copy .deep-para:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.88;
  font-weight: 800;
  color: var(--azure-700);
  float: left;
  padding: 4px 10px 0 0;
  margin-top: 2px;
}

/* ============================================================
   50. INTERACTIVE ESTIMATOR
============================================================ */
.est-hero{
  position:relative;
  padding: clamp(90px, 14vw, 160px) 0 clamp(70px, 9vw, 120px);
  background: linear-gradient(180deg, #081224 0%, #0F2640 55%, #163A5F 100%);
  color:#fff;
  overflow:hidden;
  isolation:isolate;
}
.est-hero::after{
  content:"";
  position:absolute;left:0;right:0;bottom:-1px;height:70px;
  background: linear-gradient(180deg, rgba(247,250,253,0) 0%, var(--cream) 100%);
  z-index:2;
}
.est-hero-bg{position:absolute;inset:0;z-index:0;pointer-events:none;}
.est-hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(143,200,235,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,200,235,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 50%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 50%, transparent 85%);
}
.est-hero-glow{
  position:absolute;
  top:-20%;left:-10%;
  width:70%;height:120%;
  background: radial-gradient(circle at 30% 30%, rgba(94,174,219,.35), rgba(94,174,219,0) 60%);
  filter: blur(40px);
}
.est-hero-ripple{
  position:absolute;
  border:1px solid rgba(143,200,235,.18);
  border-radius:50%;
  top:40%;right:-5%;
  width:320px;height:320px;
  animation: estRipple 9s ease-out infinite;
}
.est-hero-ripple.r2{width:500px;height:500px;animation-delay:1.5s;top:35%;right:-10%;}
.est-hero-ripple.r3{width:700px;height:700px;animation-delay:3s;top:30%;right:-15%;}
@keyframes estRipple{
  0%{transform:scale(.85);opacity:0;}
  20%{opacity:.6;}
  100%{transform:scale(1.12);opacity:0;}
}
.est-hero .wrap{position:relative;z-index:1;}
.est-hero h1{
  font-size: clamp(2.4rem, 4.4vw + 1rem, 4.8rem);
  line-height:.98;
  letter-spacing:-.02em;
  margin: 12px 0 20px;
  font-weight:800;
}
.est-hero h1 .grad{
  background: linear-gradient(135deg, #A8D5F0 0%, #5EAEDB 60%, #FFFFFF 100%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.est-hero .lede{
  max-width:640px;
  color:rgba(255,255,255,.82);
  font-size: clamp(1.05rem, .8vw + .9rem, 1.28rem);
  line-height:1.55;
}
.est-hero-stats{
  margin-top:38px;
  display:flex;gap:18px;flex-wrap:wrap;
}
.est-hero-stats > div{
  display:flex;flex-direction:column;
  padding:14px 22px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  min-width:150px;
}
.est-hero-stats b{
  font-family:var(--font-display);
  font-size: 1.9rem;
  font-weight:800;
  color:#A8D5F0;
  letter-spacing:-.01em;
}
.est-hero-stats span{
  font-size:.82rem;
  color:rgba(255,255,255,.72);
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-top:4px;
}

/* Step tracker */
.est-steps-bar{
  background:#fff;
  border-bottom:1px solid var(--edge);
  position:sticky; top:0; z-index:40;
  box-shadow: 0 2px 20px rgba(15,38,64,.05);
}
.est-step-track{
  display:flex;
  gap:8px;
  list-style:none;
  margin:0;padding: 16px 0;
  overflow-x:auto;
  scrollbar-width:none;
}
.est-step-track::-webkit-scrollbar{display:none;}
.est-step{
  display:flex;align-items:center;gap:12px;
  padding:10px 18px 10px 12px;
  border-radius: 999px;
  flex-shrink:0;
  transition: background .3s ease;
}
.est-step .num{
  width:32px;height:32px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background: var(--mist);
  color: var(--azure-600);
  font-weight:800;
  font-family:var(--font-display);
  border: 2px solid var(--edge);
  transition: all .3s ease;
}
.est-step .txt{display:flex;flex-direction:column;line-height:1.1;}
.est-step .txt b{font-family:var(--font-display);font-size:.98rem;color:var(--ink);font-weight:700;}
.est-step .txt small{font-size:.74rem;color:var(--ink-40);letter-spacing:.03em;}
.est-step.is-active{background: var(--azure-50);}
.est-step.is-active .num{
  background: var(--g-cta);
  color:#fff;border-color:transparent;
  box-shadow: 0 6px 20px rgba(94,174,219,.42);
}
.est-step.is-done .num{
  background: var(--azure-600);color:#fff;border-color:transparent;
}
.est-step.is-done .num::before{content:"\2713";}
.est-step.is-done .num span{display:none;}

/* Main layout */
.est-main{
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 60%);
}
.est-layout{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items:start;
}
.est-stack{display:flex;flex-direction:column;gap:22px;min-width:0;}

/* Cards */
.est-card{
  background:#fff;
  border:1px solid var(--edge);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 2px 4px rgba(15,38,64,.03), 0 30px 60px -40px rgba(15,38,64,.18);
  position:relative;
  overflow:hidden;
}
.est-card::before{
  content:"";
  position:absolute;top:0;left:0;right:0;height:4px;
  background: linear-gradient(90deg, transparent 0%, var(--azure-300) 30%, var(--azure-500) 60%, transparent 100%);
  opacity:.75;
}
.est-card-head{
  display:flex;gap:18px;align-items:flex-start;
  margin-bottom:22px;
}
.est-card-num{
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:800;
  color: var(--azure-400);
  background: var(--azure-50);
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  border-radius:14px;
  flex-shrink:0;
  letter-spacing:-.02em;
}
.est-card-head h2{
  font-size: clamp(1.3rem, 1.2vw + .9rem, 1.75rem);
  line-height:1.15;
  margin:0 0 4px;
  font-weight:800;
  color: var(--ink);
  letter-spacing:-.01em;
}
.est-card-head p{
  margin:0;
  color: var(--ink-60);
  font-size:.98rem;
}

/* Address */
.est-address-row{
  display:flex;gap:12px;align-items:stretch;
  margin-bottom:14px;
}
.est-input-wrap{
  position:relative;flex:1;
}
.est-input-ico{
  position:absolute;left:18px;top:50%;transform:translateY(-50%);
  width:20px;height:20px;color: var(--azure-500);
  pointer-events:none;
}
.est-input-wrap input{
  width:100%;
  padding: 18px 18px 18px 50px;
  font-size: 1.02rem;
  font-family: var(--font-body);
  background: var(--cream);
  border: 1.5px solid var(--edge);
  border-radius: 14px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.est-input-wrap input:focus{
  outline:none;
  border-color: var(--azure-400);
  background:#fff;
  box-shadow: 0 0 0 4px rgba(94,174,219,.16);
}
.est-address-row .btn{flex-shrink:0;}
.est-address-status{
  min-height: 22px;
  font-size:.92rem;
  color: var(--ink-60);
  margin-bottom:8px;
}
.est-address-status.is-ok{color: var(--azure-600);font-weight:600;}
.est-address-status.is-err{color:#B33;}
.est-address-tips{
  background: var(--azure-50);
  border-left: 3px solid var(--azure-300);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  font-size:.88rem;
  color: var(--ink-60);
}
.est-address-tips span{color: var(--azure-600);font-weight:700;margin-right:6px;}

/* Drawing toolbar */
.est-draw-toolbar{
  display:grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap:10px;
  margin-bottom:16px;
  padding:10px;
  background: var(--mist);
  border-radius: 14px;
}
.est-draw-btn{
  display:flex;align-items:center;gap:12px;
  padding: 12px 14px;
  background:#fff;
  border:1.5px solid transparent;
  border-radius: 10px;
  cursor:pointer;
  text-align:left;
  font-family:var(--font-body);
  color: var(--ink);
  transition: all .2s ease;
}
.est-draw-btn:hover{border-color: var(--azure-200);transform:translateY(-1px);}
.est-draw-btn.is-active{
  border-color: var(--azure-400);
  background: var(--azure-50);
  box-shadow: 0 4px 16px rgba(94,174,219,.18);
}
.est-draw-btn .swatch{
  width: 18px;height:18px;border-radius:6px;flex-shrink:0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
}
.est-draw-btn b{display:block;font-weight:700;font-size:.95rem;}
.est-draw-btn small{display:block;color:var(--ink-40);font-size:.76rem;}
.est-draw-actions{display:flex;gap:8px;}
.est-mini-btn{
  display:flex;align-items:center;gap:6px;
  padding: 12px 14px;
  background:#fff;
  border: 1.5px solid var(--edge);
  border-radius:10px;
  cursor:pointer;
  font-family:var(--font-body);
  font-size:.88rem;
  color: var(--ink-60);
  transition: all .2s ease;
}
.est-mini-btn svg{width:16px;height:16px;}
.est-mini-btn:hover{border-color: var(--azure-300);color: var(--azure-600);}
.est-mini-btn--danger:hover{border-color:#E8B4B4;color:#B33;}

/* Map */
.est-map-wrap{position:relative;margin-bottom:22px;}
.est-map{
  height: 480px;
  width:100%;
  border-radius:16px;
  overflow:hidden;
  border:1.5px solid var(--edge);
  background: #0F2640;
  box-shadow: inset 0 0 0 1px rgba(94,174,219,.1), 0 20px 40px -20px rgba(15,38,64,.25);
}
.est-map-legend{
  position:absolute;
  bottom:14px;left:14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius:10px;
  padding: 10px 14px;
  display:flex;gap:14px;
  font-size:.78rem;
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(15,38,64,.18);
  z-index: 400;
}
.est-map-legend > div{display:flex;align-items:center;gap:6px;}
.est-map-legend .swatch{width:12px;height:12px;border-radius:3px;}
.est-map-help{
  position:absolute;
  top:14px;left:14px;right:14px;
  display:flex;align-items:center;gap:10px;
  background: rgba(10,15,26,.78);
  color:#fff;
  padding: 10px 14px;
  border-radius:10px;
  font-size:.86rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 400;
  max-width:560px;
}
.est-help-dot{
  width:8px;height:8px;border-radius:50%;
  background: #5EAEDB;
  box-shadow: 0 0 0 4px rgba(94,174,219,.28);
  animation: estPulse 1.6s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes estPulse{
  0%,100%{box-shadow:0 0 0 4px rgba(94,174,219,.28);}
  50%{box-shadow:0 0 0 8px rgba(94,174,219,.12);}
}

/* Home type */
.est-section-title{
  display:flex;align-items:baseline;gap:10px;
  margin-bottom:14px;
  padding-top:8px;
}
.est-section-title span{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  color: var(--ink);
}
.est-section-title small{
  font-size:.82rem;
  color: var(--ink-40);
}
.est-type-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap:10px;
  margin-bottom:22px;
}
.est-type-btn{
  display:flex;flex-direction:column;align-items:center;gap:2px;
  padding: 16px 10px;
  background: var(--cream);
  border:1.5px solid var(--edge);
  border-radius: 14px;
  cursor:pointer;
  font-family:var(--font-body);
  color: var(--ink);
  transition: all .2s ease;
  text-align:center;
}
.est-type-btn:hover{border-color: var(--azure-300);transform:translateY(-2px);}
.est-type-btn.is-active{
  border-color: var(--azure-500);
  background: var(--azure-50);
  box-shadow: 0 6px 20px rgba(94,174,219,.2);
}
.est-type-ico{
  font-size: 1.6rem;
  line-height:1;
  margin-bottom:4px;
  filter: saturate(1.1);
}
.est-type-btn b{font-weight:700;font-size:.92rem;}
.est-type-btn small{color:var(--ink-40);font-size:.72rem;margin-top:2px;}

/* Areas */
.est-areas-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.est-area-card{
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border:1.5px solid var(--edge);
  border-radius:14px;
  padding: 16px 18px;
  transition: all .3s ease;
}
.est-area-card.is-filled{
  border-color: var(--azure-400);
  background: linear-gradient(180deg, #fff 0%, var(--azure-50) 100%);
  box-shadow: 0 6px 20px rgba(94,174,219,.18);
}
.est-area-lbl{
  font-size:.78rem;
  color: var(--ink-40);
  text-transform: uppercase;
  letter-spacing:.06em;
  font-weight:600;
  margin-bottom:6px;
}
.est-area-val{
  display:flex;align-items:baseline;gap:6px;
  font-family:var(--font-display);
}
.est-area-val .num{
  font-size: 1.7rem;
  font-weight:800;
  color: var(--ink);
  letter-spacing:-.02em;
}
/* Editable number input variant of .num */
.est-area-val input.num{
  width: 100%;
  min-width: 0;
  max-width: 110px;
  background: transparent;
  border: 1.5px dashed transparent;
  border-radius: 8px;
  padding: 2px 6px;
  margin-left: -6px;
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  -moz-appearance: textfield;
  transition: all .2s ease;
}
.est-area-val input.num::-webkit-outer-spin-button,
.est-area-val input.num::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.est-area-card:hover .est-area-val input.num{
  border-color: var(--azure-200);
  background: rgba(255,255,255,.6);
}
.est-area-val input.num:focus{
  outline: none;
  border-color: var(--azure-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(94,174,219,.18);
}
.est-area-card.is-filled .est-area-val input.num,
.est-area-card.is-filled .est-area-val .num{color: var(--azure-600);}
.est-area-val small{
  font-size:.78rem;
  color: var(--ink-40);
  font-weight:500;
}
.est-areas-tip{
  font-size: .82rem;
  color: var(--ink-50);
  margin: 0 0 12px;
  padding: 8px 12px;
  background: linear-gradient(90deg, rgba(94,174,219,.08), rgba(94,174,219,.02));
  border-left: 2px solid var(--azure-400);
  border-radius: 6px;
  line-height: 1.5;
}

/* Map fallback panel — shown if Leaflet fails to load */
.est-map-fallback{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  background: linear-gradient(160deg, #0b1a2e 0%, #132a46 100%);
  color: #e8f2fb;
  text-align: center;
  border-radius: 18px;
  z-index: 5;
}
.est-map-fallback .icon{
  font-size: 2.2rem;
  opacity: .8;
}
.est-map-fallback h4{
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
}
.est-map-fallback p{
  font-size: .88rem;
  max-width: 420px;
  margin: 0;
  color: rgba(232,242,251,.72);
  line-height: 1.55;
}

/* Service grid */
.est-svc-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  margin-bottom:28px;
}
.est-svc{
  position:relative;
  padding: 20px;
  background:#fff;
  border: 1.5px solid var(--edge);
  border-radius: 16px;
  cursor:pointer;
  text-align:left;
  font-family:var(--font-body);
  color: var(--ink);
  transition: all .25s ease;
  overflow:hidden;
}
.est-svc::before{
  content:"";
  position:absolute;inset:0;
  background: linear-gradient(135deg, rgba(143,200,235,.08) 0%, transparent 50%);
  opacity:0;
  transition: opacity .3s ease;
}
.est-svc:hover{
  border-color: var(--azure-300);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(30,78,126,.25);
}
.est-svc:hover::before{opacity:1;}
.est-svc.is-on{
  border-color: var(--azure-500);
  background: linear-gradient(180deg, #fff 0%, var(--azure-50) 100%);
  box-shadow: 0 20px 40px -18px rgba(30,78,126,.32);
}
.est-svc-head{
  display:flex;justify-content:space-between;align-items:flex-start;
  margin-bottom:12px;
  position:relative;
}
.est-svc-ico{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  background: var(--azure-50);
  color: var(--azure-600);
  border-radius:12px;
  flex-shrink:0;
}
.est-svc-ico svg{width:22px;height:22px;}
.est-svc.is-on .est-svc-ico{
  background: var(--g-cta);
  color:#fff;
}
.est-svc-check{
  width:24px;height:24px;border-radius:50%;
  border: 2px solid var(--edge);
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition: all .25s ease;
}
.est-svc.is-on .est-svc-check{
  background: var(--azure-500);
  border-color: var(--azure-500);
}
.est-svc.is-on .est-svc-check::after{
  content:"";
  width:8px;height:4px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform: rotate(-45deg) translate(1px,-1px);
}
.est-svc b{
  display:block;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  margin-bottom:4px;
  position:relative;
}
.est-svc small{
  display:block;
  color: var(--ink-40);
  font-size:.84rem;
  line-height:1.35;
  margin-bottom:14px;
  position:relative;
}
.est-svc-price{
  padding-top:12px;
  border-top: 1px dashed var(--edge);
  position:relative;
}
.est-svc-amt{
  font-family:var(--font-display);
  font-weight:800;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing:-.01em;
}
.est-svc.is-on .est-svc-amt{color: var(--azure-600);}

/* Bundles */
.est-bundle-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:10px;
}
.est-bundle{
  padding: 14px 18px;
  background: var(--cream);
  border:1.5px dashed var(--edge);
  border-radius: 12px;
  transition: all .3s ease;
  opacity:.55;
}
.est-bundle.is-on{
  opacity:1;
  background: linear-gradient(135deg, var(--azure-50) 0%, #fff 100%);
  border-style:solid;
  border-color: var(--azure-400);
  box-shadow: 0 10px 30px -16px rgba(30,78,126,.28);
}
.est-bundle-head{
  display:flex;justify-content:space-between;align-items:center;
  gap:10px;
  margin-bottom:4px;
}
.est-bundle b{
  font-family:var(--font-display);
  font-weight:700;
  font-size:.98rem;
}
.est-bundle-save{
  font-size:.74rem;
  font-weight:800;
  padding: 4px 10px;
  border-radius:999px;
  background: var(--azure-100);
  color: var(--azure-700);
  letter-spacing:.03em;
}
.est-bundle.is-on .est-bundle-save{
  background: var(--g-cta);color:#fff;
}
.est-bundle small{font-size:.8rem;color: var(--ink-40);}

/* Form */
.est-form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.est-form label{
  display:flex;flex-direction:column;gap:6px;
}
.est-form label span{
  font-size:.82rem;
  color: var(--ink-60);
  font-weight:600;
  letter-spacing:.02em;
}
.est-form input,
.est-form select,
.est-form textarea{
  padding: 14px 16px;
  font-size:.98rem;
  font-family:var(--font-body);
  background: var(--cream);
  border:1.5px solid var(--edge);
  border-radius: 12px;
  color: var(--ink);
  transition: all .2s ease;
}
.est-form input:focus,
.est-form select:focus,
.est-form textarea:focus{
  outline:none;
  border-color: var(--azure-400);
  background:#fff;
  box-shadow: 0 0 0 4px rgba(94,174,219,.16);
}
.est-form-full{margin-bottom:18px;display:flex;flex-direction:column;gap:6px;}
.est-form .est-submit{width:100%;justify-content:center;margin-top:6px;}
.est-form-trust{
  display:flex;flex-wrap:wrap;gap:14px;
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--edge);
  font-size:.78rem;
  color: var(--ink-40);
  justify-content:center;
}

/* Sticky total */
.est-total-card{
  position:sticky;
  top: 100px;
  background: linear-gradient(180deg, #fff 0%, var(--azure-50) 100%);
  border: 1.5px solid var(--edge);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 2px 4px rgba(15,38,64,.03), 0 30px 60px -30px rgba(15,38,64,.25);
  overflow:hidden;
}
.est-total-card::before{
  content:"";
  position:absolute;top:-1px;left:-1px;right:-1px;height:6px;
  background: var(--g-cta);
}
.est-total-head .eyebrow{
  font-size:.7rem;
  color: var(--azure-600);
  letter-spacing:.15em;
}
.est-total-head h3{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:800;
  margin: 4px 0 16px;
  color: var(--ink);
  letter-spacing:-.01em;
}
.est-total-big{
  display:flex;align-items:baseline;
  font-family:var(--font-display);
  font-weight:800;
  color: var(--ink);
  line-height:1;
  margin-bottom:4px;
}
.est-total-pre{
  font-size: 1.8rem;
  color: var(--azure-500);
  margin-right:4px;
}
.est-total-val{
  font-size: clamp(2.8rem, 3.6vw + 1rem, 3.8rem);
  letter-spacing:-.03em;
  background: linear-gradient(135deg, var(--azure-700) 0%, var(--azure-500) 100%);
  -webkit-background-clip:text;background-clip:text;
  color:transparent;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.est-total-range{
  font-size:.8rem;
  color: var(--ink-40);
  margin-bottom:18px;
  font-style:italic;
}
.est-total-lines{
  list-style:none;
  padding:0;margin: 0 0 14px;
  display:flex;flex-direction:column;gap:8px;
  max-height: 260px;overflow-y:auto;
}
.est-total-lines li{
  display:flex;justify-content:space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--edge);
  font-size:.92rem;
}
.est-total-lines li.est-total-empty{
  justify-content:center;
  color: var(--ink-40);
  font-style:italic;
  border:1px dashed var(--edge);
  border-radius:10px;
  padding: 16px;
}
.est-total-lines li span:first-child{color: var(--ink-60);}
.est-total-lines li span:last-child{color: var(--ink);font-weight:700;}
.est-total-discount{
  display:flex;justify-content:space-between;
  padding: 12px 14px;
  background: var(--azure-100);
  border-radius: 10px;
  margin-bottom:18px;
  color: var(--azure-700);
  font-weight:700;
  font-size:.92rem;
}
.est-total-foot .est-total-cta{
  width:100%;
  justify-content:center;
  margin-bottom: 12px;
  font-size:1.02rem;
}
.est-total-phone{
  display:flex;align-items:center;justify-content:center;gap:8px;
  text-decoration:none;
  color: var(--ink-60);
  font-size:.88rem;
  padding: 10px;
  border-radius:10px;
  transition: background .2s;
}
.est-total-phone:hover{background: var(--azure-50);color: var(--azure-700);}
.est-total-phone svg{width:14px;height:14px;}
.est-total-trust{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--edge);
  display:flex;justify-content:space-between;gap:10px;
}
.est-total-trust > div{
  display:flex;flex-direction:column;
  text-align:center;
  flex:1;
}
.est-total-trust b{
  font-family:var(--font-display);
  font-weight:800;
  color: var(--azure-700);
  font-size:.96rem;
  letter-spacing:-.01em;
}
.est-total-trust small{
  font-size:.68rem;
  color: var(--ink-40);
  margin-top:2px;
  line-height:1.2;
}

/* Why section */
.est-why{
  padding: clamp(60px, 8vw, 110px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-top: 1px solid var(--edge);
}
.est-why .eyebrow{color: var(--azure-600);}
.est-why h2{
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem);
  line-height:1.1;
  margin: 10px 0 38px;
  color: var(--ink);
  max-width: 720px;
  font-weight:800;
  letter-spacing:-.015em;
}
.est-why-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
}
.est-why-card{
  padding: 28px 26px;
  background:#fff;
  border:1px solid var(--edge);
  border-radius:18px;
  transition: all .3s ease;
}
.est-why-card:hover{
  transform: translateY(-4px);
  border-color: var(--azure-300);
  box-shadow: 0 30px 60px -30px rgba(15,38,64,.22);
}
.est-why-ico{
  font-size: 2.2rem;
  line-height:1;
  margin-bottom:14px;
}
.est-why-card h3{
  font-family:var(--font-display);
  font-size:1.15rem;
  font-weight:800;
  margin:0 0 8px;
  color: var(--ink);
  letter-spacing:-.01em;
}
.est-why-card p{
  margin:0;
  color: var(--ink-60);
  font-size:.94rem;
  line-height:1.5;
}

/* Final CTA */
.est-final-cta{
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--g-deep);
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.est-final-cta::before{
  content:"";
  position:absolute;inset:0;
  background: radial-gradient(circle at 50% 30%, rgba(94,174,219,.22), transparent 60%);
}
.est-final-cta .wrap{position:relative;}
.est-final-cta h2{
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight:800;
  margin: 0 0 10px;
  letter-spacing:-.015em;
}
.est-final-cta p{
  color:rgba(255,255,255,.75);
  margin: 0 0 30px;
  font-size: 1.1rem;
}
.est-final-ctas{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
}

/* Leaflet override - polygon colors set per zone via style option */
.leaflet-container{
  font-family: var(--font-body);
  background: #0A1628;
}
.leaflet-draw-toolbar{display:none !important;}
.leaflet-touch .leaflet-control-attribution{font-size: 9px;}
.est-poly-roof{stroke: #5EAEDB;fill: #5EAEDB;}
.est-poly-driveway{stroke: #8FC8EB;fill: #8FC8EB;}
.est-poly-deck{stroke: #6BA8D6;fill: #6BA8D6;}

/* Responsive */
@media (max-width: 1060px){
  .est-layout{grid-template-columns: 1fr;}
  .est-total-card{position:static;order:-1;}
  .est-total-card{margin-bottom: 22px;}
}
@media (max-width: 720px){
  .est-draw-toolbar{grid-template-columns: 1fr;}
  .est-draw-actions{grid-column: 1 / -1;justify-content:flex-end;}
  .est-map{height: 420px;}
  .est-form-row{grid-template-columns: 1fr;}
  .est-step-track{padding: 12px 0;}
  .est-step{padding: 8px 12px 8px 8px;}
  .est-step .txt b{font-size:.86rem;}
  .est-step .txt small{display:none;}
  .est-address-row{flex-direction:column;}
}

/* Estimator nav pill */
.nav-est-link{
  position:relative;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-est-link .pill-new{
  display:inline-block;
  padding: 2px 8px;
  font-size:.64rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  background: var(--g-cta);
  color:#fff;
  border-radius:999px;
  box-shadow: 0 4px 14px rgba(94,174,219,.42);
  animation: pillPulse 2.4s ease-in-out infinite;
}
@keyframes pillPulse{
  0%,100%{transform: translateY(0);}
  50%{transform: translateY(-1px);}
}

/* Estimator testimonials */
.est-testimonials{
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border-top: 1px solid var(--edge);
}
.est-testimonials .eyebrow{color: var(--azure-600);}
.est-testimonials h2{
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem);
  margin: 10px 0 36px;
  font-weight:800;
  color: var(--ink);
  letter-spacing:-.015em;
  max-width: 720px;
}
.est-tmt-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}
.est-tmt-card{
  padding: 28px;
  background:#fff;
  border:1px solid var(--edge);
  border-radius:18px;
  box-shadow: 0 30px 60px -30px rgba(15,38,64,.16);
  position:relative;
  display:flex;flex-direction:column;
}
.est-tmt-card::before{
  content:"\201C";
  position:absolute;top:12px;right:22px;
  font-family:var(--font-display);
  font-size: 5rem;
  color: var(--azure-100);
  line-height:.8;
  z-index:0;
}
.est-tmt-stars{
  color: #F5A623;
  font-size: 1.05rem;
  letter-spacing:2px;
  margin-bottom:12px;
  position:relative;
}
.est-tmt-card p{
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 22px;
  position:relative;
  flex:1;
}
.est-tmt-person{
  display:flex;gap:12px;align-items:center;
  padding-top: 16px;
  border-top: 1px solid var(--edge);
  position:relative;
}
.est-tmt-avatar{
  width: 46px;height:46px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  font-family:var(--font-display);
  font-weight:800;
  font-size: 1rem;
  flex-shrink:0;
  box-shadow: 0 6px 20px rgba(30,78,126,.28);
}
.est-tmt-person b{
  display:block;font-family:var(--font-display);font-weight:700;color:var(--ink);
}
.est-tmt-person small{display:block;color:var(--ink-40);font-size:.8rem;}

/* Estimator FAQ */
.est-faq{
  padding: clamp(60px, 8vw, 110px) 0;
  background:#fff;
  border-top:1px solid var(--edge);
}
.est-faq-layout{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items:start;
}
.est-faq-intro .eyebrow{color: var(--azure-600);}
.est-faq-intro h2{
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  font-weight:800;
  color: var(--ink);
  margin: 10px 0 16px;
  line-height: 1.12;
  letter-spacing:-.015em;
}
.est-faq-intro p{
  color: var(--ink-60);
  line-height:1.6;
}
.est-faq-intro a{
  color: var(--azure-600);
  text-decoration: none;
  font-weight:700;
  border-bottom: 2px solid rgba(94,174,219,.35);
}
.est-faq-list{display:flex;flex-direction:column;gap:10px;}
.est-faq-item{
  background: var(--cream);
  border: 1.5px solid var(--edge);
  border-radius: 14px;
  overflow:hidden;
  transition: all .25s ease;
}
.est-faq-item[open]{
  background:#fff;
  border-color: var(--azure-400);
  box-shadow: 0 20px 40px -24px rgba(30,78,126,.2);
}
.est-faq-item summary{
  list-style:none;
  cursor: pointer;
  padding: 18px 22px;
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.05rem;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.est-faq-item summary::-webkit-details-marker{display:none;}
.est-faq-caret{
  position: relative;
  width:22px;height:22px;
  flex-shrink:0;
}
.est-faq-caret::before,
.est-faq-caret::after{
  content:"";
  position:absolute;
  background: var(--azure-600);
  border-radius: 2px;
  transition: transform .3s ease;
}
.est-faq-caret::before{top: 10px;left:3px;right:3px;height:2.5px;}
.est-faq-caret::after{top: 3px;left: 10px;bottom:3px;width:2.5px;}
.est-faq-item[open] .est-faq-caret::after{transform: rotate(90deg);opacity:0;}
.est-faq-item div{
  padding: 0 22px 22px;
}
.est-faq-item p{
  margin:0;
  color: var(--ink-60);
  line-height:1.65;
  font-size:.96rem;
}

/* Save estimate button */
.est-save-btn{
  width:100%;
  padding: 12px 16px;
  background: var(--azure-50);
  border: 1.5px dashed var(--azure-300);
  border-radius: 12px;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:8px;
  color: var(--azure-700);
  font-family: var(--font-body);
  font-weight:600;
  font-size:.88rem;
  margin-bottom:8px;
  transition: all .2s ease;
}
.est-save-btn:hover{
  background: #fff;
  border-style:solid;
  border-color: var(--azure-500);
  box-shadow: 0 8px 20px -10px rgba(94,174,219,.45);
}
.est-save-btn svg{width:16px;height:16px;}
.est-save-status{
  min-height:18px;
  font-size:.78rem;
  text-align:center;
  color: var(--azure-700);
  margin-bottom:8px;
}
.est-save-status.is-ok{font-weight:700;}

@media (max-width: 860px){
  .est-faq-layout{grid-template-columns: 1fr;gap: 26px;}
}

/* Homepage estimator promo */
.home-estimator-promo{
  padding: clamp(70px, 9vw, 120px) 0;
  background: linear-gradient(180deg, #081224 0%, #0F2640 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.home-estimator-promo::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 15% 30%, rgba(94,174,219,.22), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(143,200,235,.14), transparent 60%);
  pointer-events:none;
}
.hep-grid{
  position:relative;
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items:center;
}
.hep-copy .eyebrow{
  color:#A8D5F0;
}
.hep-copy h2{
  font-size: clamp(2rem, 3.4vw + 1rem, 3.6rem);
  line-height:1.02;
  margin: 14px 0 20px;
  letter-spacing:-.02em;
  font-weight:800;
}
.hep-grad{
  background: linear-gradient(135deg, #A8D5F0 0%, #5EAEDB 55%, #FFFFFF 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hep-copy p{
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 22px;
}
.hep-bullets{
  list-style:none;padding:0;margin: 0 0 30px;
  display:flex;flex-direction:column;gap:10px;
}
.hep-bullets li{
  display:flex;align-items:center;gap:12px;
  color: rgba(255,255,255,.88);
  font-size:.98rem;
}
.hep-dot{
  width: 10px;height:10px;border-radius:50%;
  background: var(--g-cta);
  flex-shrink:0;
  box-shadow: 0 0 0 4px rgba(94,174,219,.18);
}
.hep-ctas{display:flex;gap:12px;flex-wrap:wrap;}
.home-estimator-promo .btn--ghost{
  color:#fff;border-color: rgba(255,255,255,.28);
}
.home-estimator-promo .btn--ghost:hover{background: rgba(255,255,255,.08);}

.hep-visual{position:relative;}
.hep-card{
  background: #0A1A2E;
  border: 1px solid rgba(143,200,235,.18);
  border-radius: 20px;
  overflow:hidden;
  box-shadow:
    0 2px 0 rgba(255,255,255,.04) inset,
    0 60px 120px -40px rgba(0,0,0,.7),
    0 30px 60px -30px rgba(30,78,126,.6);
  transform: perspective(1600px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s ease;
}
.hep-card:hover{transform: perspective(1600px) rotateY(-2deg) rotateX(1deg);}
.hep-card-head{
  display:flex;align-items:center;gap:6px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(143,200,235,.1);
}
.hep-card-dot{
  width:10px;height:10px;border-radius:50%;
  background: rgba(255,255,255,.2);
}
.hep-card-dot:first-child{background:#FF5F56;}
.hep-card-dot:nth-child(2){background:#FFBD2E;}
.hep-card-dot:nth-child(3){background:#27C93F;}
.hep-card-title{
  margin-left:12px;
  color:rgba(255,255,255,.55);
  font-size:.78rem;
  font-family: "SF Mono", Menlo, monospace;
}
.hep-map{
  position:relative;
  aspect-ratio: 400/260;
  background:
    radial-gradient(circle at 30% 40%, #1B3A55 0%, #081422 60%),
    #081422;
  overflow:hidden;
}
.hep-map-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(143,200,235,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,200,235,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
}
.hep-poly{
  position:absolute;inset:0;
  width:100%;height:100%;
}
.hep-poly polygon{
  fill-opacity: .28;
  stroke-width: 2;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: hepDraw 2.4s ease-out forwards;
}
.hep-poly-roof polygon{stroke:#5EAEDB;fill:#5EAEDB;animation-delay:.2s;}
.hep-poly-drive polygon{stroke:#8FC8EB;fill:#8FC8EB;animation-delay:1.1s;}
.hep-poly-deck polygon{stroke:#6BA8D6;fill:#6BA8D6;animation-delay:1.8s;}
@keyframes hepDraw{
  0%{stroke-dashoffset:500;fill-opacity:0;}
  60%{stroke-dashoffset:0;fill-opacity:0;}
  100%{stroke-dashoffset:0;fill-opacity:.28;}
}
.hep-badge{
  position:absolute;
  top:14px;right:14px;
  background: rgba(10,26,46,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border:1px solid rgba(143,200,235,.25);
  border-radius:12px;
  padding: 12px 16px;
  min-width: 170px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
}
.hep-badge-label{
  font-size:.62rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:#A8D5F0;
  font-weight:700;
}
.hep-badge-price{
  font-family:var(--font-display);
  font-size: 1.8rem;
  font-weight:800;
  background: linear-gradient(135deg, #A8D5F0 0%, #FFFFFF 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  letter-spacing:-.02em;
  line-height:1;
  margin: 4px 0 6px;
}
.hep-badge-save{
  font-size:.72rem;
  color: #8FC8EB;
  font-weight:700;
}
.hep-legend{
  display:flex;gap:14px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(143,200,235,.1);
  font-size:.78rem;
  color: rgba(255,255,255,.7);
}
.hep-legend > div{display:flex;align-items:center;gap:6px;}
.hep-legend .sw{width:10px;height:10px;border-radius:3px;}
@media (max-width: 860px){
  .hep-grid{grid-template-columns: 1fr;}
  .hep-card{transform:none;}
}

/* Estimator prefill banner on contact page */
.est-prefill-banner{
  display:flex;align-items:center;gap:14px;
  padding: 16px 18px;
  margin-top:18px;
  background: linear-gradient(135deg, var(--azure-50) 0%, #fff 100%);
  border: 1.5px solid var(--azure-300);
  border-radius:14px;
  box-shadow: 0 20px 40px -24px rgba(30,78,126,.22);
}
.est-pfb-ico{
  width: 42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  background: var(--g-cta);
  color:#fff;
  border-radius:12px;
  font-size: 1.3rem;
  flex-shrink:0;
  box-shadow: 0 6px 16px rgba(94,174,219,.38);
}
.est-pfb-body{flex:1;min-width:0;}
.est-pfb-body b{
  display:block;
  font-family: var(--font-display);
  font-weight:700;
  color: var(--ink);
}
.est-pfb-body small{
  display:block;
  color: var(--ink-60);
  font-size:.86rem;
  margin-top:2px;
}
.est-pfb-link{
  color: var(--azure-600);
  font-weight:700;
  font-size:.88rem;
  text-decoration:none;
  padding: 8px 14px;
  border-radius:10px;
  border:1.5px solid var(--azure-200);
  background:#fff;
  flex-shrink:0;
  transition: all .2s ease;
}
.est-pfb-link:hover{
  background: var(--azure-50);
  border-color: var(--azure-500);
  transform: translateX(2px);
}

/* Estimator trust strip (under hero) */
.est-trust-strip{
  background: #fff;
  border-bottom: 1px solid var(--edge);
  padding: 22px 0;
}
.est-trust-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  align-items:center;
}
.est-trust-item{
  display:flex;align-items:center;gap:12px;
  padding: 6px 10px;
}
.est-trust-stars{
  color: #F5A623;
  font-size:1rem;
  letter-spacing: 2px;
  flex-shrink:0;
}
.est-trust-ico{
  font-size: 1.6rem;
  width:40px;
  flex-shrink:0;
  text-align:center;
}
.est-trust-meta{display:flex;flex-direction:column;line-height:1.1;}
.est-trust-meta b{
  font-family: var(--font-display);
  font-weight:800;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing:-.01em;
}
.est-trust-meta small{
  font-size:.72rem;
  color: var(--ink-40);
  margin-top:3px;
}

/* Related services cross-sell */
.est-related{
  padding: clamp(60px, 8vw, 110px) 0;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border-top:1px solid var(--edge);
}
.est-related .eyebrow{color: var(--azure-600);}
.est-related h2{
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  font-weight:800;
  color: var(--ink);
  margin: 10px 0 8px;
  letter-spacing:-.015em;
  line-height:1.12;
}
.est-related-sub{
  color: var(--ink-60);
  font-size: 1rem;
  margin: 0 0 32px;
  max-width: 620px;
}
.est-related-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.est-related-card{
  position:relative;
  padding: 22px 24px 24px;
  background:#fff;
  border:1.5px solid var(--edge);
  border-radius:16px;
  text-decoration:none;
  color: var(--ink);
  display:flex;flex-direction:column;gap:4px;
  transition: all .3s ease;
  overflow:hidden;
}
.est-related-card::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;height:3px;
  background: var(--g-cta);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.est-related-card:hover{
  transform: translateY(-4px);
  border-color: var(--azure-300);
  box-shadow: 0 30px 60px -30px rgba(30,78,126,.25);
}
.est-related-card:hover::before{transform: translateY(0);}
.est-related-ico{
  width: 46px;height:46px;
  display:flex;align-items:center;justify-content:center;
  background: var(--azure-50);
  color: var(--azure-600);
  border-radius:12px;
  margin-bottom:10px;
  font-size: 1.3rem;
}
.est-related-ico svg{width:22px;height:22px;}
.est-related-card b{
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.04rem;
}
.est-related-card small{
  color: var(--ink-40);
  font-size:.84rem;
}
.est-related-arrow{
  position: absolute;
  top: 22px;right: 22px;
  color: var(--azure-500);
  font-size: 1.4rem;
  transition: transform .3s ease;
}
.est-related-card:hover .est-related-arrow{transform: translateX(4px);}
.est-related-card--wide{grid-column: span 2;background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);}
.est-related-card--alt{
  background: linear-gradient(135deg, var(--azure-700) 0%, var(--azure-900) 100%);
  border-color: transparent;
  color:#fff;
}
.est-related-card--alt b{color:#fff;}
.est-related-card--alt small{color: rgba(255,255,255,.75);}
.est-related-card--alt .est-related-ico{
  background: rgba(255,255,255,.12);
  color:#fff;
}
.est-related-card--alt .est-related-arrow{color:#A8D5F0;}
.est-related-card--alt:hover{border-color: rgba(168,213,240,.4);}

@media (max-width: 960px){
  .est-related-grid{grid-template-columns: repeat(2, 1fr);}
  .est-related-card--wide{grid-column: span 2;}
}
@media (max-width: 600px){
  .est-related-grid{grid-template-columns: 1fr;}
  .est-related-card--wide{grid-column: span 1;}
}

/* Inline estimator CTA (used on service pages) */
.est-inline-cta{
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.est-inline-card{
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items:center;
  padding: clamp(22px, 3vw, 36px) clamp(24px, 3.5vw, 44px);
  background: linear-gradient(135deg, var(--azure-50) 0%, #fff 70%);
  border: 1.5px solid var(--azure-200);
  border-radius: 22px;
  box-shadow: 0 2px 4px rgba(15,38,64,.03), 0 40px 80px -40px rgba(30,78,126,.22);
  position:relative;
  overflow:hidden;
}
.est-inline-card::before{
  content:"";
  position:absolute;
  top:-50%;right:-10%;
  width:60%;height:200%;
  background: radial-gradient(circle at center, rgba(143,200,235,.24), transparent 60%);
  pointer-events:none;
}
.est-inline-ico{
  width: 68px;height:68px;
  display:flex;align-items:center;justify-content:center;
  background: var(--g-cta);
  color:#fff;
  border-radius:18px;
  font-size: 2rem;
  flex-shrink:0;
  box-shadow: 0 16px 40px -12px rgba(94,174,219,.5);
  position:relative;
}
.est-inline-body{position:relative;min-width:0;}
.est-inline-body .eyebrow{color: var(--azure-600);}
.est-inline-body h3{
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.4vw + .8rem, 1.7rem);
  font-weight:800;
  color: var(--ink);
  margin: 6px 0 8px;
  line-height:1.15;
  letter-spacing:-.01em;
}
.est-inline-body p{
  margin: 0;
  color: var(--ink-60);
  font-size:.96rem;
  line-height:1.55;
  max-width: 680px;
}
.est-inline-card .btn{position:relative;flex-shrink:0;}
@media (max-width: 860px){
  .est-inline-card{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .est-inline-ico{margin: 0 auto;}
  .est-inline-body p{max-width: none;}
  .est-inline-card .btn{width:100%;justify-content:center;}
}

/* ================================================================
   COST-GUIDE PAGE (pressure-washing-cost-myrtle-beach)
================================================================ */
.cost-quick-answer{
  background: linear-gradient(135deg, #fff 0%, var(--azure-50) 100%);
  border: 1.5px solid var(--azure-200);
  border-left: 4px solid var(--azure-500);
  border-radius: 18px;
  padding: 28px 36px;
  box-shadow: 0 10px 40px rgba(30,78,126,.08);
}
.cost-quick-answer-eyebrow{
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--azure-600);
  margin-bottom: 8px;
}
.cost-quick-answer h2{
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.6vw + .8rem, 1.8rem);
  margin: 0 0 14px;
  color: var(--ink);
}
.cost-quick-answer p{
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-70);
  margin: 0;
}
.cost-quick-answer strong{ color: var(--azure-600); font-weight: 700; }

.cost-table-wrap{
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(10,15,26,.08);
  background: #fff;
  border: 1px solid var(--edge);
}
.cost-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.cost-table thead th{
  background: linear-gradient(180deg, var(--azure-900) 0%, var(--ink) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
  padding: 16px 20px;
  font-weight: 700;
}
.cost-table tbody td{
  padding: 18px 20px;
  border-bottom: 1px solid var(--edge);
  vertical-align: top;
  font-size: .98rem;
  color: var(--ink-70);
}
.cost-table tbody tr:last-child td{ border-bottom: none; }
.cost-table tbody tr:nth-child(even){ background: var(--cream); }
.cost-table tbody td strong{
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.cost-table tbody td small{
  display: block;
  color: var(--ink-40);
  font-size: .82rem;
}
.cost-table tbody td:nth-child(2),
.cost-table tbody td:nth-child(3),
.cost-table tbody td:nth-child(4){
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--azure-600);
}
.cost-table-note{
  font-size: .88rem;
  color: var(--ink-50);
  margin-top: 18px;
  line-height: 1.6;
  max-width: 820px;
}

/* Bundle cards */
.cost-bundle-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.cost-bundle{
  background: #fff;
  border: 1.5px solid var(--edge);
  border-radius: 18px;
  padding: 26px 24px;
  transition: all .3s ease;
  position: relative;
}
.cost-bundle:hover{
  border-color: var(--azure-400);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,78,126,.14);
}
.cost-bundle.is-featured{
  background: linear-gradient(160deg, var(--azure-900) 0%, var(--ink) 100%);
  color: #fff;
  border-color: var(--azure-500);
  box-shadow: 0 16px 48px rgba(30,78,126,.30);
}
.cost-bundle.is-featured h3,
.cost-bundle.is-featured p,
.cost-bundle.is-featured .cost-bundle-range{ color: #fff; }
.cost-bundle.is-featured .cost-bundle-pct{ color: var(--azure-200); }
.cost-bundle-badge{
  position: absolute;
  top: -12px; right: 18px;
  background: linear-gradient(135deg, var(--azure-400), var(--azure-500));
  color: #fff;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(94,174,219,.45);
}
.cost-bundle-pct{
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--azure-600);
  line-height: 1;
  margin-bottom: 10px;
}
.cost-bundle h3{
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.cost-bundle p{
  font-size: .9rem;
  color: var(--ink-50);
  margin: 0 0 14px;
  line-height: 1.5;
}
.cost-bundle-range{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  padding-top: 12px;
  border-top: 1px dashed var(--edge);
}

/* Cost drivers */
.cost-drivers-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.cost-driver{
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  transition: all .3s ease;
}
.cost-driver:hover{
  border-color: var(--azure-300);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,78,126,.10);
}
.cost-driver-num{
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--azure-400);
  margin-bottom: 10px;
}
.cost-driver h3{
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.cost-driver p{
  font-size: .92rem;
  color: var(--ink-60);
  margin: 0;
  line-height: 1.55;
}

/* Final CTA box (shared — reuses final-cta) */
.final-cta-box{
  background: linear-gradient(135deg, var(--azure-900) 0%, var(--ink) 100%);
  border-radius: 22px;
  padding: 48px 56px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(10,15,26,.20);
  position: relative;
  overflow: hidden;
}
.final-cta-box::before{
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse, rgba(94,174,219,.22) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-eyebrow{
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--azure-200);
  margin-bottom: 10px;
  position: relative;
}
.final-cta-box h2{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw + .9rem, 2.2rem);
  color: #fff;
  margin: 0 0 14px;
  position: relative;
}
.final-cta-box p{
  font-size: 1.05rem;
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin: 0 auto 26px;
  line-height: 1.6;
  position: relative;
}
.final-cta-row{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Dark section variant used in cost guide red-flags block */
.section--dark{
  background: linear-gradient(160deg, var(--ink) 0%, var(--azure-900) 100%);
  color: rgba(255,255,255,.88);
}
.section--dark h2{ color: #fff; }
.section--dark .eyebrow{ color: var(--azure-200); }

@media (max-width: 720px){
  .cost-quick-answer{ padding: 22px; }
  .final-cta-box{ padding: 34px 24px; }
}

/* ================================================================
   ESTIMATOR LIVE TRUST BAR (jobs / sq ft / years / reviews)
================================================================ */
.est-livebar{
  padding: 60px 0 70px;
  background: linear-gradient(170deg, #0a0f1a 0%, #132a46 50%, #0a0f1a 100%);
  position: relative;
  overflow: hidden;
}
.est-livebar::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(94,174,219,.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(94,174,219,.12) 0%, transparent 45%);
  pointer-events: none;
}
.est-livebar::after{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: .6;
}
.est-livebar .wrap{ position: relative; z-index: 1; }
.est-livebar-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  padding: 10px 0;
}
.est-livebar-cell{
  text-align: center;
  padding: 0 20px;
}
.est-livebar-num{
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.4vw + 1rem, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, var(--azure-200) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.est-livebar-num sub{
  font-size: .42em;
  font-weight: 700;
  color: var(--azure-200);
  -webkit-text-fill-color: var(--azure-200);
  margin-left: 4px;
  vertical-align: baseline;
  letter-spacing: 0;
}
.est-livebar-lbl{
  font-family: var(--font-display);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--azure-200);
  margin-bottom: 6px;
}
.est-livebar-sub{
  font-size: .84rem;
  color: rgba(255,255,255,.60);
  font-weight: 400;
  line-height: 1.45;
}
.est-livebar-stars{ color: #FFC940; letter-spacing: 2px; }
.est-livebar-divider{
  width: 1px;
  height: 68px;
  background: linear-gradient(180deg, transparent 0%, rgba(143,200,235,.32) 50%, transparent 100%);
}
.est-livebar-foot{
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(143,200,235,.18);
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  font-weight: 500;
  text-align: center;
}
.est-livebar-foot svg{
  width: 22px; height: 22px;
  color: var(--azure-300);
  flex: 0 0 auto;
}
@media (max-width: 900px){
  .est-livebar{ padding: 48px 0 54px; }
  .est-livebar-grid{
    grid-template-columns: 1fr 1fr;
    gap: 36px 16px;
  }
  .est-livebar-divider{ display: none; }
  .est-livebar-foot{
    flex-direction: column;
    gap: 10px;
    font-size: .82rem;
  }
}
@media (max-width: 500px){
  .est-livebar-grid{ grid-template-columns: 1fr; gap: 28px; }
  .est-livebar-cell{ padding: 0 10px; }
}

/* ==========================================================================
   Cost Links Strip (service-city -> cost guide internal linking)
   ========================================================================== */
.cost-links-strip{
  padding: 72px 0 88px;
  background:
    radial-gradient(1200px 500px at 90% 0%, rgba(46,124,189,0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
  border-top: 1px solid var(--edge);
}
.cost-links-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.cost-links-head .eyebrow{
  color: var(--azure-700);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cost-links-head h2{
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
}
.cost-links-head p{
  color: #556476;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.cost-links-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.cost-links-card{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 14px rgba(17,28,44,0.04);
  position: relative;
  overflow: hidden;
}
.cost-links-card::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,124,189,0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.cost-links-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(17,28,44,0.12);
  border-color: var(--azure-300);
}
.cost-links-card:hover::before{ opacity: 1; }
.cost-links-card-ico{
  width: 48px; height: 48px;
  flex: 0 0 48px;
  display: grid; place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, var(--azure-100), var(--azure-200));
  border: 1px solid var(--azure-200);
  border-radius: 14px;
  color: var(--azure-800);
}
.cost-links-card-body{ display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cost-links-card-eyebrow{
  color: var(--azure-700);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cost-links-card-body strong{
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.cost-links-card-body small{
  font-size: 13.5px;
  color: #6b7a8c;
}
@media (max-width: 640px){
  .cost-links-strip{ padding: 56px 0 64px; }
  .cost-links-card{ padding: 18px 20px; gap: 14px; }
  .cost-links-card-ico{ width: 42px; height: 42px; flex-basis: 42px; font-size: 19px; }
  .cost-links-card-body strong{ font-size: 16px; }
}

/* ==========================================================================
   City Links Section (service pages → city sub-pages)
   ========================================================================== */
.city-links-section{
  padding: 72px 0 88px;
  background: linear-gradient(180deg, rgba(var(--azure-50-rgb,235,247,253),.45) 0%, #fff 100%);
}
.city-links-section .eyebrow{ margin-bottom: 10px; }
.city-links-section h2{ margin-bottom: 12px; }
.city-links-sub{
  color: var(--ink-60, #596a7c);
  max-width: 54ch;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
}
.city-links-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.city-card{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink, #0a0f1a);
  transition: all .22s ease;
  text-decoration: none;
}
.city-card svg{
  flex-shrink: 0;
  stroke: var(--azure-500, #3a90c6);
  transition: stroke .22s ease;
}
.city-card:hover{
  border-color: var(--azure-400, #5eaedb);
  box-shadow: 0 6px 20px rgba(58,144,198,.15);
  transform: translateY(-2px);
  color: var(--azure-700, #1a5276);
}
.city-card:hover svg{
  stroke: var(--azure-700, #1a5276);
}
@media (max-width: 640px){
  .city-links-section{ padding: 56px 0 64px; }
  .city-links-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .city-card{ padding: 13px 14px; font-size: .88rem; }
}

/* ==========================================================================
   Seen-In Badge Strip (homepage hero trust anchor)
   ========================================================================== */
.seen-in-strip{
  padding: 34px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border-top: 1px solid var(--edge);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.seen-in-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.seen-in-label{
  color: #6b7a8c;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding-right: 10px;
}
.seen-in-label::after{
  content:"";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 1px;
  height: 18px;
  background: var(--edge);
}
.seen-in-row{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.seen-in-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 999px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(17,28,44,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.seen-in-badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(17,28,44,0.09);
  border-color: var(--azure-300);
}
.seen-in-badge svg{
  width: 22px; height: 22px;
  flex: 0 0 22px;
}
.seen-in-badge .sib-mark{
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 7px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.sib-mark--bbb{ background: linear-gradient(135deg, #0b3a7a, #1e4e7e); }
.sib-mark--angi{ background: linear-gradient(135deg, #ef5a29, #b93d14); }
.sib-mark--chamber{ background: linear-gradient(135deg, #0f3d2c, #1c6a48); }
.sib-mark--nextdoor{ background: linear-gradient(135deg, #006336, #00894a); }

/* ==========================================================================
   Sticky Mobile Call-Now Bar (cost pages)
   ========================================================================== */
.sticky-call-bar{
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 950;
  padding: 10px 12px 10px 14px;
  background: linear-gradient(135deg, #0b1a30 0%, #14325b 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(10,25,55,0.36), 0 2px 10px rgba(10,25,55,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(140%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-call-bar.is-visible{ transform: translateY(0); }
.sticky-call-bar-inner{
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-call-copy{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sticky-call-eyebrow{
  color: #7ac0ff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sticky-call-title{
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.sticky-call-btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #3bcf7a 0%, #1fa65a 100%);
  color: #05210e;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(31,166,90,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sticky-call-btn:hover{ transform: translateY(-1px); }
.sticky-call-btn:active{ transform: translateY(0); }
.sticky-call-btn svg{ width: 16px; height: 16px; }
.sticky-call-btn--est{
  background: linear-gradient(135deg, #4aa8ff 0%, #1e6bc6 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30,107,198,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
@media (max-width: 820px){
  .sticky-call-bar{ display: block; }
  body.has-sticky-call{ padding-bottom: 90px; }
}

/* ==========================================================================
   BA Carousel (multi-project upgrade around existing .ba-wrap)
   ========================================================================== */
.ba-carousel{
  max-width: 1100px;
  margin: 0 auto;
}
.ba-wrap{ position: relative; }
.ba-loading-hint{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 18px;
  background: rgba(10,20,40,0.72);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  opacity: 0;
  animation: ba-hint-pulse 2.4s ease-out 1.6s 1 forwards;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
@keyframes ba-hint-pulse {
  0% { opacity: 0; transform: translate(-50%, -42%); }
  20% { opacity: 1; transform: translate(-50%, -50%); }
  80% { opacity: 1; transform: translate(-50%, -50%); }
  100% { opacity: 0; transform: translate(-50%, -58%); }
}
.ba-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6px 4px;
  flex-wrap: wrap;
}
.ba-meta-project{ display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ba-meta-eyebrow{
  color: var(--azure-700);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ba-meta-svc{
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  transition: opacity 0.25s ease;
}
.ba-meta-row{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
  color: #55657a;
  font-size: 13.5px;
}
.ba-meta-row span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ba-meta-row svg{
  width: 14px; height: 14px;
  color: var(--azure-600);
}
.ba-meta-row b{ color: #1f2d42; font-weight: 600; }
.ba-meta-nav{ display: flex; gap: 8px; flex: 0 0 auto; }
.ba-nav-btn{
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(17,28,44,0.06);
}
.ba-nav-btn:hover{
  background: var(--azure-50);
  border-color: var(--azure-300);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(17,28,44,0.10);
}
.ba-nav-btn svg{ width: 18px; height: 18px; }
.ba-thumbs{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.ba-thumb{
  position: relative;
  aspect-ratio: 16 / 10;
  background: #d7e4f0;
  border-radius: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ba-thumb::before,
.ba-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.35s ease;
}
.ba-thumb::before{
  background-image: var(--before-url);
}
.ba-thumb::after{
  background-image: var(--after-url);
  clip-path: inset(0 0 0 50%);
}
.ba-thumb-label{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,20,40,0.78) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.ba-thumb-label::before{
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--azure-300);
}
.ba-thumb.is-active{
  border-color: var(--azure-500);
  box-shadow: 0 14px 34px rgba(30,78,126,0.28);
  transform: translateY(-2px);
}
.ba-thumb.is-active .ba-thumb-label::before{ background: #3bcf7a; }
.ba-thumb:focus-visible{ outline: 2px solid var(--azure-500); outline-offset: 3px; }
@media (max-width: 780px){
  .ba-thumbs{ grid-template-columns: repeat(2, 1fr); }
  .ba-meta-svc{ font-size: 20px; }
  .ba-meta-row{ gap: 14px; font-size: 12.5px; }
}
@media (max-width: 460px){
  .ba-meta{ flex-direction: column; align-items: flex-start; }
  .ba-meta-nav{ align-self: flex-end; }
}

/* ==========================================================================
   Mid-article "Lock Your Price" inline CTA (cost pages)
   ========================================================================== */
.price-lock-cta{
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 42px;
  background: linear-gradient(135deg, #0b1a30 0%, #1e4e7e 55%, #2e7cbd 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(11,26,48,0.28);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.price-lock-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(122,192,255,0.28), transparent 60%),
    radial-gradient(500px 180px at 100% 100%, rgba(59,207,122,0.12), transparent 70%);
  pointer-events: none;
}
.price-lock-cta::after{
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.price-lock-body{ position: relative; z-index: 1; min-width: 0; }
.price-lock-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7ac0ff;
  margin-bottom: 10px;
}
.price-lock-eyebrow::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3bcf7a;
  box-shadow: 0 0 0 4px rgba(59,207,122,0.22);
}
.price-lock-title{
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.12;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.015em;
}
.price-lock-title span{ color: #7ac0ff; }
.price-lock-body p{
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.price-lock-cta-btn{
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: linear-gradient(135deg, #3bcf7a 0%, #1fa65a 100%);
  color: #052614;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(31,166,90,0.42), inset 0 1px 0 rgba(255,255,255,0.35);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-lock-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(31,166,90,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.price-lock-cta-btn svg{ width: 18px; height: 18px; }
@media (max-width: 720px){
  .price-lock-cta{
    grid-template-columns: 1fr;
    padding: 28px 26px;
    gap: 20px;
    text-align: left;
  }
  .price-lock-cta-btn{ justify-self: start; }
}

/* ==========================================================================
   Estimator Exit-Intent "Lock This Price" Modal
   ========================================================================== */
.plock-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(6,12,22,0.64);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.plock-backdrop.is-open{ display: flex; opacity: 1; }
.plock-modal{
  position: relative;
  max-width: 520px;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border-radius: 22px;
  padding: 36px 36px 30px;
  box-shadow: 0 40px 100px rgba(6,12,22,0.45), 0 2px 8px rgba(6,12,22,0.15);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.plock-backdrop.is-open .plock-modal{ transform: translateY(0) scale(1); }
.plock-modal::before{
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,124,189,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.plock-close{
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 999px;
  color: #55657a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}
.plock-close:hover{ background: #f4f8fc; color: var(--ink); }
.plock-eyebrow{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--azure-700);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plock-eyebrow::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3bcf7a;
  box-shadow: 0 0 0 4px rgba(59,207,122,0.22);
  animation: plock-pulse 2s ease-in-out infinite;
}
@keyframes plock-pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(59,207,122,0.22); }
  50%   { box-shadow: 0 0 0 7px rgba(59,207,122,0.06); }
}
.plock-title{
  position: relative;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.plock-total{ color: var(--azure-700); }
.plock-sub{
  position: relative;
  color: #55657a;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.plock-form{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
}
.plock-form input{
  padding: 14px 16px;
  border: 1px solid var(--edge);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}
.plock-form input:focus{
  outline: none;
  border-color: var(--azure-500);
  box-shadow: 0 0 0 3px rgba(46,124,189,0.18);
}
.plock-form button{
  padding: 14px 22px;
  background: linear-gradient(135deg, #3bcf7a 0%, #1fa65a 100%);
  color: #052614;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(31,166,90,0.38), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.plock-form button:hover{ transform: translateY(-1px); }
.plock-fine{
  position: relative;
  font-size: 12px;
  color: #7a8599;
  margin: 0;
}
.plock-fine b{ color: var(--ink); }
.plock-success{
  position: relative;
  display: none;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(59,207,122,0.16), rgba(31,166,90,0.08));
  border: 1px solid rgba(31,166,90,0.28);
  border-radius: 14px;
  color: #0a3d20;
  font-size: 14.5px;
  line-height: 1.5;
  margin-top: 8px;
}
.plock-success b{ color: #07301a; }
.plock-modal.is-success .plock-form,
.plock-modal.is-success .plock-fine{ display: none; }
.plock-modal.is-success .plock-success{ display: block; }
@media (max-width: 540px){
  .plock-modal{ padding: 30px 24px 24px; }
  .plock-title{ font-size: 22px; }
  .plock-form{ grid-template-columns: 1fr; }
  .plock-form button{ justify-self: stretch; }
}
@media (max-width: 640px){
  .seen-in-strip{ padding: 26px 0 90px; }
  .seen-in-inner{ gap: 16px; }
  .seen-in-label{ padding-right: 0; }
  .seen-in-label::after{ display: none; }
  .seen-in-row{ gap: 14px; }
  .seen-in-badge{ padding: 8px 12px; font-size: 12px; }
}

/* ==========================================================================
   Meet the Team Grid
   ========================================================================== */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--wrap);
}
.team-card{
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.team-photo{
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}
.team-photo-bg{
  position: absolute; inset: 0;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-photo-bg{ transform: scale(1.06); }
.team-role-badge{
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  color: var(--azure-700, #1a5276);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 8px;
}
.team-card h3{
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 18px 20px 4px;
  color: var(--ink);
}
.team-role{
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--azure-500, #3a90c6);
  margin-bottom: 10px;
  padding: 0 20px;
}
.team-card p{
  font-size: .88rem;
  color: var(--ink-60, #596a7c);
  line-height: 1.55;
  padding: 0 20px 22px;
  margin: 0;
}
@media (max-width: 900px){ .team-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .team-grid{ grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }

/* ==========================================================================
   Trust Bar Clickable Item + COI Modal
   ========================================================================== */
.tr-item--clickable{
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: inherit;
  position: relative;
  transition: color .2s;
}
.tr-item--clickable:hover{ color: var(--azure-400, #5eaedb); }
.tr-item-peek{
  font-size: .72rem;
  font-weight: 600;
  color: var(--azure-400, #5eaedb);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
  margin-left: 4px;
}
.tr-item--clickable:hover .tr-item-peek{
  opacity: 1;
  transform: translateX(0);
}
.coi-backdrop{
  position: fixed; inset: 0;
  z-index: 1100;
  background: rgba(10,15,26,.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.coi-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}
.coi-modal{
  position: relative;
  max-width: 520px;
  width: 94%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0,0,0,.22);
  transform: translateY(16px) scale(.97);
  transition: transform .3s var(--ease);
}
.coi-backdrop.is-open .coi-modal{
  transform: translateY(0) scale(1);
}
.coi-close{
  position: absolute; top: 16px; right: 18px;
  background: rgba(255,255,255,.2); border: none;
  color: rgba(255,255,255,.8);
  font-size: 26px; line-height: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}
.coi-close:hover{ background: rgba(255,255,255,.35); color: #fff; }
.coi-header{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 30px 22px;
  background: linear-gradient(135deg, #1e4e7e, #0f2640);
  color: #fff;
}
.coi-shield{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.coi-title{
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}
.coi-subtitle{
  font-size: .85rem;
  opacity: .7;
  margin: 2px 0 0;
}
.coi-body{ padding: 24px 30px 28px; }
.coi-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.coi-row:last-of-type{ margin-bottom: 20px; }
.coi-field{}
.coi-label{
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-40, #8899a6);
  margin-bottom: 4px;
}
.coi-value{
  display: block;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
}
.coi-value--green{ color: #11a855; }
.coi-note{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--azure-50, #ebf7fd);
  border-radius: 12px;
  font-size: .85rem;
  color: var(--ink-60, #596a7c);
  line-height: 1.55;
}
.coi-note svg{ flex-shrink: 0; margin-top: 2px; stroke: var(--azure-500, #3a90c6); }
.coi-note a{ color: var(--azure-600, #2b7eb5); font-weight: 600; }
@media (max-width: 540px){
  .coi-header{ padding: 22px 20px 18px; }
  .coi-body{ padding: 20px; }
  .coi-row{ grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================================================
   Exit-Intent $50 Off Modal (desktop)
   ========================================================================== */
.exit-backdrop{
  position: fixed; inset: 0;
  z-index: 1200;
  background: rgba(10,15,26,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.exit-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}
.exit-modal{
  position: relative;
  max-width: 460px;
  width: 92%;
  background: #fff;
  border-radius: 20px;
  padding: 44px 38px 36px;
  box-shadow: 0 32px 72px rgba(0,0,0,.25);
  text-align: center;
  transform: translateY(18px) scale(.97);
  transition: transform .35s var(--ease, cubic-bezier(.22,1,.36,1));
}
.exit-backdrop.is-open .exit-modal{
  transform: translateY(0) scale(1);
}
.exit-close{
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 28px; color: var(--ink-40, #8899a6);
  cursor: pointer; line-height: 1;
  transition: color .2s;
}
.exit-close:hover{ color: var(--ink, #0a0f1a); }
.exit-badge{
  display: inline-block;
  background: linear-gradient(135deg, #11a855, #0dbe5a);
  color: #fff;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -.02em;
  padding: 10px 28px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(17,168,85,.3);
}
.exit-title{
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--ink, #0a0f1a);
}
.exit-sub{
  font-size: .95rem;
  color: var(--ink-60, #596a7c);
  line-height: 1.6;
  margin-bottom: 24px;
}
.exit-form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 14px;
}
.exit-form input{
  padding: 14px 16px;
  border: 1.5px solid var(--edge, #dde3ea);
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.exit-form input:focus{
  border-color: var(--azure-400, #5eaedb);
  box-shadow: 0 0 0 3px rgba(94,174,219,.18);
}
.exit-form button{
  white-space: nowrap;
  padding: 14px 22px;
}
.exit-fine{
  font-size: .78rem;
  color: var(--ink-40, #8899a6);
}
.exit-success{
  padding: 20px 0 8px;
}
.exit-check{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #11a855, #0dbe5a);
  color: #fff;
  font-size: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.exit-success b{
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.exit-success p{
  font-size: .92rem;
  color: var(--ink-60, #596a7c);
  margin: 0;
}
@media (max-width: 540px){
  .exit-modal{ padding: 36px 24px 28px; }
  .exit-title{ font-size: 1.15rem; }
  .exit-form{ grid-template-columns: 1fr; }
}


/* ==========================================================================
   Video Lightbox Modal
   ========================================================================== */
.video-backdrop{
  position: fixed; inset: 0;
  z-index: 1300;
  background: rgba(5,8,14,.90);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.video-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}
.video-frame{
  position: relative;
  width: min(92vw, 900px);
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  background: #000;
  transform: scale(.96);
  transition: transform .3s var(--ease);
}
.video-backdrop.is-open .video-frame{ transform: scale(1); }
.video-frame video{
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
}
.video-close{
  position: absolute;
  top: 18px; right: 22px;
  z-index: 2;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.video-close:hover{
  background: rgba(255,255,255,.22);
  transform: scale(1.08);
}

/* ================================================================
   RESULT GALLERY STRIP (inline photo galleries on service pages)
   ================================================================ */
.result-gallery{padding:0 0 20px;}
.result-gallery .section-intro{margin-bottom:32px;}
.result-strip{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px;}
.result-card{position:relative;border-radius:14px;overflow:hidden;aspect-ratio:4/3;box-shadow:0 4px 20px rgba(10,15,26,.12);}
.result-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease;}
.result-card:hover img{transform:scale(1.05);}
.result-card figcaption{position:absolute;bottom:0;left:0;right:0;padding:16px 18px 14px;background:linear-gradient(0deg,rgba(10,15,26,.78) 0%,transparent 100%);color:#fff;font-size:.82rem;line-height:1.35;}
.result-card figcaption strong{display:block;font-size:.92rem;font-weight:600;margin-bottom:2px;}
@media(max-width:599px){.result-strip{grid-template-columns:1fr 1fr;gap:10px;}.result-card figcaption{padding:10px 12px 10px;font-size:.75rem;}.result-card figcaption strong{font-size:.82rem;}}

/* ================================================================
   TRUST STRIP (social proof bar on service pages)
   ================================================================ */
.trust-strip{
  background:linear-gradient(135deg,#0a0f1a 0%,#1E4E7E 100%);
  padding:16px 0;
  border-bottom:1px solid rgba(94,174,219,.18);
}
.trust-items{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  flex-wrap:wrap;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.92);
  font-size:.85rem;
  font-family:'Inter',sans-serif;
  white-space:nowrap;
}
.trust-item strong{
  color:#fff;
  font-weight:700;
}
.trust-ico{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(94,174,219,.15);
  color:#5EAEDB;
  flex-shrink:0;
}
.trust-ico svg{
  stroke:#5EAEDB;
}
.trust-ico--gold{
  background:rgba(255,193,7,.15);
  color:#FFC107;
  font-size:1rem;
}
@media(max-width:768px){
  .trust-items{gap:16px 24px;}
  .trust-item{font-size:.78rem;}
  .trust-ico{width:24px;height:24px;}
  .trust-ico svg{width:16px;height:16px;}
}
@media(max-width:480px){
  .trust-items{gap:10px 16px;justify-content:flex-start;}
  .trust-item{font-size:.74rem;}
}

/* ================================================================
   FEATURED REVIEW (service page testimonial highlight)
   ================================================================ */
.featured-review{
  text-align:center;
  max-width:680px;
  margin:0 auto;
  position:relative;
}
.fr-quote-mark{
  font-size:4.5rem;
  line-height:1;
  color:#5EAEDB;
  opacity:.35;
  font-family:Georgia,serif;
  margin-bottom:-16px;
}
.fr-quote{
  font-size:1.18rem;
  line-height:1.7;
  color:#1a2333;
  font-style:italic;
  margin:0 0 24px;
  font-family:'Inter',sans-serif;
}
.fr-author{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.fr-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#1E4E7E,#5EAEDB);
  color:#fff;
  font-weight:700;
  font-size:.82rem;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.fr-name{
  font-weight:700;
  color:#0a0f1a;
  font-size:.92rem;
}
.fr-loc{
  font-size:.8rem;
  color:#5a6a7e;
}
.fr-stars{
  color:#FFC107;
  letter-spacing:1px;
}
.fr-google{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#fff;
  border:1.5px solid #e0e6ed;
  color:#4285F4;
  font-weight:800;
  font-size:.85rem;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
@media(max-width:599px){
  .fr-quote{font-size:1rem;}
  .fr-quote-mark{font-size:3rem;}
}
