/* =====================================================================
   TOTAL DRAINAGE - infrastructure-editorial design system
   Palette: ocean blue #012f7b · slate #1a2234 · azure accent
   Type: Archivo Expanded (display) · Archivo (body) · IBM Plex Mono (data)
   ===================================================================== */

:root {
  /* Brand navy (matched to the client's logo) is the dominant colour,
     with white and a sky / baby blue accent. No black, no electric blue. */
  --navy: #17356e;        /* mid brand navy - process / CTA / discount bands */
  --navy-deep: #08152e;   /* deepest navy - utility bar */
  --slate: #1e3057;       /* stats band + body text (dark navy, not black) */
  --ink: #0e2246;         /* logo navy - header, hero, areas, footer */
  --azure: #2380c6;       /* sky blue accent */
  --azure-bright: #6fb4ea;/* baby / light sky blue */
  --paper: #f5f7fc;
  --paper-2: #e7edf7;
  --white: #ffffff;
  --muted: #6c7790;

  --line-d: rgba(255, 255, 255, 0.14);
  --line-d-soft: rgba(255, 255, 255, 0.07);
  --line-l: rgba(8, 21, 46, 0.12);

  --font-display: "Archivo Expanded", "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1280px;
  --wrap-wide: 1560px;
  --gutter: clamp(20px, 5vw, 80px);
  --r: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--slate);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.topbar .wrap { max-width: var(--wrap-wide); }
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h1.display { font-size: clamp(2.9rem, 8vw, 6.6rem); }
h2.display { font-size: clamp(2.1rem, 5vw, 4rem); }
h3.display { font-size: clamp(1.4rem, 3vw, 2.1rem); }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--azure);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.kicker::before {
  content: "";
  width: 28px; height: 2px; background: var(--azure);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 56ch; }
.eyebrow-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--azure);
}

/* ---------- motifs: blueprint grid, contour, grain ---------- */
.grid-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-d-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-d-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 20%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse at 70% 20%, #000 30%, transparent 78%);
  pointer-events: none;
}
.contour {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.5;
}
.contour path { fill: none; stroke: var(--azure); stroke-width: 1; opacity: 0.22; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-mono);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05em 1.6em;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, border-color .25s;
  position: relative;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--azure); color: #fff; }
.btn--primary:hover { background: var(--azure-bright); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn--ghost.on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost.on-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--phone { background: var(--white); color: var(--navy); }
.btn--phone:hover { background: var(--paper-2); transform: translateY(-2px); }

/* ---------- header ---------- */
.topbar { background: var(--ink); color: #fff; border-bottom: 1px solid var(--line-d); position: sticky; top: 0; z-index: 60; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 132px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.18rem; line-height: 1; color:#fff; }
.brand__name small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 0.5rem; letter-spacing: 0.34em; color: var(--azure); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.74); position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--azure); transition: width .25s; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta__num { text-align: right; line-height: 1.1; }
.header-cta__num .lbl { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.22em; color: var(--azure); text-transform: uppercase; display:flex; align-items:center; gap:6px; justify-content:flex-end; }
.header-cta__num .lbl::before { content:""; width:7px;height:7px;border-radius:50%;background:var(--azure); animation: pulse 2s infinite; flex:none; }
.header-cta__num .lbl .dot { display:none; }
.header-cta__num .tel { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: #fff; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(35,128,198,.6);} 70%{box-shadow:0 0 0 8px rgba(35,128,198,0);} 100%{box-shadow:0 0 0 0 rgba(35,128,198,0);} }

.burger { display: none; background: none; border: 1px solid var(--line-d); color:#fff; width:44px;height:44px;border-radius:var(--r); cursor:pointer; }
.burger span { display:block; width:18px;height:2px;background:#fff;margin:3px auto;transition:.3s; }

/* ---------- hero ---------- */
.hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.18fr 0.82fr; align-items: stretch; min-height: clamp(540px, 78vh, 880px); }
.hero__content { padding: clamp(48px,7vw,96px) clamp(44px,5vw,104px) clamp(48px,7vw,96px) 0; display: flex; flex-direction: column; justify-content: center; width: 100%; position: relative; z-index: 3; }
.hero__content .wrap-pad { padding-left: max(var(--gutter), calc((100vw - var(--wrap-wide))/2 + var(--gutter))); }
.hero .hero-h1 { margin: 26px 0 26px; }
.hero .hero-h1 h1 { font-size: clamp(2.6rem, 6.6vw, 5.6rem); line-height: 0.98; margin: 0; }
.hero .hero-h1__accent { display: block; color: var(--azure); font-family: var(--font-display); font-weight: 800; text-transform: uppercase; line-height: 0.98; letter-spacing: -0.01em; font-size: clamp(2.6rem, 6.6vw, 5.6rem); margin-top: 0.08em; }
.hero__lead { color: rgba(255,255,255,0.74); font-size: clamp(1.05rem,1.5vw,1.25rem); max-width: 50ch; }
.hero__actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__visual::after { content:""; position:absolute; inset:0; background: linear-gradient(100deg, var(--ink) 0%, rgba(8,21,46,0.92) 13%, rgba(8,21,46,0.4) 42%, rgba(1,47,123,0.10) 100%); }
.hero__specs {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-d);
  background: var(--ink);
}
.hero__specs .spec { padding: 30px var(--gutter); border-right: 1px solid var(--line-d-soft); position: relative; transition: background .25s; }
.hero__specs .spec:last-child { border-right: none; }
.hero__specs .spec::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--azure); transition: width .4s cubic-bezier(.2,.8,.2,1); }
.hero__specs .spec:hover::before { width: 100%; }
.hero__specs .spec:hover { background: rgba(35,128,198,0.06); }
.hero__specs .spec__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero__specs .spec__i { width: 30px; height: 30px; color: var(--azure); }
.hero__specs .spec__num { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; color: var(--muted); }
.hero__specs .n { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--azure); text-transform: uppercase; }
.hero__specs .v { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.02rem; margin-top: 9px; line-height: 1.06; }

