/* =========================================================================
   Leakless Plumbing — GTA Plumbing Services
   Design system: Soft Premium SaaS — pastel blue canvas, large rounded
   floating cards, light glass surfaces, one controlled electric-blue CTA.
   Mobile-first, fast-loading, no external dependencies.
   ========================================================================= */

:root {
  /* Brand palette — soft, controlled, blue-led */
  --navy: #0b1730;
  --navy-2: #13234a;
  --steel: #2b3f63;
  --water: #2563eb;
  --water-2: #3b82f6;
  --water-3: #60a5fa;
  --water-4: #93c5fd;
  --sky-tint: #eaf1ff;
  --sky-tint-2: #f5f9ff;

  /* Warm accent — reserved for the sticky "urgent" call bar only */
  --flame: #ff6b45;
  --flame-2: #ff8a63;

  /* Neutrals (blue-leaning) */
  --ink: #0b1730;
  --slate: #48597a;
  --muted: #6b7a99;
  --line: rgba(37, 99, 235, .14);
  --line-2: rgba(37, 99, 235, .08);
  --bg: #ffffff;
  --bg-soft: #f4f8ff;
  --white: #ffffff;

  /* Glass surfaces (light) */
  --glass-bg: rgba(255, 255, 255, .66);
  --glass-bg-strong: rgba(255, 255, 255, .88);
  --glass-border: rgba(255, 255, 255, .7);
  --glass-border-blue: rgba(147, 197, 253, .5);
  --glass-blur: 20px;

  /* Effects — soft, low-opacity, blue-tinted */
  --shadow-sm: 0 1px 2px rgba(30, 64, 175, .05), 0 3px 10px rgba(30, 64, 175, .06);
  --shadow-md: 0 14px 36px rgba(30, 64, 175, .10), 0 4px 12px rgba(30, 64, 175, .06);
  --shadow-lg: 0 34px 80px rgba(24, 55, 130, .16), 0 12px 30px rgba(24, 55, 130, .08);
  --shadow-water: 0 16px 40px rgba(37, 99, 235, .30);
  --shadow-flame: 0 14px 34px rgba(255, 107, 69, .30);

  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);

  /* Contained deep-to-electric blue accent (final CTA, illustration frames, step chips) */
  --grad-navy: linear-gradient(135deg, #16295a 0%, #1e40af 50%, #2563eb 100%);
  --grad-water: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --grad-flame: linear-gradient(135deg, #ff6b45 0%, #ff8a63 100%);

  /* Hero canvas — pale gradient rounded rectangle */
  --grad-hero: radial-gradient(900px 520px at 88% -12%, rgba(147, 197, 253, .38), transparent 60%),
               radial-gradient(760px 480px at -6% 108%, rgba(191, 219, 254, .42), transparent 58%),
               linear-gradient(180deg, #f4f8ff 0%, #ffffff 62%);

  /* Ambient page mesh — very soft, sits behind the whole page */
  --grad-mesh: radial-gradient(1100px 640px at 90% -10%, rgba(147, 197, 253, .16), transparent 60%),
               radial-gradient(900px 560px at -10% 15%, rgba(191, 219, 254, .16), transparent 55%),
               radial-gradient(760px 480px at 45% 115%, rgba(219, 234, 254, .18), transparent 60%);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--grad-mesh), var(--bg);
  background-attachment: fixed;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--water); text-decoration: none; }
a:hover { color: var(--steel); }
h1, h2, h3, h4 { line-height: 1.12; color: var(--navy); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.55rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { margin: 0 0 1rem; color: var(--slate); }
ul { color: var(--slate); }
strong { color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.4rem, 7vw, 6.4rem); position: relative; }
.section--soft { background: rgba(234, 243, 255, .5); }
.section--tint { background: linear-gradient(180deg, rgba(234, 243, 255, .65), transparent); }
.section--navy {
  background: var(--grad-navy); color: #dce8f4; border-radius: var(--radius-xl);
  margin-inline: clamp(1rem, 4vw, 2rem); box-shadow: var(--shadow-lg);
}
.section--navy h2, .section--navy h3 { color: #ffffff; }
.section--navy p { color: #c3d6ef; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--water); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--water); border-radius: 2px; }
.section--navy .eyebrow { color: var(--water-3); }
.section--navy .eyebrow::before { background: var(--water-3); }
.section-head { max-width: 720px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--slate); }
.section--navy .lead { color: #c8daf1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 700; font-size: 1rem; line-height: 1.25; text-align: center;
  padding: .95rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  max-width: 100%;
}
.btn svg { width: 18px; height: 18px; }
/* Primary CTA — one controlled electric blue, used everywhere (incl. emergency CTAs) */
.btn--call { background: var(--grad-water); color: #fff; box-shadow: var(--shadow-water); }
.btn--call:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 44px rgba(37,99,235,.38); }
.btn--water { background: var(--grad-water); color: #fff; box-shadow: var(--shadow-water); }
.btn--water:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37,99,235,.4); }
.btn--ghost {
  background: rgba(255,255,255,.7); color: var(--navy); border-color: var(--glass-border-blue);
  backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: rgba(255,255,255,.9); color: var(--navy); transform: translateY(-2px); }
