:root {
  --ink: #07111f;
  --ink-2: #0d1b2a;
  --paper: #f5f8fc;
  --white: #ffffff;
  --blue: #1577ff;
  --blue-2: #0bc5ff;
  --red: #ef3340;
  --green: #1d9d6c;
  --muted: #738196;
  --line: rgba(9, 27, 46, 0.12);
  --shadow: 0 24px 80px rgba(4, 21, 39, 0.14);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-200%);
  background: white;
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.top-strip {
  background: var(--red);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .025em;
}
.top-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.top-strip a { text-decoration: underline; text-underline-offset: 3px; }
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 0 5px rgba(255,255,255,.18);
  animation: pulse 1.7s infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 17, 31, .92);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 18px 40px rgba(0,0,0,.2); background: rgba(7,17,31,.97); }
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.22));
}
.brand__type { display: flex; flex-direction: column; line-height: .9; }
.brand__type strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  letter-spacing: .045em;
}
.brand__type small {
  margin-top: 7px;
  color: #ff5362;
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .22em;
}
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 700;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue-2);
  transition: right .2s ease;
}
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.nav-cta__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--blue);
  font-size: 1rem;
}
.nav-cta span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.nav-cta small { font-size: .62rem; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.55); }
.nav-cta strong { margin-top: 5px; font-size: .88rem; letter-spacing: .02em; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    radial-gradient(circle at 75% 20%, rgba(21,119,255,.18), transparent 34%),
    var(--ink);
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}
.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}
.hero__glow--one {
  width: 430px;
  height: 430px;
  right: -140px;
  top: 100px;
  border: 1px solid rgba(11,197,255,.22);
  box-shadow: inset 0 0 90px rgba(11,197,255,.08), 0 0 90px rgba(21,119,255,.04);
}
.hero__glow--two {
  width: 650px;
  height: 650px;
  right: -250px;
  top: -20px;
  border: 1px solid rgba(255,255,255,.05);
}
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 38px;
  padding-block: 82px 96px;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: .75rem;
}
.rating-pill strong { font-size: .75rem; }
.rating-pill > span:last-child { color: rgba(255,255,255,.6); }
.stars { color: #f7b731; letter-spacing: .09em; }
.eyebrow {
  margin: 22px 0 14px;
  font-size: .74rem;
  line-height: 1;
  letter-spacing: .2em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.eyebrow--blue { color: var(--blue); }
.hero h1,
.section-head h2,
.instant-quote h2,
.reviews-top h2,
.areas h2,
.offer h2,
.final-cta h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
}
.hero h1 { font-size: clamp(4.4rem, 8.2vw, 7.3rem); max-width: 720px; }
.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,.36);
}
.hero__lede {
  max-width: 660px;
  margin: 26px 0 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
}
.hero__actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 12px 21px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn span:not(.btn__icon) { display: flex; flex-direction: column; line-height: 1.05; }
.btn small { margin-top: 5px; font-size: .66rem; color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .04em; }
.btn__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
}
.btn--primary {
  color: white;
  background: linear-gradient(135deg, #0b89ff, #1359ef);
  box-shadow: 0 16px 36px rgba(21,119,255,.28);
}
.btn--primary:hover { box-shadow: 0 18px 45px rgba(21,119,255,.42); }
.btn--ghost { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--white { background: white; color: var(--ink); box-shadow: 0 15px 40px rgba(0,0,0,.18); }
.btn--white .btn__icon { background: #e8f4ff; color: var(--blue); }
.btn--xl { min-height: 64px; padding-inline: 28px; }
.hero__trust-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; color: rgba(255,255,255,.58); font-size: .76rem; font-weight: 700; }
.hero__trust-row span::before { content: "✓"; color: #31d49b; margin-right: 7px; }

.hero__visual { position: relative; min-height: 600px; }
.hero-photo-wrap {
  position: absolute;
  right: 4px;
  top: 22px;
  width: 79%;
  height: 535px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.14);
  transform: rotate(2.4deg);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-photo__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,17,31,.03), rgba(7,17,31,.68)); }
