/* Staffordshire Emergency Plumbing — static sales demo */
:root {
  --navy-950: #04111f;
  --navy-900: #071a2f;
  --navy-800: #0b2542;
  --navy-700: #123557;
  --blue-600: #0878f9;
  --blue-500: #1697ff;
  --blue-100: #e7f4ff;
  --white: #ffffff;
  --off-white: #f4f8fc;
  --slate-600: #596a7d;
  --slate-400: #8da0b3;
  --line: #dce6ef;
  --success: #0a9b65;
  --shadow-sm: 0 14px 35px rgba(4, 17, 31, 0.08);
  --shadow-lg: 0 30px 80px rgba(4, 17, 31, 0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
  --anchor-offset: calc(var(--header-height) + 16px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; text-wrap: balance; }
h1 { font-size: clamp(2.85rem, 9.5vw, 6rem); }
h2 { font-size: clamp(2.05rem, 6vw, 3.75rem); }
h3 { font-size: 1.3rem; }

em {
  color: var(--blue-500);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 72px 0; }
main section[id] { scroll-margin-top: var(--anchor-offset); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 6px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.emergency-strip { color: var(--white); background: var(--blue-600); }
.emergency-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.emergency-strip p { margin: 0; font-size: .78rem; letter-spacing: .01em; }
.emergency-strip p strong { font-weight: 750; }
.emergency-strip a { display: none; font-size: .8rem; font-weight: 800; text-decoration: none; }
.pulse {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: 1px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255,255,255,.15);
  animation: pulse 2s infinite;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--white);
  background: var(--navy-900);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(4,17,31,.22); background: rgba(7,26,47,.97); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand-mark {
  position: relative;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-600));
  transform: rotate(45deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.23);
}
.brand-mark span { color: var(--white); font-size: 1rem; font-weight: 900; transform: rotate(-45deg); }
.brand-name { font-size: .73rem; line-height: 1.1; letter-spacing: .015em; text-transform: uppercase; }
.brand-name strong { display: inline-block; font-size: .78rem; letter-spacing: -.01em; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 5px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  position: absolute;
  inset: 100% 0 auto;
  padding: 22px 20px 28px;
  display: grid;
  gap: 2px;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 26px 40px rgba(4,17,31,.2);
  transform: translateY(-140%);
  visibility: hidden;
  transition: transform .3s ease, visibility .3s;
}
.primary-nav.is-open { transform: translateY(0); visibility: visible; }
.primary-nav > a { min-height: 48px; padding: 12px 6px; display: flex; align-items: center; color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 650; text-decoration: none; }
.primary-nav > a:hover, .primary-nav > a:focus-visible { color: var(--white); }

.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(22,151,255,.45); outline-offset: 3px; }
.button--primary { color: var(--white); background: var(--blue-600); box-shadow: 0 12px 26px rgba(8,120,249,.25); }
.button--primary:hover { background: #006de4; box-shadow: 0 16px 30px rgba(8,120,249,.33); }
.button--outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.26); }
.button--outline-light:hover { background: rgba(255,255,255,.08); }
.button--white { color: var(--blue-600); background: var(--white); }
.button--dark { color: var(--white); background: var(--navy-900); }
.button--large { min-height: 57px; padding-inline: 23px; }
.button--small { min-height: 42px; padding: 11px 17px !important; }