.btn--outline {
  background: var(--glass-bg); color: var(--navy); border-color: var(--glass-border-blue);
  box-shadow: var(--shadow-sm); backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
}
.btn--outline:hover { color: var(--navy); border-color: var(--water); transform: translateY(-2px); }
.btn--lg { font-size: 1.08rem; padding: 1.1rem 1.9rem; }
.btn--block { width: 100%; }
.btn-pulse { position: relative; }
.btn-pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37,99,235,.45); animation: pulse 2.4s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(37,99,235,0); } 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); } }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header (minimal, glass) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: saturate(180%) blur(var(--glass-blur));
  -webkit-backdrop-filter: saturate(180%) blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border-blue);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: .75rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 900; color: var(--navy); font-size: 1.1rem; letter-spacing: -.02em; }
.brand:hover { color: var(--navy); }
.brand .logo-mark { height: 46px; width: auto; display: block; flex: none; }
.brand .logo-mark img { height: 46px; width: auto; display: block; }
.brand small { display: none; }
.nav-links { display: flex; align-items: center; gap: .05rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--steel); font-weight: 600; font-size: .88rem; padding: .5rem .6rem; border-radius: 10px;
  white-space: nowrap; transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: rgba(37,99,235,.08); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-call {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; color: #fff;
  background: var(--grad-water); padding: .65rem 1.1rem; border-radius: 999px; font-size: .95rem;
  box-shadow: var(--shadow-water); white-space: nowrap;
}
.nav-call:hover { color: #fff; transform: translateY(-1px); }
.nav-call svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--glass-border-blue);
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); border-radius: 12px;
  cursor: pointer; align-items: center; justify-content: center; color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero — large rounded pale canvas ---------- */
.hero {
  background: var(--grad-hero); color: var(--navy); position: relative; overflow: hidden;
  border-radius: var(--radius-xl); margin: 1.1rem clamp(1rem, 4vw, 2rem) 0;
  border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow-lg);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(2.8rem, 6.5vw, 5rem); }
.hero h1 { color: var(--navy); margin-bottom: 1rem; }
.hero h1 .hl { color: var(--water); }
.hero-sub { font-size: 1.15rem; color: var(--slate); max-width: 42ch; margin-bottom: 1.6rem; }
.hero .cta-row { margin-bottom: 1.6rem; }
.pill-availability {
  display: inline-flex; align-items: center; gap: .55rem; background: rgba(37,99,235,.08);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(37,99,235,.22); color: var(--steel); padding: .5rem 1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; margin-bottom: 1.4rem;
}
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }

.trust-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.trust-badges span {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600;
  color: var(--steel); background: rgba(255,255,255,.6); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-blue);
  padding: .45rem .85rem; border-radius: 999px;
}
.trust-badges svg { width: 15px; height: 15px; color: var(--water); }

