:root {
  color-scheme: light;
  --ink: #091427;
  --muted: #5e7188;
  --line: rgba(12, 76, 122, 0.16);
  --soft: #f4f9fc;
  --paper: #ffffff;
  --navy: #020d19;
  --deep: #06233d;
  --blue: #147ee8;
  --aqua: #40c5ff;
  --pale: #e9f7ff;
  --gold: #ffc940;
  --red: #147ee8;
  --shadow: 0 24px 60px rgba(3, 22, 41, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: #f7fbfe;
}

a {
  color: inherit;
}

.topbar {
  background: #020b14;
  color: white;
  font-size: 0.86rem;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 255, 0.94));
  border-bottom: 1px solid rgba(20, 126, 232, 0.14);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background:
    radial-gradient(circle at 34% 22%, #7de2ff, transparent 28%),
    linear-gradient(135deg, #1397ff, #073f86);
  box-shadow: 0 12px 28px rgba(20, 126, 232, 0.24);
}

.brand-mark .icon {
  width: 25px;
  height: 25px;
  stroke-width: 2.2;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #1b91ff, #0d62d4);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20, 126, 232, 0.24);
}

.nav-phone .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-phone span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.nav-phone small {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #dff3ff;
}

.nav-phone strong {
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #1b91ff, #0d62d4);
  color: white;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.button.secondary {
  color: var(--deep);
  background: white;
  border-color: rgba(9, 20, 39, 0.12);
}

.button.urgent {
  background: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 13, 25, 0.98) 0%, rgba(3, 21, 38, 0.91) 43%, rgba(3, 21, 38, 0.38) 100%),
    url("/assets/water-hero.webp");
  background-size: cover;
  background-position: center right;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -90px;
  height: 160px;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92) 64%, transparent 65%);
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.74fr);
  gap: 36px;
  align-items: center;
  padding: 50px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c9ecff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--aqua);
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  max-width: 800px;
  margin-top: 12px;
  font-size: clamp(2.55rem, 7vw, 5.5rem);
  letter-spacing: 0;
}

h1 em {
  color: #2f9bff;
  font-style: normal;
}

.hero p {
  max-width: 620px;
  color: #eef7f8;
  font-size: 1.05rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 620px;
}

.proof-item {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(120, 200, 255, 0.22);
  background: rgba(3, 21, 38, 0.56);
  padding: 14px 12px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.proof-item .icon,
.hero-card-top .icon,
.service-icon .icon,
.metric .icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item .icon {
  color: var(--aqua);
}

.lead-panel {
  background: white;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-card {
  align-self: end;
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(130, 202, 255, 0.26);
  border-radius: 8px;
  background: rgba(2, 14, 26, 0.72);
  color: white;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-card p {
  margin: 0;
  color: #d8f8ff;
}

.hero-card strong {
  font-size: 1.42rem;
  line-height: 1.16;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aqua);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.lead-panel h2 {
  font-size: 1.45rem;
}

.lead-panel p {
  color: #334b5f;
  font-size: 0.98rem;
}

.lead-panel .form-status {
  color: #334b5f;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 13px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

section {
  padding: 70px 0;
}

.soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    var(--soft);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.section-actions {
  margin-top: 24px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: white;
  border: 1px solid rgba(8, 44, 75, 0.09);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(7, 50, 74, 0.06);
}

.service-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--blue);
  background: #eef8ff;
  box-shadow: inset 0 0 0 1px rgba(20, 126, 232, 0.14);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p,
.card li {
  color: var(--muted);
}

.article-card {
  overflow: hidden;
  padding: 0;
}

.article-card a {
  display: grid;
  gap: 12px;
  height: 100%;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 7px;
}

.article-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
}

.article-card p {
  margin: 0;
}

.check-list,
.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--aqua);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.city-list a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  text-decoration: none;
  font-weight: 700;
}

.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(23, 166, 199, 0.42), transparent 32%),
    var(--navy);
  color: white;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  color: #d9eef1;
  margin: 8px 0 0;
}