.hero {
  position: relative;
  min-height: 680px;
  padding: 64px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--navy-900);
}
.hero::after {
  position: absolute;
  right: -13%;
  bottom: -160px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(22,151,255,.17);
  border-radius: 50%;
  content: "";
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow--one { top: 0; right: -100px; width: 400px; height: 400px; background: rgba(8,120,249,.13); }
.hero-glow--two { left: -200px; bottom: -200px; width: 420px; height: 420px; background: rgba(22,151,255,.07); }
.hero-grid { position: relative; z-index: 2; display: grid; gap: 48px; }
.eyebrow { margin-bottom: 18px; color: var(--blue-600); font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 22px; height: 2px; margin: 0 9px 3px 0; display: inline-block; background: currentColor; }
.eyebrow--light { color: #70bdff; }
.hero h1 { max-width: 850px; margin-bottom: 25px; }
.hero h1 em { display: inline-block; }
.hero-intro { max-width: 670px; margin-bottom: 29px; color: #b7c8d8; font-size: 1.06rem; }
.hero-actions { display: grid; gap: 10px; }
.trust-list { margin: 23px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; color: #c4d4e2; font-size: .82rem; list-style: none; }
.trust-list span { width: 19px; height: 19px; margin-right: 5px; display: inline-grid; place-items: center; color: var(--blue-500); border: 1px solid rgba(22,151,255,.38); border-radius: 50%; font-size: .65rem; }

.hero-panel {
  position: relative;
  min-height: 430px;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(155deg, rgba(18,53,87,.97), rgba(7,26,47,.98));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-panel::before { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 35%); content: ""; }
.hero-panel__top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.status { padding: 7px 10px; color: #cae6ff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 20px; font-size: .67rem; font-weight: 700; }
.status i { width: 6px; height: 6px; margin-right: 5px; display: inline-block; border-radius: 50%; background: #45dfa6; box-shadow: 0 0 0 4px rgba(69,223,166,.12); }
.hero-panel__number { color: rgba(255,255,255,.16); font-size: .75rem; font-weight: 800; }
.hero-panel__icon { position: absolute; top: 53px; right: -25px; width: 270px; height: 270px; }
.drop { position: absolute; z-index: 2; top: 55px; left: 89px; width: 79px; height: 79px; background: linear-gradient(145deg, var(--blue-500), var(--blue-600)); border-radius: 60% 40% 65% 35% / 70% 45% 55% 30%; transform: rotate(45deg); box-shadow: 0 18px 40px rgba(8,120,249,.4); }
.ring { position: absolute; inset: 28px; border: 1px solid rgba(22,151,255,.28); border-radius: 50%; }
.ring--two { inset: 0; border-color: rgba(22,151,255,.11); }
.hero-panel__content { position: absolute; z-index: 3; right: 22px; bottom: 24px; left: 22px; }
.overline { margin-bottom: 7px; color: var(--blue-500); font-size: .66rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.hero-panel__content h2 { margin-bottom: 11px; font-size: 2rem; }
.hero-panel__content p:not(.overline) { max-width: 370px; margin-bottom: 19px; color: #afc2d4; font-size: .88rem; }
.hero-panel__content a { display: flex; justify-content: space-between; color: var(--white); font-size: 1.35rem; font-weight: 850; text-decoration: none; }
.hero-panel__content a span { color: var(--blue-500); }

.hero-metrics {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: grid;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-metrics div { padding: 18px 0; display: flex; align-items: baseline; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-metrics strong { color: var(--white); font-size: 1.12rem; }
.hero-metrics span { color: #91a7bb; font-size: .75rem; }

.urgent-banner { color: var(--white); background: var(--blue-600); }
.urgent-banner__inner { padding-block: 28px; display: grid; gap: 17px; align-items: center; }
.urgent-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 1.4rem; font-weight: 900; }
.urgent-banner .overline { color: rgba(255,255,255,.7); }
.urgent-banner h2 { margin: 0; font-size: 1.55rem; }
.urgent-banner__inner > p { margin: 0; color: rgba(255,255,255,.8); font-size: .88rem; }

.section-heading { margin-bottom: 32px; display: grid; gap: 18px; }
.section-heading h2 { max-width: 690px; margin: 0; }
.section-heading > p { max-width: 500px; margin: 0; color: var(--slate-600); }
.service-grid { display: grid; gap: 13px; }
.service-card {
  position: relative;
  min-height: 280px;
  padding: 27px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #a9d4fb; box-shadow: var(--shadow-sm); }
.service-number { position: absolute; top: 24px; right: 24px; color: #a0afbd; font-size: .65rem; font-weight: 800; }
.service-icon { width: 46px; height: 46px; margin-bottom: 32px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 12px; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 18px; color: var(--slate-600); font-size: .9rem; }
.service-card a { color: var(--blue-600); font-size: .78rem; font-weight: 800; text-decoration: none; }
.service-card a span { margin-left: 5px; transition: margin .2s ease; }
.service-card a:hover span { margin-left: 10px; }

.why-us { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.why-us::before { position: absolute; inset: 0; background: radial-gradient(circle at 10% 50%, rgba(8,120,249,.13), transparent 38%); content: ""; }
.why-grid { position: relative; display: grid; gap: 45px; }
.why-visual { position: relative; min-height: 400px; overflow: hidden; background: var(--navy-800); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); }
.blueprint-lines { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 34px 34px; }
.why-badge { position: absolute; z-index: 4; top: 27px; left: 27px; padding: 17px 19px; display: flex; align-items: center; gap: 12px; color: var(--white); background: rgba(7,26,47,.82); border: 1px solid rgba(255,255,255,.13); border-radius: 13px; backdrop-filter: blur(8px); }
.why-badge strong { color: var(--blue-500); font-size: 1.4rem; }
.why-badge span { color: #adc0d2; font-size: .67rem; line-height: 1.35; text-transform: uppercase; }
.pipe-shape { position: absolute; border: 28px solid #174c79; opacity: .64; }
.pipe-shape--one { right: 46px; bottom: 60px; width: 180px; height: 265px; border-top: 0; border-radius: 0 0 90px 90px; }
.pipe-shape--two { right: -45px; bottom: 167px; width: 240px; height: 150px; border-bottom: 0; border-left: 0; border-radius: 0 100px 0 0; }
.quality-card { position: absolute; z-index: 4; right: 23px; bottom: 25px; left: 23px; padding: 18px; display: flex; align-items: center; gap: 13px; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg); }
.quality-card > span { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); background: var(--blue-600); border-radius: 50%; }
.quality-card p { margin: 0; color: var(--slate-600); font-size: .72rem; line-height: 1.4; }
.quality-card strong { display: block; color: var(--navy-900); font-size: .88rem; }
.why-copy h2 { margin-bottom: 24px; }
.why-intro { color: #9fb3c6; }
.benefit-list { margin: 33px 0 30px; border-top: 1px solid rgba(255,255,255,.11); }
.benefit-list article { padding: 21px 0; display: grid; grid-template-columns: 37px 1fr; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.11); }
.benefit-list article > span { color: var(--blue-500); font-size: .66rem; font-weight: 850; }
.benefit-list h3 { margin: 0 0 6px; font-size: 1.08rem; }
.benefit-list p { margin: 0; color: #8fa6ba; font-size: .84rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-size: .86rem; font-weight: 850; text-decoration: none; border-bottom: 1px solid rgba(8,120,249,.35); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link--light { color: #61b7ff; }

.areas { background: var(--off-white); }
.areas-grid { display: grid; gap: 45px; align-items: center; }
.areas-copy h2 { margin-bottom: 22px; }
.areas-copy > p:not(.eyebrow) { color: var(--slate-600); }
.area-list { margin: 28px 0 32px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; list-style: none; }
.area-list li { position: relative; padding-left: 16px; font-size: .84rem; font-weight: 700; }
.area-list li::before { position: absolute; top: .7em; left: 0; width: 6px; height: 6px; background: var(--blue-600); border-radius: 50%; content: ""; }
.area-map { position: relative; min-height: 420px; overflow: hidden; background: #e9f1f7; border: 1px solid #d7e3ec; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.area-map::before { position: absolute; inset: 0; background-image: linear-gradient(25deg, transparent 48%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.9) 51%, transparent 51%), linear-gradient(105deg, transparent 48%, rgba(255,255,255,.75) 48%, rgba(255,255,255,.75) 51%, transparent 51%); background-size: 140px 170px, 200px 160px; content: ""; }
.map-road { position: absolute; z-index: 1; width: 140%; height: 9px; background: rgba(255,255,255,.95); border: 1px solid #d6e0e8; border-radius: 10px; transform-origin: left center; }
.map-road--one { top: 18%; left: -10%; transform: rotate(28deg); }
.map-road--two { top: 74%; left: -7%; transform: rotate(-17deg); }
.map-road--three { top: -3%; left: 57%; transform: rotate(78deg); }
.map-radius { position: absolute; z-index: 0; top: 50%; left: 50%; width: 270px; height: 270px; background: rgba(8,120,249,.08); border: 1px dashed rgba(8,120,249,.36); border-radius: 50%; transform: translate(-50%, -50%); }
.map-pin { position: absolute; z-index: 4; top: 50%; left: 50%; min-width: 154px; padding: 14px 15px 13px 45px; background: var(--white); border-radius: 12px; box-shadow: 0 14px 35px rgba(4,17,31,.18); transform: translate(-50%, -50%); }
.map-pin > span { position: absolute; top: 16px; left: 17px; width: 20px; height: 20px; background: var(--blue-600); border: 5px solid #d7ebff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.map-pin strong, .map-pin small { display: block; }
.map-pin strong { font-size: .82rem; }
.map-pin small { color: var(--slate-600); font-size: .65rem; }
.map-place { position: absolute; z-index: 3; color: #6e8192; font-size: .68rem; font-weight: 750; }
.map-place::before { width: 4px; height: 4px; margin-right: 5px; display: inline-block; vertical-align: 2px; background: #9aabb9; border-radius: 50%; content: ""; }
.map-place--leek { top: 18%; right: 19%; }
.map-place--newcastle { top: 33%; left: 8%; }
.map-place--stone { right: 22%; bottom: 19%; }
.map-place--cheadle { right: 6%; bottom: 42%; }

.reviews { background: var(--white); }
.section-heading--centre { text-align: left; }
.reviews-grid { display: grid; gap: 15px; }
.review-card { padding: 29px; background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.review-card--featured { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); box-shadow: var(--shadow-lg); }
.stars { margin-bottom: 20px; color: #ffad1f; font-size: .9rem; letter-spacing: .12em; }
.review-card blockquote { margin: 0 0 27px; color: var(--navy-800); font-family: Georgia, "Times New Roman", serif; font-size: 1.13rem; line-height: 1.6; }
.review-card--featured blockquote { color: var(--white); }
.review-card footer { display: flex; align-items: center; gap: 11px; }
.review-card footer > span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 50%; font-size: .68rem; font-weight: 900; }
.review-card footer p { margin: 0; line-height: 1.25; }
.review-card footer strong, .review-card footer small { display: block; }
.review-card footer strong { font-size: .79rem; }
.review-card footer small { color: var(--slate-600); font-size: .67rem; }
.review-card--featured footer small { color: #91a8bc; }
.demo-note { margin: 22px 0 0; color: var(--slate-400); font-size: .69rem; text-align: center; }

.about { border-top: 1px solid var(--line); }
.about-grid { display: grid; gap: 38px; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy > p:not(.eyebrow) { color: var(--slate-600); }
.about-values { border-top: 1px solid var(--line); }
.about-values article { padding: 25px 0; display: grid; grid-template-columns: 45px 1fr; gap: 10px; border-bottom: 1px solid var(--line); }
.about-values article > span { color: var(--blue-600); font-size: .67rem; font-weight: 850; }
.about-values h3 { margin: 0 0 7px; }
.about-values p { margin: 0; color: var(--slate-600); font-size: .88rem; }

.quote-section { position: relative; padding: 76px 0 96px; overflow: hidden; color: var(--white); background: var(--navy-900); }
.quote-section::before { position: absolute; top: -50%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(8,120,249,.14), transparent 67%); content: ""; }
.quote-grid { position: relative; display: grid; gap: 42px; align-items: start; }
.quote-copy h2 { margin-bottom: 23px; }
.quote-copy > p:not(.eyebrow) { color: #a8bbcc; }
.quote-phone { margin: 30px 0 25px; padding: 18px; display: grid; grid-template-columns: 45px 1fr; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; text-decoration: none; }
.quote-phone > span { grid-row: 1 / span 2; width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 50%; }
.quote-phone small, .quote-phone strong { display: block; }
.quote-phone small { color: #90a8bb; font-size: .68rem; }
.quote-phone strong { font-size: 1.2rem; }
.contact-details { display: grid; gap: 7px; }
.contact-details p { margin: 0; color: #a4b7c8; font-size: .8rem; }
.contact-details span { width: 27px; height: 27px; margin-right: 9px; display: inline-grid; place-items: center; color: var(--blue-500); border: 1px solid rgba(22,151,255,.3); border-radius: 50%; }
.contact-details a { text-decoration: none; }

.quote-form { min-width: 0; padding: 27px 22px; color: var(--navy-900); background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.form-heading { margin-bottom: 25px; padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.form-heading > div { display: flex; align-items: center; gap: 11px; }
.form-heading > div > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 50%; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.form-heading p { margin: 0; line-height: 1.25; }
.form-heading strong, .form-heading small { display: block; }
.form-heading strong { font-size: .94rem; }
.form-heading small { color: var(--slate-600); font-size: .66rem; }
.form-step { color: #a4b2bf; font-size: .65rem; font-weight: 800; }
.form-grid { display: grid; gap: 17px; }
.field { min-width: 0; display: grid; gap: 6px; }
.field label { font-size: .73rem; font-weight: 750; }
.field label span { color: var(--slate-400); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; color: var(--navy-900); background: var(--off-white); border: 1px solid var(--line); border-radius: 8px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 49px; padding: 0 13px; }
.field textarea { min-height: 108px; padding: 12px 13px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #99a8b6; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(22,151,255,.1); }
.quote-form input, .quote-form select, .quote-form textarea, .button--submit { scroll-margin-bottom: 88px; }
.field.has-error input, .field.has-error select { border-color: #c62d2d; box-shadow: 0 0 0 4px rgba(198,45,45,.08); }
.field-error { color: #a11f1f; font-size: .68rem; font-weight: 700; line-height: 1.35; }
.field-error:empty { display: none; }
.button--submit { width: 100%; margin-top: 20px; justify-content: space-between; }
.form-privacy { margin: 12px 0 0; color: var(--slate-400); font-size: .63rem; line-height: 1.45; }
.form-status { min-height: 0; margin: 0; font-size: .78rem; font-weight: 700; }
.form-status.is-success { margin-top: 14px; padding: 11px 12px; color: #08754e; background: #e9fbf4; border: 1px solid #bcebd9; border-radius: 7px; }

.faq-grid { display: grid; gap: 36px; }
.faq-intro h2 { margin-bottom: 20px; }
.faq-intro > p:not(.eyebrow) { color: var(--slate-600); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 43px 22px 0; color: var(--navy-900); font-size: .98rem; font-weight: 750; line-height: 1.35; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 29px; right: 6px; width: 14px; height: 2px; background: var(--blue-600); content: ""; transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details div { padding: 0 35px 21px 0; }
.faq-list details p { margin: 0; color: var(--slate-600); font-size: .88rem; }

.demo-disclosure { color: var(--navy-900); background: var(--blue-100); border-top: 1px solid #cce8ff; }
.demo-disclosure__inner { min-height: 76px; padding-block: 15px; display: flex; align-items: center; gap: 13px; }
.demo-disclosure__inner > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); background: var(--blue-600); border-radius: 9px; font-size: .76rem; font-weight: 900; }
.demo-disclosure p { margin: 0; color: #395673; font-size: .76rem; line-height: 1.45; }
.demo-disclosure strong { color: var(--navy-900); }

.site-footer { padding-bottom: 90px; color: var(--white); background: var(--navy-950); }
.footer-main { padding: 55px 0 38px; display: grid; gap: 34px; }
.footer-brand > p { max-width: 310px; margin: 22px 0 0; color: #8096aa; font-size: .8rem; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h2 { margin: 0 0 9px; color: #7c93a8; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column address { color: #b9c8d5; font-size: .8rem; font-style: normal; text-decoration: none; }
.footer-column a:hover { color: var(--white); }
.footer-contact .footer-phone { color: var(--white); font-size: 1.1rem; font-weight: 850; }
.footer-bottom { padding: 20px 0; display: grid; gap: 8px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #6f879c; font-size: .65rem; }
.footer-bottom strong { color: #a8bac9; }

.mobile-call {
  position: fixed;
  z-index: 1100;
  right: 12px;
  bottom: 10px;
  left: 12px;
  min-height: 59px;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--blue-600);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 13px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(4,17,31,.35);
  transition: transform .25s ease, opacity .25s ease, box-shadow .2s ease;
}
.mobile-call > span:first-child { width: 35px; height: 35px; display: grid; place-items: center; color: var(--blue-600); background: var(--white); border-radius: 50%; }
.mobile-call small, .mobile-call strong { display: block; line-height: 1.15; }
.mobile-call small { margin-bottom: 2px; color: #d8edff; font-size: .63rem; text-transform: uppercase; }
.mobile-call strong { font-size: 1rem; letter-spacing: .01em; }
.mobile-call.is-hidden { opacity: 0; transform: translateY(calc(100% + 18px)); pointer-events: none; }

.demo-toast {
  position: fixed;
  z-index: 1200;
  right: 12px;
  bottom: 82px;
  left: 12px;
  max-width: 470px;
  padding: 15px 46px 15px 58px;
  color: var(--white);
  background: #0c2946;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 13px;
  box-shadow: 0 22px 55px rgba(4,17,31,.34);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}
.demo-toast[hidden] { display: none; }
.demo-toast.is-visible { opacity: 1; transform: translateY(0); }
.demo-toast__icon { position: absolute; top: 17px; left: 16px; width: 29px; height: 29px; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 50%; font-family: Georgia, serif; font-weight: 700; }
.demo-toast p { margin: 0; color: #bed0df; font-size: .76rem; line-height: 1.45; }
.demo-toast p strong { margin-bottom: 2px; display: block; color: var(--white); font-size: .82rem; }
.demo-toast button { position: absolute; top: 9px; right: 10px; width: 34px; height: 34px; color: #c2d1dd; background: transparent; border: 0; border-radius: 7px; font-size: 1.25rem; cursor: pointer; }
.demo-toast button:hover { color: var(--white); background: rgba(255,255,255,.08); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal--delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

@media (min-width: 520px) {
  .hero-actions { display: flex; flex-wrap: wrap; }
  .hero-actions .button { min-width: 185px; }
  .service-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 760px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 64px), var(--container)); }
  .section { padding: 98px 0; }
  .emergency-strip__inner { justify-content: space-between; }
  .emergency-strip a { display: inline-flex; align-items: center; gap: 7px; }
  .hero { padding-top: 84px; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); }
  .hero-metrics div { padding: 23px 27px; display: grid; gap: 2px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
  .hero-metrics div:first-child { padding-left: 0; }
  .hero-metrics div:last-child { border-right: 0; }
  .urgent-banner__inner { grid-template-columns: 60px minmax(260px, .9fr) 1fr auto; }
  .section-heading { grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: end; }
  .section-heading--centre { max-width: 760px; margin-inline: auto; margin-bottom: 44px; display: block; text-align: center; }
  .section-heading--centre h2 { margin-inline: auto; }
  .section-heading--centre > p { margin: 18px auto 0; }
  .review-card--featured { padding-block: 40px; }
  .about-grid { grid-template-columns: minmax(0, 1.08fr) minmax(330px, .8fr); gap: 74px; align-items: center; }
  .quote-form { padding: 37px; }
  .footer-main { grid-template-columns: 1.7fr 1fr 1fr 1.15fr; gap: 50px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .demo-toast { right: 24px; bottom: 24px; left: auto; }
}

@media (min-width: 960px) {
  :root { --header-height: 88px; }
  .menu-toggle { display: none; }
  .primary-nav { position: static; inset: auto; padding: 0; display: flex; align-items: center; gap: 7px; background: transparent; border: 0; box-shadow: none; transform: none; visibility: visible; }
  .primary-nav > a { padding: 10px 11px; font-size: .77rem; }
  .primary-nav .button { margin-left: 5px; color: var(--white); }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; }
  .hero { min-height: 720px; padding-top: 92px; }
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); gap: 65px; align-items: center; }
  .hero h1 { font-size: clamp(4.5rem, 6.7vw, 6.25rem); }
  .hero-panel { min-height: 510px; }
  .hero-panel__icon { top: 60px; right: -10px; }
  .hero-metrics { margin-top: 72px; }
  .why-grid { grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr); gap: 78px; align-items: center; }
  .why-visual { min-height: 540px; }
  .pipe-shape--one { right: 88px; bottom: 95px; width: 220px; height: 365px; }
  .pipe-shape--two { right: -33px; bottom: 264px; }
  .areas-grid { grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr); gap: 82px; }
  .area-map { min-height: 500px; }
  .quote-grid { grid-template-columns: minmax(0, .75fr) minmax(490px, 1fr); gap: 78px; }
  .faq-grid { grid-template-columns: minmax(280px, .65fr) minmax(400px, 1fr); gap: 82px; }
  .quote-section { padding-bottom: 76px; }
  .quote-form input, .quote-form select, .quote-form textarea, .button--submit { scroll-margin-bottom: 0; }
  .mobile-call { display: none; }
  .site-footer { padding-bottom: 0; }
}

@media (min-width: 1200px) {
  .hero-grid { grid-template-columns: minmax(0, 1.4fr) 390px; }
  .urgent-banner__inner { gap: 28px; }
  .service-card { padding: 31px; }
}

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

@media (forced-colors: active) {
  .brand-mark, .service-icon, .urgent-icon, .mobile-call > span:first-child { border: 1px solid currentColor; }
}
