/* ============================================================
   SHARED-PROMOTION NOTES (added for service-commercial / -residential demos)
   ----------------------------------------------------------------
   The home-page hero's quote form, the brand-logo marquee, and the
   inline CTA strip were originally inline in index.html. They are
   promoted here as `.sr-page-hero*`, `.sr-brand-strip*`, and
   `.sr-inline-cta` so subpages can reuse the pattern.

   New tokens used (already exist except where noted):
     --sr-blue, --sr-blue-hover, --sr-dark, --sr-dark-2, --sr-white,
     --sr-text, --sr-meta, --sr-border, --header-h, --font-sans
   No new root tokens needed — all surfaces are derived.

   index.html keeps its INLINE copies of .sr-hero-* — do not strip them.
   ============================================================ */

/* ============================================================
   SOLUTION ROOFING — Shared design system
   Type: Rethink Sans (heavy 700-800 headings, 400-500 body)
   Replaces Playfair Display + Lato + Outfit globally.
   Italic emphasis → weight + colour contrast.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Baloo+Bhai+2:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --sr-blue: #3096db;
  --sr-blue-hover: #145598;
  --sr-blue-soft: #e7f3fb;
  --sr-accent: #F8553C;
  --sr-dark: #001D21;
  --sr-dark-2: #0a2a2e;
  --sr-light: #F6F9F1;
  --sr-white: #FFFFFF;
  --sr-text: #061619;
  --sr-meta: #70737A;
  --sr-border: #E6E8DE;
  --sr-border-dark: rgba(255,255,255,0.12);

  /* Type */
  --font-sans: 'Rethink Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1320px;
  --container-narrow: 1080px;
  --pad-x: clamp(20px, 4vw, 48px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Header height for sticky offsets */
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--sr-text);
  background: var(--sr-white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* === Type ===
   Headings: 700/800 with very tight tracking.
   Emphasis: use .accent (colour) or weight contrast — never serif italic.
*/
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--sr-text);
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7vw, 104px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2vw, 30px); line-height: 1.15; letter-spacing: -0.02em; }
h4 { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.25; font-weight: 700; letter-spacing: -0.015em; }

/* Accent — replaces italic emphasis */
.accent { color: var(--sr-blue); font-weight: 800; }
.accent-coral { color: var(--sr-accent); font-weight: 800; }
.accent-light { color: var(--sr-blue); font-weight: 700; }
em.accent, em { font-style: normal; }

/* Eyebrow / kicker label */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sr-blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.dark { color: var(--sr-blue); }

p { color: var(--sr-text); line-height: 1.65; }
p.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--sr-text);
  font-weight: 400;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 16px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-blue { background: var(--sr-blue); color: var(--sr-white); border-color: var(--sr-blue); }
.btn-blue:hover { background: var(--sr-blue-hover); border-color: var(--sr-blue-hover); }
.btn-dark { background: var(--sr-dark); color: var(--sr-white); border-color: var(--sr-dark); }
.btn-dark:hover { background: var(--sr-blue); border-color: var(--sr-blue); }
.btn-light { background: var(--sr-white); color: var(--sr-dark); border-color: var(--sr-white); }
.btn-light:hover { background: var(--sr-blue); color: var(--sr-white); border-color: var(--sr-blue); }
.btn-outline { background: transparent; color: var(--sr-text); border-color: var(--sr-text); }
.btn-outline:hover { background: var(--sr-text); color: var(--sr-white); }
.btn-outline-light { background: transparent; color: var(--sr-white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--sr-white); color: var(--sr-dark); border-color: var(--sr-white); }

/* === Header === */
.sr-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s, color 0.3s;
  border-bottom: 1px solid transparent;
  color: var(--sr-white);
}
.sr-header.scrolled,
.sr-header.solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--sr-border);
  color: var(--sr-text);
}
.sr-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
/* Real Solution Roofing wordmark — inline SVG injected by site.js so the
   parent's @font-face (Baloo Bhai 2) applies. Text uses currentColor so the
   parent .sr-logo color (white over hero, dark when scrolled / in drawer /
   in footer-on-dark with overrides) tints the wordmark. Triangle is fixed
   brand blue. */
