/* ============================================================
   McKAY'S WATER SOLUTIONS — Brand Stylesheet
   Poppins (headings) · Inter (body)
   ============================================================ */

/* ── Brand Variables ─────────────────────────────────────── */
:root {
  --red:         #E6003D;
  --red-dark:    #C0002E;
  --red-hover:   #B8002A;
  --red-light:   #FFF0F3;
  --red-subtle:  #FFF5F7;
  --blue:        #0EA5E9;
  --blue-dark:   #0284C7;
  --blue-light:  #E0F2FE;
  --green:       #10B981;
  --green-light: #ECFDF5;
  --dark:        #111827;
  --dark-2:      #1F2937;
  --dark-3:      #374151;
  --text:        #374151;
  --muted:       #6B7280;
  --muted-2:     #9CA3AF;
  --bg:          #FFFFFF;
  --bg-alt:      #F8FAFC;
  --bg-alt-2:    #F1F5F9;
  --border:      #E5E7EB;
  --border-2:    #D1D5DB;
  --yellow:      #F59E0B;
  --yellow-light:#FFFBEB;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --sh-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
  --sh-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --sh-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.04);
  --sh-xl: 0 25px 50px -12px rgba(0,0,0,.15);

  --ease:     all .25s cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --header-h: 80px;
  --max-w:    1380px;
  --r:        0;
  --r-md:     0;
  --r-lg:     0;
  --r-xl:     0;
  --r-full:   0;
}

/* ── Reset ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { font-size:16px; scroll-behavior:smooth; overflow-x:hidden }
body { font-family:var(--font-body); background:var(--bg); color:var(--text); line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden }
a { text-decoration:none; color:inherit; transition:var(--ease) }
img { display:block; max-width:100%; height:auto }
button { cursor:pointer; font-family:var(--font-body); border:none; background:none }
ul,ol { list-style:none }
input,textarea,select { font-family:var(--font-body) }
::selection { background:var(--red); color:#fff }
::-webkit-scrollbar { width:4px }
::-webkit-scrollbar-track { background:var(--bg-alt) }
::-webkit-scrollbar-thumb { background:var(--border-2); border-radius:0 }

/* ── Base Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-head); font-weight:700; line-height:1.2; color:var(--dark) }
p { color:var(--muted); line-height:1.75 }

/* ── Layout Utilities ────────────────────────────────────── */
.container { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 clamp(20px,5vw,60px) }
.text-center { text-align:center }
.section-pad { padding:96px 0 }
.section-pad-sm { padding:64px 0 }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0 }

