/* === SURFACE SEAL AUSTRALIA — MASTER STYLESHEET === */

/* 1. CSS Custom Properties */
:root {
  --navy: #1C3D6E;
  --deep-navy: #163060;
  --sky-blue: #38B6E8;
  --mid-blue: #21779E;
  --headline-navy: #0D2545;
  --body-grey: #4A5568;
  --muted-grey: #9AA5B4;
  --border-grey: #E2E8F0;
  --white: #FFFFFF;
  --off-white: #F0F4F8;
  --ice-blue: #EBF3FA;
  --card-white: #F8FAFC;
  --card-border: #DDE5EF;
  --amber-orange: #C2521A;
  --max-width: 1280px;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-grey);
  background: var(--white);
  max-width: none !important; /* override WP admin wp_die() CSS which sets body max-width: 700px */
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
img {
  max-width: 100%;
  display: block;
  height: auto;          /* preserve aspect ratio — prevents layout shift */
  image-rendering: auto; /* let the browser choose the best algorithm */
}
a { text-decoration: none; cursor: pointer; }

/* 3. Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* 4. Typography */
h1 { font-size: 38px; font-weight: 700; color: var(--headline-navy); line-height: 1.2; }
h2 { font-size: 30px; font-weight: 700; color: var(--headline-navy); line-height: 1.25; }
h3 { font-size: 19px; font-weight: 700; color: var(--headline-navy); line-height: 1.3; }
p { color: var(--body-grey); line-height: 1.7; }
.accent { color: var(--sky-blue); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-grey);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--sky-blue);
  flex-shrink: 0;
}
.eyebrow-center {
  justify-content: center;
}
.eyebrow-center::before { display: none; }

/* 5. Buttons */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  padding: 13px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
  font-family: Arial, sans-serif;
  line-height: 1;
}
.btn-sky { background: var(--sky-blue); color: var(--white); }
.btn-sky:hover { background: #2da8db; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--deep-navy); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.38);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
/* White outline button — for use on dark/navy hero backgrounds */
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.60);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.90);
  color: var(--white);
}
/* Dark outline button — for use on light backgrounds */
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-full { display: block; width: 100%; }

/* 6. Skip nav */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-nav:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--sky-blue);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 700;
}

/* 7. Topbar */
.topbar {
  background: var(--off-white);
  border-bottom: 1px solid var(--card-border);
  padding: 8px 40px;
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--body-grey);
}
.topbar a { color: var(--sky-blue); font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

/* 8. Navigation */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 10000; /* must be above mobile-nav drawer (9999) */
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  padding: 0 40px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* Transparent WebP icon — shows cleanly on any background */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text .brand-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 0.3px; }
.nav-logo-text .brand-sub { font-size: 10px; font-weight: 700; color: var(--sky-blue); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  padding: 8px 10px;
  border-radius: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-chevron {
  font-size: 10px;
  opacity: 0.7;
  display: inline-block;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  min-width: 230px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  z-index: 100;
  padding: 6px 0;
}

/* Invisible hover bridge — fills the gap between the trigger and the dropdown
   so the mouse never leaves the hover zone while travelling between them */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--body-grey) !important;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--navy) !important;
  padding-left: 20px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone { font-size: 13px; font-weight: 700; color: var(--sky-blue); white-space: nowrap; }
.nav-phone:hover { color: var(--white); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate to × when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Lock page scroll when mobile menu is open */
body.nav-open { overflow: hidden; }

.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 12px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open {
  display: block;
  position: fixed;
  top: 62px; /* JS overrides this with nav.getBoundingClientRect().bottom */
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999; /* below .nav (10000) so hamburger/X is always visible */
}
.mobile-nav a {
  display: block;
  padding: 11px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-section-label {
  font-size: 10px;
  color: var(--muted-grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 0 4px;
}
.mobile-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* 9. Hero */
.hero {
  background: var(--deep-navy);
  padding: 64px 40px 72px;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-secondary-link {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.hero-secondary-link:hover { color: var(--white); }
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-badge {
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-badge .tick { color: var(--sky-blue); font-weight: 700; }
.hero-img-col { position: relative; }
.hero-img-placeholder {
  background: #1A3D72;
  border-radius: 10px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.hero-floating-card {
  position: absolute;
  bottom: -16px;
  left: -10px;
  background: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.hero-stat-box {
  background: var(--sky-blue);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.hero-floating-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--headline-navy); }
.hero-floating-text span { font-size: 11px; color: var(--muted-grey); }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--deep-navy);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero background image + gradient overlay */
.page-hero.has-bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 22, 52, 0.93) 0%,
    rgba(12, 48, 105, 0.87) 45%,
    rgba(10, 78, 140, 0.78) 100%
  );
  z-index: 0;
}
.page-hero.has-bg-image > * {
  position: relative;
  z-index: 1;
}

/* ss-hero (inspection plans / split service heroes) bg image support */
.ss-hero.has-bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.ss-hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 22, 52, 0.93) 0%,
    rgba(12, 48, 105, 0.87) 45%,
    rgba(10, 78, 140, 0.78) 100%
  );
  z-index: 0;
}
.ss-hero.has-bg-image > * {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.60); }
.page-hero .breadcrumb a:hover { color: var(--sky-blue); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.35); margin: 0 6px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: 36px; }
.page-hero p { color: rgba(255,255,255,0.74); font-size: 16px; max-width: 600px; margin: 0 auto 24px; }

/* Page Hero — 2-column split variant */
.page-hero--split {
  text-align: left;
  padding: 64px 0;
}
.page-hero--split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero--split h1 { max-width: none; }
.page-hero--split p { max-width: none; margin-left: 0; }
.page-hero.page-hero--split .ss-hero-btns { justify-content: flex-start; }
.page-hero--split .breadcrumb { text-align: left; }
.page-hero__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.page-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 900px) {
  .page-hero--split .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-hero--split { text-align: center; padding: 48px 20px; }
  .page-hero.page-hero--split .ss-hero-btns { justify-content: center; }
  .page-hero--split .breadcrumb { text-align: center; }
  .page-hero__img { aspect-ratio: 16 / 9; order: -1; }
  .page-hero__text { order: 0; }
}

/* 10. Trust Bar */
.trust-bar {
  background: var(--navy);
  padding: 13px 0;
  overflow: hidden;          /* clips the marquee — no horizontal scroll ever */
  position: relative;
}
/* Fade overlays — navy → transparent so text dissolves into the bar's own colour */
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}
/* Marquee track — filled by JS with a cloned duplicate for seamless loop */
.trust-bar-inner {
  display: flex;
  width: max-content;        /* natural width, never wraps */
  align-items: center;
  gap: 0;                    /* spacing handled by padding on each item */
  animation: trust-marquee 40s linear infinite;
  will-change: transform;
}
.trust-bar:hover .trust-bar-inner {
  animation-play-state: paused;
}
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* -50% = one set of items (track is 2x) */
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  /* Equal padding on both sides = perfectly uniform gap at every seam */
  padding: 0 32px;
  flex-shrink: 0;
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky-blue);
  flex-shrink: 0;
}

/* 11. Sections */
.section { padding: 68px 40px; }
.section-white { background: var(--white); }
.section-off-white { background: var(--off-white); }
.section-ice-blue { background: var(--ice-blue); }
.section-navy { background: var(--navy); }
.section-deep-navy { background: var(--deep-navy); }

.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-header--left {
  text-align: left;
}
/* Chained selector (specificity 0,3,0) beats .section-header .lead (0,2,0) */
.section-header.section-header--left .lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}
.section-header.section-header--left .eyebrow,
.section-header.section-header--left .ss-eyebrow {
  justify-content: flex-start;
}
.section-header h2 { margin-bottom: 14px; }
.section-header .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--body-grey);
}

/* 12. Cards */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--sky-blue);
  border-radius: 10px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.service-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.08); }
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--ice-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--navy); fill: none; stroke: currentColor; }
.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-card ul {
  list-style: none;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 14px;
  color: var(--body-grey);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.service-card ul li::before { content: '✓'; color: var(--sky-blue); font-weight: 700; flex-shrink: 0; }
.card-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sky-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; }

/* Standard Card */
.standard-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 24px;
}