.sr-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}
.sr-logo svg.sr-logo-svg {
  height: 60px;
  width: auto;
  display: block;
}
.sr-logo svg.sr-logo-svg .sr-wordmark { fill: currentColor; }
/* Drawer is on light background — explicit dark text */
.sr-drawer .sr-logo { color: var(--sr-text); }
/* Hide placeholder spans (kept for screen readers — sr-logo gets aria-label on render) */
.sr-logo-mark, .sr-logo-text { display: none !important; }

.sr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sr-nav-item {
  position: relative;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: inherit;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.sr-nav-item:hover { color: var(--sr-blue); }
.sr-nav-item .chev {
  width: 9px; height: 9px;
  transition: transform 0.25s;
  opacity: 0.7;
}
.sr-nav-item:hover .chev { transform: rotate(180deg); }

.sr-megamenu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--sr-white);
  border: 1px solid var(--sr-border);
  border-radius: 10px;
  padding: 24px;
  min-width: 280px;
  box-shadow: 0 24px 48px rgba(0,29,33,0.08);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
  gap: 2px;
}
.sr-nav-item:hover .sr-megamenu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sr-megamenu a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sr-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s;
}
.sr-megamenu a:hover { background: var(--sr-light); color: var(--sr-blue); }
.sr-megamenu a::after {
  content: '↗';
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  color: var(--sr-blue);
}
.sr-megamenu a:hover::after { opacity: 1; transform: translateX(2px); }
.sr-megamenu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sr-meta);
  padding: 8px 12px 4px;
  margin-top: 8px;
}
.sr-megamenu-label:first-child { margin-top: 0; }

.sr-header-actions {
  display: flex; align-items: center; gap: 18px;
}
.sr-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: inherit;
}
.sr-phone-pulse {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: sr-pulse 2s infinite;
}
@keyframes sr-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.sr-cta-btn {
  background: var(--sr-blue); color: var(--sr-white);
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background 0.25s;
}
.sr-cta-btn:hover { background: var(--sr-blue-hover); }
.sr-header.scrolled .sr-cta-btn,
.sr-header.solid .sr-cta-btn { background: var(--sr-dark); }
.sr-header.scrolled .sr-cta-btn:hover,
.sr-header.solid .sr-cta-btn:hover { background: var(--sr-blue); }

.sr-burger {
  display: none;
  width: 28px; height: 18px;
  flex-direction: column;
  justify-content: space-between;
}
.sr-burger span { display: block; height: 2px; background: currentColor; border-radius: 2px; }

/* Mobile drawer */
.sr-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh; height: 100dvh;
  background: var(--sr-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
  padding: 24px 28px 80px;
}
.sr-drawer.open { transform: translateX(0); }
.sr-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,29,33,0.5);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.sr-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.sr-drawer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--sr-border);
}
.sr-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sr-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.sr-drawer-section { margin-bottom: 28px; }
.sr-drawer-section h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sr-meta);
  margin-bottom: 10px;
}
.sr-drawer-section ul { list-style: none; }
.sr-drawer-section ul a {
  display: block;
  padding: 10px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--sr-text);
  border-bottom: 1px solid var(--sr-border);
  transition: color 0.2s;
}
.sr-drawer-section ul a:hover { color: var(--sr-blue); }
.sr-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* === Sticky bottom bar (mobile) === */
.sr-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--sr-dark);
  color: var(--sr-white);
  display: none;
  padding: 10px 12px;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sr-sticky-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  gap: 8px;
}
.sr-sticky-bar .call { border: 1px solid rgba(255,255,255,0.25); }
.sr-sticky-bar .quote { background: var(--sr-blue); }
.sr-sticky-bar svg { width: 14px; height: 14px; }