/* ── Reveal Animations ───────────────────────────────────── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out) }
.reveal.visible { opacity:1; transform:none }
.reveal-left { opacity:0; transform:translateX(-28px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out) }
.reveal-left.visible { opacity:1; transform:none }
.reveal-right { opacity:0; transform:translateX(28px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out) }
.reveal-right.visible { opacity:1; transform:none }
.reveal-scale { opacity:0; transform:scale(.96); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out) }
.reveal-scale.visible { opacity:1; transform:scale(1) }
.reveal-delay-1 { transition-delay:.07s }
.reveal-delay-2 { transition-delay:.14s }
.reveal-delay-3 { transition-delay:.21s }
.reveal-delay-4 { transition-delay:.28s }
.reveal-delay-5 { transition-delay:.35s }
.reveal-delay-6 { transition-delay:.42s }
.reveal-delay-7 { transition-delay:.49s }
.reveal-delay-8 { transition-delay:.56s }

/* ── Section Label ───────────────────────────────────────── */
.sec-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-size:.72rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--red); margin-bottom:12px;
}
.sec-tag-dot { display:none }
.sec-title {
  font-family:var(--font-head);
  font-size:clamp(1.8rem,4vw,2.6rem);
  font-weight:700; line-height:1.2; letter-spacing:-.02em;
  color:var(--dark); margin-bottom:14px;
}
.sec-title span { color:inherit }
.sec-title-white { color:#fff }
.sec-title-white span { color:#fff }
.sec-desc { font-size:1rem; color:var(--muted); line-height:1.8; max-width:560px }
.sec-header { margin-bottom:56px }
.sec-header.text-center .sec-desc { margin:0 auto }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-head); font-size:.875rem; font-weight:600;
  line-height:1; border-radius:6px;
  padding:14px 28px; cursor:pointer; transition:var(--ease);
  border:2px solid transparent; white-space:nowrap;
}
.btn-red {
  background:var(--red); color:#fff; border-color:var(--red);
}
.btn-red:hover { background:var(--red-dark); border-color:var(--red-dark); box-shadow:0 6px 20px rgba(230,0,61,.35); transform:translateY(-1px) }
.btn-red-lg { padding:17px 36px; font-size:.95rem; border-radius:6px; }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.5) }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:#fff }
.btn-outline-dark { background:transparent; color:var(--dark); border-color:var(--border-2) }
.btn-outline-dark:hover { border-color:var(--dark); background:var(--dark); color:#fff }
.btn-blue { background:var(--blue); color:#fff; border-color:var(--blue) }
.btn-blue:hover { background:var(--blue-dark); border-color:var(--blue-dark); box-shadow:0 6px 20px rgba(14,165,233,.3) }
.btn svg { width:16px; height:16px; flex-shrink:0 }

/* ── Admin Ribbon ────────────────────────────────────────── */
.ar-btn {
  display:inline-flex; align-items:center; gap:5px;
  font-size:11px; font-weight:600; line-height:1;
  color:rgba(255,255,255,.6); height:24px; padding:0 10px;
  border:1px solid rgba(255,255,255,.12); border-radius:0;
  text-decoration:none; background:transparent; cursor:pointer;
  font-family:inherit; transition:color .2s,border-color .2s,background .2s;
  box-sizing:border-box; vertical-align:middle
}
.ar-btn:hover { color:#fff; border-color:rgba(255,255,255,.3); background:rgba(255,255,255,.06) }
.ar-btn--exit:hover { color:#f87171; border-color:rgba(239,68,68,.4); background:rgba(220,38,38,.12) }
.ar-btn svg { width:12px; height:12px; flex-shrink:0 }
@media(max-width:640px){ .ar-username,.ar-username-sep{ display:none } }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:900;
  height:var(--header-h);
  background:transparent;
  transition:box-shadow .35s ease, background .35s ease;
}
.site-header.scrolled {
  background:#fff;
  box-shadow:var(--sh-md);
}
.header-inner {
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  height:100%; max-width:var(--max-w); margin:0 auto;
  padding:0 clamp(16px,4vw,48px);
}

/* Logo */
.header-logo { display:flex; align-items:center; flex-shrink:0 }
.header-logo-img { height:44px; width:auto; display:block; object-fit:contain; }
.header-logo-icon {
  width:40px; height:40px; background:var(--red); border-radius:0;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.header-logo-icon svg { width:22px; height:22px; color:#fff }
.header-logo-text {}
.header-logo-name {
  font-family:var(--font-head); font-size:1.1rem; font-weight:600;
  color:var(--dark); line-height:1.1; letter-spacing:-.02em;
}
.header-logo-name span { color:var(--red) }
.header-logo-tag {
  font-size:.6rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--muted); display:block; margin-top:1px;
}

/* Desktop Nav */
.header-nav { display:flex; align-items:center; gap:2px; margin:0 auto }

.nav-box {
  display:flex; align-items:center; gap:2px;
  background:rgba(220,38,38,.05);
  border:1px solid rgba(220,38,38,.15);
  border-radius:10px;
  padding:6px 8px;
}

.nav-link {
  font-family:var(--font-head); font-size:.875rem; font-weight:500;
  color:var(--dark-3); padding:7px 14px; border-radius:6px;
  transition:color .2s, background .2s; white-space:nowrap;
}
.nav-link:hover  { color:var(--red); background:rgba(220,38,38,.08); }
.nav-link.active { color:var(--red); background:rgba(220,38,38,.12); font-weight:600; }

/* Header Right */
.header-right { display:flex; align-items:center; gap:12px; flex-shrink:0 }
.header-phone {
  display:flex; align-items:center; gap:7px;
  font-family:var(--font-head); font-size:.875rem; font-weight:600;
  color:var(--dark); transition:color .2s;
}
.header-phone:hover { color:var(--red) }
.header-phone svg { width:16px; height:16px; color:var(--red) }
.header-phone-text { display:flex; flex-direction:column; line-height:1.1 }
.header-phone-label { font-size:.58rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted) }
.header-phone-num { font-size:.9rem; font-weight:700; color:var(--dark) }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; justify-content:center; align-items:flex-end;
  gap:6px; width:44px; height:44px;
  background:none; border:none; border-radius:0;
  padding:8px; cursor:pointer; flex-shrink:0;
  transition:opacity .2s;
}
.hamburger:hover { opacity:.72; }
.hamburger span {
  display:block; height:2px; border-radius:2px;
  background:var(--red);
  transform-origin:right center;
  transition:transform .38s var(--ease-out), opacity .25s ease, width .32s cubic-bezier(.4,0,.2,1);
  box-shadow:0 0 6px rgba(220,38,38,.35);
}
.hamburger span:nth-child(1) { width:24px; }
.hamburger span:nth-child(2) { width:16px; }
.hamburger span:nth-child(3) { width:20px; }

/* Open state — lines converge into × */
.hamburger.active span:nth-child(1) { width:22px; transform:translateY(8px) rotate(45deg); transform-origin:center; box-shadow:0 0 8px rgba(220,38,38,.5); }
.hamburger.active span:nth-child(2) { opacity:0; width:0; }
.hamburger.active span:nth-child(3) { width:22px; transform:translateY(-8px) rotate(-45deg); transform-origin:center; box-shadow:0 0 8px rgba(220,38,38,.5); }


/* ============================================================
   MOBILE PANEL — 75% width, slides from right
   ============================================================ */
.mobile-overlay {
  position:fixed; inset:0; z-index:950;
  background:rgba(0,0,0,.55); backdrop-filter:blur(3px);
  opacity:0; pointer-events:none; transition:opacity .4s ease;
}
.mobile-overlay.open { opacity:1; pointer-events:all }

.mobile-panel {
  position:fixed; bottom:0; left:0; right:0; z-index:960;
  height:75vh; max-height:75vh; width:100%;
  background:linear-gradient(160deg, #fff 0%, #FFF5F5 55%, #FEE2E2 100%);
  display:flex; flex-direction:column;
  border-radius:20px 20px 0 0;
  transform:translateY(100%);
  transition:transform .42s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
}
.mobile-panel.open { transform:translateY(0) }

.mobile-panel-handle {
  display:block; flex-shrink:0;
  width:100%; padding:14px 0 6px;
  background:transparent; border:none; cursor:pointer;
}
.mobile-panel-handle::after {
  content:''; display:block;
  width:40px; height:4px; border-radius:2px;
  background:var(--border-2); margin:0 auto;
  transition:background .2s, width .2s;
}
.mobile-panel-handle:hover::after {
  background:var(--red); width:52px;
}
.mobile-panel-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 20px 14px;
  flex-shrink:0;
}
.mobile-panel-logo { display:flex; align-items:center; }
.mobile-panel-logo-img { height:36px; width:auto; display:block; object-fit:contain; }
.mobile-panel-logo-icon {
  width:32px; height:32px; background:var(--red); border-radius:0;
  display:flex; align-items:center; justify-content:center;
}
.mobile-panel-logo-icon svg { width:17px; height:17px; color:#fff }
.mobile-panel-logo-name {
  font-family:var(--font-head); font-size:.95rem; font-weight:600;
  color:var(--dark); line-height:1.1;
}
.mobile-panel-logo-name span { color:var(--red) }

/* Close button — top right */
.mobile-close {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:0;
  color:var(--muted); background:var(--bg-alt);
  transition:color .2s, background .2s; flex-shrink:0;
}
.mobile-close:hover { color:var(--red); background:var(--red-light) }
.mobile-close svg { width:18px; height:18px }

.mobile-nav-link {
  display:flex; align-items:center; justify-content:space-between;
  font-family:var(--font-head); font-size:1rem; font-weight:500;
  color:var(--dark-3); padding:13px 20px;
  border-radius:8px; margin:0 8px;
  transition:color .2s, background .2s, padding-left .3s var(--ease-out);
}
.mobile-nav-link svg { width:14px; height:14px; color:var(--border-2); transition:color .2s, transform .3s var(--ease-out) }
.mobile-nav-link:hover { color:var(--red); background:var(--red-subtle); padding-left:26px }
.mobile-nav-link:hover svg { color:var(--red); transform:translateX(4px) }

.mobile-nav { flex:1; overflow-y:auto; padding:4px 0 8px; -webkit-overflow-scrolling:touch; }
.mobile-panel-foot { padding:16px 20px 24px; flex-shrink:0; }
.mobile-panel-logo-bottom {
  display:flex; justify-content:center;
  margin-top:16px; padding-top:16px;
  border-top:1px solid rgba(220,38,38,.1);
}
.mobile-phone-strip {
  display:flex; align-items:center; gap:10px;
  background:#fff; border-radius:10px;
  padding:13px 16px; margin-bottom:12px;
  color:var(--dark); font-family:var(--font-head); font-weight:600; font-size:.9rem;
  box-shadow:0 4px 20px rgba(220,38,38,.15);
}
.mobile-phone-strip svg { width:18px; height:18px; color:var(--red) }
.mobile-enquiry-btn {
  display:flex; align-items:center; justify-content:center; gap:9px;
  width:100%; padding:15px;
  background:var(--red); color:#fff;
  font-family:var(--font-head); font-size:.875rem; font-weight:600;
  border-radius:6px; transition:background .2s, transform .2s, box-shadow .2s;
}
.mobile-enquiry-btn:hover { background:var(--red-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(230,0,61,.3) }
.mobile-enquiry-btn svg { width:16px; height:16px }


/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

/* Sticky mobile bottom bar */
.mobile-cta-bar {
  position:fixed; bottom:0; left:0; right:0; z-index:800;
  display:none;
  background:#fff; border-top:1px solid var(--border);
  padding:10px 16px calc(10px + env(safe-area-inset-bottom));
  gap:10px;
}
.mobile-cta-bar a {
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-head); font-size:.85rem; font-weight:600;
  padding:13px 16px; border-radius:6px;
  transition:var(--ease);
}
.mobile-cta-call { background:var(--dark); color:#fff }
.mobile-cta-call:hover { background:var(--dark-2) }
.mobile-cta-quote { background:var(--red); color:#fff }
.mobile-cta-quote:hover { background:var(--red-dark) }
.mobile-cta-bar a svg { width:16px; height:16px }

/* Back to top */
.back-to-top {
  position:fixed; bottom:28px; right:24px; z-index:500;
  width:42px; height:42px; border-radius:6px;
  background:var(--dark); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--sh-md);
  opacity:0; transform:translateY(12px);
  transition:opacity .3s, transform .3s, background .2s;
  pointer-events:none; cursor:pointer;
}
.back-to-top.visible { opacity:1; transform:none; pointer-events:all }
.back-to-top:hover { background:var(--red) }
.back-to-top svg { width:18px; height:18px }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position:relative;
  padding-top:calc(var(--header-h) + 60px);
  padding-bottom:80px;
  background:linear-gradient(150deg, #FFFFFF 0%, #F8FAFC 50%, #F0F9FF 100%);
  overflow:hidden;
  isolation:isolate;
}
.hero::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:600px; height:600px; border-radius:0;
  background:radial-gradient(circle, rgba(230,0,61,.04) 0%, transparent 70%);
  pointer-events:none;
}
.hero::after {
  content:''; position:absolute; bottom:-80px; left:-60px;
  width:400px; height:400px; border-radius:0;
  background:radial-gradient(circle, rgba(14,165,233,.05) 0%, transparent 70%);
  pointer-events:none;
}
/* ── Water bubble layer ─────────────────────────────────── */
.wbubbles {
  position:absolute; top:0; left:0; right:0; bottom:0;
  pointer-events:none; overflow:hidden; z-index:-1;
}
.wb {
  position:absolute;
  bottom:-40px;
  border-radius:50%;
  background:radial-gradient(circle at 33% 33%,
    rgba(255,255,255,.9)  0%,
    rgba(14,165,233,.45) 50%,
    rgba(2,132,199,.65)  100%);
  border:1.5px solid rgba(14,165,233,.55);
  box-shadow:0 2px 10px rgba(14,165,233,.25);
  opacity:0;
  animation:wbRise linear infinite;
}
.wb-red {
  background:radial-gradient(circle at 33% 33%,
    rgba(255,255,255,.9) 0%,
    rgba(230,0,61,.35)  50%,
    rgba(192,0,46,.55)  100%);
  border-color:rgba(230,0,61,.5);
  box-shadow:0 2px 10px rgba(230,0,61,.2);
}
@keyframes wbRise {
  0%   { transform:translateY(0)      scale(1);    opacity:0 }
  8%   { opacity:.28 }
  50%  { transform:translateY(-50vh)  scale(1.04) }
  92%  { opacity:.18 }
  100% { transform:translateY(-108vh) scale(.9);   opacity:0 }
}

.hero-inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:56px; align-items:center;
  position:relative; z-index:1;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:600; color:var(--dark-3);
  margin-bottom:20px;
}
.hero-badge-stars { display:flex; gap:2px }
.hero-badge-stars svg { width:12px; height:12px; color:var(--red); }
.hero-badge-text { color:var(--muted); font-size:.75rem }
.hero-badge-text strong { color:var(--dark); }
.hero-heading {
  font-family:var(--font-head);
  font-size:clamp(2rem,3.4vw,2.9rem);
  font-weight:800; line-height:1.12; letter-spacing:-.03em;
  color:var(--dark); margin-bottom:20px;
}
.hero-heading span { color:inherit }
.hero-sub {
  font-size:1rem; color:var(--muted); line-height:1.8;
  max-width:500px; margin-bottom:32px;
}
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:36px }

/* ── Hero Collage ─────────────────────────────────────────── */
.hero-collage {
  position:relative;
  border-radius:18px;
  overflow:visible;
}

/* Primary image — full width, natural height */
.hci-primary {
  position:relative;
  width:100%; border-radius:18px; overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.22), 0 0 0 1px rgba(15,23,42,.07);
}
.hci-primary img {
  width:100%; height:auto; display:block;
  transition:transform .8s cubic-bezier(.25,.46,.45,.94);
}
.hci-primary:hover img { transform:scale(1.04); }