.hero-photo__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(7,17,31,.86);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.hero-photo__badge strong { font-family: "Barlow Condensed", sans-serif; font-size: 2rem; color: #49d8ff; line-height: 1; }
.hero-photo__badge span { font-size: .64rem; line-height: 1.2; color: rgba(255,255,255,.7); font-weight: 700; }
.pipe-scene {
  position: absolute;
  width: 86%;
  height: 86%;
  right: -115px;
  bottom: -70px;
  overflow: visible;
  pointer-events: none;
  transform: rotate(-1.5deg);
}
.pipe { fill: none; stroke: url(#pipeMetal); stroke-width: 54; stroke-linejoin: round; stroke-linecap: round; }
.pipe--shadow { stroke: rgba(0,0,0,.38); stroke-width: 67; transform: translate(7px,11px); }
.water-line {
  fill: none;
  stroke: url(#water);
  stroke-width: 9;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 24 24;
  filter: url(#blueGlow);
  animation: flow 1.35s linear infinite;
}
.valve { transform-origin: 313px 190px; animation: valve 9s ease-in-out infinite; }
.drop { transform-origin: center; }
.drop--2 { animation: bob 1.8s ease-in-out infinite alternate; }
.drop--3 { animation: bob 1.8s .6s ease-in-out infinite alternate; }
.floating-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  max-width: 265px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.floating-card__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: #e9f5ff; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: .77rem; }
.floating-card small { color: var(--muted); font-size: .62rem; }
.floating-card--quote { left: -14px; top: 135px; animation: floaty 4.5s ease-in-out infinite; }
.floating-card--price { right: -2px; bottom: 88px; animation: floaty 5s .8s ease-in-out infinite; }

.hero__ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #0a1b2c;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 58px;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  padding-inline: 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: .13em;
  font-size: 1rem;
  color: rgba(255,255,255,.58);
}
.ticker-track i { color: var(--blue-2); font-size: .45rem; }

.promise-band { background: white; border-bottom: 1px solid var(--line); }
.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.promise {
  position: relative;
  padding: 50px 44px 50px 0;
}
.promise + .promise { padding-left: 44px; border-left: 1px solid var(--line); }
.promise__num {
  display: block;
  color: var(--blue);
  font-family: "Barlow Condensed", sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.promise h2 { margin: 8px 0 8px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 2rem; line-height: 1; }
.promise p { margin: 0; color: var(--muted); font-size: .87rem; }

.section { padding: 110px 0; }
.section-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 50px; margin-bottom: 48px; }
.section-head .eyebrow { margin-top: 0; }
.section-head h2 { font-size: clamp(3.5rem, 6vw, 5.7rem); }
.section-head h2 span { color: var(--blue); }
.section-head > p { margin: 0 0 8px; color: var(--muted); font-size: .98rem; }

.services { background: #f5f8fc; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 315px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(4,30,52,.08);
  background: white;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -75px;
  bottom: -75px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21,119,255,.09), transparent 66%);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(21,119,255,.18); }
.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf4ff;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 800;
}
.service-card__kicker { display: inline-block; margin-top: 20px; font-size: .63rem; font-weight: 800; letter-spacing: .14em; color: var(--blue); }
.service-card h3 { margin: 18px 0 10px; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; text-transform: uppercase; line-height: 1; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: .87rem; }
.service-card ul { padding: 0; margin: 0 0 28px; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.service-card li { color: rgba(255,255,255,.78); font-size: .75rem; }
.service-card li::before { content: "✓"; margin-right: 6px; color: #4fe2b0; }
.service-card > a { position: absolute; left: 28px; bottom: 26px; z-index: 2; font-weight: 800; font-size: .8rem; color: var(--blue); }
.service-card > a span { margin-left: 4px; transition: margin-left .2s ease; }
.service-card:hover > a span { margin-left: 9px; }
.service-card--featured { grid-row: span 2; min-height: 646px; background: linear-gradient(160deg,#0c2034,#07111f); color: white; }
.service-card--featured::before {
  content: "";
  position: absolute;
  inset: auto -15% -15% auto;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  border: 26px solid rgba(15,137,255,.2);
  box-shadow: 0 0 0 34px rgba(15,137,255,.06);
}
.service-card--featured .service-card__icon { background: var(--blue); color: white; }
.service-card--featured h3 { margin-top: 18px; font-size: 3rem; }
.service-card--featured p { color: rgba(255,255,255,.64); }
.service-card--featured > a { color: #52d4ff; }
.service-card--emergency { background: #fff6f6; border-color: rgba(239,51,64,.12); }
.service-card--emergency .service-card__kicker { color: var(--red); margin-top: 2px; }
.service-card--emergency > a { color: var(--red); }
.service-card__pulse { width: 48px; height: 48px; display: grid; place-items: center; }
.service-card__pulse span { width: 15px; height: 15px; border-radius: 999px; background: var(--red); box-shadow: 0 0 0 0 rgba(239,51,64,.35); animation: emergency 1.8s infinite; }

.instant-quote { overflow: hidden; background: linear-gradient(135deg, #0f8dff, #1558ec); color: white; }
.instant-quote__grid { min-height: 620px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; }
.instant-quote h2 { font-size: clamp(4rem, 6.5vw, 6.3rem); }
.instant-quote h2 span { color: #b6ecff; }
.instant-quote__copy > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.78); }
.instant-quote .btn { margin-top: 16px; }
.phone-mock { position: relative; justify-self: center; width: min(325px, 76vw); padding: 16px; border-radius: 46px; background: #06101d; box-shadow: 0 30px 90px rgba(0,0,0,.35); transform: rotate(4deg); }
.phone-mock::before { content: ""; position: absolute; inset: 7px; border-radius: 41px; border: 1px solid rgba(255,255,255,.17); pointer-events: none; }
.phone-mock__speaker { position: absolute; z-index: 3; width: 92px; height: 25px; border-radius: 99px; background: #06101d; top: 22px; left: 50%; transform: translateX(-50%); }
.phone-mock__screen { min-height: 555px; border-radius: 32px; overflow: hidden; background: #eef5fb; color: var(--ink); padding-bottom: 28px; }
.phone-chat__head { display: flex; align-items: center; gap: 10px; padding: 44px 16px 15px; background: white; border-bottom: 1px solid var(--line); }
.phone-chat__head img { width: 40px; height: 40px; object-fit: contain; }
.phone-chat__head div { display: flex; flex-direction: column; }
.phone-chat__head strong { font-size: .8rem; }
.phone-chat__head small { color: var(--green); font-size: .58rem; }
.chat-bubble { max-width: 79%; margin: 16px; padding: 11px 13px; border-radius: 14px; font-size: .68rem; line-height: 1.4; box-shadow: 0 6px 16px rgba(0,0,0,.06); }
.chat-bubble--me { margin-left: auto; background: #dbeeff; border-bottom-right-radius: 4px; }
.chat-bubble--them { background: white; border-bottom-left-radius: 4px; }
.chat-photo { width: 132px; height: 118px; margin: -7px 16px 12px auto; border-radius: 14px 5px 14px 14px; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.chat-photo img { width: 100%; height: 100%; object-fit: cover; }
.typing { display: flex; gap: 4px; width: fit-content; padding: 10px 12px; margin: 5px 16px; border-radius: 13px; background: white; }
.typing span { width: 6px; height: 6px; border-radius: 99px; background: #9aabbd; animation: typing 1.2s infinite; }
.typing span:nth-child(2){ animation-delay: .15s; }
.typing span:nth-child(3){ animation-delay: .3s; }

.work { background: var(--ink); color: white; }
.section-head--dark > p { color: rgba(255,255,255,.56); }
.section-head--dark h2 span { color: #62dbff; }
.work-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-auto-rows: 260px; gap: 14px; }
.work-card { position: relative; margin: 0; border-radius: 22px; overflow: hidden; background: #122237; }
.work-card--tall { grid-row: span 2; }
.work-card--wide { grid-column: span 2; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,12,22,.88), rgba(3,12,22,.02) 55%); }
.work-card:hover img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }
.work-card figcaption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; display: flex; flex-direction: column; }
.work-card figcaption span { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: #79ddff; font-weight: 800; }
.work-card figcaption strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.6rem; text-transform: uppercase; }

.reviews { background: white; }
.reviews-top { display: grid; grid-template-columns: .72fr 1fr .65fr; align-items: center; gap: 35px; margin-bottom: 50px; }
.reviews-score { display: flex; align-items: center; gap: 18px; padding-right: 35px; border-right: 1px solid var(--line); }
.reviews-score > strong { font-family: "Barlow Condensed", sans-serif; font-size: 6rem; line-height: .75; }
.reviews-score > div { display: flex; flex-direction: column; gap: 5px; }
.reviews-score small { color: var(--muted); font-size: .72rem; }
.reviews-top .eyebrow { margin: 0 0 12px; }
.reviews-top h2 { font-size: clamp(3.7rem, 5vw, 5.4rem); }
.reviews-top h2 span { color: var(--blue); }
.google-link { justify-self: end; font-size: .8rem; font-weight: 800; color: var(--blue); border-bottom: 1px solid rgba(21,119,255,.3); padding-bottom: 5px; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { min-height: 280px; padding: 26px; border-radius: 22px; background: #f6f9fc; border: 1px solid var(--line); display: flex; flex-direction: column; }
.review-card--lift { transform: translateY(-14px); box-shadow: 0 22px 60px rgba(16,40,70,.11); background: white; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; }
.google-g { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: white; border: 1px solid var(--line); font-weight: 800; color: #4285f4; }
.review-card blockquote { margin: 28px 0 28px; font-size: 1rem; font-weight: 600; line-height: 1.65; }
.review-card footer { margin-top: auto; display: flex; flex-direction: column; }
.review-card footer strong { font-size: .82rem; }
.review-card footer span { font-size: .67rem; color: var(--muted); }

.areas { position: relative; overflow: hidden; background: #0c1f33; color: white; }
.areas__grid { min-height: 590px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.areas h2 { font-size: clamp(4rem, 6vw, 6.2rem); }
.areas h2 span { color: #66ddff; }
.areas__copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.62); }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.area-chips span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.78); font-size: .72rem; background: rgba(255,255,255,.04); }
.areas__graphic { position: relative; justify-self: center; width: min(470px, 86vw); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, rgba(21,119,255,.2), rgba(21,119,255,.02) 58%, transparent 59%); }
.radar { position: absolute; border-radius: 50%; border: 1px solid rgba(76,205,255,.18); animation: radar 4.6s ease-out infinite; }
.radar--1 { width: 28%; height: 28%; }
.radar--2 { width: 56%; height: 56%; animation-delay: .8s; }
.radar--3 { width: 86%; height: 86%; animation-delay: 1.6s; }
.map-pin { position: absolute; width: 58px; height: 58px; border-radius: 50% 50% 50% 8px; background: var(--red); transform: rotate(-45deg) translate(14px,-34px); box-shadow: 0 16px 42px rgba(239,51,64,.35); }
.map-pin span { position: absolute; width: 20px; height: 20px; background: white; border-radius: 50%; left: 19px; top: 19px; }
.areas__graphic strong { margin-top: 90px; font-family: "Barlow Condensed", sans-serif; font-size: 2.25rem; letter-spacing: .05em; }
.areas__graphic small { position: absolute; top: calc(50% + 86px); color: rgba(255,255,255,.55); }

.offer { background: #f0f6fb; padding: 55px 0; }
.offer__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; padding: 32px; border-radius: 26px; background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
.offer__badge { width: 115px; height: 115px; border-radius: 50%; background: var(--red); color: white; display: grid; place-items: center; align-content: center; line-height: .8; transform: rotate(-7deg); box-shadow: 0 15px 35px rgba(239,51,64,.25); }
.offer__badge span, .offer__badge small { font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.offer__badge strong { font-family: "Barlow Condensed", sans-serif; font-size: 2.65rem; margin: 7px 0 5px; }
.offer .eyebrow { color: var(--red); margin: 0 0 10px; }
.offer h2 { font-size: clamp(2.6rem, 4vw, 4.1rem); }
.offer__copy > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: .82rem; }

.final-cta { position: relative; overflow: hidden; background: #07111f; color: white; text-align: center; }
.final-cta__inner { position: relative; z-index: 2; min-height: 600px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.final-cta__inner > img { width: 92px; height: 92px; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(0,0,0,.3)); }
.final-cta .eyebrow { margin-top: 24px; }
.final-cta h2 { font-size: clamp(4.2rem, 7.6vw, 7rem); }
.final-cta h2 span { color: #5cddff; }
.final-cta__inner > p:not(.eyebrow) { color: rgba(255,255,255,.58); }
.final-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.final-cta__pipes {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    radial-gradient(circle at 12% 50%, transparent 0 96px, #4fd9ff 98px 112px, transparent 114px),
    radial-gradient(circle at 88% 48%, transparent 0 145px, #4fd9ff 147px 162px, transparent 164px),
    linear-gradient(90deg, transparent 8%, #4fd9ff 8.2% 9.2%, transparent 9.4% 90%, #4fd9ff 90.2% 91.2%, transparent 91.4%);
}

.footer { padding: 58px 0 24px; background: #030a12; color: white; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 44px; padding-bottom: 38px; }
.brand--footer { color: white; }
.footer__grid > div:first-child > p { max-width: 320px; color: rgba(255,255,255,.46); font-size: .78rem; }
.footer h3 { margin: 0 0 14px; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.46); }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 8px; }
.footer__grid a, .footer__grid span { color: rgba(255,255,255,.72); font-size: .78rem; }
.footer__grid a:hover { color: white; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.36); font-size: .68rem; }

.mobile-callbar { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal--delay { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }
@keyframes flow { to { stroke-dashoffset: -48; } }
@keyframes valve { 0%, 78%, 100% { transform: rotate(0deg); } 88% { transform: rotate(90deg); } }
@keyframes bob { to { transform: translateY(12px); opacity: .65; } }
@keyframes floaty { 50% { transform: translateY(-9px); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes emergency { 70% { box-shadow: 0 0 0 14px rgba(239,51,64,0); } 100% { box-shadow: 0 0 0 0 rgba(239,51,64,0); } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity:.45; } 30% { transform: translateY(-4px); opacity:1; } }
@keyframes radar { 0% { transform: scale(.72); opacity: .15; } 45% { opacity: .45; } 100% { transform: scale(1.06); opacity: .05; } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .top-strip__areas, .desktop-nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 70px; gap: 10px; }
  .hero__copy { text-align: center; }
  .rating-pill { margin-inline: auto; }
  .hero__lede { margin-inline: auto; }
  .hero__actions, .hero__trust-row { justify-content: center; }
  .hero__visual { min-height: 600px; margin-top: 18px; }
  .hero-photo-wrap { left: 50%; right: auto; transform: translateX(-50%) rotate(1.5deg); width: min(470px, 82vw); }
  .pipe-scene { width: 72%; right: -35px; }
  .floating-card--quote { left: 3%; }
  .promise-grid { grid-template-columns: 1fr; padding-block: 12px; }
  .promise, .promise + .promise { padding: 26px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .promise:last-child { border-bottom: 0; }
  .section-head, .reviews-top { grid-template-columns: 1fr; align-items: start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-row: auto; min-height: 390px; }
  .instant-quote__grid, .areas__grid { grid-template-columns: 1fr; padding-block: 80px; }
  .instant-quote__copy, .areas__copy { text-align: center; }
  .instant-quote__copy > p:not(.eyebrow), .areas__copy > p:not(.eyebrow) { margin-inline: auto; }
  .instant-quote .btn { margin-inline: auto; }
  .area-chips { justify-content: center; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card--tall { grid-row: span 1; }
  .work-card--wide { grid-column: span 2; }
  .reviews-score { border-right: 0; padding-right: 0; }
  .google-link { justify-self: start; }
  .offer__inner { grid-template-columns: auto 1fr; }
  .offer__inner > .btn { grid-column: span 2; width: 100%; }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 24px, 560px); }
  body { padding-bottom: 70px; }
  .top-strip { font-size: .68rem; }
  .top-strip__inner { min-height: 31px; }
  .top-strip__inner > span:first-child { display: none; }
  .top-strip__inner { justify-content: center; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 46px; height: 46px; }
  .brand__type strong { font-size: 1.35rem; }
  .brand__type small { font-size: .55rem; }
  .nav-cta { padding: 8px; }
  .nav-cta__icon { width: 34px; height: 34px; }
  .nav-cta span:last-child { display: none; }
  .hero__grid { min-height: 0; padding: 50px 0 58px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 5.2rem); }
  .hero__lede { font-size: .92rem; }
  .rating-pill { font-size: .66rem; }
  .rating-pill strong { font-size: .68rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__trust-row { gap: 12px; font-size: .65rem; }
  .hero__visual { min-height: 455px; }
  .hero-photo-wrap { width: calc(100% - 22px); height: 405px; border-radius: 25px; }
  .pipe-scene { width: 78%; right: -70px; bottom: -58px; }
  .floating-card { max-width: 205px; padding: 9px 11px; }
  .floating-card--quote { left: -2px; top: 92px; }
  .floating-card--price { right: -3px; bottom: 48px; }
  .floating-card strong { font-size: .68rem; }
  .floating-card small { font-size: .55rem; }
  .section { padding: 80px 0; }
  .section-head { gap: 16px; margin-bottom: 30px; }
  .section-head h2, .reviews-top h2 { font-size: 3.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--featured { min-height: 320px; }
  .service-card--featured h3 { font-size: 2.4rem; }
  .instant-quote__grid { min-height: 0; gap: 48px; }
  .instant-quote h2, .areas h2 { font-size: 4.2rem; }
  .phone-mock { width: min(305px, 89vw); }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .work-card--wide { grid-column: span 1; }
  .reviews-top { gap: 24px; }
  .reviews-score > strong { font-size: 4.8rem; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card--lift { transform: none; }
  .areas__grid { gap: 35px; }
  .offer__inner { grid-template-columns: 1fr; text-align: center; }
  .offer__badge { margin-inline: auto; }
  .offer__inner > .btn { grid-column: auto; }
  .final-cta__inner { min-height: 560px; }
  .final-cta h2 { font-size: 4.4rem; }
  .final-cta__actions { flex-direction: column; width: 100%; }
  .final-cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: span 2; }
  .footer__grid > div:last-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
  .mobile-callbar {
    position: fixed;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    gap: 7px;
    background: rgba(5,14,24,.96);
    border-top: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(14px);
  }
  .mobile-callbar a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    color: white;
    font-size: .76rem;
    font-weight: 800;
  }
  .mobile-callbar a:first-child { background: rgba(255,255,255,.08); }
  .mobile-callbar a:last-child { background: var(--blue); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