/* === Footer === */
.sr-footer {
  background: var(--sr-dark);
  color: rgba(255,255,255,0.65);
  padding: 88px 0 32px;
  font-size: 14px;
}
.sr-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.sr-footer-brand .sr-logo { color: var(--sr-white); margin-bottom: 18px; }
.sr-footer-brand p {
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-size: 14px;
  max-width: 36ch;
  margin-bottom: 24px;
}
.sr-footer-offices {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 24px;
}
.sr-footer-office {
  font-size: 13px;
}
.sr-footer-office strong {
  display: block;
  color: var(--sr-white);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.sr-footer-social { display: flex; gap: 8px; }
.sr-footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.sr-footer-social a svg { width: 14px; height: 14px; fill: currentColor; }
.sr-footer-social a:hover { background: var(--sr-blue); border-color: var(--sr-blue); color: var(--sr-white); }
.sr-footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sr-white);
  margin-bottom: 18px;
}
.sr-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sr-footer-col ul a { color: rgba(255,255,255,0.55); transition: color 0.2s; font-weight: 500; }
.sr-footer-col ul a:hover { color: var(--sr-white); }
.sr-footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2px;
}
.sr-footer-bottom-links { display: flex; gap: 24px; }
.sr-footer-bottom a:hover { color: var(--sr-white); }

/* === Breadcrumbs === */
.sr-breadcrumbs {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sr-meta);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sr-breadcrumbs a:hover { color: var(--sr-blue); }
.sr-breadcrumbs .sep { opacity: 0.4; }
.sr-breadcrumbs .current { color: var(--sr-text); }

/* === Sections === */
section { position: relative; }
.sect-pad { padding: clamp(80px, 12vw, 160px) 0; }
.sect-pad-md { padding: clamp(64px, 9vw, 120px) 0; }
.sect-pad-sm { padding: clamp(48px, 6vw, 80px) 0; }
.bg-light { background: var(--sr-light); }
.bg-dark { background: var(--sr-dark); color: var(--sr-white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--sr-white); }
.bg-dark p { color: rgba(255,255,255,0.7); }

/* === Trust marquee === */
.sr-trust-strip {
  background: var(--sr-dark);
  color: rgba(255,255,255,0.85);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sr-trust-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.sr-trust-item {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.sr-trust-item svg {
  width: 14px; height: 14px;
  color: var(--sr-blue);
  flex-shrink: 0;
}

/* === 4-step process === */
.sr-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--sr-border);
  border-bottom: 1px solid var(--sr-border);
}
.sr-process-step {
  padding: 40px 32px;
  border-left: 1px solid var(--sr-border);
  position: relative;
}
.sr-process-step:first-child { border-left: none; }
.sr-process-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--sr-blue);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.sr-process-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sr-border);
}
.sr-process-step h4 { margin-bottom: 12px; font-size: 22px; }
.sr-process-step p { font-size: 14px; color: var(--sr-meta); line-height: 1.55; }

/* === FAQ accordion === */
.sr-faq-list { list-style: none; border-top: 1px solid var(--sr-border); }
.sr-faq-item { border-bottom: 1px solid var(--sr-border); }
.sr-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: left;
  color: var(--sr-text);
  transition: color 0.3s;
  gap: 20px;
  font-family: var(--font-sans);
}
.sr-faq-q:hover { color: var(--sr-blue); }
.sr-faq-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--sr-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.sr-faq-icon::before, .sr-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--sr-text);
  transition: transform 0.3s, background 0.3s;
}
.sr-faq-icon::before { width: 12px; height: 2px; }
.sr-faq-icon::after { width: 2px; height: 12px; }
.sr-faq-item.active .sr-faq-icon {
  background: var(--sr-blue);
  border-color: var(--sr-blue);
}
.sr-faq-item.active .sr-faq-icon::before, .sr-faq-item.active .sr-faq-icon::after {
  background: var(--sr-white);
}
.sr-faq-item.active .sr-faq-icon::after { transform: scaleY(0); }
.sr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.sr-faq-a-inner {
  padding: 0 0 28px;
  color: var(--sr-meta);
  font-size: 16px;
  line-height: 1.7;
  max-width: 64ch;
}
.sr-faq-a-inner strong { color: var(--sr-text); font-weight: 700; }
.sr-faq-a-inner p + p { margin-top: 12px; }

/* === Review card === */
.sr-review-card {
  background: var(--sr-light);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), background 0.3s, border-color 0.3s;
}
.sr-review-card:hover { background: var(--sr-white); border-color: var(--sr-border); transform: translateY(-6px); }
.sr-review-stars { display: flex; gap: 2px; }
.sr-review-stars svg { width: 14px; height: 14px; fill: #FBBC05; }
.sr-review-quote {
  font-size: 19px;
  line-height: 1.4;
  color: var(--sr-text);
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 1;
}
.sr-review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--sr-border);
}
.sr-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
}
.sr-review-author-text strong { display: block; font-weight: 700; font-size: 14px; }
.sr-review-author-text span { font-size: 12px; color: var(--sr-meta); }