/* ---------- marquee ---------- */
.marquee { background: var(--azure); color: #fff; overflow: hidden; border-block: 1px solid rgba(255,255,255,0.2); }
.marquee__track { display: flex; white-space: nowrap; width: max-content; animation: slide 38s linear infinite;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1rem; letter-spacing: 0.04em; padding: 16px 0; }
.marquee__set { display: inline-block; padding-right: 1.6em; }
.marquee .sep { font-style: normal; color: rgba(255,255,255,0.55); margin: 0 1.1em; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- service index ---------- */
.sec-head { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.sec-head__num { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.2em; color: var(--azure); border-top: 2px solid var(--azure); padding-top: 10px; }
.sec-head h2 { max-width: 18ch; }
.sec-head p { color: var(--muted); max-width: 46ch; justify-self: end; }

.index-list { border-top: 1px solid var(--line-l); }
.index-row {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: clamp(16px,3vw,48px);
  padding: clamp(24px,3vw,38px) clamp(20px,3vw,40px) clamp(24px,3vw,38px) 0; border-bottom: 1px solid var(--line-l);
  position: relative; transition: padding .3s, color .3s; cursor: pointer; overflow: hidden;
}
.index-row::before { content:""; position:absolute; left:-100%; top:0; bottom:0; width:100%; background: var(--navy); transition: left .4s cubic-bezier(.2,.8,.2,1); z-index:-1; }
.index-row:hover { color: #fff; padding-left: 28px; }
.index-row:hover::before { left: 0; }
.index-row__n { font-family: var(--font-mono); font-size: 0.85rem; color: var(--azure); }
.index-row__t { display: flex; flex-direction: column; gap: 8px; }
.index-row__t h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.25rem,2.4vw,1.9rem); line-height: 1; }
.index-row__t p { font-size: 0.96rem; color: var(--muted); max-width: 64ch; transition: color .3s; }
.index-row:hover .index-row__t p { color: rgba(255,255,255,0.8); }
.index-row__a { width: 46px; height: 46px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; opacity: 0.5; transition: .3s; flex: none; }
.index-row:hover .index-row__a { opacity: 1; background: var(--azure); border-color: var(--azure); transform: rotate(-45deg); }
.index-row__a svg { width: 18px; height: 18px; }

/* ---------- process band ---------- */
.process { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
.step { padding: 0 28px; border-left: 1px solid var(--line-d); position: relative; }
.step:first-child { border-left: none; padding-left: 0; }
.step__n { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--azure-bright); }
.step h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; margin: 16px 0 12px; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ---------- stats / trust ---------- */
.stats { background: var(--slate); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
.stat { background: var(--slate); padding: 38px 28px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem); color: #fff; line-height: 1; }
.stat .num .u { color: var(--azure); }
.stat .lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 14px; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 64px; }
.value { border-top: 2px solid var(--azure); padding-top: 22px; }
.value h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; margin-bottom: 10px; }
.value p { color: rgba(255,255,255,0.7); font-size: 0.96rem; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .tag { position: absolute; left: 16px; bottom: 16px; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color:#fff; background: rgba(8,21,46,0.7); padding: 8px 12px; border-left: 2px solid var(--azure); }
.checklist { display: grid; gap: 14px; margin-top: 28px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--azure); margin-top: 2px; }

/* ---------- areas ---------- */
.areas { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.areas__media { position: absolute; inset: 0; z-index: 0; }
.areas__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.areas__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, var(--ink) 0%, rgba(8,21,46,0.6) 50%, var(--ink) 100%); }
.areas .wrap { position: relative; z-index: 2; }
.county-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); margin-top: 48px; }
.county { background: rgba(8,21,46,0.6); padding: 32px 28px; }
.county h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.6rem; }
.county .pc { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; color: var(--azure); margin: 8px 0 18px; }
.county ul { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.county li { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

/* ---------- reviews ---------- */
.reviews { background: var(--paper-2); }
.review-feature { border: 1px solid var(--line-l); background: #fff; padding: clamp(32px,5vw,64px); position: relative; margin-bottom: 28px; }
.review-feature .stars, .review .stars { display: inline-flex; gap: 4px; color: var(--azure); margin-bottom: 22px; }
.review-feature .stars svg, .review .stars svg { width: 18px; height: 18px; }
.review-feature blockquote { font-family: var(--font-display); font-weight: 700; text-transform: none; font-size: clamp(1.4rem,2.6vw,2.1rem); line-height: 1.18; letter-spacing: -0.01em; max-width: 24ch; }
.review-feature .cite, .review .cite { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 26px; display: block; }
.review-feature .cite b, .review .cite b { color: var(--slate); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.review { background: #fff; border: 1px solid var(--line-l); padding: 32px; }
.review blockquote { font-size: 1.02rem; line-height: 1.5; color: var(--slate); }
.review blockquote::before { content: "“"; font-family: var(--font-display); color: var(--azure); font-size: 2.4rem; line-height: 0; display:block; margin-bottom: 14px; }

/* ---------- big CTA ---------- */
.cta-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; text-align: center; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { color: rgba(255,255,255,0.78); margin-inline: auto; }
.cta-band .tel-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem,6vw,4.4rem); display: inline-block; margin: 28px 0 10px; letter-spacing: -0.01em; }
.cta-band .tel-big:hover { color: var(--azure-bright); }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* ---------- forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line-l); padding: clamp(28px,4vw,48px); }
.field { margin-bottom: 20px; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-l); border-radius: var(--r);
  font-family: var(--font-body); font-size: 1rem; background: var(--paper); color: var(--slate);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--azure); box-shadow: 0 0 0 3px rgba(35,128,198,0.15); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: start; }