/* Why Choose Card */
.why-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon-box {
  width: 42px;
  height: 42px;
  background: var(--ice-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon-box svg { width: 22px; height: 22px; color: var(--navy); fill: none; stroke: currentColor; stroke-width: 1.8; }
.why-card h3 { font-size: 16px; margin-bottom: 6px; }
.why-card p { font-size: 14px; line-height: 1.6; }

/* Pull Quote */
.pull-quote {
  background: var(--off-white);
  border-left: 4px solid var(--sky-blue);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-top: 28px;
  font-style: italic;
  color: var(--headline-navy);
  font-size: 15px;
  line-height: 1.65;
}

/* 13. Split Layout */
.split-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

/* Image Placeholder */
.img-placeholder {
  background: var(--ice-blue);
  border: 1px solid #D4E4F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: var(--muted-grey);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  position: relative;
}
.img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--navy);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}
.img-badge .badge-num { font-size: 20px; font-weight: 700; color: var(--sky-blue); display: block; }
.img-badge .badge-label { font-size: 10px; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; display: block; }

.img-frame {
  border-radius: 12px;
  overflow: visible;
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.hero-img-actual { border-radius: 10px; overflow: hidden; }
.hero-img-actual img { width: 100%; height: auto; display: block; object-fit: contain; }

/* Checklist */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 24px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--body-grey);
  line-height: 1.55;
}
.check { color: var(--sky-blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.checklist-dark li {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}

/* 14. Testimonials */
.testimonial-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 24px;
}
.stars { color: #F6B000; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 14.5px;
  color: var(--body-grey);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card cite { font-size: 13px; font-weight: 700; color: var(--headline-navy); font-style: normal; }

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.trust-badge {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--body-grey);
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-badge .tick { color: var(--sky-blue); }

/* Google Reviews placeholder */
.reviews-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--muted-grey);
  font-size: 13px;
  border: 1px dashed var(--card-border);
  border-radius: 8px;
  margin-top: 24px;
}

/* 15. Process Steps */
.process-steps {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 36px 0 24px;
  flex-wrap: nowrap;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 8px;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 1px;
  background: rgba(56,182,232,0.3);
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  border: 2px solid rgba(56,182,232,0.35);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}
.process-step h3 { font-size: 14px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--body-grey); line-height: 1.55; }
.process-note { text-align: center; font-style: italic; color: var(--muted-grey); font-size: 14px; margin-bottom: 28px; }

/* 16. Video */
.video-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
.video-wrapper {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0D2545;
  aspect-ratio: 9/16;
  cursor: pointer;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  pointer-events: none;
}
.video-play-btn svg { width: 24px; height: 24px; fill: white; margin-left: 4px; }
.video-container:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.08); }
.video-label { font-size: 11px; color: var(--muted-grey); font-family: monospace; text-align: center; margin-top: 8px; }
.video-sub-label { font-size: 11px; color: var(--muted-grey); text-align: center; margin-top: 2px; }
.video-copy h3 { font-size: 21px; margin-bottom: 12px; }
.video-scene-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
}
.video-scene-list li {
  font-size: 13.5px;
  color: var(--body-grey);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.scene-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky-blue); flex-shrink: 0; margin-top: 5px; }
.video-cta-link { font-size: 14px; font-weight: 700; color: var(--sky-blue); display: inline-flex; align-items: center; gap: 4px; }
.video-cta-link:hover { color: var(--navy); }

/* 17. Blog Cards */
.blog-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.08); }
.blog-thumb {
  height: 200px;
  background: var(--ice-blue);
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card p { font-size: 13.5px; margin-bottom: 12px; flex: 1; }
.read-more { font-size: 13px; font-weight: 700; color: var(--sky-blue); display: inline-flex; align-items: center; gap: 4px; }
.read-more:hover { gap: 8px; }
.view-all-link { text-align: center; margin-top: 32px; }
.view-all-link a { font-size: 14px; font-weight: 700; color: var(--sky-blue); }
.view-all-link a:hover { text-decoration: underline; }

/* 18. Service Area */
.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 22px;
}
.suburb-tag {
  background: #EEF1F5;
  color: #4A5568;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.state-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.state-chip {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--body-grey);
}
.state-chip.coming-soon { color: var(--amber-orange); border-color: var(--amber-orange); }
.map-wrapper {
  min-height: 300px;
  background: var(--ice-blue);
  border: 1px solid #CCE0EE;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrapper iframe { width: 100%; min-height: 300px; border: none; }
.map-placeholder-text { color: var(--muted-grey); font-size: 13px; }

/* 19. FAQ — Static (always visible, crawler-friendly) */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 24px 28px;
}

/* Question — semantic h3, not a button */
.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--headline-navy);
  line-height: 1.35;
  margin: 0 0 10px;
  padding: 0;
}

/* Answer — always visible */
.faq-answer {
  display: block;
}
.faq-answer p {
  font-size: 14.5px;
  color: var(--body-grey);
  line-height: 1.75;
  margin: 0;
}

/* 20. Applicator Section */
.applicator-cards { display: flex; flex-direction: column; gap: 16px; }
.applicator-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.applicator-card-icon {
  width: 42px;
  height: 42px;
  background: var(--sky-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.applicator-card-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 1.8; }
.applicator-card h3 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.applicator-card p { font-size: 13.5px; color: rgba(255,255,255,0.70); }

/* 21. Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta .cta-body { color: rgba(255,255,255,0.74); max-width: 560px; margin: 0 auto 28px; font-size: 15px; }
.cta-group { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-phone-link { font-size: 14px; color: rgba(255,255,255,0.70); transition: color 0.2s; }
.cta-phone-link:hover { color: var(--white); }
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.trust-row span { font-size: 12px; color: rgba(255,255,255,0.48); display: flex; align-items: center; gap: 5px; }
.trust-row .tick { color: var(--sky-blue); }

/* 22. Footer */
.footer { background: var(--deep-navy); padding: 56px 40px 0; }
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer-brand-name { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 0.3px; }
.footer-brand-sub { font-size: 10px; font-weight: 700; color: var(--sky-blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; margin-top: 2px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.7); }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sky-blue); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  stroke: var(--sky-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.footer-contact-item a, .footer-contact-item span { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--sky-blue); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }
.footer-bottom-links { display: flex; gap: 16px; }

/* 23. AI Summary (hidden for SEO) */
.ai-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* 24. Contact Page */
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--headline-navy); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1px solid var(--border-grey);
  border-radius: 6px;
  font-size: 14px;
  color: var(--body-grey);
  font-family: Arial, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(56,182,232,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact Info */
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 28px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 1.8; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; color: var(--headline-navy); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--body-grey); }
.contact-info-item a:hover { color: var(--sky-blue); }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid var(--border-grey); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 7px 0; font-size: 13.5px; color: var(--body-grey); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--headline-navy); }