/* === Partner logo wall === */
.sr-partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--sr-border);
  border-bottom: 1px solid var(--sr-border);
}
.sr-partner {
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--sr-border);
  padding: 24px 32px;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.sr-partner:nth-child(6n+1) { border-left: none; }
.sr-partner:hover { filter: grayscale(0); opacity: 1; }
.sr-partner img { max-height: 56px; width: auto; max-width: 100%; object-fit: contain; }

/* === Address estimator pill === */
.sr-estimator {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 6px 6px 22px;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
}
.sr-estimator.light {
  background: var(--sr-white);
  border-color: var(--sr-border);
}
.sr-estimator svg.pin { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.75; }
.sr-estimator input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  min-width: 0;
}
.sr-estimator.light input::placeholder { color: var(--sr-meta); }
.sr-estimator:not(.light) input::placeholder { color: rgba(255,255,255,0.55); }
.sr-estimator button {
  background: var(--sr-blue);
  color: var(--sr-white);
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.25s;
}
.sr-estimator button:hover { background: var(--sr-blue-hover); }
.sr-estimator button svg { width: 12px; height: 12px; }

/* === Inline service select === */
.sr-service-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.sr-service-pill {
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: all 0.2s;
}
.sr-service-pill:hover, .sr-service-pill.active {
  background: var(--sr-blue);
  border-color: var(--sr-blue);
  color: var(--sr-white);
}
.sr-service-pill.light {
  border-color: var(--sr-border);
  background: var(--sr-white);
  color: var(--sr-text);
}
.sr-service-pill.light:hover, .sr-service-pill.light.active {
  background: var(--sr-dark); border-color: var(--sr-dark); color: var(--sr-white);
}

/* === Response promise pill === */
.sr-response-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.sr-response-pill .dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: sr-pulse 2s infinite;
}
.sr-response-pill.light {
  background: var(--sr-light);
  color: #1f7a3d;
}
.sr-response-pill.light .dot { background: #1f7a3d; }

/* === Dark CTA band === */
.sr-cta-band {
  background: var(--sr-dark);
  color: var(--sr-white);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.sr-cta-band-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.18;
}
.sr-cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.sr-cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,29,33,0.6) 0%, rgba(0,29,33,0.92) 100%);
  z-index: 1;
}
.sr-cta-band-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.sr-cta-band-inner .eyebrow { color: var(--sr-blue); margin-bottom: 24px; }
.sr-cta-band-inner h2 {
  color: var(--sr-white);
  font-size: clamp(40px, 6vw, 88px);
  margin-bottom: 24px;
}
.sr-cta-band-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.sr-cta-band-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  margin-bottom: 40px;
}
.sr-cta-band-phone {
  display: inline-flex; flex-direction: column;
  font-weight: 700;
  font-size: 22px;
  color: var(--sr-white);
}
.sr-cta-band-phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  font-weight: 600;
}
.sr-cta-band-phone a:hover { color: var(--sr-blue); }

/* === Section header pattern === */
.sr-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.sr-section-head h2 { max-width: 14ch; }
.sr-section-head p {
  color: var(--sr-meta);
  font-size: 17px;
  line-height: 1.6;
  max-width: 48ch;
  padding-bottom: 8px;
}

/* === Reveal === */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* === Credentials trust strip (MoneyHub badge + accreditation logos) ===
   Used by /about-us, /our-team, and /contact. Lived inline on /about-us
   originally; lifted to shared so /our-team renders the badges at the
   correct size without re-duplicating ~50 lines of CSS. Without these
   rules, the MoneyHub PNG renders at its native ~1200px width and
   completely fills the viewport, pushing all preceding sections
   off-screen for the user. */