.contact-lines { display: grid; gap: 28px; margin-top: 8px; }
.contact-line { border-top: 1px solid var(--line-l); padding-top: 18px; }
.contact-line .k { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--azure); }
.contact-line .v { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.3rem; margin-top: 8px; }
.contact-line .v.lc { text-transform: none; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

/* ---------- page hero (inner pages) ---------- */
.phero { background: var(--ink); color: #fff; position: relative; overflow: hidden; padding-block: clamp(72px,9vw,128px); }
.phero h1 { margin: 24px 0 20px; max-width: 16ch; }
.phero .lead { color: rgba(255,255,255,0.74); }
.crumbs { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.crumbs a:hover { color: var(--azure); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); position: relative; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(56px,7vw,90px); border-bottom: 1px solid var(--line-d); position: relative; z-index: 2; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { max-width: 38ch; font-size: 0.95rem; }
.footer h4 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--azure); margin-bottom: 20px; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a, .footer__col li { font-size: 0.95rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 26px; flex-wrap: wrap; position: relative; z-index: 2; }
.footer__bottom .legal { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; color: var(--muted); }
.footer__bottom .by a { color: var(--azure); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}.reveal[data-d="3"]{transition-delay:.24s}.reveal[data-d="4"]{transition-delay:.32s}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} .marquee__track{animation:none} .header-cta__num .lbl .dot{animation:none} }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 46vh; order: 2; }
  .hero__content { padding-right: var(--gutter); margin: 0; }
  .hero__content .wrap-pad { padding-left: var(--gutter); }
  .hero__specs { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav, .header-cta__num { display: none; }
  .burger { display: block; }
  .topbar__inner { height: 108px; }
  .nav.open { display: flex; position: absolute; top: 108px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ink); border-bottom: 1px solid var(--line-d); padding: 8px var(--gutter) 20px; }
  .nav.open a { padding: 16px 0; border-bottom: 1px solid var(--line-d-soft); font-size: 0.95rem; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-head p { justify-self: start; }
  .process__steps, .stats__grid, .values, .county-grid, .review-grid, .contact-grid, .split { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--line-d); padding: 28px 0 0; }
  .split--rev .split__media { order: 0; }
  .index-row { grid-template-columns: 54px 1fr auto; }
  .hero__specs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .stats__grid { grid-template-columns: 1fr; }
  .index-row__a { display: none; }
}

