/* ============================================================
   TruView Inspections — Design System
   Brand: #ee7f2a orange · Copper Hewitt Book · Gotham Light · Montserrat · Oswald
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Copper Hewitt';
  src: url('../fonts/cooperhewitt-book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Copper Hewitt', 'Montserrat', -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.875;
  color: #818285;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { text-transform: uppercase; letter-spacing: 1px; text-wrap: balance; }

/* ── Tokens ── */
:root {
  --orange:      #EE7F2A;
  --orange-dark: #d46a18;
  --heading:     #0e0e0e;
  --body:        #818285;
  --muted:       #818285;
  --border:      #EEEFF1;
  --bg-light:    #EEEFF1;
  --bg-dark:     #1a1a1a;
  --white:       #ffffff;
  --radius:      5px;
  --container:   1200px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
}

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
section { padding: 80px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 51px;
  padding: 0 34px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(238,127,42,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--orange);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}
.btn-round { border-radius: 60px; }
.btn-lg { height: 58px; padding: 0 44px; font-size: 14px; }

/* ── Topbar ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar {
  background: var(--heading);
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
}
.topbar-phone span { color: var(--orange); font-weight: 700; }
.topbar-phone a { color: rgba(255,255,255,0.9); }
.topbar-phone a:hover { color: var(--orange); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-social a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.2s;
}
.topbar-social a:hover { color: var(--orange); }

/* ── Navigation ── */
.nav {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav__logo img { height: 64px; width: auto; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__item { position: relative; }
.nav__item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--heading);
  padding: 8px 0;
  transition: color 0.2s;
}
.nav__item > a:hover,
.nav__item > a.active { color: var(--orange); }
.nav__chevron {
  width: 9px; height: 5px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); }
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 260px;
  padding: 8px 0;
  z-index: 200;
}
.nav__item:hover .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--heading);
  border-bottom: 1px solid #EEEFF1;
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { background: #fff8f3; color: var(--orange); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__phone:hover { color: var(--orange); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  width: 24px; height: 2px;
  background: var(--heading);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.nav__mobile.open { display: block; }
.nav__mobile-item a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heading);
  border-bottom: 1px solid #EEEFF1;
}
.nav__mobile-item a:hover { color: var(--orange); background: #fff8f3; }
.nav__mobile-sub {
  display: none;
  background: #f9f9f9;
  padding: 4px 0;
}
.nav__mobile-sub a {
  padding: 10px 40px;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.nav__mobile-item.open .nav__mobile-sub { display: block; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #0e0e0e;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.88;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 100px 0;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero__phone {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.hero__phone:hover { color: var(--orange); }
.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__badges span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 3px;
}

/* ── Trust Strip ── */
.affil-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.affil-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.affil-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body);
  white-space: nowrap;
}
.affil-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.affil-logos img {
  height: 68px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(30%);
  transition: opacity 0.2s, filter 0.2s;
}
.affil-logos img:hover { opacity: 1; filter: none; }

/* ── Section headers (shared pattern) ── */
.sec-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.sec-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sec-sub {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  max-width: 580px;
}
.sec-header { margin-bottom: 48px; }
.sec-header.centered { text-align: center; }
.sec-header.centered .sec-sub { margin: 0 auto; }

/* ── Promise / Intro ── */
.promise { background: #fff; }
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.promise-img {
  overflow: hidden;
  border-radius: 6px;
}
.promise-img img { width: 100%; display: block; border-radius: 6px; }
.promise-list { margin-top: 28px; }
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #EEEFF1;
  font-size: 16px;
  color: var(--body);
}
.promise-list li:last-child { border-bottom: none; }
.promise-check {
  width: 18px; height: 18px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.promise-check svg { color: #fff; }
.promise-certs {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.promise-certs img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(20%);
  transition: opacity 0.2s;
}
.promise-certs img:hover { opacity: 1; filter: none; }

/* ── Video ── */
.video-section { background: var(--bg-light); }
.video-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}
.video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* ── USPs ── */
.usps { background: var(--bg-light); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usp-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 8px;
  border: 1px solid #e4e5e8;
  transition: box-shadow 0.2s, transform 0.2s;
}
.usp-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.usp-num { display: none; }
.usp-icon {
  width: 52px;
  height: 52px;
  background: rgba(238,127,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  flex-shrink: 0;
}
.usp-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.35;
}
.usp-card p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
}

/* ── USP header ── */
.usp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.usp-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.usp-header span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  padding-bottom: 8px;
}

/* ── Services ── */
.services { background: var(--bg-light); }