.sr-contact-trust {
  background: var(--sr-white);
  border-top: 1px solid var(--sr-border);
  border-bottom: 1px solid var(--sr-border);
  padding: clamp(36px, 5vw, 56px) 0;
}
.sr-contact-trust-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--sr-border);
  margin-bottom: 28px;
}
.sr-contact-rank-copy { display: flex; flex-direction: column; gap: 6px; }
.sr-contact-rank-copy .eyebrow { color: var(--sr-blue); margin: 0; }
.sr-contact-rank-copy h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--sr-text);
  max-width: 30ch;
  text-wrap: balance;
}
.sr-contact-rank-copy h2 .accent { color: var(--sr-blue); }
.sr-contact-rank-copy .note {
  font-size: 13px;
  color: var(--sr-meta);
  font-weight: 500;
  letter-spacing: 0.1px;
  margin-top: 2px;
}
.sr-contact-trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.sr-contact-badges {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.sr-contact-badges img {
  height: 94px; width: auto;
  display: block;
  transition: transform 200ms ease;
}
.sr-contact-badges img:hover { transform: translateY(-2px); }
.sr-contact-badges img[src*="Moneyhub"] { height: calc(94px * 1.3); }
@media (max-width: 900px) {
  .sr-contact-badges img { height: 72px; }
  .sr-contact-badges img[src*="Moneyhub"] { height: calc(72px * 1.3); }
}

/* === Project page SEO intro band ===
   Used by every public/project-*.html between the hero and the gallery.
   Gives Google a unique 60-100 word per-project paragraph plus an H2,
   and gives users a one-glance summary of what the job was. */
.pj-intro {
  background: var(--sr-white);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--sr-border);
}
.pj-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.pj-intro h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: balance;
}
.pj-intro h2 .accent { color: var(--sr-blue); }
.pj-intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--sr-text);
}
.pj-intro p a {
  color: var(--sr-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.pj-intro p a:hover { text-decoration-thickness: 2px; }

/* === Responsive === */
@media (max-width: 1024px) {
  .sr-nav, .sr-phone { display: none; }
  .sr-burger { display: flex; }
  .sr-sticky-bar { display: flex; }
  .sr-footer-top { grid-template-columns: 1fr 1fr; }
  .sr-process { grid-template-columns: 1fr 1fr; }
  .sr-process-step { border-left: 1px solid var(--sr-border); }
  .sr-process-step:nth-child(2n+1) { border-left: none; }
  .sr-process-step:nth-child(n+3) { border-top: 1px solid var(--sr-border); }
  .sr-section-head { grid-template-columns: 1fr; gap: 24px; }
  .sr-partners { grid-template-columns: repeat(3, 1fr); }
  .sr-partner:nth-child(3n+1) { border-left: none; }
  .sr-partner:nth-child(6n+1) { border-left: 1px solid var(--sr-border); }
  .sr-partner:nth-child(3n+1) { border-left: none; }
  .sr-cta-btn { display: none; }
  body { padding-bottom: 64px; }
}
@media (max-width: 640px) {
  .sr-process { grid-template-columns: 1fr; }
  .sr-process-step { border-left: none; border-top: 1px solid var(--sr-border); }
  .sr-process-step:first-child { border-top: none; }
  .sr-partners { grid-template-columns: repeat(2, 1fr); }
  .sr-partner { border-left: 1px solid var(--sr-border); }
  .sr-partner:nth-child(2n+1) { border-left: none; }
  .sr-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .sr-estimator { flex-wrap: wrap; padding: 14px; border-radius: 18px; }
  .sr-estimator input { padding: 6px 0; width: 100%; }
  .sr-estimator button { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   PAGE HERO — copy + inline quote form, two-column
   Used by subpages (commercial, residential, etc).
   ============================================================ */
.sr-page-hero {
  background: var(--sr-dark);
  color: var(--sr-white);
  padding: calc(var(--header-h) + 64px) 0 clamp(64px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sr-page-hero .container { position: relative; z-index: 2; }
.sr-page-hero-copy .lead { max-width: 56ch; }

/* Rotating background images behind the page hero */
.sr-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sr-hero-bg .frame {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: sr-hero-bg-fade 21s infinite ease-in-out;
}
.sr-hero-bg .frame:nth-child(1) { animation-delay: 0s; }
.sr-hero-bg .frame:nth-child(2) { animation-delay: 7s; }
.sr-hero-bg .frame:nth-child(3) { animation-delay: 14s; }
.sr-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  /* Two-axis gradient. Vertical: photo stays visible through the
     upper half; lower half darkens so the H1 / lead / CTAs sit on
     a legible band. Horizontal: stronger left-side shadow because
     all text content sits left, leaving the right side of the
     photo open. */
  background:
    linear-gradient(to right,
      rgba(0,29,33,0.55) 0%,
      rgba(0,29,33,0.20) 50%,
      rgba(0,29,33,0.00) 100%),
    linear-gradient(to bottom,
      rgba(0,29,33,0.55) 0%,
      rgba(0,29,33,0.15) 28%,
      rgba(0,29,33,0.50) 70%,
      rgba(0,29,33,0.92) 100%);
}
@keyframes sr-hero-bg-fade {
  0%   { opacity: 0; transform: scale(1.04); }
  9%   { opacity: 1; transform: scale(1.0); }
  33%  { opacity: 1; transform: scale(1.02); }
  42%  { opacity: 0; transform: scale(1.04); }
  100% { opacity: 0; }
}

/* Brand strip nested inside the hero — translucent dark variant */
.sr-page-hero .sr-brand-strip.in-hero {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 0;
  padding: 28px 0 36px;
  margin-top: 32px;
}
.sr-page-hero .sr-brand-strip.in-hero .sr-brand-strip-label { color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.sr-page-hero .sr-brand-chip {
  font-family: var(--font-display, system-ui);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.sr-page-hero .sr-brand-chip:hover {
  color: var(--sr-white);
  border-color: rgba(48,150,219,0.6);
  background: rgba(48,150,219,0.12);
}

.sr-page-hero .sr-breadcrumbs {
  color: rgba(255,255,255,0.55);
  border-bottom: 0;
  padding: 0 0 28px;
  margin: 0;
}
.sr-page-hero .sr-breadcrumbs a { color: rgba(255,255,255,0.7); }
.sr-page-hero .sr-breadcrumbs a:hover { color: var(--sr-white); }
.sr-page-hero .sr-breadcrumbs .current { color: var(--sr-white); }

.sr-page-hero-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sr-page-hero-meta .eyebrow { color: var(--sr-blue); margin: 0; }
.sr-page-hero-meta .div { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.sr-page-hero-meta .stat { color: rgba(255,255,255,0.85); }
.sr-page-hero-meta .stat strong { color: var(--sr-white); font-weight: 800; }
.sr-page-hero-meta .stars { color: #ffc857; letter-spacing: 1px; margin-right: 6px; font-size: 13px; }

.sr-page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  padding-bottom: clamp(56px, 7vw, 88px);
}
.sr-page-hero-copy h1 {
  color: var(--sr-white);
  font-size: clamp(40px, 5.4vw, 88px);
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}
.sr-page-hero-copy h1 .accent { color: var(--sr-blue); }
.sr-page-hero-copy .lead {
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  max-width: 56ch;
  margin-top: 28px;
}
.sr-page-hero-copy .lead strong { color: var(--sr-white); font-weight: 700; }
.sr-page-hero-actions {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
  align-items: center;
}
.sr-page-hero-actions .phone-inline {
  font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.sr-page-hero-actions .phone-inline a { color: var(--sr-white); font-weight: 700; }
.sr-page-hero-actions .phone-inline a:hover { color: var(--sr-blue); }

/* Quote card — same field/pref/button vocab as index hero, scoped under .sr-page-hero */
.sr-page-hero-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 28px;
}
.sr-page-hero-form-card h3 {
  color: var(--sr-white);
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.sr-page-hero-form-card .form-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--sr-blue);
  margin-bottom: 6px;
}
.sr-page-hero-form { display: grid; gap: 8px; }
.sr-page-hero-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sr-page-hero-field {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color 150ms ease, background 150ms ease;
}
.sr-page-hero-field:focus-within { border-color: var(--sr-blue); background: rgba(48,150,219,0.12); }
.sr-page-hero-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.sr-page-hero-field input {
  width: 100%; background: transparent; border: 0; outline: 0;
  color: var(--sr-white); font-size: 15px; font-weight: 600; font-family: inherit;
}
.sr-page-hero-field input::placeholder { color: rgba(255,255,255,0.4); font-weight: 500; }

.sr-page-hero-pref {
  display: flex; gap: 6px; align-items: center;
  margin-top: 4px; padding: 8px 0 0;
  flex-wrap: wrap;
}
.sr-page-hero-pref label {
  display: inline-flex; align-items: center; cursor: pointer;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.sr-page-hero-pref label:has(input:checked) {
  background: var(--sr-blue);
  border-color: var(--sr-blue);
  color: var(--sr-white);
}
.sr-page-hero-pref input { display: none; }

.sr-page-hero-form button[type="submit"] {
  background: var(--sr-blue); color: var(--sr-white);
  padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px;
  transition: background 150ms ease, transform 100ms ease;
  cursor: pointer; border: 0; width: 100%;
}
.sr-page-hero-form button[type="submit"]:hover { background: var(--sr-blue-hover); }
.sr-page-hero-form button[type="submit"]:active { transform: scale(0.99); }

.sr-page-hero-form-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  gap: 10px; flex-wrap: wrap;
}
.sr-page-hero-form-foot .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.14);
  color: #86efac;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4px;
}
.sr-page-hero-form-foot .pill .dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ============================================================
   BRAND STRIP — thin band of supplier / partner logos.
   Full-colour by default; subtle scale on hover.
   ============================================================ */
.sr-brand-strip {
  background: var(--sr-white);
  color: rgba(6,22,25,0.55);
  padding: 20px 0 24px;
  border-top: 1px solid rgba(6,22,25,0.08);
  border-bottom: 1px solid rgba(6,22,25,0.08);
  overflow: hidden;
}
.sr-brand-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.sr-brand-strip-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(6,22,25,0.55);
  white-space: nowrap;
}
.sr-brand-strip-label::after { content: none; }
.sr-brand-strip-window {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
/* Static state: logos all fit, no marquee — centre them and drop the
   edge mask + duplicate set. JS toggles `.is-static` on resize. */
.sr-brand-strip-window.is-static {
  display: flex;
  justify-content: center;
  mask-image: none;
  -webkit-mask-image: none;
}
.sr-brand-strip-window.is-static .sr-brand-logo[aria-hidden="true"] {
  display: none;
}
.sr-brand-track {
  display: flex; gap: clamp(40px, 4.5vw, 72px);
  align-items: center;
  width: max-content;
  will-change: transform;
}
.sr-brand-track .sr-brand-logo {
  height: clamp(86px, 8.9vw, 130px); width: auto; flex-shrink: 0;
  transition: transform 200ms ease;
}
.sr-brand-track .sr-brand-logo:hover {
  transform: scale(1.04);
}

/* ============================================================
   INLINE CTA STRIP — slim repeating call-to-action.
   Two flavours: dark band, and bordered light band.
   ============================================================ */
.sr-inline-cta {
  background: var(--sr-dark);
  color: var(--sr-white);
  padding: 28px 0;
  position: relative;
}
.sr-inline-cta.alt-light {
  background: var(--sr-light);
  color: var(--sr-text);
  border-top: 1px solid var(--sr-border);
  border-bottom: 1px solid var(--sr-border);
}
.sr-inline-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.sr-inline-cta-copy {
  display: flex; flex-direction: column; gap: 4px;
}
.sr-inline-cta-copy .eyebrow {
  color: var(--sr-blue);
  font-size: 11px;
  letter-spacing: 1.4px;
}
.sr-inline-cta.alt-light .sr-inline-cta-copy .eyebrow { color: var(--sr-blue); }
.sr-inline-cta-copy h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: inherit;
}
.sr-inline-cta-copy h3 .accent { color: var(--sr-blue); }
.sr-inline-cta-actions {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.sr-inline-cta-phone {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.sr-inline-cta.alt-light .sr-inline-cta-phone { color: var(--sr-meta); }
.sr-inline-cta-phone a { color: inherit; font-weight: 700; }
.sr-inline-cta-phone a:hover { color: var(--sr-blue); }

@media (max-width: 980px) {
  .sr-page-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .sr-page-hero-form-card { padding: 22px; }
  .sr-brand-strip { padding: 44px 0; }
  .sr-brand-strip-label { margin-bottom: 22px; }
  .sr-inline-cta-inner { grid-template-columns: 1fr; gap: 18px; }
  .sr-inline-cta-actions { width: 100%; }
  .sr-inline-cta-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   Hero quote form (promoted from index.html so service pages
   can reuse the same component the home hero uses).
   ============================================================ */
.sr-hero-quote {
  background: rgba(0,29,33,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 28px;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.sr-hero-quote h3 {
  color: var(--sr-white);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}
.sr-hero-quote-form { display: grid; gap: 8px; }
.sr-hero-quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sr-hero-field {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 150ms ease, background 150ms ease;
}
.sr-hero-field:focus-within { border-color: var(--sr-blue); background: rgba(48,150,219,0.12); }
.sr-hero-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.sr-hero-field input {
  width: 100%; background: transparent; border: 0; outline: 0;
  color: var(--sr-white); font-size: 15px; font-weight: 600; font-family: inherit;
}
.sr-hero-field input::placeholder { color: rgba(255,255,255,0.4); font-weight: 500; }
.sr-hero-pref {
  display: flex; gap: 10px; align-items: center;
  margin-top: 4px; padding: 8px 4px 0;
  font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600;
  flex-wrap: wrap;
}
.sr-hero-pref-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.7; }
.sr-hero-pref label {
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.sr-hero-pref label:has(input:checked) { background: var(--sr-blue); border-color: var(--sr-blue); color: var(--sr-white); }
.sr-hero-pref input { display: none; }
.sr-hero-quote button[type="submit"] {
  background: var(--sr-blue); color: var(--sr-white);
  padding: 16px; border-radius: 10px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px;
  transition: background 150ms ease, transform 100ms ease;
  cursor: pointer; border: 0; width: 100%;
}
.sr-hero-quote button[type="submit"]:hover { background: var(--sr-blue-hover); }
.sr-hero-quote button[type="submit"]:active { transform: scale(0.99); }
.sr-hero-fineprint {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.sr-hero-quote .sr-response-pill {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.16);
  color: #86efac;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.4px;
}
.sr-hero-quote .sr-response-pill .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 0 rgba(74,222,128,0.7); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6);} 70% { box-shadow: 0 0 0 8px rgba(74,222,128,0);} 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0);} }
@media (max-width: 900px) { .sr-hero-quote { max-width: 100%; padding: 24px; } }

/* ============================================================
   Brand-strip on a white band (not inside the hero). Logos
   render in full colour with a soft greyscale fade-in so the
   strip reads as a polished credibility strip rather than a
   loud marquee. The .sr-brand-track .sr-brand-logo base rules
   set greyscale + opacity 0.6; we tighten the height a little
   here so wordmark logos don't dominate.
   ============================================================ */
.sr-brand-strip { padding: 56px 0; }
.sr-brand-track .sr-brand-logo { height: 48px; }
@media (max-width: 720px) {
  .sr-brand-strip { padding: 40px 0; }
  .sr-brand-track .sr-brand-logo { height: 38px; }
}

/* ============================================================
   Project showcase grid (promoted from index.html so service
   pages can reuse the home-page component verbatim).
   3-column edge-to-edge dark strip; cards use a 4:5 photo with
   bottom-aligned info overlay + accent arrow.
   ============================================================ */
.sr-projects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}
.sr-project {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  background: var(--sr-dark);
  display: block;
}
.sr-project img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out, cubic-bezier(0.2, 0.7, 0.2, 1));
}
.sr-project:hover img { transform: scale(1.06); }
.sr-project .info {
  position: absolute;
  left: 24px; right: 24px; bottom: 20px;
  z-index: 2;
  color: var(--sr-white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.sr-project .info h4 {
  color: var(--sr-white);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.sr-project .info span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
}
.sr-project .info-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sr-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.sr-project:hover .info-arrow { transform: rotate(-45deg); background: var(--sr-white); color: var(--sr-dark); }
.sr-project .info-arrow svg { width: 14px; height: 14px; }
.sr-project::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,29,33,0.85) 0%, rgba(0,29,33,0) 55%);
}
@media (max-width: 900px) {
  .sr-projects { grid-template-columns: 1fr; }
  .sr-project { aspect-ratio: 16 / 11; }
}