/* =====================================================================
   CONTACT-FIRST BUILD - client feedback (brand, WhatsApp, callback,
   trust, discounts, guarantees, real work, review platforms)
   ===================================================================== */

/* ---- top utility bar ---- */
.utilbar { background: var(--azure); color: rgba(255,255,255,0.95); border-bottom: 1px solid rgba(255,255,255,0.14); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; position: relative; z-index: 61; }
.utilbar__inner { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 var(--gutter); min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utilbar__socials { display: flex; align-items: center; gap: 9px; }
.utilbar__socials a { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; transition: background .2s, border-color .2s, transform .2s; }
.utilbar__socials a:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-1px); }
.utilbar__socials svg { width: 13px; height: 13px; }
.utilbar__contact { display: flex; align-items: center; gap: 22px; text-transform: uppercase; }
.utilbar__contact a { color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.utilbar__contact a:hover { color: var(--ink); }
.utilbar__contact a.em { color: #fff; font-weight: 600; }
.utilbar__contact svg { width: 13px; height: 13px; flex: none; }
@media (max-width: 880px) { .utilbar__contact .lbl-full { display: none; } }
@media (max-width: 560px) { .utilbar__contact a.em span { display: none; } .utilbar__socials a:nth-child(n+4) { display: none; } }

/* ---- brand logo image ---- */
.brand__logo { height: 110px; width: auto; display: block; }
.footer__brand .brand__logo { height: 120px; }
@media (max-width: 880px) { .brand__logo { height: 84px; } }
@media (max-width: 560px) { .brand__logo { height: 66px; } }

/* ---- floating WhatsApp ---- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 32px rgba(0,0,0,0.3); transition: transform .25s; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float svg { width: 33px; height: 33px; fill: #fff; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.55); animation: wapulse 2.4s infinite; }
@keyframes wapulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);} 70%{box-shadow:0 0 0 15px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@media (prefers-reduced-motion: reduce){ .wa-float::after{ animation: none; } }
@media print { .wa-float { display: none; } }

/* ---- WhatsApp button variant ---- */
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1fbe59; transform: translateY(-2px); }
.btn--wa svg { fill: #fff; stroke: none; width: 18px; height: 18px; }
.btn--wa:hover svg { transform: none; }

/* ---- contact-first hero ---- */
.hero--contact { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.hero--contact .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero--contact .hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.30; }
.hero--contact .hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, var(--ink) 32%, rgba(8,21,46,0.72) 62%, rgba(1,47,123,0.28) 100%); }
.hero--contact .hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(30px,5vw,72px); align-items: center; min-height: clamp(520px,70vh,720px); padding-block: clamp(46px,6vw,86px); }
.hero--contact .hero__content { padding: 0; }
.hero--contact .hero-h1 { margin: 0 0 22px; }
.hero-quick { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero-badges span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.82); display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 15px; height: 15px; color: var(--azure-bright); flex: none; }

/* ---- callback card ---- */
.callback-card { background: #fff; color: var(--slate); border-radius: var(--r); padding: clamp(24px,2.4vw,36px); box-shadow: 0 34px 80px rgba(0,0,0,0.45); border-top: 4px solid var(--azure); width: 100%; max-width: 450px; justify-self: end; }
.callback-card h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.35rem,2vw,1.7rem); line-height: 0.98; letter-spacing: -0.01em; color: var(--ink); }
.callback-card .cc-sub { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--azure); margin: 12px 0 22px; display: flex; align-items: center; gap: 9px; }
.callback-card .cc-sub::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--azure); animation: pulse 2s infinite; flex: none; }
.callback-card .field { margin-bottom: 13px; }
.callback-card .field label { margin-bottom: 6px; }
.callback-card .field input, .callback-card .field select { padding: 12px 14px; }
.callback-card .cc-foot { font-size: 0.82rem; color: var(--muted); margin-top: 15px; text-align: center; }
.callback-card .cc-foot b { color: var(--navy); }
.callback-card .cc-or { text-align: center; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 16px 0 12px; }
.callback-card .cc-wa { display: flex; gap: 10px; }
.callback-card .cc-wa a { flex: 1; justify-content: center; }