/* Luxury small square — bottom-right, partially overlapping */
.hci-secondary {
  position:absolute;
  bottom:-22px; right:-22px;
  width:148px; height:148px;
  border-radius:14px; overflow:hidden;
  box-shadow:
    0 0 0 3px #fff,
    0 16px 48px rgba(0,0,0,.32);
  z-index:4;
  transition:transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
}
.hci-secondary:hover {
  transform:scale(1.05) translateY(-4px);
  box-shadow:
    0 0 0 3px #fff,
    0 24px 56px rgba(0,0,0,.38);
}
.hci-secondary img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .6s cubic-bezier(.25,.46,.45,.94);
}
.hci-secondary:hover img { transform:scale(1.08); }

/* Sheen sweep on the small square */
.hci-secondary-shine {
  position:absolute; inset:0; pointer-events:none; border-radius:14px;
  background:linear-gradient(135deg,
    rgba(255,255,255,.18) 0%,
    transparent 50%,
    rgba(0,0,0,.12) 100%);
  z-index:1;
}

/* Shared overlay */
.hci-overlay {
  position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(160deg, transparent 40%, rgba(0,0,0,.30) 100%);
}

/* Verified review badge inside trust bar */
.trust-review-badge {
  display:flex; align-items:center; justify-content:center; gap:12px;
  margin-top:28px;
  padding:14px 24px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  width:fit-content; margin-left:auto; margin-right:auto;
  backdrop-filter:blur(4px);
}

/* Overlapping avatars */
.hcb-avatars { display:flex; }
.hcb-av {
  width:30px; height:30px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:.68rem; font-weight:700; color:#fff;
  border:2px solid #fff;
  margin-left:-9px;
}
.hcb-av:first-child { margin-left:0; }