/* 25. About Page */
.team-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }
.team-stat {
  background: var(--ice-blue);
  border: 1px solid #D0E5F0;
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
}
.team-stat .stat-num { font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.team-stat .stat-num .stat-accent { color: var(--sky-blue); }
.team-stat .stat-label { font-size: 13px; color: var(--body-grey); }

/* 26. Misc */
.text-center { text-align: center; }
.text-sky { color: var(--sky-blue); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.inline-link { color: var(--sky-blue); font-weight: 700; }
.inline-link:hover { text-decoration: underline; }
.divider { border: none; border-top: 1px solid var(--border-grey); margin: 0; }

/* Feature List */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--body-grey); }
.feature-list li .ficon {
  width: 28px;
  height: 28px;
  background: var(--ice-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-list li .ficon svg { width: 14px; height: 14px; color: var(--sky-blue); fill: none; stroke: currentColor; stroke-width: 2; }

/* 27. Responsive */
@media (max-width: 1024px) {
  .section { padding: 52px 32px; }
  .hero { padding: 52px 32px 60px; }
  .container { padding: 0 32px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .footer { padding: 48px 32px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .split-layout { gap: 40px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .video-layout { grid-template-columns: 260px 1fr; gap: 40px; }
  .team-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 44px 20px; }
  .hero { padding: 40px 20px 56px; }
  h1 { font-size: 27px; }
  h2 { font-size: 22px; }
  h3 { font-size: 17px; }
  .topbar { padding: 8px 20px; }
  .topbar-inner { flex-direction: column; gap: 3px; text-align: center; font-size: 11px; }
  .nav-links, .nav-right .btn, .nav-right .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-col { order: -1; }
  .hero-img-placeholder { min-height: 200px; }
  .hero-floating-card { left: 0; bottom: -10px; }
  .trust-bar { padding: 10px 0; }   /* overflow:hidden already set — no side padding needed */
  .trust-item { font-size: 11px; padding: 0 18px; }
  .card-grid-3, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
  .split-layout, .split-layout.reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  /* img-frame: remove forced min-height so image renders at natural ratio */
  .img-frame { min-height: 0 !important; }
  .img-frame img { height: auto; min-height: 180px; object-fit: cover; }
  /* img-badge: pull out of absolute positioning so it sits directly below the image */
  .img-badge {
    position: static;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    border-radius: 10px;
    width: auto;
  }
  .img-badge .badge-label { display: block; }
  .process-steps { flex-direction: column; align-items: stretch; gap: 24px; }
  .process-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    text-align: left;
    padding: 0;
  }
  .process-step::after { display: none; }
  .step-circle {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    align-self: start;
    margin-top: 2px;
  }
  .process-step h3 { grid-column: 2; grid-row: 1; text-align: left; }
  .process-step p  { grid-column: 2; grid-row: 2; text-align: left; }
  .video-layout { grid-template-columns: 1fr; }
  .video-wrapper { max-width: 240px; }
  .footer { padding: 44px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group .btn { text-align: center; }
  .team-stat-grid { grid-template-columns: 1fr 1fr !important; }
  .team-stat { padding: 18px 12px; }
  .team-stat .stat-num { font-size: 28px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero { padding: 44px 20px; }
  .why-card { flex-direction: column; gap: 12px; }
  .contact-grid { gap: 32px; }
}

/* =====================================================
   28. ANIMATIONS
   ===================================================== */

/* -- Scroll reveal base state (applied via JS) -- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Hero copy: staggered entrance on page load -- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-copy > * {
  animation: heroFadeUp 0.65s ease both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.30s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.42s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.54s; }

/* -- Hero image col slide in -- */
.hero-img-col {
  animation: heroFadeUp 0.7s 0.2s ease both;
}

/* -- Floating card: bounce in then gentle float -- */
@keyframes cardBounceIn {
  from { opacity: 0; transform: translateY(14px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero-floating-card {
  animation:
    cardBounceIn 0.55s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    gentleFloat  4s   1.2s ease-in-out infinite;
}

/* -- CTA button shimmer -- */
.btn-sky { position: relative; overflow: hidden; }
.btn-sky::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-15deg);
  animation: btnShimmer 4.5s 2s infinite;
}
@keyframes btnShimmer {
  0%        { left: -80%; }
  30%, 100% { left: 160%; }
}

/* -- Trust bar dots: static (marquee scroll replaces pulse) -- */

/* -- Nav: subtle shadow on scroll (class added via JS) -- */
.nav { transition: box-shadow 0.3s ease; }
.nav.nav-scrolled { box-shadow: 0 3px 22px rgba(0,0,0,0.13); }

/* -- Respect reduced motion -- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-copy > *, .hero-img-col,
  .hero-floating-card, .trust-dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .trust-bar-inner { animation: none !important; }
  .btn-sky::after { display: none; }
}


/* ============================================================
   SINGLE POST TEMPLATE
   ============================================================ */

/* ── Hero ── */
.post-hero-section {
  padding-bottom: 0;
}
.post-hero-tag {
  margin-bottom: 18px;
}
.post-hero-tag .blog-tag {
  font-size: 12px;
  padding: 5px 14px;
}
.post-hero-title {
  max-width: 780px;
  margin: 0 auto 16px;
  font-size: 36px;
  color: #fff;
  line-height: 1.2;
}
.post-hero-meta {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.post-hero-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  line-height: 0;
}
.post-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* ── Content section offset when hero image present ── */
.post-content-section {
  padding-top: 0;
}

/* ── Two-column layout ── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
  padding-top: 56px;
}

/* ── Article prose ── */
.post-prose {
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-grey);
}
.post-prose h2 {
  font-size: 24px;
  color: var(--headline-navy);
  margin: 40px 0 14px;
  line-height: 1.25;
}
.post-prose h3 {
  font-size: 19px;
  color: var(--headline-navy);
  margin: 30px 0 10px;
}
.post-prose p {
  margin-bottom: 20px;
  color: var(--body-grey);
}
.post-prose ul,
.post-prose ol {
  margin: 0 0 20px 22px;
  color: var(--body-grey);
}
.post-prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.post-prose strong {
  color: var(--headline-navy);
  font-weight: 700;
}
.post-prose a {
  color: var(--sky-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-prose a:hover {
  text-decoration: none;
}
.post-prose blockquote {
  border-left: 4px solid var(--sky-blue);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--ice-blue);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--headline-navy);
}

/* ── Tags row ── */
.post-tags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-grey);
}
.post-tags-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-grey);
  margin-right: 4px;
}
.post-tag-chip {
  display: inline-block;
  background: var(--ice-blue);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-grey);
  transition: background 0.2s, color 0.2s;
}
.post-tag-chip:hover {
  background: var(--sky-blue);
  color: #fff;
  border-color: var(--sky-blue);
}

/* ── Back link ── */
.post-back-row {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-grey);
}
.post-back-link {
  color: var(--sky-blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.post-back-link:hover {
  text-decoration: underline;
}

/* ── Sidebar ── */
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-block {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 18px 20px;
}
.sidebar-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-grey);
  margin-bottom: 8px;
}
.sidebar-cat-link {
  display: inline-block;
  background: var(--ice-blue);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-grey);
}
.sidebar-cat-link:hover {
  background: var(--sky-blue);
  color: #fff;
  border-color: var(--sky-blue);
}
.sidebar-date {
  font-size: 14px;
  color: var(--body-grey);
  margin: 0;
}

/* ── Sidebar CTA box ── */
.sidebar-cta-box {
  background: var(--headline-navy);
  border-radius: 12px;
  padding: 24px 22px;
  text-align: center;
}
.sidebar-cta-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.sidebar-cta-body {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 18px;
}
.sidebar-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
}
.sidebar-cta-phone {
  display: block;
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.sidebar-cta-phone:hover {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-cta-box {
    grid-column: 1 / -1;
  }
  .post-hero-title {
    font-size: 28px;
  }
  .post-hero-img {
    height: 260px;
  }
}
@media (max-width: 560px) {
  .post-sidebar {
    grid-template-columns: 1fr;
  }
  .post-hero-img {
    height: 200px;
  }
  .post-prose {
    font-size: 15px;
  }
}


/* ════════════════════════════════════════════════════════════════════
   SS- SERVICE & SOLUTIONS PAGE COMPONENTS
   Appended after base stylesheet — covers all ss-* classes used
   across the 4 service pages and homeowners solutions page.
   ════════════════════════════════════════════════════════════════════ */


/* ── 1. BREADCRUMB ────────────────────────────────────────────────── */
.ss-breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-grey);
  padding: 10px 0;
  font-size: 12px;
  color: var(--muted-grey);
}
.ss-breadcrumb a {
  color: var(--muted-grey);
  transition: color .2s;
}
.ss-breadcrumb a:hover { color: var(--sky-blue); }
.ss-breadcrumb span { margin: 0 6px; }
.ss-breadcrumb .current { color: var(--body-grey); }


/* ── 2. SS-EYEBROW ────────────────────────────────────────────────── */
/* Service page eyebrow — wraps a <span>, sits inside dark or light bg */
.ss-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--sky-blue);
}
.ss-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--sky-blue);
  flex-shrink: 0;
}
.ss-eyebrow span { color: inherit; }