/* Hero visual card — light floating glass card (product/proof anchor) */
.hero-card {
  background: var(--glass-bg-strong); border: 1px solid var(--glass-border-blue); border-radius: var(--radius-lg);
  padding: 1.6rem; backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--shadow-lg);
}
.hero-card .hc-top { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; }
.hero-card .hc-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-water); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-water); }
.hero-card .hc-icon svg { width: 25px; height: 25px; color: #fff; }
.hero-card h3 { color: var(--navy); margin: 0; font-size: 1.15rem; }
.hero-card .hc-sub { color: var(--muted); font-size: .9rem; }
.hc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.hc-list li { display: flex; align-items: center; gap: .7rem; color: var(--slate); font-size: .95rem; font-weight: 500; }
.hc-list svg { width: 20px; height: 20px; color: var(--water); flex: none; }
.hero-card .hc-cta { margin-top: 1.4rem; }
.hero-rating { display: flex; align-items: center; gap: .5rem; margin-top: 1.1rem; color: var(--muted); font-size: .85rem; }
.stars { color: #f5a623; letter-spacing: 2px; }

/* ---------- Stat strip — floating proof chips overlapping the hero ---------- */
.stat-strip { background: transparent; margin-top: -2.6rem; position: relative; z-index: 3; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 0 1.2rem; text-align: center; }
.stat-grid .stat {
  border-radius: var(--radius); padding: 1.2rem .8rem;
  background: var(--glass-bg-strong); border: 1px solid var(--glass-border-blue);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  box-shadow: var(--shadow-md);
}
.stat-grid .stat b { display: block; font-size: clamp(1.5rem, 3.2vw, 2.1rem); color: var(--navy); font-weight: 900; letter-spacing: -.02em; }
.stat-grid .stat span { color: var(--muted); font-size: .82rem; font-weight: 600; }

/* ---------- Emergency section — soft contained card, blue-consistent, one CTA color ---------- */
.emergency {
  background: linear-gradient(135deg, #fff8f4 0%, #f5f9ff 55%, #eef4ff 100%);
  color: var(--ink); position: relative; overflow: hidden;
  border-radius: var(--radius-xl); margin-inline: clamp(1rem, 4vw, 2rem);
  border: 1px solid var(--glass-border-blue); box-shadow: var(--shadow-lg);
}
.emergency::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,107,69,.14), transparent 65%); pointer-events: none;
}
.emergency h2 { color: var(--navy); }
.emergency .lead { color: var(--slate); }
.emergency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; position: relative; z-index: 2; }
.emergency-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,107,69,.10);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255,107,69,.3); color: #c8502c; padding: .5rem 1rem; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem;
}
.emergency-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.2rem; list-style: none; padding: 0; margin: 1.4rem 0; }
.emergency-list li { display: flex; align-items: center; gap: .6rem; color: var(--slate); font-weight: 500; font-size: .96rem; }
.emergency-list svg { width: 18px; height: 18px; color: #e2653a; flex: none; }
.emergency-cta-card {
  background: var(--glass-bg-strong); border: 1px solid var(--glass-border-blue); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem); text-align: center;
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  box-shadow: var(--shadow-md);
}
.emergency-cta-card .big-num { font-size: clamp(1.9rem, 4.5vw, 2.6rem); font-weight: 900; color: var(--navy); letter-spacing: -.02em; display: block; margin: .4rem 0 1rem; }
.emergency-cta-card p { color: var(--slate); }

/* ---------- Cards / grids (light glass) ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--glass-bg); border: 1px solid var(--glass-border-blue); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--water-3); background: var(--glass-bg-strong); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(37,99,235,.10); color: var(--water);
  display: grid; place-items: center; margin-bottom: 1.1rem; flex: none;
  border: 1px solid rgba(37,99,235,.14);
  transition: background .2s, color .2s;
}
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon { background: var(--grad-water); color: #fff; border-color: transparent; }
.card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.card p { font-size: .96rem; margin-bottom: 1.1rem; }
.card .card-call {
  margin-top: auto; display: inline-flex; align-items: center; gap: .5rem; font-weight: 800;
  color: var(--water); font-size: .95rem;
}
.card .card-call svg { width: 16px; height: 16px; }
.card .card-call:hover { color: var(--steel); gap: .7rem; }
.card ul { padding-left: 1.1rem; margin: 0 0 1.1rem; font-size: .93rem; }
.card ul li { margin-bottom: .35rem; }

/* ---------- Work gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.7rem, 1.6vw, 1.1rem); }
.gallery-item {
  position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--glass-border-blue); box-shadow: var(--shadow-sm);
  background: var(--glass-bg);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,37,64,.55) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem .9rem; color: #fff; font-size: .82rem; font-weight: 700;
  opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; letter-spacing: .01em;
}
.gallery-item:hover .g-cap { opacity: 1; transform: translateY(0); }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Glass feature rows (why choose us) */
.feature {
  display: flex; gap: 1rem; padding: 1.35rem; background: var(--glass-bg); border: 1px solid var(--glass-border-blue);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--glass-bg-strong); }