/* ---- trust bar ---- */
.trustbar { background: var(--azure); color: #fff; }
.trustbar__inner { max-width: var(--wrap-wide); margin: 0 auto; padding: 15px var(--gutter); display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: center; align-items: center; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 500; }
.trustbar__inner span { display: inline-flex; align-items: center; gap: 9px; }
.trustbar__inner svg { width: 16px; height: 16px; flex: none; }

/* ---- discount band ---- */
.discount-band { background: var(--navy); color: #fff; text-align: center; }
.discount-band .wrap { padding-block: clamp(40px,5vw,60px); display: flex; align-items: center; justify-content: center; gap: clamp(20px,4vw,48px); flex-wrap: wrap; }
.discount-band .pct { font-family: var(--font-display); font-weight: 900; font-size: clamp(3.2rem,7vw,5.2rem); line-height: 0.9; color: #fff; }
.discount-band .pct span { color: var(--azure-bright); }
.discount-band .dtext { text-align: left; max-width: 42ch; }
.discount-band .dtext h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1; margin-bottom: 12px; }
.discount-band .dtext p { color: rgba(255,255,255,0.78); font-size: 0.98rem; }
@media (max-width: 620px){ .discount-band .dtext { text-align: center; } }

/* ---- guarantees ---- */
.guar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-l); border: 1px solid var(--line-l); margin-top: 48px; }
.guar { background: #fff; padding: 40px 32px; }
.guar .yr { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem,4.2vw,3.6rem); color: var(--navy); line-height: 0.9; }
.guar .yr em { font-style: normal; font-family: var(--font-mono); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--azure); display: block; margin-top: 10px; }
.guar h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; margin: 20px 0 10px; overflow-wrap: break-word; }
.guar p { color: var(--muted); font-size: 0.96rem; }
@media (max-width: 880px){ .guar-grid { grid-template-columns: 1fr; } }

/* ---- hero Trustpilot strip ---- */
.hero-tp { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 20px; color: #fff; font-size: 0.9rem; text-decoration: none; }
.hero-tp .tp-logo { width: 19px; height: 19px; flex: none; }
.hero-tp .tp-word { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0.01em; }
.hero-tp .tp-exc { font-weight: 700; }
.hero-tp .tp-stars { display: inline-flex; gap: 2px; }
.hero-tp .tp-stars span { width: 20px; height: 20px; background: #00b67a; display: grid; place-items: center; }
.hero-tp .tp-stars span.part { background: linear-gradient(90deg, #00b67a 70%, rgba(255,255,255,0.35) 70%); }
.hero-tp .tp-stars svg { width: 14px; height: 14px; fill: #fff; }
.hero-tp .tp-score { color: rgba(255,255,255,0.85); }
.hero-tp:hover .tp-exc { text-decoration: underline; }

/* ---- recent work gallery ---- */
.work-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 48px; }
.work-item { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line-l); }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.work-item:hover img { transform: scale(1.06); }
.work-item .cap { position: absolute; left: 12px; bottom: 12px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: rgba(8,21,46,0.74); padding: 7px 10px; border-left: 2px solid var(--azure); }
@media (max-width: 880px){ .work-grid { grid-template-columns: repeat(2,1fr); } }

/* ---- review platforms ---- */
.review-plat { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.plat { border: 1px solid var(--line-l); background: #fff; padding: 30px 26px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.plat .plat__ico { width: 40px; height: 40px; color: var(--azure); }
.plat h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; }
.plat .stars { display: inline-flex; gap: 3px; color: var(--azure); }
.plat .stars svg { width: 16px; height: 16px; }
.plat p { color: var(--muted); font-size: 0.9rem; }
.plat .btn { margin-top: auto; }
.ct-widget { min-height: 60px; }
@media (max-width: 780px){ .review-plat { grid-template-columns: 1fr; } }

/* ---- footer socials ---- */
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line-d); border-radius: 50%; display: grid; place-items: center; color: #fff; transition: background .2s, border-color .2s, transform .2s; }
.socials a:hover { background: var(--azure); border-color: var(--azure); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }
.footer__note { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }

/* ---- contact-first hero responsive ---- */
@media (max-width: 980px) {
  .hero--contact .hero__grid { grid-template-columns: 1fr; align-items: stretch; min-height: 0; gap: 34px; }
  .callback-card { justify-self: stretch; max-width: none; }
}