/* ── 3. SERVICE PAGE HERO ─────────────────────────────────────────── */
.ss-hero {
  background: var(--headline-navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.ss-hero h1 {
  color: var(--white);
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ss-hero p,
.ss-hero__sub {
  color: rgba(255,255,255,.80);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 0;
}
.ss-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ss-hero__text { display: flex; flex-direction: column; }

.ss-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Trust badges row inside hero */
.ss-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.ss-badge-item {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 20px;
  padding: 4px 12px;
}

/* Right column — image area */
.ss-hero__img-col {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.ss-hero__img-col img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.ss-img-placeholder {
  background: rgba(255,255,255,.07);
  border: 2px dashed rgba(255,255,255,.18);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  color: rgba(255,255,255,.35);
  font-size: 13px;
  text-align: center;
}

/* Floating stat card over image */
.ss-hero__float-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
}
.ss-hero__float-stat {
  font-size: 32px;
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1;
}
.ss-hero__float-card strong {
  display: block;
  font-size: 13px;
  color: var(--headline-navy);
}
.ss-hero__float-card span {
  display: block;
  font-size: 11px;
  color: var(--muted-grey);
}

/* Turnaround badge (used in regrout & outdoor instead of badge row) */
.ss-turnaround-badge {
  display: inline-flex;
  align-self: flex-start;   /* shrink to content — never stretch full column */
  align-items: center;
  gap: 6px;
  background: rgba(56,182,232,.15);
  border: 1px solid rgba(56,182,232,.35);
  color: var(--sky-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-top: 22px;
}


/* ── 4. SERVICE TRUST BAR ─────────────────────────────────────────── */
.ss-trust-bar {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ss-trust-bar::before,
.ss-trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ss-trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}
.ss-trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}
.ss-trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
}
.ss-trust-item {
  color: rgba(255,255,255,.80);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
  position: relative;
}
.ss-trust-item + .ss-trust-item::before {
  content: '·';
  color: rgba(255,255,255,.35);
  margin-right: 28px;
  position: absolute;
  left: -28px;
}


/* ── SHOWER RESEAL — HOW IT WORKS SPLIT LAYOUT ─────────────────────── */
.sr-hiw-split {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

/* Image column */
.sr-hiw-image .img-frame {
  min-height: 460px;
}
.sr-hiw-image .img-frame img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

/* Steps column */
.sr-hiw-steps {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.sr-hiw-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
}

/* Vertical connector line between steps */
.sr-hiw-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky-blue), rgba(56,189,248,0.15));
}

.sr-hiw-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.15);
}

.sr-hiw-step__content {
  padding-top: 8px;
}

.sr-hiw-step__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 6px;
  font-family: var(--font-head);
}

.sr-hiw-step__content p {
  font-size: 14.5px;
  color: var(--body-grey);
  line-height: 1.65;
  margin: 0;
}

/* CTA row below the split */
.sr-hiw-cta {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Tablet: stack to single column */
@media (max-width: 900px) {
  .sr-hiw-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sr-hiw-image .img-frame,
  .sr-hiw-image .img-frame img {
    min-height: 300px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sr-hiw-image .img-frame,
  .sr-hiw-image .img-frame img {
    min-height: 220px;
  }
  .sr-hiw-split {
    margin-top: 32px;
    gap: 32px;
  }
  .sr-hiw-cta {
    flex-direction: column;
  }
  .sr-hiw-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── 5. PROCESS STEPS ─────────────────────────────────────────────── */
.ss-steps-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}
.ss-steps-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ss-steps-grid--5 { grid-template-columns: repeat(5, 1fr); }

.ss-step {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 22px;
  position: relative;
}
.ss-step__num {
  font-size: 36px;
  font-weight: 700;
  color: var(--sky-blue);
  opacity: .35;
  line-height: 1;
  margin-bottom: 12px;
}
.ss-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.ss-step p {
  font-size: 14px;
  line-height: 1.65;
}

/* Internal text link */
.ss-internal-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--sky-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.ss-internal-link:hover { opacity: .75; }


/* ── 6. FAQ — PLAIN STYLE (regrout, outdoor, inspection) ─────────── */
.ss-faq-list-plain {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ss-faq-item-plain {
  border-bottom: 1px solid var(--border-grey);
  padding: 28px 0;
}
.ss-faq-item-plain:first-child { border-top: 1px solid var(--border-grey); }

/* FAQ — LIST STYLE (shower-reseal) */
.ss-faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.ss-faq-item {
  border-bottom: 1px solid var(--border-grey);
  padding: 28px 0;
}
.ss-faq-item:first-child { border-top: 1px solid var(--border-grey); }

/* Shared question header */
.ss-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.ss-faq-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.ss-faq-q h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}
.ss-faq-answer {
  padding-left: 44px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-grey);
}


/* ── 7. TESTIMONIALS GRID ─────────────────────────────────────────── */
.ss-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ss-testi-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ss-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 2px;
}
.ss-testi-card blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--body-grey);
  line-height: 1.7;
  flex: 1;
}
.ss-testi-card cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--headline-navy);
}


/* ── 8. WHO WE HELP GRID ──────────────────────────────────────────── */
.ss-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ss-who-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  overflow: hidden;
}
.ss-who-card__image {
  margin: -28px -28px 20px -28px;
  height: 260px;
  overflow: hidden;
}
.ss-who-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ss-who-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.ss-who-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.ss-who-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.ss-who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.ss-who-tag {
  background: var(--ice-blue);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: 20px;
  padding: 4px 10px;
}


/* ── 9. CTA BAND (service pages) ──────────────────────────────────── */
.ss-cta-band {
  background: var(--headline-navy);
  padding: 72px 0;
  text-align: center;
}
.ss-cta-band h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
}
.ss-cta-band p {
  color: rgba(255,255,255,.80);
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 15px;
}
.ss-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* Final CTA variant (outdoor, inspection) */
.ss-final-cta {
  background: var(--headline-navy);
  padding: 72px 0;
  text-align: center;
}
.ss-final-cta h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
}
.ss-final-cta p {
  color: rgba(255,255,255,.80);
  max-width: 540px;
  margin: 0 auto 0;
  font-size: 15px;
}
.ss-final-cta .ss-cta-btns { margin-top: 28px; }

.ss-cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  margin-top: 28px;
}
.ss-cta-trust-row .trust-item {
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.ss-cta-trust-row .trust-dot {
  background: var(--sky-blue);
}


/* ── 10. RELATED CARDS ────────────────────────────────────────────── */
.ss-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ss-related-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ss-related-card__img {
  background: var(--ice-blue);
  padding: 28px;
  font-size: 36px;
  text-align: center;
  line-height: 1;
}
.ss-related-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ss-related-card__body h3 {
  font-size: 16px;
  margin: 10px 0 8px;
  line-height: 1.35;
}
.ss-related-card__body p {
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
}
.ss-related-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky-blue);
}
.ss-arrow-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.ss-arrow-link:hover { opacity: .75; }


/* ─────────────────────────────────────────────────────────────────────
   SHOWER RESEAL — PAGE-SPECIFIC
   ───────────────────────────────────────────────────────────────────── */

/* What We Do — 2-col grid */
.ss-wwd-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.ss-stat-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ss-stat-block {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.ss-stat-block:last-child { margin-bottom: 0; }
.ss-stat-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.ss-stat-label {
  font-size: 13px;
  color: var(--body-grey);
  line-height: 1.5;
}

/* Who We Serve — 3-col */
.ss-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ss-serve-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
}
.ss-serve-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.ss-serve-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.ss-serve-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.ss-serve-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ss-serve-card ul li {
  font-size: 13px;
  color: var(--body-grey);
  padding-left: 18px;
  position: relative;
}
.ss-serve-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-weight: 700;
}

/* Why Choose — 2x2 grid */
.ss-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ss-why-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
}
.ss-why-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.ss-why-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.ss-why-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* Comparison Table */
.ss-compare-wrap {
  overflow-x: auto;
  margin-top: 36px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.ss-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

/* ── All cells get a right-side column divider ── */
.ss-compare-table th,
.ss-compare-table td {
  border-right: 1px solid var(--card-border);
}
.ss-compare-table th:last-child,
.ss-compare-table td:last-child {
  border-right: none;
}

/* ── Header row ── */
.ss-compare-table thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--card-border);
}
.ss-compare-table thead th:first-child {
  text-align: left;
  background: var(--off-white);
  color: var(--headline-navy);
}

/* Re-Grouting column header — warm grey */
.ss-compare-table thead th:nth-child(2) {
  background: #f2f2f5;
  color: var(--headline-navy);
}

/* Full Renovation column header — warm grey (same family) */
.ss-compare-table thead th:nth-child(4) {
  background: #f2f2f5;
  color: var(--headline-navy);
}