.feature .f-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(37,99,235,.10); color: var(--water); display: grid; place-items: center; flex: none; border: 1px solid rgba(37,99,235,.14); }
.feature .f-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.04rem; margin-bottom: .25rem; }
.feature p { font-size: .92rem; margin: 0; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  position: relative; padding: 1.6rem 1.35rem; background: var(--glass-bg); border: 1px solid var(--glass-border-blue);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
}
.step .step-num {
  width: 42px; height: 42px; border-radius: 12px; background: var(--grad-water); color: #fff; font-weight: 900;
  display: grid; place-items: center; font-size: 1.1rem; margin-bottom: 1rem; box-shadow: var(--shadow-water);
}
.step h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 38px; right: -.75rem; width: 1.5rem; height: 2px;
  background: linear-gradient(90deg, var(--water), transparent); display: none;
}

/* ---------- Split blocks (residential / commercial) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--glass-border-blue);
  background: var(--grad-navy); min-height: 320px; display: grid; place-items: center; position: relative;
}
.split-list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: .65rem; }
.split-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--slate); font-size: .98rem; }
.split-list svg { width: 20px; height: 20px; color: var(--water); flex: none; margin-top: 2px; }

/* Illustration frame */
.illus { width: 100%; height: 100%; min-height: 320px; }

/* ---------- Service areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.area-chip {
  display: flex; align-items: center; gap: .6rem; padding: .95rem 1.1rem; background: var(--glass-bg); border: 1px solid var(--glass-border-blue);
  border-radius: var(--radius-sm); font-weight: 700; color: var(--navy); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  transition: transform .18s, box-shadow .18s, border-color .18s, background .18s; font-size: .96rem;
}
.area-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--water); color: var(--navy); background: var(--glass-bg-strong); }
.area-chip svg { width: 18px; height: 18px; color: var(--water); flex: none; }

/* ---------- Testimonials ---------- */
.review-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border-blue); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
}
.review-card .stars { font-size: 1.05rem; margin-bottom: .8rem; }
.review-card p { color: var(--ink); font-size: 1rem; font-style: italic; margin-bottom: 1.2rem; }
.review-meta { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-water); color: #fff; font-weight: 800; display: grid; place-items: center; flex: none; box-shadow: var(--shadow-water); }
.review-meta b { color: var(--navy); font-size: .95rem; display: block; }
.review-meta span { color: var(--muted); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item {
  background: var(--glass-bg); border: 1px solid var(--glass-border-blue); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.03rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 22px; height: 22px; color: var(--water); transition: transform .2s; flex: none; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.25rem; }
.faq-item .faq-body p { margin: 0; }

/* ---------- Final CTA — bold contained blue card ---------- */
.final-cta {
  background: var(--grad-navy); color: #fff; text-align: center; position: relative; overflow: hidden;
  border-radius: var(--radius-xl); margin-inline: clamp(1rem, 4vw, 2rem); box-shadow: var(--shadow-lg);
}
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 340px at 50% 0%, rgba(96,165,250,.35), transparent 60%); }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #c9dcf7; max-width: 560px; margin-inline: auto; }
.final-num { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900; color: #fff; display: inline-block; margin: .4rem 0 1.4rem; letter-spacing: -.02em; }
.final-cta .btn--call { background: #fff; color: var(--water); box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.final-cta .btn--call:hover { color: var(--water); }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #0d1b3a 0%, #0a1730 100%); color: #a9bede;
  padding-block: clamp(2.8rem, 5vw, 4.2rem) 1.5rem; position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0; margin-top: 1rem;
}
.site-footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 400px at 15% 0%, rgba(37,99,235,.18), transparent 60%); pointer-events: none; border-radius: inherit; }
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-grid h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-grid a { color: #a9bede; font-size: .93rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: #90a6c8; font-size: .93rem; max-width: 34ch; }
.footer-call {
  display: inline-flex; align-items: center; gap: .6rem; background: var(--grad-water); color: #fff;
  font-weight: 800; padding: .8rem 1.3rem; border-radius: 999px; margin-top: .6rem; box-shadow: var(--shadow-water);
}
.footer-call:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #7e93b8; }
.footer-bottom a { color: #7e93b8; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Sticky call bar (mobile) — kept as the one warm "urgent" accent ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
  background: var(--grad-flame); color: #fff; padding: .7rem 1rem; align-items: center; justify-content: space-between;
  gap: .8rem; box-shadow: 0 -6px 20px rgba(10,37,64,.22);
  backdrop-filter: blur(var(--glass-blur));
}
.call-bar .cb-text { font-weight: 700; font-size: .9rem; line-height: 1.25; }
.call-bar .cb-text small { display: block; font-weight: 500; opacity: .9; font-size: .72rem; }
.call-bar .cb-btn { background: #fff; color: var(--flame); font-weight: 900; padding: .7rem 1.1rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.call-bar .cb-btn svg { width: 17px; height: 17px; }

/* Desktop floating call button — persistent CTA once the hero scrolls out of view */
.float-call {
  position: fixed; bottom: 28px; right: max(1.4rem, calc((100vw - var(--maxw)) / 2 + 1.4rem)); z-index: 55;
  display: inline-flex; opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.float-call.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding-block: 1.2rem 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; font-size: .85rem; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--water); font-weight: 600; }

/* ---------- Page hero (sub pages) — same pale rounded canvas as homepage hero ---------- */
.page-hero {
  background: var(--grad-hero); color: var(--navy); position: relative; overflow: hidden;
  padding-block: clamp(2.6rem, 6vw, 4.2rem);
  border-radius: var(--radius-xl); margin: 1.1rem clamp(1rem, 4vw, 2rem) 0;
  border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow-lg);
}
.page-hero h1 { color: var(--navy); max-width: 20ch; }
.page-hero p { color: var(--slate); max-width: 56ch; font-size: 1.12rem; }
.page-hero .cta-row { margin-top: 1.6rem; }
.page-hero .breadcrumb a { color: var(--water); }
.page-hero .breadcrumb, .page-hero .breadcrumb ol { color: var(--muted); }