/* Vertical divider */
.hcb-divider { width:1px; height:30px; background:var(--border); flex-shrink:0; }

/* Score row */
.hcb-top { display:flex; align-items:center; gap:6px; margin-bottom:2px; }
.hcb-score {
  font-family:var(--font-head); font-size:1.1rem; font-weight:800;
  color:var(--dark); line-height:1;
}
.hcb-stars { display:flex; gap:1px; }
.hcb-stars svg { width:11px; height:11px; color:#FBBF24; }

/* Sub-label */
.hcb-label {
  font-size:.65rem; font-weight:500;
  color:var(--muted); letter-spacing:.02em;
}


/* ============================================================
   TRUST / STATS BAR
   ============================================================ */
.trust-bar { background:var(--dark); padding:36px 0 }
.trust-bar-inner {
  display:flex; align-items:center; justify-content:center;
  gap:0; flex-wrap:wrap;
}
.trust-stat {
  flex:1; min-width:140px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
  padding:8px 24px;
}
.trust-stat-num {
  font-family:var(--font-head); font-size:clamp(1.8rem,3.5vw,2.6rem);
  font-weight:800; color:#fff; line-height:1; margin-bottom:6px;
}
.trust-stat-num span { color:var(--red) }
.trust-stat-label { font-size:.78rem; font-weight:500; color:rgba(255,255,255,.5); letter-spacing:.06em; text-transform:uppercase; }
.trust-divider { width:1px; height:40px; background:rgba(255,255,255,.1); margin:0 auto }




/* ============================================================
   IDENTIFY YOUR ISSUE
   ============================================================ */
.identify-section {
  background:linear-gradient(135deg, #fff 0%, #FEF2F2 50%, #FEE2E2 100%);
  padding:96px 0;
}

.prob-cards-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:16px; margin-top:48px; align-items:start;
}

.prob-card {
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.75);
  border-radius:8px;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
  overflow:hidden; transition:box-shadow .25s, background .25s;
}
.prob-card:hover {
  background:rgba(255,255,255,.7);
  box-shadow:0 8px 32px rgba(0,0,0,.12);
}
.prob-card.open {
  background:rgba(255,255,255,.75);
  box-shadow:0 8px 32px rgba(0,0,0,.12);
}

.prob-card-head {
  width:100%; display:flex; align-items:center; gap:12px;
  padding:16px 18px; cursor:pointer; background:transparent;
  border:none;
  text-align:left;
}

.prob-card-icon {
  width:28px; height:28px; min-width:28px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.prob-card-icon svg { width:24px; height:24px; }

.prob-card-title {
  flex:1; font-size:.875rem; font-weight:600;
  color:var(--dark); transition:color .2s;
}
.prob-card.open .prob-card-title { color:var(--red); }

.prob-card-chevron {
  width:20px; height:20px; flex-shrink:0; display:flex;
  align-items:center; justify-content:center;
  color:var(--muted-2); transition:transform .3s ease, color .2s;
}
.prob-card-chevron svg { width:13px; height:13px; }
.prob-card.open .prob-card-chevron { transform:rotate(180deg); color:var(--red); }

.prob-card-body {
  max-height:0; overflow:hidden;
  padding:0 18px;
  transition:max-height .35s ease, padding .35s ease;
}
.prob-card.open .prob-card-body {
  max-height:420px;
  padding:14px 18px 18px;
}

.prob-card-desc {
  font-size:.84rem; color:var(--muted);
  line-height:1.75; margin:0 0 12px;
}


.prob-card-cta {
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-head); font-size:.78rem; font-weight:700;
  color:#fff; background:var(--red); padding:10px 16px;
  border-radius:8px;
  text-decoration:none; transition:background .2s;
}
.prob-card-cta:hover { background:var(--red-dark); }
.prob-card-cta svg { width:12px; height:12px; }

@media (max-width:900px) { .prob-cards-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .prob-cards-grid { grid-template-columns:1fr; } }


/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-section { background:var(--bg-alt); padding:96px 0 }
.solutions-grid {
  display:flex; flex-direction:column; gap:28px;
}

/* ── Horizontal card ────────────────────────────────────── */
.solution-card {
  display:grid; grid-template-columns:420px 1fr;
  background:#fff; border-radius:8px;
  box-shadow:0 2px 20px rgba(0,0,0,.07);
  overflow:hidden;
  transition:box-shadow .3s, transform .3s;
}
.solution-card:hover { box-shadow:0 10px 40px rgba(0,0,0,.13); transform:translateY(-3px); }

/* Flip image to right on even cards */
.sc-reverse { grid-template-columns:1fr 420px; }
.sc-reverse .sc-img  { order:2; }
.sc-reverse .sc-body { order:1; }

/* Image panel */
.sc-img {
  position:relative; overflow:hidden;
}
.sc-img img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .7s ease;
}
.solution-card:hover .sc-img img { transform:scale(1.05); }

/* Most Popular badge */
.sc-badge {
  position:absolute; top:16px; left:16px;
  background:var(--red); color:#fff;
  font-size:.62rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:4px 10px;
}

/* Content panel */
.sc-body {
  padding:40px 44px;
  display:flex; flex-direction:column; justify-content:center;
}