/* ── Body rows ── */
.ss-compare-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--card-border);
  text-align: center;
  color: var(--body-grey);
}
.ss-compare-table tbody tr:last-child td { border-bottom: none; }
.ss-compare-table tbody tr:hover td { background-color: rgba(0,0,0,0.015); }
.ss-compare-table tbody tr:hover td.col-highlight { background: #daeaf5; }

/* Re-Grouting body cells — very light cool tint */
.ss-compare-table tbody td:nth-child(2) {
  background: #f8f8fb;
}

/* Full Renovation body cells — very light warm tint */
.ss-compare-table tbody td:nth-child(4) {
  background: #f8f8fb;
}

/* Row label column */
.ss-compare-table .row-label {
  font-weight: 700;
  color: var(--headline-navy);
  text-align: left;
  font-size: 13px;
  background: var(--off-white);
}

/* ── Surface Seal highlight column ── */
.ss-compare-table thead .col-highlight {
  background: var(--navy);
  color: var(--white);
  border-top: 3px solid var(--sky-blue);
  border-right-color: #1a3a5c;
  letter-spacing: 0.01em;
}
.ss-compare-table .col-highlight {
  background: #e8f3fb;
  font-weight: 700;
  color: var(--navy);
  border-right-color: #b8d4e8;
}

/* ── Value colouring ── */
.ss-compare-table .bad  { color: #C53030; }
.ss-compare-table .good { color: #1a6b3c; font-weight: 600; }


/* ─────────────────────────────────────────────────────────────────────
   RE-GROUT & RE-SILICONE — PAGE-SPECIFIC
   ───────────────────────────────────────────────────────────────────── */

/* Hero Before/After tile illustration */
.ss-hero__ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.ss-ba-panel {
  padding: 24px 20px;
  border-radius: 10px;
  position: relative;
}
.ss-ba-panel--before { background: #1a1a2e; }
.ss-ba-panel--after  { background: #0a2a1f; }

.ss-ba-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.ss-ba-label--after { color: rgba(56,182,232,.80); }

/* Grout tile grid illustration */
.ss-grout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}
.ss-grout-tile {
  aspect-ratio: 1;
  border-radius: 3px;
}
.ss-grout-tile--old { background: #2d2d4a; }
.ss-grout-tile--new { background: #1a4a35; }

.ss-grout-divider {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 2px;
}
.ss-grout-divider--old { background: #3a3a5c; }
.ss-grout-divider--new { background: #2a6a4a; }

.ss-ba-caption {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-align: center;
}

/* Hero single image */
.ss-hero__img-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 480px;
}
.ss-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.ss-hero__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 2px dashed rgba(255,255,255,.2);
  color: rgba(255,255,255,.4);
  font-size: 14px;
}

/* Service cards — 3-col */
.ss-rg-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ss-rg-service-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
}
.ss-rg-service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--headline-navy);
}
.ss-rg-service-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ss-card-note {
  font-size: 12px;
  font-style: italic;
  color: var(--muted-grey);
  border-top: 1px solid var(--border-grey);
  padding-top: 12px;
  margin-top: auto;
}

/* Epoxy spotlight */
.ss-epoxy-spotlight {
  background: var(--ice-blue);
  border: 1px solid var(--sky-blue);
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
}
.ss-epoxy-spotlight h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.ss-epoxy-spotlight p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.ss-epoxy-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* Honest positioning grid */
.ss-honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.ss-honest-card {
  border-radius: 12px;
  padding: 28px;
  border: 2px solid transparent;
}
.ss-honest-card--positive {
  background: #f0faf4;
  border-color: #4CAF50;
}
.ss-honest-card--neutral {
  background: var(--off-white);
  border-color: var(--card-border);
}
.ss-honest-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--headline-navy);
}
.ss-honest-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.ss-honest-card ul li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  color: var(--body-grey);
  line-height: 1.5;
}
.ss-honest-card--positive ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}
.ss-honest-card--neutral ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-weight: 700;
}
.ss-honest-result {
  font-size: 13px;
  font-weight: 700;
  color: var(--headline-navy);
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}

/* Important note box */
.ss-important-note {
  background: #fff8f0;
  border: 1px solid #e8a87c;
  border-left: 4px solid var(--amber-orange);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.65;
}
.ss-important-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--amber-orange);
}


/* ─────────────────────────────────────────────────────────────────────
   OUTDOOR SEALING — PAGE-SPECIFIC
   ───────────────────────────────────────────────────────────────────── */

/* Outdoor hero right column */
.ss-hero__outdoor-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Alert box in hero */
.ss-hero-alert {
  background: rgba(194,82,26,.15);
  border: 1px solid rgba(194,82,26,.35);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.ss-hero-alert__icon { font-size: 20px; flex-shrink: 0; }
.ss-hero-alert p {
  font-size: 13px;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
  margin: 0;
}
.ss-hero-alert strong { color: var(--white); }

/* Before/After strip */
.ss-ba-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-radius: 10px;
  overflow: hidden;
}

/* Outdoor tile grid */
.ss-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}
.ss-tile {
  aspect-ratio: 1;
  border-radius: 3px;
}
.ss-tile--old { background: #2d2d4a; }
.ss-tile--new { background: #1a4a35; }

.ss-grout-h {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 2px;
}
.ss-grout-h--old { background: #3a3a5c; }
.ss-grout-h--new { background: #2a6a4a; }

.ss-ba-desc {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  text-align: center;
  line-height: 1.5;
}
.ss-ba-desc--after { color: rgba(56,182,232,.70); }

/* Factor row (environmental factors row) */
.ss-factor-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.ss-factor {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.ss-factor span { font-size: 18px; }

/* 2-col layout: problem + solution */
.ss-outdoor-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.ss-problem-card,
.ss-solution-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 30px;
}
.ss-problem-card { border-top: 4px solid #e53e3e; }
.ss-solution-card { border-top: 4px solid #48bb78; }
.ss-problem-card h3,
.ss-solution-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}
.ss-problem-card p,
.ss-solution-card p {
  font-size: 14px;
  margin-bottom: 14px;
}

/* Factor list inside problem/solution cards */
.ss-factor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.ss-factor-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--body-grey);
}
.ss-factor-list li > span:first-child,
.ss-factor-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ss-factor-list li strong {
  flex-shrink: 0;
  white-space: nowrap;
}

.ss-urgency-note {
  background: #fff8f0;
  border-left: 3px solid var(--amber-orange);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-orange);
  line-height: 1.55;
}
.ss-result-note {
  background: var(--ice-blue);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* Service split — primary + secondary columns */
.ss-service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.ss-svc-primary {
  background: var(--headline-navy);
  border-radius: 16px;
  padding: 36px;
  color: rgba(255,255,255,.85);
}
.ss-svc-primary h3 { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.ss-svc-primary p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.7; }
.ss-svc-badge {
  display: inline-block;
  background: var(--sky-blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.ss-svc-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--sky-blue);
  margin-bottom: 12px;
  display: block;
}
.ss-svc-label--blue { color: var(--sky-blue); }
.ss-svc-secondary .ss-svc-label { color: var(--navy); }
.ss-svc-use {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
  line-height: 1.6;
}
.ss-svc-secondary {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
}
.ss-svc-secondary h3 { font-size: 20px; margin-bottom: 12px; }
.ss-svc-secondary p { font-size: 14px; line-height: 1.7; }
.ss-svc-secondary .ss-svc-use { color: var(--muted-grey); }

/* Cross-link band */
.ss-crosslink-band {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
}
.ss-crosslink-band h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 12px;
}
.ss-crosslink-band p {
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 14px;
}
.ss-crosslink-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}


/* ─────────────────────────────────────────────────────────────────────
   INSPECTION PLANS — PAGE-SPECIFIC
   ───────────────────────────────────────────────────────────────────── */

/* Trust ticker / marquee */
.ss-ticker {
  background: var(--deep-navy);
  padding: 12px 0;
  overflow: hidden;
}
.ss-ticker__items {
  display: flex;
  gap: 0 48px;
  animation: ss-ticker-scroll 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ss-ticker__item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  position: relative;
  padding-right: 48px;
}
.ss-ticker__item::after {
  content: '·';
  position: absolute;
  right: 18px;
  color: rgba(255,255,255,.30);
}
@keyframes ss-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Inspection hero IP visual column */
.ss-hero__ip-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ss-ip-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ss-ip-stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}
.ss-ip-stat-num {
  font-size: 42px;
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.ss-ip-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* Plan preview pills */
.ss-ip-plan-preview {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px;
}
.ss-ip-plan-preview__hdr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.ss-ip-plan-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ss-ip-plan-pill {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 14px;
}
.ss-ip-plan-pill--featured {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: var(--white);
}
.ss-ip-visual-note {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

/* Why It Matters grid */
.ss-ip-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.ss-ip-card-problem {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 12px;
  padding: 28px;
}
.ss-ip-card-solution {
  background: #f0faf4;
  border: 1px solid #9ae6b4;
  border-radius: 12px;
  padding: 28px;
}
.ss-ip-card-problem h3,
.ss-ip-card-solution h3 {
  font-size: 17px;
  margin-bottom: 14px;
}

/* Check list (shared within inspection plans) */
.ss-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.ss-check-list li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--body-grey);
  line-height: 1.55;
}
.ss-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-weight: 700;
}