.footer {
  background: #11181d;
  color: white;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.footer p,
.footer a {
  color: #c9d3d9;
}

.sticky-call {
  display: none;
}

.breadcrumb {
  margin: 0 0 18px;
  color: #d6eff2;
  font-size: 0.92rem;
}

.local-note {
  border-left: 4px solid var(--aqua);
  padding: 14px 16px;
  background: #eefbff;
}

.quote-strip {
  padding: 0;
  background: transparent;
  transform: translateY(-36px);
  position: relative;
  z-index: 2;
}

.quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.quote-inner p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.photo-section {
  background: white;
}

.photo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.photo-copy p {
  color: var(--muted);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}

figure {
  margin: 0;
}

.photo-stack figure:first-child {
  grid-row: span 2;
  transform: translateY(-18px);
}

.photo-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-stack figure:last-child img {
  aspect-ratio: 4 / 3;
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.request-section {
  background:
    linear-gradient(135deg, rgba(10, 102, 148, 0.92), rgba(7, 50, 74, 0.96)),
    var(--navy);
  color: white;
}

.metrics-section {
  padding: 0 0 42px;
}

.emergency-strip {
  padding: 0 0 44px;
  background: #f7fbfe;
}

.emergency-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(20, 126, 232, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
  box-shadow: var(--shadow);
}

.emergency-strip strong {
  font-size: 1.15rem;
}

.emergency-strip p {
  margin: 5px 0 0;
  color: var(--muted);
}

.metrics-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 44, 75, 0.1);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.trust-badges-section {
  background: white;
}

.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-badge {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(20, 126, 232, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f2faff);
  box-shadow: 0 16px 36px rgba(3, 22, 41, 0.08);
}

.trust-badge-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--blue);
  background: #e8f5ff;
}

.trust-badge-icon .icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.trust-badge p,
.trust-note {
  color: var(--muted);
}

.trust-note {
  max-width: 880px;
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.metric {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 26px 18px;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid rgba(8, 44, 75, 0.1);
}

.metric .icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.metric strong {
  font-size: 1.04rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.94rem;
}

.request-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 32px;
  align-items: center;
}

.request-grid p {
  color: #d7f5fb;
}

.sub-hero,
.article-hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(2, 13, 25, 0.98), rgba(3, 21, 38, 0.84)),
    url("/assets/water-hero.webp");
  background-size: cover;
  background-position: center right;
}

.sub-hero {
  padding: 92px 0;
}

.sub-hero h1,
.article-hero h1 {
  max-width: 820px;
}

.sub-hero p,
.article-hero p {
  max-width: 720px;
  color: #e4f6ff;
  font-size: 1.08rem;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-body {
  padding: 72px 0;
  background: white;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 34px;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 26px;
}

.article-intro {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.article-block {
  padding: 0;
}

.article-block h2 {
  font-size: 1.55rem;
}

.article-block p {
  color: var(--muted);
}

.tip-box,
.article-cta {
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
}

.article-cta {
  color: white;
  background:
    radial-gradient(circle at 82% 14%, rgba(64, 197, 255, 0.4), transparent 32%),
    var(--deep);
}

.article-cta p {
  color: #d8f8ff;
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.mini-link-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.mini-link-list a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.faq-article-section {
  display: grid;
  gap: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px;
  border: 1px solid rgba(20, 126, 232, 0.14);
  border-radius: 8px;
  background: #f6fbff;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.faq-item p {
  margin: 0;
}

@media (max-width: 860px) {
  .topbar-inner {
    display: none;
  }

  .nav-inner {
    min-height: 62px;
  }

  .nav-actions .secondary {
    display: none;
  }

  .brand-text > span {
    display: none;
  }

  .brand-mark {
    display: inline-flex;
  }

  .brand-text {
    display: grid;
  }

  .nav-phone {
    min-height: 50px;
    padding: 8px;
  }

  .nav-phone span {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 48px 0 74px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .quick-proof,
  .metrics-card,
  .trust-badge-grid,
  .grid.three,
  .grid.two,
  .city-list,
  .footer-grid,
  .photo-grid,
  .request-grid,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .sub-hero,
  .article-hero {
    padding: 56px 0;
  }

  .metric + .metric {
    border-left: 0;
    border-top: 1px solid rgba(8, 44, 75, 0.1);
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack figure:first-child {
    grid-row: auto;
    transform: none;
  }

  .quote-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .emergency-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-card {
    display: none;
  }

  .cta-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  section {
    padding: 44px 0;
  }

  .lead-panel {
    padding: 18px;
  }

  .sticky-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 10;
    display: flex;
    box-shadow: var(--shadow);
  }

  body {
    padding-bottom: 76px;
  }
}