/* Category tag */
.sc-tag {
  font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  margin-bottom:10px;
}
.sc-tag--red    { color:var(--red); }
.sc-tag--orange { color:#F97316; }
.sc-tag--green  { color:var(--green); }
.sc-tag--blue   { color:var(--blue-dark); }

/* Title */
.sc-title {
  font-family:var(--font-head); font-size:1.5rem; font-weight:800;
  color:var(--dark); line-height:1.2; margin-bottom:12px;
}

/* Description */
.sc-desc {
  font-size:.9rem; color:var(--muted); line-height:1.75;
  margin-bottom:22px;
}

/* Feature pills row */
.sc-features {
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px;
}
.sc-feat {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.76rem; font-weight:600; color:var(--dark-3);
  background:var(--bg-alt); padding:5px 12px;
}
.sc-feat::before {
  content:''; display:block; flex-shrink:0;
  width:12px; height:12px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230EA5E9'%3E%3Cpath d='M12 2C12 2 4 10.4 4 14.5a8 8 0 0 0 16 0C20 10.4 12 2 12 2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* RO Filter Replacement highlight */
.sc-replacement-highlight {
  display:flex; align-items:flex-start; gap:12px;
  margin-top:20px; margin-bottom:20px;
  background:linear-gradient(135deg,#FFF1F3 0%,#FFE4E9 100%);
  padding:16px 18px;
  border-radius:12px;
}
.sc-replacement-icon {
  flex-shrink:0; width:38px; height:38px; margin-top:2px;
  background:var(--red); color:#fff;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
}
.sc-replacement-icon svg { width:18px; height:18px; }
.sc-replacement-text {
  display:flex; flex-direction:column; flex:1; min-width:0;
}
.sc-replacement-label {
  font-size:.63rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--red); line-height:1; margin-bottom:4px;
}
.sc-replacement-title {
  font-family:var(--font-head); font-size:.87rem; font-weight:700;
  color:#000; line-height:1.25; margin-bottom:5px;
}
.sc-replacement-sub {
  font-size:.72rem; color:#9B1239; line-height:1.5; margin-bottom:8px;
}
.sc-replacement-link {
  display:inline-block;
  font-family:var(--font-head); font-size:.75rem; font-weight:700;
  color:var(--red); text-decoration:underline; text-underline-offset:3px;
  transition:color .2s;
}
.sc-replacement-link:hover { color:var(--red-dark); }

/* CTA */
.sc-cta {
  align-self:flex-start;
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 28px; border-radius:6px;
  font-family:var(--font-head); font-size:.85rem; font-weight:700;
  color:#fff; background:var(--red);
  text-decoration:none; transition:background .2s, transform .2s;
}
.sc-cta:hover { background:var(--red-dark); transform:translateX(4px); }


/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section { background:#fff; padding:96px 0 }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center }
.why-visual { position:relative }
.why-img {
  border-radius:0; overflow:hidden; aspect-ratio:3/4;
  background:linear-gradient(160deg, var(--blue-light), var(--red-light));
  box-shadow:var(--sh-xl);
}
.why-img img { width:100%; height:100%; object-fit:cover }
.why-img-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:12px; color:var(--muted);
}
.why-img-placeholder svg { width:64px; height:64px; color:var(--blue) }
.why-exp-badge {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--red); color:#fff;
  border-radius:8px; padding:20px 24px;
  text-align:center; box-shadow:var(--sh-lg);
}
.why-exp-num { font-family:var(--font-head); font-size:2.4rem; font-weight:800; line-height:1 }
.why-exp-text { font-size:.75rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; opacity:.85 }
.why-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:36px }
.why-feature {
  background:#fff; border-radius:8px; padding:20px 18px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  transition:box-shadow .25s, transform .25s;
}
.why-feature:hover { box-shadow:0 6px 24px rgba(0,0,0,.12); transform:translateY(-2px) }
.why-feature-title { font-family:var(--font-head); font-size:.875rem; font-weight:700; color:var(--dark); margin-bottom:5px }
.why-feature-desc { font-size:.78rem; color:var(--muted); line-height:1.6 }


/* ============================================================
   YOUTUBE VIDEO SECTION
   ============================================================ */
.yt-section { padding:0 0 80px; }

.yt-wrapper {
  position:relative; width:100%; max-width:900px; margin:0 auto;
  border-radius:20px; overflow:hidden;
  aspect-ratio:16/9;
  cursor:pointer;
  box-shadow:0 24px 72px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.06);
}

/* Thumbnail */
.yt-thumb {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease;
}
.yt-wrapper:hover .yt-thumb { transform:scale(1.03); }

/* Gradient overlay — deep premium look */
.yt-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(135deg,
      rgba(10,10,30,.72) 0%,
      rgba(220,38,38,.28) 50%,
      rgba(10,10,30,.82) 100%);
  transition:opacity .35s ease;
}
.yt-wrapper:hover .yt-overlay { opacity:.85; }

/* Play button */
.yt-play {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:80px; height:80px;
  background:rgba(255,255,255,.1);
  border:2px solid rgba(255,255,255,.55);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  backdrop-filter:blur(6px);
  transition:background .3s, border-color .3s, transform .3s, box-shadow .3s;
  z-index:2;
}
.yt-play svg { width:32px; height:32px; margin-left:4px; }

/* Pulsing ring */
.yt-play-ring {
  position:absolute; inset:-10px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.22);
  animation:yt-ring-pulse 2.4s ease-in-out infinite;
}
@keyframes yt-ring-pulse {
  0%,100% { opacity:.6; transform:scale(1); }
  50%      { opacity:0;  transform:scale(1.35); }
}

.yt-wrapper:hover .yt-play {
  background:var(--red);
  border-color:var(--red);
  transform:translate(-50%,-50%) scale(1.1);
  box-shadow:0 0 40px rgba(220,38,38,.55);
}

/* Active playing state — hide overlay & play btn */
.yt-wrapper.playing .yt-overlay,
.yt-wrapper.playing .yt-play,
.yt-wrapper.playing .yt-thumb { opacity:0; pointer-events:none; }

/* Injected iframe */
.yt-wrapper iframe {
  position:absolute; inset:0;
  width:100%; height:100%;
  border:none; border-radius:20px;
}


/* ============================================================
   BEFORE / AFTER
   ============================================================ */
/* ── The McKay's Difference — image overlay section ──────── */
.before-after {
  position:relative; padding:110px 0;
  background-size:cover; background-position:center; background-repeat:no-repeat;
  overflow:hidden;
}
.before-after::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(90,0,0,.92) 0%, rgba(60,0,0,.78) 45%, rgba(20,0,0,.4) 100%);
  pointer-events:none;
}
.before-after .container { position:relative; z-index:1; }

/* 65% width content block */
.ba-content { max-width:65%; }