/* Disclaimer box */
.ss-ip-disclaimer-box {
  background: var(--off-white);
  border: 1px solid var(--border-grey);
  border-left: 3px solid var(--muted-grey);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--muted-grey);
  line-height: 1.6;
  margin-top: 16px;
}
.ss-ip-disclaimer-box strong { color: var(--body-grey); }

/* Three plan cards */
.ss-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  align-items: start;
}
.ss-plan-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.ss-plan-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); }
.ss-plan-card--featured {
  border-color: var(--sky-blue);
  box-shadow: 0 4px 24px rgba(56,182,232,.20);
}

/* Plan card header variants */
.ss-plan-card__header {
  padding: 28px;
  text-align: center;
}
.ss-plan-card__header--blue  { background: var(--sky-blue); }
.ss-plan-card__header--navy  { background: var(--navy); }
.ss-plan-card__header--dark  { background: var(--headline-navy); }

.ss-plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
}
.ss-plan-badge--popular {
  background: rgba(255,255,255,.20);
  border-radius: 20px;
  padding: 3px 12px;
  color: var(--white);
}
.ss-plan-badge--amber {
  background: rgba(194,82,26,.25);
  color: #F6AD55;
  border-radius: 20px;
  padding: 3px 12px;
}
.ss-plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.ss-plan-cadence {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-style: italic;
}

/* Plan card body */
.ss-plan-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ss-freq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ice-blue);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
  width: fit-content;
}
.ss-plan-card__body > p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.ss-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.ss-plan-features li {
  font-size: 13px;
  padding-left: 22px;
  position: relative;
  color: var(--body-grey);
  line-height: 1.5;
}
.ss-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-weight: 700;
}

/* Plan card footer */
.ss-plan-card__footer {
  padding: 20px 28px 28px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Covered grid — what's included */
.ss-covered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}
.ss-covered-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 20px;
}
.ss-room-block {
  margin-bottom: 24px;
}
.ss-room-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 12px;
  background: var(--ice-blue);
  border-radius: 6px;
  margin-bottom: 10px;
}
.ss-room-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 8px;
}
.ss-room-items li {
  font-size: 13px;
  color: var(--body-grey);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.ss-room-items li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted-grey);
}

/* Report about box */
.ss-report-about-box {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
}
.ss-report-about-box h3 { font-size: 16px; margin-bottom: 10px; }
.ss-report-about-box p { font-size: 13px; line-height: 1.7; }

/* Recommended services grid */
.ss-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ss-rec-card {
  background: var(--card-white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.ss-rec-card h3 {
  font-size: 17px;
  margin-bottom: 14px;
}
.ss-rec-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 18px;
}
.ss-rec-card ul li {
  font-size: 13px;
  padding-left: 20px;
  position: relative;
  color: var(--body-grey);
  line-height: 1.5;
}
.ss-rec-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sky-blue);
  font-weight: 700;
}


/* ─────────────────────────────────────────────────────────────────────
   HOMEOWNERS SOLUTIONS PAGE — NEW CLASSES
   ───────────────────────────────────────────────────────────────────── */

/* Hero button row (solutions pages) */
.ss-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
/* Centre buttons when inside the single-column page-hero (solutions pages).
   Service pages use .ss-hero__text > .ss-hero-btns so this rule won't affect them. */
.page-hero .ss-hero-btns {
  justify-content: center;
}

/* What You Get — container-width image above cards */
.ss-wyg-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
  aspect-ratio: 16 / 6;
}
.ss-wyg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ss-wyg-img + .card-grid-3 {
  position: relative;
  z-index: 1;
  margin-top: -48px;
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .ss-wyg-img + .card-grid-3 {
    margin-top: 24px;
    max-width: 100%;
  }
}

/* Image block with badge */
.ss-hw-img-block {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.ss-hw-img-block img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.ss-hw-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--sky-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 18px;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(56,182,232,.35);
}
.ss-hw-img-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .75;
  display: block;
  margin-bottom: 2px;
}