/* Services header */
.services-header { margin-bottom: 40px; }
.sh-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.sh-row h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.sh-row span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px;
}

/* Feature panel — full width at top, horizontal layout */
.services-feature {
  background: var(--orange);
  border-radius: 10px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.sf-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.sf-body { flex: 1; min-width: 0; }
.sf-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.sf-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}
.sf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 28px;
  height: 48px;
  border-radius: var(--radius);
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s, gap 0.2s;
}
.sf-link:hover { background: rgba(255,255,255,0.9); gap: 12px; }

.sf-icon, .sf-title, .sf-desc { transition: opacity 0.15s ease; }
.services-feature.fading .sf-icon,
.services-feature.fading .sf-title,
.services-feature.fading .sf-desc { opacity: 0; }

/* Services list — 2-column grid below the panel */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e8e8e8;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.services-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.services-list-item:hover,
.services-list-item.active {
  background: #fff8f3;
  box-shadow: inset 3px 0 0 var(--orange);
}
.svc-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  min-width: 24px;
  transition: color 0.15s;
}
.services-list-item:hover .svc-num,
.services-list-item.active .svc-num { color: var(--orange); }
.svc-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  flex: 1;
  line-height: 1.35;
}
.svc-arrow {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s, transform 0.2s;
}
.services-list-item:hover .svc-arrow,
.services-list-item.active .svc-arrow {
  color: var(--orange);
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .services-feature { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
  .services-list { grid-template-columns: 1fr; }
}

/* ── Stats / Live Counter ── */
.stats {
  background: #1a1a1a;
  padding: 72px 0;
  text-align: center;
}
.stats h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.stats .stats-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.counter_main_bg {
  padding: 10px;
  max-width: 580px;
  margin: 0 auto;
  border-radius: 10px;
}
.counter-bg {
  margin: auto;
  padding: 0 18px;
  width: fit-content;
  height: 105px;
  display: flex;
  align-items: center;
  background: #010101;
  border-radius: 4px;
  position: relative;
}
.counter-bg::after {
  position: absolute;
  top: -10px; left: -10px;
  content: "";
  background: linear-gradient(90deg, #001020 0, #003d76 50%, #001020 100%);
  height: 155px;
  width: calc(100% + 20px);
  z-index: -1;
  border-radius: 6px;
}
.counter-number {
  font-size: 57px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  background: #010101;
  background: linear-gradient(180deg, #010101 0%, #4d4d4d 50%, #010101 100%);
  margin: 0 1px;
  line-height: 1;
  text-align: center;
  min-width: 57px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.counter-sep {
  min-width: 24px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 42px;
}
.counter_main_bg { display: flex; justify-content: center; }

@media (max-width: 640px) {
  .counter-number { font-size: 36px; min-width: 36px; height: 60px; line-height: 60px; }
  .counter-bg { padding: 0 12px; height: 80px; }
  .counter-bg::after { height: 120px; }
}
@media (max-width: 480px) {
  .counter-number { font-size: 22px; min-width: 22px; height: 42px; }
  .counter-sep { min-width: 12px; font-size: 20px; }
  .counter_main_bg { max-width: 100%; }
}

/* ── Regions We Serve ── */
.regions { background: var(--bg-light); }
.regions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.rh-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.rh-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.rh-sub {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.region-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e4e5e8;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.region-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(238,127,42,0.1);
  transform: translateY(-2px);
}
.region-icon {
  width: 48px; height: 48px;
  background: rgba(238,127,42,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin: 0 auto 16px;
}
.region-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
  line-height: 1.4;
}
.region-county {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.region-card .phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.region-card .phone:hover { color: var(--orange-dark); }
.region-card .region-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.region-card:hover .region-link { gap: 8px; color: var(--orange); }

/* ── Testimonials ── */
.testimonials { background: #fff; }
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.th-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 12px;
}
.th-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.th-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.th-score {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
}
.th-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.th-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.th-link:hover { opacity: 0.75; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f5a623;
  font-size: 16px;
}
.review-card blockquote {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(238,127,42,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
}
.review-source {
  font-size: 13px;
  color: var(--muted);
}

/* ── FAQ ── */
.faq { background: #fff; }
.faq-header { margin-bottom: 40px; }
.faq-grid { max-width: 100%; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 680px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--orange);
  padding: 60px 0;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.cta-banner h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-top: -8px;
}

/* ── Quote Form ── */
.quote { background: var(--bg-light); }
.quote-inner {
  background: #fff;
  border-radius: 8px;
  padding: 56px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.quote-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heading);
}
.form-group input,
.form-group select {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--body);
  background: #fff;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23818285' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--body);
  background: #fff;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 100px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-full { grid-column: 1 / -1; }
.form-full .btn { width: 100%; }

/* ── Footer ── */
.footer { background: var(--bg-dark); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 56px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul li + li { margin-top: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-phones li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-phones li:last-child { border-bottom: none; }
.footer-phones .region-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}
.footer-col .footer-phones a { color: #ffffff; font-weight: 700; }
.footer-phones a:hover { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--orange); }
.footer-license {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ── Utilities ── */
.text-orange { color: var(--orange); }
.text-white { color: #fff; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .regions-grid { grid-template-columns: repeat(3, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .regions-header { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .sec-title { font-size: 28px; }
  .topbar-phones { display: none; }
  .nav__menu { display: none; }
  .nav__cta .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 520px; }
  .hero__content { padding: 72px 0; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero__actions { gap: 16px; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-left h2 { font-size: 28px; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sh-row h2 { font-size: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quote-inner { padding: 32px 24px; }
  .quote-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 24px; }
  .affil-logos { gap: 24px; }
  .services-feature { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
  .services-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .hero__badges { display: none; }
}

/* ============================================================
   INNER PAGE SHARED STYLES
   ============================================================ */

/* ── Hero variant for inner pages (shorter) ── */
.hero--inner { min-height: 480px; }
.hero--inner .hero__content { padding: 18px 0 17px; }
.hero__content--centered { text-align: center; max-width: 780px; margin: 0 auto; }
.hero__content--centered .hero__sub { margin: 0 auto 36px; }

/* ── Hero bg variant: home inspection page ── */
.hero__bg--home {
  background-image: none;
  background-color: #000;
  opacity: 1;
}

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body);
}
.breadcrumb a { color: var(--body); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span:last-child { color: var(--heading); font-weight: 600; }

/* ── Stats heading (replaces h3 to avoid hierarchy break) ── */
.stats-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 8px;
}

/* ── Service intro ── */
.svc-intro { padding: 80px 0; background: #fff; }
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.svc-intro-copy p,
.svc-intro-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 20px;
}
.svc-intro-copy p:last-child,
.svc-intro-content p:last-child { margin-bottom: 0; }

/* Trust card sidebar (mold, roof, radon, milestone, balcony pages) */
.svc-trust-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 24px;
}
.stc-rating {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f5a623;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.stc-rating span {
  font-size: 15px;
  color: var(--heading);
  font-weight: 600;
}
.stc-count {
  font-size: 13px;
  color: var(--body);
  margin-bottom: 20px;
}
.stc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}
.stc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.stc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--body);
}
.stc-list li:last-child { border-bottom: none; }
.creds-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.creds-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.creds-item:last-child { border-bottom: none; }
.creds-icon {
  width: 40px;
  height: 40px;
  background: rgba(238,127,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.creds-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--body);
  margin-bottom: 2px;
}
.creds-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

/* ── Pricing section ── */
.pricing-section { background: #fff; padding: 80px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(238,127,42,0.12);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-size {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--body);
  margin-bottom: 8px;
}
.pricing-range {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-type {
  font-size: 13px;
  color: var(--body);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--body);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--body);
  margin-top: 8px;
}

/* ── Florida context section ── */
.fl-context { background: var(--bg-dark); padding: 80px 0; }
.fl-context .sec-eyebrow { color: var(--orange); }
.fl-context .sec-title { color: #fff; margin-bottom: 20px; }
.fl-context-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 56px;
}
.fl-context-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.fl-context-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fl-context-item:nth-child(2) { border-right: none; }
.fl-context-item:nth-child(3) { border-bottom: none; }
.fl-context-item:nth-child(4) { border-right: none; border-bottom: none; }
.fl-context-num {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.fl-context-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.fl-context-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ── Light variant of fl-context ── */
.fl-context--light { background: var(--bg-light); }
.fl-context--light .sec-title { color: var(--heading); }
.fl-context--light .sec-eyebrow { color: var(--orange); }
.fl-context--light .fl-context-intro { color: var(--body); }
.fl-context--light .fl-context-grid { border-color: var(--border); }
.fl-context--light .fl-context-item { border-color: var(--border); }
.fl-context--light .fl-context-num { opacity: 1; }
.fl-context--light .fl-context-item h3 { color: var(--heading); }
.fl-context--light .fl-context-item p { color: var(--body); }

/* ── Add-on services ── */
.addons { background: var(--bg-light); padding: 80px 0; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.addons-grid--three {
  max-width: 960px;
  margin: 0 auto;
}
.addon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.addon-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(238,127,42,0.1);
  transform: translateY(-2px);
}
.addon-icon {
  width: 44px;
  height: 44px;
  background: rgba(238,127,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.addon-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.addon-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.addon-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Cities Grid (county pages) ── */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.city-card {
  display: block;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--body);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.city-card:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(238,127,42,0.04);
}

/* ── Responsive: inner page sections ── */
@media (max-width: 1024px) {
  .svc-intro-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 24px; }
  .fl-context-grid { grid-template-columns: 1fr; }
  .fl-context-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fl-context-item:last-child { border-bottom: none; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .addons-grid { grid-template-columns: 1fr; }
  .svc-intro { padding: 48px 0; }
  .pricing-section { padding: 48px 0; }
  .fl-context { padding: 48px 0; }
  .addons { padding: 48px 0; }
}

/* ── What We Inspect grid ── */
.inspect-areas {
  background: var(--bg-light);
  padding: 80px 0;
}
.inspect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.inspect-card {
  background: #fff;
  padding: 32px 28px;
}
.inspect-icon {
  width: 44px;
  height: 44px;
  background: rgba(238,127,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}
.inspect-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.inspect-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inspect-card ul li {
  font-size: 14px;
  color: var(--body);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.inspect-card ul li:last-child { border-bottom: none; }
.inspect-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .inspect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .inspect-grid { grid-template-columns: 1fr; }
  .hero--inner { min-height: 420px; }
}

/* ── Promise items variant (mold / roof / radon / milestone / balcony) ── */
/* When promise-grid contains promise-item cards instead of image+content */
.promise-grid:has(.promise-item) {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: stretch;
}
.promise-item {
  background: #fff;
  padding: 32px 28px;
}
.promise-icon {
  width: 44px;
  height: 44px;
  background: rgba(238,127,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}
.promise-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.promise-item p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
}

/* inspect-section — alias for inspect-areas */
.inspect-section {
  background: var(--bg-light);
  padding: 80px 0;
}
/* inspect-num — large orange number replacing icon */
.inspect-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1;
}
/* inspect-card p — mold-style pages use paragraph instead of ul */
.inspect-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}

/* Pricing section — mold-style pages use .pricing instead of .pricing-section */
.pricing { background: #fff; padding: 80px 0; }
.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--body);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
  line-height: 1;
}
.pricing-intro {
  text-align: center;
  font-size: 16px;
  color: var(--body);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
.pricing-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .promise-grid:has(.promise-item) { grid-template-columns: repeat(2, 1fr); }
  .inspect-section .inspect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .promise-grid:has(.promise-item) { grid-template-columns: 1fr; }
  .inspect-section .inspect-grid { grid-template-columns: 1fr; }
  .pricing .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY CHOOSE US PAGE
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  background: var(--bg-dark);
  padding: 80px 0 72px;
  text-align: center;
}
.page-hero__content { max-width: 780px; margin: 0 auto; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  margin: 16px 0 24px;
}
.page-hero__sub {
  color: #aaa;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Quick trust stat bar ── */
.wcu-stats {
  background: var(--orange);
  padding: 40px 0;
}
.wcu-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.wcu-stat {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.wcu-stat:last-child { border-right: none; }
.wcu-stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.wcu-stat-number span {
  font-size: 28px;
}
.wcu-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── How It Works ── */
.how-it-works {
  background: #fff;
  padding: 80px 0;
}
.how-it-works .sec-eyebrow { text-align: center; }
.how-it-works .sec-title { text-align: center; margin-bottom: 56px; }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.hiw-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.hiw-step:last-child { border-right: none; }
.hiw-num {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 20px;
}
.hiw-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.hiw-step p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
}

/* ── Certifications ── */
.wcu-certs {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}
.wcu-certs .sec-eyebrow { margin-bottom: 8px; }
.wcu-certs .sec-title { margin-bottom: 16px; }
.wcu-license {
  margin-top: 32px;
  font-size: 13px;
  color: var(--body);
  letter-spacing: 0.5px;
}

/* ── Responsive: Why Choose Us page ── */
@media (max-width: 1024px) {
  .wcu-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .wcu-stat { border-bottom: 1px solid rgba(255,255,255,0.25); }
  .wcu-stat:nth-child(2) { border-right: none; }
  .wcu-stat:nth-child(3) { border-bottom: none; }
  .wcu-stat:last-child { border-bottom: none; }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-step:nth-child(2) { border-right: none; }
  .hiw-step:nth-child(3) { border-top: 1px solid var(--border); }
  .hiw-step:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 640px) {
  .wcu-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); }
  .hiw-step:last-child { border-bottom: none; }
  .page-hero { padding: 56px 0 48px; }
}