/* ---------- Contact / call page ---------- */
.info-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border-blue); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
}
.info-card .ic-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(37,99,235,.10); color: var(--water); display: grid; place-items: center; margin-bottom: 1rem; border: 1px solid rgba(37,99,235,.14); }
.info-card .ic-icon svg { width: 23px; height: 23px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.info-card p { margin: 0; font-size: .96rem; }
.map-embed {
  width: 100%; min-height: 360px; border-radius: var(--radius-lg); border: 1px dashed var(--glass-border-blue);
  background: rgba(234, 243, 255, .5); backdrop-filter: blur(var(--glass-blur));
  display: grid; place-items: center; text-align: center; color: var(--muted); padding: 2rem;
}
.map-embed .me-inner { max-width: 320px; }
.map-embed svg { width: 40px; height: 40px; color: var(--water); margin-bottom: .8rem; margin-inline: auto; }

/* Hours table */
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--line-2); font-size: .96rem; }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--slate); font-weight: 600; }
.hours li span:last-child { color: var(--navy); font-weight: 700; }
.hours .emerg { color: #e2653a; }

/* ---------- Prose (about) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1.4rem; }
.tel-link { color: inherit; }
.badge-inline { display: inline-flex; align-items: center; gap: .4rem; background: rgba(37,99,235,.08); color: var(--steel); font-weight: 700; font-size: .8rem; padding: .35rem .8rem; border-radius: 999px; }

/* Anchor offset for sticky header */
[id] { scroll-margin-top: 100px; }

/* ---------- Responsive ---------- */
@media (min-width: 700px) { .step:not(:last-child)::after { display: block; } }

@media (max-width: 1080px) {
  .nav-links, .nav-cta .nav-call span.full { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border-bottom: 1px solid var(--glass-border-blue); padding: .8rem; gap: .2rem; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem 1rem; font-size: 1rem; }
  .call-bar { display: flex; }
  .float-call { display: none !important; }
  body { padding-bottom: 72px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .emergency-grid, .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { margin-top: 1rem; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .stat-grid { grid-template-columns: 1fr 1fr; }
  .emergency-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trust-badges span { font-size: .78rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Fallback for browsers without backdrop-filter support: keep panels legible */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .card, .feature, .step, .review-card, .info-card, .faq-item, .area-chip, .btn--outline { background: rgba(255,255,255,.94); }
  .site-header { background: rgba(255, 255, 255, .96); }
}