/* Before/After compare cards (homeowners) */
.ss-compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.ss-compare-card--bad,
.ss-compare-card--good {
  border-radius: 12px;
  padding: 24px;
}
.ss-compare-card--bad {
  background: #fff5f5;
  border: 2px solid #feb2b2;
}
.ss-compare-card--good {
  background: #f0faf4;
  border: 2px solid #9ae6b4;
}
.ss-compare-card--bad h3  { color: #c53030; font-size: 16px; margin-bottom: 12px; }
.ss-compare-card--good h3 { color: #276749; font-size: 16px; margin-bottom: 12px; }

.ss-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ss-compare-list li {
  font-size: 13px;
  padding-left: 22px;
  position: relative;
  color: var(--body-grey);
  line-height: 1.5;
}
.ss-cross,
.ss-tick {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.ss-cross { color: #e53e3e; }
.ss-tick  { color: #48bb78; }

/* Testimonials image + label */
.ss-hw-testi-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.ss-hw-testi-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
}


/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — SERVICE & SOLUTIONS PAGES
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  /* Hero */
  .ss-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ss-hero__img-col,
  .ss-hero__ba-wrap,
  .ss-hero__outdoor-visual,
  .ss-hero__ip-visual { order: -1; }
  .ss-hero__float-card { bottom: 14px; left: 14px; }

  /* Steps */
  .ss-steps-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ss-steps-grid--5 { grid-template-columns: repeat(3, 1fr); }

  /* Grids: 3-col → 2-col */
  .ss-testi-grid,
  .ss-serve-grid,
  .ss-related-grid,
  .ss-rec-grid,
  .ss-rg-service-grid { grid-template-columns: repeat(2, 1fr); }

  /* 2-col */
  .ss-wwd-grid { grid-template-columns: 1fr; }
  .ss-stat-col { flex-direction: row; gap: 16px; }
  .ss-stat-block { flex: 1; margin-bottom: 0; }

  .ss-who-grid { grid-template-columns: repeat(2, 1fr); }
  .ss-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ss-honest-grid { grid-template-columns: 1fr; }
  .ss-outdoor-two-col { grid-template-columns: 1fr; }
  .ss-service-split { grid-template-columns: 1fr; }
  .ss-plans-grid { grid-template-columns: 1fr 1fr; }
  .ss-covered-grid { grid-template-columns: 1fr; }
  .ss-ip-why-grid { grid-template-columns: 1fr; }
  .ss-compare-cards { grid-template-columns: 1fr; }

  /* Factor row */
  .ss-factor-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hero */
  .ss-hero { padding: 48px 0 40px; }
  .ss-hero h1 { font-size: 26px; }
  .ss-hero__btns { flex-direction: column; }
  .ss-hero__btns .btn { width: 100%; text-align: center; }

  /* Trust bar */
  .ss-trust-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .ss-trust-item + .ss-trust-item::before { display: none; }

  /* Steps */
  .ss-steps-grid--4,
  .ss-steps-grid--5 { grid-template-columns: 1fr; }

  /* 3-col → 1-col */
  .ss-testi-grid,
  .ss-serve-grid,
  .ss-who-grid,
  .ss-related-grid,
  .ss-rec-grid,
  .ss-rg-service-grid { grid-template-columns: 1fr; }

  /* 2-col → 1-col */
  .ss-why-grid,
  .ss-plans-grid,
  .ss-ip-stat-row,
  .ss-ba-strip,
  .ss-hero__ba-wrap { grid-template-columns: 1fr; }

  /* CTA */
  .ss-cta-band { padding: 48px 0; }
  .ss-cta-band h2 { font-size: 24px; }
  .ss-final-cta { padding: 48px 0; }
  .ss-final-cta h2 { font-size: 24px; }
  .ss-cta-btns { flex-direction: column; align-items: center; }
  .ss-cta-btns .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Crosslink */
  .ss-crosslink-band { padding: 40px 0; }
  .ss-crosslink-btns { flex-direction: column; align-items: center; }

  /* Compare */
  .ss-compare-wrap { border-radius: 8px; }
  .ss-factor-row { grid-template-columns: repeat(2, 1fr); }

  /* Compare cards */
  .ss-compare-cards { grid-template-columns: 1fr; }

  /* Stat col vertical on small */
  .ss-stat-col { flex-direction: column; }

  /* Service split stacked */
  .ss-service-split { grid-template-columns: 1fr; }

  /* Covered grid */
  .ss-covered-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Hero IP visual */
  .ss-ip-plan-pill-row { flex-direction: column; }

  /* Image badge */
  .ss-hw-img-badge { position: static; margin-top: 12px; }

  /* Ticker */
  .ss-ticker__items { animation-duration: 14s; }
}


/* ============================================================
   FORMINATOR FORM — THEME OVERRIDES
   Built from actual rendered HTML of form #529.
   Forminator uses Select2 for dropdowns (not native <select>)
   and .forminator-button-submit (not .forminator-btn-submit).
   ============================================================ */

/* Strip wrapper chrome */
.forminator-custom-form {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Row spacing */
.forminator-custom-form .forminator-row {
  margin-bottom: 16px !important;
}
.forminator-custom-form .forminator-row.forminator-row-last {
  margin-bottom: 0 !important;
}

/* Labels */
.forminator-custom-form .forminator-label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--headline-navy) !important;
  margin-bottom: 6px !important;
  font-family: inherit !important;
}

/* Required asterisk */
.forminator-custom-form .forminator-required {
  color: var(--sky-blue) !important;
}

/* ── Text inputs, email, tel ─────────────────────────────── */
.forminator-custom-form .forminator-input {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1px solid var(--border-grey) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  color: var(--headline-navy) !important;
  font-family: inherit !important;
  background: var(--white) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  outline: none !important;
}
.forminator-custom-form .forminator-input:focus {
  border-color: var(--sky-blue) !important;
  box-shadow: 0 0 0 3px rgba(56,182,232,0.12) !important;
}

/* ── Textarea ─────────────────────────────────────────────── */
.forminator-custom-form .forminator-textarea {
  width: 100% !important;
  resize: vertical !important;
  padding: 11px 14px !important;
  border: 1px solid var(--border-grey) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  color: var(--headline-navy) !important;
  font-family: inherit !important;
  background: var(--white) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  outline: none !important;
}
.forminator-custom-form .forminator-textarea:focus {
  border-color: var(--sky-blue) !important;
  box-shadow: 0 0 0 3px rgba(56,182,232,0.12) !important;
}

/* ── Select2 — the visible rendered dropdown ─────────────── */
/* Forminator hides the native <select> and renders Select2   */
/* The clickable element is .select2-container.forminator-select */

.forminator-custom-form .select2-container.forminator-select {
  width: 100% !important;
}

/* The visible selection box */
.forminator-custom-form .select2-selection--single {
  height: auto !important;
  padding: 11px 36px 11px 14px !important;
  border: 1px solid var(--border-grey) !important;
  border-radius: 6px !important;
  background: var(--white) !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

/* The rendered text / placeholder inside the box */
.forminator-custom-form .select2-selection__rendered {
  font-size: 14px !important;
  color: var(--headline-navy) !important;
  font-family: inherit !important;
  padding: 0 !important;
  line-height: 1.5 !important;
}
.forminator-custom-form .select2-selection__placeholder {
  color: #9ca3af !important;
}

/* Hide Select2's default arrow box, position our own chevron */
.forminator-custom-form .select2-selection__arrow {
  position: absolute !important;
  top: 50% !important;
  right: 12px !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: none !important;
}
.forminator-custom-form .select2-selection__arrow b {
  display: none !important; /* hide default triangle */
}
.forminator-custom-form .forminator-icon-chevron-down {
  font-size: 11px !important;
  color: var(--headline-navy) !important;
  display: block !important;
}

/* Open / focus state */
.forminator-custom-form .select2-container--open .select2-selection--single,
.forminator-custom-form .select2-container--focus .select2-selection--single {
  border-color: var(--sky-blue) !important;
  box-shadow: 0 0 0 3px rgba(56,182,232,0.12) !important;
  outline: none !important;
}

/* Dropdown panel */
.select2-dropdown {
  border: 1px solid var(--sky-blue) !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
  font-family: inherit !important;
  overflow: hidden !important;
}
.select2-results__option {
  font-size: 14px !important;
  font-family: inherit !important;
  color: var(--headline-navy) !important;
  padding: 10px 14px !important;
}
.select2-results__option--highlighted {
  background: var(--sky-blue) !important;
  color: var(--white) !important;
}
.select2-results__option[aria-selected="true"] {
  background: rgba(56,182,232,0.10) !important;
  color: var(--headline-navy) !important;
}

/* ── Error states ─────────────────────────────────────────── */
.forminator-custom-form .forminator-has_error .forminator-input,
.forminator-custom-form .forminator-has_error .forminator-textarea {
  border-color: #e03e3e !important;
  box-shadow: 0 0 0 3px rgba(224,62,62,0.10) !important;
}
.forminator-custom-form .forminator-has_error .select2-selection--single {
  border-color: #e03e3e !important;
  box-shadow: 0 0 0 3px rgba(224,62,62,0.10) !important;
}
.forminator-custom-form .forminator-error-message {
  font-size: 12px !important;
  color: #e03e3e !important;
  margin-top: 4px !important;
  font-weight: 600 !important;
  font-family: inherit !important;
}

/* ── Submit button ────────────────────────────────────────── */
/* Actual class from rendered HTML: .forminator-button-submit  */
.forminator-custom-form .forminator-button-submit {
  display: block !important;
  width: 100% !important;
  background: var(--sky-blue) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 26px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  letter-spacing: 0.3px !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: background 0.2s !important;
  line-height: 1 !important;
  box-shadow: none !important;
  text-transform: none !important;
}
.forminator-custom-form .forminator-button-submit:hover {
  background: #2da8db !important;
}

/* ── Upload button ────────────────────────────────────────── */
.forminator-custom-form .forminator-button-upload {
  display: inline-block !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 9px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.forminator-custom-form .forminator-button-upload:hover {
  background: var(--deep-navy) !important;
}

/* ── Success / response message ───────────────────────────── */
.forminator-custom-form .forminator-response-output {
  font-size: 14px !important;
  font-family: inherit !important;
  border-radius: 6px !important;
  padding: 14px 18px !important;
  margin-top: 16px !important;
}
.forminator-custom-form .forminator-response-output.forminator-success {
  background: rgba(56,182,232,0.10) !important;
  border: 1px solid var(--sky-blue) !important;
  color: var(--headline-navy) !important;
}

/* ── Strip inner Forminator chrome ───────────────────────── */
.forminator-custom-form .forminator-field {
  margin-bottom: 0 !important;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .forminator-custom-form .forminator-row {
    flex-direction: column !important;
  }
  .forminator-custom-form .forminator-col {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .forminator-custom-form .select2-container.forminator-select {
    width: 100% !important;
  }
}

/* ============================================================
   APPLICATOR FORM WRAPPER
   ============================================================ */

.applicator-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.interest-form-heading {
  text-align: center;
  margin-bottom: 36px;
}
.interest-form-heading h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.interest-form-heading p {
  color: rgba(255,255,255,0.70);
  font-size: 15px;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .applicator-form-wrap {
    max-width: 100%;
  }
  .interest-form-heading {
    margin-bottom: 28px;
  }
}

/* ============================================================
   FORMINATOR FORM #530 — APPLICATOR PAGE (NAVY BACKGROUND)
   The applicator form sits inside .section-navy so labels
   need to be white and the field borders slightly lighter
   to read against the dark background.
   ============================================================ */

.section-navy .forminator-custom-form .forminator-label {
  color: rgba(255,255,255,0.90) !important;
}
.section-navy .forminator-custom-form .forminator-required {
  color: var(--sky-blue) !important;
}
.section-navy .forminator-custom-form .forminator-input,
.section-navy .forminator-custom-form .forminator-textarea {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.20) !important;
  color: var(--white) !important;
}
.section-navy .forminator-custom-form .forminator-input::placeholder,
.section-navy .forminator-custom-form .forminator-textarea::placeholder {
  color: rgba(255,255,255,0.38) !important;
}
.section-navy .forminator-custom-form .forminator-input:focus,
.section-navy .forminator-custom-form .forminator-textarea:focus {
  border-color: var(--sky-blue) !important;
  box-shadow: 0 0 0 3px rgba(56,182,232,0.18) !important;
  background: rgba(255,255,255,0.10) !important;
}

/* Select2 on navy */
.section-navy .forminator-custom-form .select2-selection--single {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.20) !important;
}
.section-navy .forminator-custom-form .select2-selection__rendered {
  color: var(--white) !important;
}
.section-navy .forminator-custom-form .select2-selection__placeholder {
  color: rgba(255,255,255,0.38) !important;
}
.section-navy .forminator-custom-form .forminator-icon-chevron-down {
  color: rgba(255,255,255,0.70) !important;
}
.section-navy .forminator-custom-form .select2-container--open .select2-selection--single,
.section-navy .forminator-custom-form .select2-container--focus .select2-selection--single {
  border-color: var(--sky-blue) !important;
  box-shadow: 0 0 0 3px rgba(56,182,232,0.18) !important;
}

/* Error message on navy */
.section-navy .forminator-custom-form .forminator-error-message {
  color: #ff8080 !important;
}

/* Success message on navy */
.section-navy .forminator-custom-form .forminator-response-output.forminator-success {
  background: rgba(56,182,232,0.15) !important;
  border-color: var(--sky-blue) !important;
  color: var(--white) !important;
}

/* ============================================================
   FAQ PAGE — page-faq.php
   ============================================================ */

/* FAQ Teaser on Resources page */
.faq-teaser { text-align: center; max-width: 660px; margin: 0 auto; }
.faq-teaser h2 { margin-bottom: 14px; }

/* Hero anchor pills */
.faq-anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  justify-content: center;
}
.faq-anchor-pill {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 50px;
  color: rgba(255,255,255,0.90);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.faq-anchor-pill:hover {
  background: var(--mid-blue);
  border-color: var(--mid-blue);
  color: var(--white);
}

/* AI Summary strip */
.faq-ai-summary {
  background: var(--ice-blue);
  border-left: 4px solid var(--sky-blue);
  border-radius: 6px;
  padding: 22px 28px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-ai-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mid-blue);
  margin-bottom: 10px;
}
.faq-ai-summary p {
  font-size: 15px;
  color: var(--body-grey);
  line-height: 1.75;
  margin: 0;
}

/* Category heading */
.faq-category-h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--sky-blue);
}