/* Benefit list — 2 column grid */
.ba-list {
  display:grid; grid-template-columns:1fr 1fr;
  gap:20px 40px;
}
.ba-list-item {
  display:flex; align-items:flex-start; gap:14px;
}
.ba-list-check {
  width:22px; height:22px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.ba-list-check svg { width:22px; height:22px; color:rgba(255,255,255,.65); }
.ba-list-title {
  font-family:var(--font-head); font-size:.92rem; font-weight:700;
  color:#fff; margin-bottom:4px; line-height:1.3;
}
.ba-list-desc { font-size:.8rem; color:rgba(255,255,255,.6); line-height:1.65; }

@media (max-width:900px) {
  .ba-content { max-width:100%; }
  .ba-list { grid-template-columns:1fr; gap:16px; }
}
@media (max-width:640px) {
  .before-after { padding:80px 0; }
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background:var(--bg); padding:96px 0 }
.how-steps {
  display:grid; grid-template-columns:repeat(4,1fr); gap:32px;
  position:relative; margin-top:56px;
}
.how-steps::before {
  content:''; position:absolute; top:36px; left:calc(12.5% + 18px); right:calc(12.5% + 18px);
  height:2px; background:repeating-linear-gradient(90deg, var(--red) 0, var(--red) 12px, transparent 12px, transparent 20px);
  z-index:0;
}
.how-step { text-align:center; position:relative; z-index:1 }
.how-step-num {
  width:68px; height:68px;
  border-radius:0 50% 50% 50%;
  transform:rotate(-135deg);
  margin:0 auto 24px;
  display:flex; align-items:center; justify-content:center;
  background:var(--red); border:2px solid var(--red);
  box-shadow:0 8px 24px rgba(220,38,38,.3); position:relative; z-index:2;
  transition:background .3s, box-shadow .3s, transform .3s;
}
.how-step-num span {
  display:block;
  transform:rotate(135deg);
  font-family:var(--font-head); font-size:1.1rem; font-weight:800; color:#fff;
  line-height:1;
}
.how-step:hover .how-step-num {
  background:var(--red-dark); border-color:var(--red-dark);
  transform:rotate(-135deg) scale(1.08);
  box-shadow:0 12px 32px rgba(220,38,38,.45);
}
.how-step-icon { margin-bottom:14px }
.how-step-icon svg { width:28px; height:28px; color:var(--red); margin:0 auto }
.how-step-title { font-family:var(--font-head); font-size:.95rem; font-weight:700; color:var(--dark); margin-bottom:8px }
.how-step-desc { font-size:.82rem; color:var(--muted); line-height:1.7 }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background:var(--bg-alt); padding:96px 0 }
.testimonials-overall {
  display:flex; align-items:center; gap:24px;
  background:#fff; border-radius:8px; padding:24px 32px;
  box-shadow:0 2px 16px rgba(0,0,0,.07); margin-bottom:48px;
  box-shadow:var(--sh-sm);
}
.testimonials-score {
  display:flex; flex-direction:column; align-items:center;
  padding-right:24px; border-right:1px solid var(--border);
}
.testimonials-score-num { font-family:var(--font-head); font-size:3rem; font-weight:800; color:var(--dark); line-height:1 }
.testimonials-score-stars { display:flex; gap:3px; margin:4px 0 }
.testimonials-score-stars svg { width:16px; height:16px; color:var(--red) }
.testimonials-score-count { font-size:.78rem; color:var(--muted) }
.testimonials-platforms { display:flex; flex-wrap:wrap; gap:16px }
.testimonials-platform { display:flex; align-items:center; gap:8px; font-size:.82rem; font-weight:600; color:var(--dark-3) }
.testimonials-platform svg { width:18px; height:18px }
/* ── Slider wrapper ──────────────────────────────────────── */
.tslider-wrap { position:relative; margin-top:32px; }

/* Scrollable track */
.testimonials-grid {
  display:flex; gap:20px;
  overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:8px 4px 20px;
  scrollbar-width:none;
}
.testimonials-grid::-webkit-scrollbar { display:none; }

/* Prev / Next arrows */
.tslider-btn {
  position:absolute; top:calc(50% - 20px); transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  background:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(0,0,0,.12);
  z-index:2; transition:background .2s, color .2s;
  color:var(--dark);
}
.tslider-btn svg { width:18px; height:18px; }
.tslider-btn:hover { background:var(--red); color:#fff; }
.tslider-prev { left:-22px; }
.tslider-next { right:-22px; }

.testimonial-card {
  flex:0 0 calc(50% - 10px); scroll-snap-align:start;
  background:#fff;
  border-radius:8px; padding:28px 24px;
  box-shadow:0 2px 14px rgba(0,0,0,.07);
  transition:box-shadow .25s, transform .25s;
  display:flex; flex-direction:column;
}
.testimonial-card:hover { box-shadow:var(--sh-md); transform:translateY(-3px); border-color:var(--border-2) }
.testimonial-stars { display:flex; gap:3px; margin-bottom:14px }
.testimonial-stars svg { width:14px; height:14px; color:var(--red) }
.testimonial-text {
  font-size:.9rem; color:var(--text); line-height:1.8; margin-bottom:20px;
  font-style:italic;
}
.testimonial-text::before { content:'\201C'; color:var(--red); font-size:1.5em; line-height:0; vertical-align:-.35em }
.testimonial-author { display:flex; align-items:center; gap:12px }
.testimonial-footer {
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-top:auto; padding-top:16px;
  border-top:1px solid var(--bg-alt);
}
.testimonial-avatar {
  width:44px; height:44px; border-radius:0;
  background:var(--red-light); color:var(--red);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:.9rem; font-weight:600;
  overflow:hidden; flex-shrink:0;
}
.testimonial-avatar img { width:100%; height:100%; object-fit:cover }
.testimonial-name { font-family:var(--font-head); font-size:.9rem; font-weight:700; color:var(--dark); margin-bottom:2px }
.testimonial-location { font-size:.75rem; color:var(--muted) }
.testimonial-badge {
  display:inline-flex; align-items:center; gap:4px;
  font-size:.68rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--green); background:var(--green-light); padding:2px 8px; border-radius:0;
  margin-top:3px;
}
.testimonial-badge svg { width:10px; height:10px }


/* ============================================================
   WATER SOURCE
   ============================================================ */
.water-source { background:var(--bg); padding:96px 0 }
.water-source-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:56px }
.water-source-card {
  border-radius:8px; overflow:hidden;
  box-shadow:0 2px 16px rgba(0,0,0,.07);
  transition:box-shadow .25s;
}
.water-source-card:hover { box-shadow:0 8px 32px rgba(0,0,0,.13) }
.water-source-header {
  padding:28px 28px 20px;
}
.ws-city .water-source-header { background:linear-gradient(135deg, #1E3A5F 0%, #0284C7 100%) }
.ws-well .water-source-header { background:linear-gradient(135deg, #14532D 0%, #059669 100%) }
.ws-icon {
  display:block; margin-bottom:14px;
}
.ws-icon svg { width:30px; height:30px; color:#fff }
.ws-source-title { font-family:var(--font-head); font-size:1.1rem; font-weight:700; color:#fff; margin-bottom:6px }
.ws-source-desc { font-size:.82rem; color:rgba(255,255,255,.7); line-height:1.6 }
.water-source-body { background:#fff; padding:24px 28px }
.ws-issues-title {
  font-family:var(--font-head); font-size:.75rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:14px;
}
.ws-issues-row { display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.ws-issues { display:flex; flex-direction:column; gap:10px; flex:1; }
.ws-source-img { flex-shrink:0; width:120px; height:120px; border-radius:12px; overflow:hidden; box-shadow:0 6px 24px rgba(0,0,0,.12); }
.ws-source-img img { width:100%; height:100%; object-fit:cover; display:block; }

@media (max-width:640px) {
  .ws-issues-row { flex-direction:column; align-items:stretch; }
  .ws-source-img { width:100%; height:160px; }
}
.ws-issue { display:flex; align-items:center; gap:10px; font-size:.85rem; color:var(--text) }
.ws-issue svg { width:14px; height:14px; flex-shrink:0; color:#f87171 }
.ws-solutions-title { font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:10px; font-family:var(--font-head) }
.ws-solutions { display:flex; flex-wrap:wrap; gap:6px }
.ws-solutions { display:grid; grid-template-columns:1fr 1fr; gap:10px; }

.ws-sol {
  padding:10px 12px;
  border-radius:6px;
  background:rgba(2,132,199,.05);
}
.ws-well .ws-sol { background:rgba(5,150,105,.05); }

.ws-sol-name {
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-head); font-size:.8rem; font-weight:700;
  color:var(--dark); margin-bottom:4px;
}
.ws-sol-name::before {
  content:''; display:block; flex-shrink:0;
  width:6px; height:6px; border-radius:50%;
  background:var(--blue-dark);
}
.ws-well .ws-sol-name::before { background:#059669; }

.ws-sol-desc {
  font-size:.73rem; color:var(--muted); line-height:1.55;
}


/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-section { background:var(--bg-alt); padding:96px 0 }
.lead-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:64px; align-items:start }
.lead-info {}
.lead-trust-list { display:flex; flex-direction:column; gap:16px; margin-top:32px }
.lead-trust-item { display:flex; align-items:flex-start; gap:14px }
.lead-trust-icon {
  width:40px; height:40px; border-radius:0; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; background:var(--green-light);
}
.lead-trust-icon svg { width:20px; height:20px; color:var(--green) }
.lead-trust-title { font-family:var(--font-head); font-size:.875rem; font-weight:700; color:var(--dark); margin-bottom:3px }
.lead-trust-desc { font-size:.8rem; color:var(--muted) }
.lead-form-wrap {
  background:#fff; border-radius:8px;
  padding:40px 36px; box-shadow:0 4px 28px rgba(0,0,0,.1);
}
.lead-form-title { font-family:var(--font-head); font-size:1.1rem; font-weight:700; color:var(--dark); margin-bottom:4px }
.lead-form-sub { font-size:.82rem; color:var(--muted); margin-bottom:24px }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px }
.form-group--full { grid-column:1/-1 }
.form-group { display:flex; flex-direction:column; gap:5px }
.form-label {
  font-size:.74rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--dark-3);
}
.form-input,.form-select,.form-textarea {
  width:100%; padding:12px 14px;
  background:var(--bg-alt); border:1.5px solid var(--border);
  border-radius:0; font-size:.9rem; color:var(--dark); outline:none;
  transition:border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
  border-color:var(--red); background:#fff; box-shadow:0 0 0 3px rgba(230,0,61,.08);
}
.form-textarea { resize:vertical; min-height:100px }
.form-select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; background-size:16px; padding-right:36px;
}
.form-error { font-size:.75rem; color:var(--red); margin-top:2px; display:none }
.has-error .form-input,.has-error .form-select,.has-error .form-textarea { border-color:var(--red) }
.has-error .form-error { display:block }
.form-checkboxes { display:flex; flex-direction:column; gap:8px }
.form-checkbox-item { display:flex; align-items:center; gap:10px; cursor:pointer }
.form-checkbox-item input[type=checkbox] { width:16px; height:16px; accent-color:var(--red); cursor:pointer; flex-shrink:0 }
.form-checkbox-item span { font-size:.85rem; color:var(--dark-3) }
.form-submit {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:16px;
  background:var(--red); color:#fff;
  font-family:var(--font-head); font-size:.95rem; font-weight:600;
  border-radius:6px; border:none; cursor:pointer;
  transition:background .25s, transform .2s, box-shadow .25s; margin-top:8px;
}
.form-submit:hover { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(230,0,61,.3) }
.form-submit svg { width:18px; height:18px }
.form-guarantee {
  display:flex; align-items:center; justify-content:center; gap:6px;
  font-size:.75rem; color:var(--muted); margin-top:12px;
}
.form-guarantee svg { width:14px; height:14px; color:var(--green) }
/* Form success state */
.form-success {
  display:none; text-align:center; padding:40px 20px;
}
.form-success.visible { display:block }
.form-success-icon {
  width:72px; height:72px; border-radius:0; background:var(--green-light);
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
}
.form-success-icon svg { width:36px; height:36px; color:var(--green) }
.form-success-title { font-family:var(--font-head); font-size:1.3rem; font-weight:700; color:var(--dark); margin-bottom:10px }
.form-success-desc { font-size:.9rem; color:var(--muted) }


/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background:var(--bg); padding:96px 0 }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:56px }
.faq-item {
  background:#fff;
  border-radius:8px; overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  transition:box-shadow .25s;
}
.faq-item.open { box-shadow:0 6px 24px rgba(0,0,0,.11) }
.faq-question {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 22px; cursor:pointer;
  font-family:var(--font-head); font-size:.9rem; font-weight:600;
  color:var(--dark); transition:color .2s;
  user-select:none;
}
.faq-item.open .faq-question { color:var(--red) }
.faq-question-icon {
  width:28px; height:28px; border-radius:0; flex-shrink:0;
  background:var(--bg-alt); display:flex; align-items:center; justify-content:center;
  transition:background .2s, transform .3s;
}
.faq-item.open .faq-question-icon { background:var(--red); transform:rotate(45deg) }
.faq-question-icon svg { width:14px; height:14px; color:var(--muted); transition:color .2s }
.faq-item.open .faq-question-icon svg { color:#fff }
.faq-answer {
  max-height:0; overflow:hidden;
  transition:max-height .4s cubic-bezier(.4,0,.2,1), padding .4s;
  padding:0 22px;
}
.faq-item.open .faq-answer { max-height:300px; padding:0 22px 20px }
.faq-answer p { font-size:.875rem; color:var(--muted); line-height:1.8 }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background:var(--red); padding:80px 0; position:relative; overflow:hidden }
.final-cta::before {
  content:''; position:absolute; top:-100px; right:-80px;
  width:500px; height:500px; border-radius:0;
  background:rgba(255,255,255,.05); pointer-events:none;
}
.final-cta::after {
  content:''; position:absolute; bottom:-120px; left:-60px;
  width:400px; height:400px; border-radius:0;
  background:rgba(0,0,0,.08); pointer-events:none;
}
.final-cta-inner {
  position:relative; z-index:1;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:24px;
}
.final-cta-title {
  font-family:var(--font-head); font-size:clamp(2rem,4.5vw,3rem);
  font-weight:800; color:#fff; line-height:1.15; letter-spacing:-.025em;
}
.final-cta-desc { font-size:1.05rem; color:rgba(255,255,255,.75); max-width:540px; line-height:1.75 }
.final-cta-actions { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:8px }
.final-cta-trust { display:flex; gap:20px; flex-wrap:wrap; justify-content:center }
.final-cta-trust-item {
  display:flex; align-items:center; gap:6px;
  font-size:.8rem; font-weight:600; color:rgba(255,255,255,.7);
}
.final-cta-trust-item svg { width:15px; height:15px; color:rgba(255,255,255,.5) }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:linear-gradient(135deg, #fff 0%, #FFF5F5 55%, #FEE2E2 100%);
  padding:72px 0 0;
}
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px }

/* ── Business Hours horizontal strip ──────────────────────── */
.footer-hours-strip {
  display:flex; align-items:center; gap:32px; flex-wrap:wrap;
  padding:18px 28px; margin-bottom:28px;
  background:rgba(220,38,38,.05);
  border-radius:8px;
}
.fhs-label {
  display:flex; align-items:center; gap:7px; flex-shrink:0;
  font-family:var(--font-head); font-size:.7rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--red);
}
.fhs-label svg { width:15px; height:15px; }
.fhs-items {
  display:flex; align-items:center; gap:24px; flex:1;
}
.fhs-item { display:flex; flex-direction:column; gap:2px; }
.fhs-day  { font-size:.72rem; color:var(--muted); }
.fhs-time { font-size:.82rem; font-weight:600; color:var(--dark-3); }
.fhs-item--closed .fhs-time { color:var(--muted); font-weight:400; }
.fhs-divider { width:1px; height:32px; background:rgba(220,38,38,.15); flex-shrink:0; }
.footer-logo { display:flex; align-items:center; margin-bottom:16px }
.footer-logo-img { height:48px; width:auto; display:block; object-fit:contain; }
.footer-logo-icon {
  width:36px; height:36px; background:var(--red); border-radius:8px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.footer-logo-icon svg { width:19px; height:19px; color:#fff }
.footer-logo-name { font-family:var(--font-head); font-size:1rem; font-weight:700; color:var(--dark); line-height:1.1 }
.footer-logo-name span { color:var(--red) }
.footer-logo-tag { font-size:.6rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); display:block; margin-top:2px }
.footer-desc { font-size:.85rem; color:var(--muted); line-height:1.8; max-width:280px; margin-bottom:24px }
.footer-social { display:flex; gap:9px }
.footer-social-link {
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); transition:color .2s;
}
.footer-social-link:hover { color:var(--red); }
.footer-social-link svg { width:18px; height:18px; }
.footer-col-title {
  font-family:var(--font-head); font-size:.7rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; color:var(--dark); margin-bottom:18px;
}
.footer-links { display:flex; flex-direction:column; gap:9px; }
.footer-links a {
  font-size:.83rem; color:var(--muted); transition:color .2s;
}
.footer-links a:hover { color:var(--red); }
.footer-contact-list { display:flex; flex-direction:column; gap:12px }
.footer-contact-item { display:flex; gap:10px; align-items:flex-start }
.footer-contact-item svg { width:15px; height:15px; color:var(--red); flex-shrink:0; margin-top:3px }
.footer-contact-item span { font-size:.845rem; color:var(--muted); line-height:1.55 }
.footer-contact-item a { color:inherit; transition:color .2s }
.footer-contact-item a:hover { color:var(--red) }
.footer-divider { border:none; border-top:1px solid rgba(220,38,38,.1) }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
  padding:20px 0;
}
.footer-copy { font-size:.78rem; color:var(--muted) }
.footer-copy strong { color:var(--dark-3) }
.footer-legal { display:flex; gap:18px }
.footer-legal a { font-size:.75rem; color:var(--muted); transition:color .2s }
.footer-legal a:hover { color:var(--red) }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px }
  .footer-grid > div:first-child { grid-column:1/-1 }
  .footer-desc { max-width:none }
}