/* Individual Q&A */
.faq-qa {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #F2F4F7;
}
.faq-qa:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.faq-q {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.45;
}
.faq-a {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 12px;
}
.faq-a:last-child { margin-bottom: 0; }
.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 10px;
}
.faq-links a {
  font-size: 14px;
  color: var(--mid-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-links a:hover { color: var(--sky-blue); }

/* Mid-page CTA strip */
.faq-cta-strip {
  background: var(--mid-blue);
  padding: 30px 0;
}
.faq-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-cta-strip-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.faq-cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.faq-cta-strip-actions .btn {
  background: var(--white);
  color: var(--mid-blue);
  border-color: var(--white);
  white-space: nowrap;
}
.faq-cta-strip-actions .btn:hover {
  background: var(--sky-blue);
  color: var(--white);
  border-color: var(--sky-blue);
}
.faq-cta-email {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-cta-email:hover { color: var(--white); }

/* Narrow hero variant for inner pages */
.page-hero--narrow {
  min-height: 260px;
  padding-top: 52px;
  padding-bottom: 52px;
}

@media (max-width: 768px) {
  .faq-cta-strip .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .faq-anchor-pills { gap: 8px; }
  .faq-anchor-pill { font-size: 12px; padding: 7px 16px; }
  .faq-q { font-size: 17px; }
  .faq-category-h2 { font-size: 22px; }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE OPTIMISATION — v1.5  (2026-06-18)
   Gap-fill after full audit. Addresses missing breakpoints and
   class-specific oversights across service + solutions pages.
   ════════════════════════════════════════════════════════════════════ */

/* ── 768px additions ──────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Container: drop to 20px side padding on phones
     (1024px rule pushed it to 32px; 20px gives adequate content width) */
  .container { padding: 0 20px; }

  /* Solutions-page hero buttons (.ss-hero-btns) — distinct from
     .ss-hero__btns on service pages; was missing full-width stacking */
  .ss-hero-btns { flex-direction: column; }
  .ss-hero-btns .btn { width: 100%; text-align: center; }

  /* FAQ answer indent: 44px → 28px so text has more room on narrow screens */
  .ss-faq-answer { padding-left: 28px; }

  /* CTA trust row: tighter gap + slightly smaller text for clean wrapping */
  .ss-cta-trust-row { gap: 6px 14px; }
  .ss-cta-trust-row .trust-item { font-size: 12px; }

  /* Who-we-help card images: shorter in 1-col layout */
  .ss-who-card__image { height: 200px; }
}

/* ── ≤480px: small phones (iPhone SE 375px, 390px, older Androids) ── */
@media (max-width: 480px) {

  /* --- Typography --- */
  h1                { font-size: 22px; }
  h2                { font-size: 18px; }
  .page-hero h1     { font-size: 21px; }
  .ss-hero h1       { font-size: 22px; }

  /* --- Layout --- */
  .section          { padding: 36px 20px; }
  .container        { padding: 0 16px; }
  .page-hero        { padding: 36px 20px; }
  .page-hero--narrow { padding-top: 36px; padding-bottom: 36px; min-height: auto; }
  .hero             { padding: 32px 20px 44px; }

  /* --- Service page hero --- */
  .ss-hero          { padding: 36px 0 28px; }

  /* Float card: hide on tiny screens — prevents overlap on narrow viewports */
  .ss-hero__float-card { display: none; }

  /* --- CTA bands --- */
  .ss-cta-band      { padding: 36px 0; }
  .ss-final-cta     { padding: 36px 0; }
  .ss-cta-band h2,
  .ss-final-cta h2  { font-size: 20px; }
  .ss-cta-band p,
  .ss-final-cta p   { font-size: 14px; }

  /* CTA trust row: single column — avoids cramped side-by-side items */
  .ss-cta-trust-row             { flex-direction: column; align-items: center; gap: 5px; }
  .ss-cta-trust-row .trust-dot  { display: none; }
  .ss-cta-trust-row .trust-item { white-space: normal; text-align: center; font-size: 12px; }

  /* --- Service steps --- */
  .ss-step          { padding: 20px 16px; }
  .ss-step__num     { font-size: 28px; }

  /* --- Inspection plan cards --- */
  .ss-plan-card__header { padding: 22px 18px; }
  .ss-plan-card__body   { padding: 20px 18px; }
  .ss-plan-card__footer { padding: 14px 18px 22px; }

  /* --- Stat numbers --- */
  .ss-stat-num      { font-size: 38px; }
  .ss-ip-stat-num   { font-size: 32px; }

  /* --- FAQ answer: tightest indent --- */
  .ss-faq-answer    { padding-left: 20px; }
  .ss-faq-q h3      { font-size: 15px; }

  /* --- FAQ page --- */
  .faq-q            { font-size: 16px; }
  .faq-a            { font-size: 15px; }
  .faq-category-h2  { font-size: 20px; margin-bottom: 24px; }
  .faq-ai-summary   { padding: 18px 20px; }

  /* --- Crosslink band --- */
  .ss-crosslink-band { padding: 32px 0; }
  .ss-crosslink-btns .btn { width: 100%; max-width: 320px; }

  /* --- Who-card images: further reduce height on tiny phones --- */
  .ss-who-card__image { height: 175px; }

  /* --- Compare table: ensure momentum scrolling on iOS --- */
  .ss-compare-wrap  { -webkit-overflow-scrolling: touch; }
}