@media (max-width:1024px) {
  .hero-inner { gap:36px }
  .hero-float-cards { left:-10px }
  .why-grid { gap:40px }
  .lead-grid { gap:40px }
  .solutions-grid { gap:20px }
  .solution-card,
  .sc-reverse { grid-template-columns:320px 1fr; }
  .trust-divider { display:none }
  .faq-grid { gap:14px }
}

@media (max-width:900px) {
  .header-nav { display:none }
  .header-right { display:none }
  .hamburger { display:flex }
  .hero-inner { grid-template-columns:1fr }
  .solution-card,
  .sc-reverse { grid-template-columns:1fr; }
  .sc-img { height:240px; }
  .sc-reverse .sc-img  { order:0; }
  .sc-reverse .sc-body { order:1; }
  .sc-body { padding:28px 24px; }
  .sc-title { font-size:1.25rem; }
  .why-grid { grid-template-columns:1fr }
  .why-visual { display:block }
  .how-steps { grid-template-columns:repeat(2,1fr); gap:20px }
  .how-steps::before { display:none }
  .testimonial-card { flex:0 0 calc(50% - 10px); }
  .tslider-btn { display:none; }
  .water-source-grid { grid-template-columns:1fr }
  .lead-grid { grid-template-columns:1fr }
  .faq-grid { grid-template-columns:1fr }
  .trust-bar-inner { gap:0 }
  .trust-stat { min-width:120px; padding:8px 12px; }
  .mobile-cta-bar { display:flex }
  body { padding-bottom:70px }
  .back-to-top { bottom:80px; right:16px }
}

@media (max-width:640px) {
  :root { --header-h:68px }
  .section-pad { padding:72px 0 }
  .hci-secondary { width:110px; height:110px; bottom:-14px; right:-14px; }
  .hero-collage-badge { bottom:14px; left:-4px; padding:9px 12px; gap:9px; }
  .hcb-av { width:24px; height:24px; font-size:.6rem; }
  .hcb-score { font-size:.95rem; }
  .hcb-stars svg { width:9px; height:9px; }
  .testimonial-card { flex:0 0 85vw; scroll-snap-align:center; }
  .testimonials-grid { scroll-snap-type:x mandatory; padding-inline:7.5vw; }
  .testimonials-overall { flex-direction:column; align-items:flex-start; gap:16px }
  .testimonials-score { padding-right:0; border-right:none; border-bottom:1px solid var(--border); padding-bottom:16px; width:100% }
  .hero-sub { font-size:.9rem }
  .final-cta-actions { flex-direction:column; width:100% }
  .final-cta-actions a { justify-content:center; width:100% }
  .how-steps {
    grid-template-columns:1fr; gap:0;
    padding-left:0; position:relative;
  }
  .how-steps::before {
    display:block;
    top:52px; bottom:52px;
    left:26px; right:auto;
    width:2px; height:auto;
    background:repeating-linear-gradient(180deg, var(--red) 0, var(--red) 12px, transparent 12px, transparent 20px);
  }
  .how-step {
    display:grid;
    grid-template-columns:52px 1fr;
    grid-template-rows:auto auto;
    grid-template-areas:"num title" "num desc";
    column-gap:16px; row-gap:4px;
    align-items:start;
    text-align:left; padding:16px 0;
  }
  .how-step-num { grid-area:num; float:none; margin:0; width:52px; height:52px; align-self:start; }
  .how-step-num span { font-size:.9rem; }
  .how-step-icon { display:none; }
  .how-step-title { grid-area:title; padding-top:6px; margin-bottom:0; }
  .how-step-desc  { grid-area:desc; }
  .lead-form-wrap { padding:28px 20px }
  .form-grid { grid-template-columns:1fr }
  .footer-grid { grid-template-columns:1fr }
}
