/* ================================================================
   TRUE SHINES CLEANING — VARIANT E · CORPORATE
   "Jani-King / ServiceMaster energy"
   Palette: Royal Blue #0d4ea2 + Bright Red #e63946 + White
   Type:    Helvetica Neue (system) bold sans
   ================================================================ */

:root {
  --blue: #0d4ea2;
  --blue-dark: #073774;
  --blue-deep: #04254d;
  --blue-light: #e6eef9;
  --blue-50: #f4f7fc;
  --red: #e63946;
  --red-dark: #b8222e;
  --white: #ffffff;
  --ink: #0a1a2c;
  --ink-soft: #3a4a5e;
  --line: #d6dde8;
  --gray-50: #f7f8fa;
  --gray-100: #eceff4;
  --gray-200: #d8dde6;
  --shadow-sm: 0 1px 2px rgba(10, 26, 44, 0.06);
  --shadow-md: 0 4px 14px rgba(10, 26, 44, 0.10);
  --shadow-lg: 0 10px 32px rgba(10, 26, 44, 0.14);
  --radius: 4px;
  --container: 1200px;
  --gutter: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--blue { background: var(--blue); color: var(--white); }
.section--ink { background: var(--ink); color: var(--white); }
.section--gray { background: var(--gray-50); }
.section--blue-50 { background: var(--blue-50); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.section--blue .eyebrow,
.section--ink .eyebrow { color: #ffd0d4; }
.section--blue .eyebrow::before,
.section--ink .eyebrow::before { background: var(--red); }

.section__head { max-width: 720px; margin-bottom: 40px; }
.section__head h2 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.section__head p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.section--blue .section__head p,
.section--ink .section__head p { color: rgba(255, 255, 255, 0.85); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn--white:hover { background: var(--gray-50); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--blue); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER (top utility bar + nav)
   ============================================================ */
.utility {
  background: var(--blue-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.utility__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  flex-wrap: wrap;
  gap: 8px;
}
.utility__left { display: flex; gap: 18px; align-items: center; }
.utility__left span { display: inline-flex; align-items: center; gap: 6px; }
.utility__right { display: none; gap: 16px; }
.utility__right a { color: var(--white); text-decoration: none; }
.utility__right a:hover { text-decoration: underline; }

.nav {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand:hover { text-decoration: none; }
.nav__logo {
  width: 40px; height: 40px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav__logo svg { width: 26px; height: 26px; }
.nav__brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav__brand-name {
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink);
}
.nav__brand-sub {
  font-size: 10px; font-weight: 700; color: var(--red);
  letter-spacing: 0.16em; text-transform: uppercase;
}

.nav__links { display: none; }
.nav__links a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  text-decoration: none;
}
.nav__cta { display: none; gap: 8px; align-items: center; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.nav__phone:hover { color: var(--blue); }
.nav__phone svg { width: 16px; height: 16px; }

.nav__burger {
  width: 44px; height: 44px;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger span:nth-child(1) { transform: translate(-50%, -8px); }
.nav__burger span:nth-child(3) { transform: translate(-50%, 6px); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.nav__drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a.is-active { color: var(--blue); background: var(--blue-50); }
.nav__drawer-cta { padding: 16px 20px; display: grid; gap: 8px; }

body.nav-locked { overflow: hidden; }

/* ============================================================
   HERO (Variant E signature)
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  color: var(--white);
  overflow: hidden;
  background: var(--blue-deep);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(4, 37, 77, 0.92) 0%, rgba(13, 78, 162, 0.78) 60%, rgba(13, 78, 162, 0.4) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 80px;
  max-width: 760px;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.hero__kicker::before {
  content: '🛡️'; font-size: 14px;
}
.hero__title {
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 900;
}
.hero__title em {
  font-style: normal;
  color: #ffd0d4;
}
.hero__lede {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 580px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.hero__trust-item svg { width: 16px; height: 16px; color: #ffd0d4; }

/* "EST. 1969" pedigree stamp — Variant E signature */
.stamp {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  width: 200px;
  height: 200px;
  z-index: 3;
  pointer-events: none;
}
.stamp__ring {
  position: absolute; inset: 0;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(4, 37, 77, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}
.stamp__top {
  position: absolute;
  top: 22px; left: 0; right: 0;
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 800;
  color: var(--ink);
}
.stamp__year {
  font-size: 56px;
  letter-spacing: -0.04em;
  margin-top: 4px;
}
.stamp__label {
  font-size: 10px;
  letter-spacing: 0.32em;
  font-weight: 800;
  color: var(--ink);
  margin-top: 4px;
}
.stamp__bottom {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  font-size: 9px;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--ink);
}
.stamp__mid-shield {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 44px;
  margin-top: -2px;
}
.stamp__mid-shield svg { width: 100%; height: 100%; color: var(--red); }

/* Service-area band (above the fold) */
.area-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.area-band__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.area-band__label { color: var(--red); }
.area-band__sep { color: var(--line); }

/* Trust strip below hero */
.trust-strip {
  background: var(--ink);
  color: var(--white);
  padding: 16px 0;
}
.trust-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-strip__row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip__row svg { width: 14px; height: 14px; color: var(--red); }
.trust-strip__sep { color: rgba(255, 255, 255, 0.3); }

/* ============================================================
   SHIELD ICONS
   ============================================================ */
.shield {
  display: inline-block;
  flex-shrink: 0;
}
.shield svg { width: 100%; height: 100%; }
.shield--sm { width: 18px; height: 22px; }
.shield--md { width: 28px; height: 32px; }
.shield--lg { width: 48px; height: 56px; }
.shield--xl { width: 72px; height: 84px; }
.shield--blue svg { color: var(--blue); }
.shield--white svg { color: var(--white); }
.shield--red svg { color: var(--red); }
.shield--ink svg { color: var(--ink); }

/* ============================================================
   CERTIFICATIONS WALL
   ============================================================ */
.cert-wall {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}
.cert-wall__head {
  text-align: center;
  margin-bottom: 24px;
}
.cert-wall__head h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.cert-wall__head p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--blue-50);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 18px 12px;
  gap: 8px;
}
.cert-card__seal {
  width: 56px; height: 64px;
  background: var(--blue);
  color: var(--white);
  border-radius: 4px 4px 50% 50% / 4px 4px 30% 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.1;
  padding: 6px 4px;
}
.cert-card__name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.cert-card__detail {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* ============================================================
   SERVICE CARDS (5-up grid)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-card__lede { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.service-card__list {
  display: grid; gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}
.service-card__list li {
  display: flex; align-items: flex-start; gap: 8px;
}
.service-card__list li::before {
  content: '🛡️'; font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-card__price-label { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }
.service-card__price-val { font-size: 22px; font-weight: 900; color: var(--blue); }
.service-card__price-unit { font-size: 12px; color: var(--ink-soft); }

/* ============================================================
   3-TIER COMPARE TABLE (GOOD / BETTER / BEST)
   ============================================================ */
.tier-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.tier-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.tier-table thead th {
  padding: 0;
  text-align: center;
  border-bottom: 3px solid var(--blue);
  background: var(--white);
  position: relative;
}
.tier-table thead th:first-child {
  background: var(--ink);
  color: var(--white);
  text-align: left;
  padding: 16px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 30%;
  border-bottom-color: var(--ink);
}
.tier-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 16px 16px;
}
.tier-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.tier-head--good { background: var(--gray-100); }
.tier-head--better { background: var(--blue-50); }
.tier-head--best { background: var(--blue); color: var(--white); }
.tier-head--best .tier-name,
.tier-head--best .tier-tag { color: var(--white); }
.tier-price { font-size: 26px; font-weight: 900; color: var(--blue); }
.tier-head--best .tier-price { color: var(--white); }
.tier-price-unit { font-size: 11px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.06em; }
.tier-head--best .tier-price-unit { color: rgba(255, 255, 255, 0.85); }
.tier-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 8px;
  border-radius: var(--radius);
  margin-top: 4px;
}
.tier-cta { padding: 12px 16px; }

.tier-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  vertical-align: middle;
}
.tier-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  background: var(--gray-50);
  width: 30%;
}
.tier-table tbody tr:last-child td { border-bottom: none; }
.tier-table tbody tr:hover td:not(:first-child) { background: var(--blue-50); }
.tier-check { color: var(--blue); font-size: 18px; font-weight: 900; }
.tier-x { color: var(--gray-200); font-size: 18px; }
.tier-table tbody td.tier-cell--best { background: rgba(13, 78, 162, 0.04); font-weight: 700; }
.tier-table tbody tr:hover td.tier-cell--best { background: rgba(13, 78, 162, 0.10); }

.tier-section-row td {
  background: var(--ink) !important;
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px !important;
  text-align: left !important;
}

/* ============================================================
   PARTNER LOGOS (text SVG strip)
   ============================================================ */
.partners {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.partners__head {
  text-align: center;
  margin-bottom: 28px;
}
.partners__head h3 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 800;
}
.partners__head p {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 18px;
  filter: grayscale(0.2);
  opacity: 0.9;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }
.partner-logo svg { height: 28px; width: auto; max-width: 100%; }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--blue-light);
}
.team-card__body { padding: 18px 20px; }
.team-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  display: flex; align-items: center; gap: 6px;
}
.team-card__name svg { width: 16px; height: 16px; color: var(--red); }
.team-card__role {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 4px 0 8px;
}
.team-card__bio { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.t-card__stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 2px;
}
.t-card__quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.t-card__quote::before { content: '“'; color: var(--blue); font-size: 28px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.t-card__person {
  display: flex; align-items: center; gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.t-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.t-card__name { font-size: 14px; font-weight: 800; color: var(--ink); }
.t-card__meta { font-size: 12px; color: var(--ink-soft); }
.t-card__source {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-top: 4px;
}

/* ============================================================
   STATS BLOCK
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-last-child(-n+2) { border-bottom: none; }
.stat__num {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.stat__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-step__num {
  position: absolute;
  top: -14px; left: 18px;
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 16px;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-top: 8px;
}
.process-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   VALUES
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.value-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 17px; }
.value-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--blue);
  background-image:
    radial-gradient(circle at 90% 50%, rgba(230, 57, 70, 0.18), transparent 50%),
    linear-gradient(110deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.cta-banner h2 {
  font-size: 32px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p { font-size: 16px; color: rgba(255, 255, 255, 0.9); }
.cta-banner__ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-banner__seal {
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 140px; height: 140px;
  pointer-events: none;
}
.cta-banner__seal-inner {
  width: 100%; height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  line-height: 1;
}
.cta-banner__seal-est {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 800;
}
.cta-banner__seal-year {
  font-size: 36px;
  font-weight: 900;
  margin: 4px 0;
}
.cta-banner__seal-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  font-weight: 700;
}

/* ============================================================
   PROTECTED & INSURED CALLOUT
   ============================================================ */
.protected {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.protected__head {
  display: flex; align-items: center; gap: 18px;
}
.protected__shield {
  width: 64px; height: 76px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 4px 4px 50% 50% / 4px 4px 30% 30%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.protected__shield svg { width: 32px; height: 32px; }
.protected__title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
}
.protected__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}
.protected__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.protected__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.protected__list li:last-child { border-bottom: none; }
.protected__list li svg { width: 16px; height: 16px; color: #ffd0d4; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   SERVICE HERO (for inner pages)
   ============================================================ */
.page-hero {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__crumb {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.page-hero__crumb a { color: var(--white); text-decoration: none; }
.page-hero h1 {
  font-size: 44px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 900;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

/* ============================================================
   BEFORE/AFTER GALLERY
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ba-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ba-card__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-card__cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ba-card__cell img { width: 100%; height: 100%; object-fit: cover; }
.ba-card__label {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius);
}
.ba-card__label--after { background: var(--red); }
.ba-card__body { padding: 16px 20px; }
.ba-card__title { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.ba-card__meta { font-size: 12px; color: var(--ink-soft); }

/* ============================================================
   THIRD-PARTY REVIEW BADGES
   ============================================================ */
.review-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.review-badge__logo {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.review-badge--google .review-badge__logo { background: #4285f4; }
.review-badge--yelp .review-badge__logo { background: #d32323; }
.review-badge--bbb .review-badge__logo { background: #005a78; }
.review-badge__body { display: flex; flex-direction: column; gap: 2px; }
.review-badge__name { font-size: 15px; font-weight: 800; color: var(--ink); }
.review-badge__rating { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.review-badge__rating .stars { color: var(--red); letter-spacing: 1px; }
.review-badge__count { font-size: 11px; color: var(--ink-soft); }

/* ============================================================
   CONTACT FORM (mailto) + MAP
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}
.contact-form h2 {
  font-size: 22px;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.contact-form h2 svg { width: 22px; height: 22px; color: var(--red); }
.contact-form__sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 40px; height: 40px;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.contact-card__body { font-size: 15px; color: var(--ink); line-height: 1.5; font-weight: 600; }
.contact-card__body a { color: var(--blue); text-decoration: none; }
.contact-card__body a:hover { text-decoration: underline; }

.map-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=70');
  background-size: cover;
  background-position: center;
}
.map-card__overlay {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.map-card__overlay svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

/* ============================================================
   SERVICE AREA (25 neighbourhoods)
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
  font-size: 14px;
}
.area-grid li {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}
.area-grid li::before {
  content: '📍'; font-size: 12px; flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item.is-open { box-shadow: var(--shadow-md); border-left-color: var(--red); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.faq-q__icon {
  width: 24px; height: 24px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.faq-item.is-open .faq-q__icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq-item.is-open .faq-a { display: block; }

/* ============================================================
   PRICING TABLE (services.html)
   ============================================================ */
.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.price-table { width: 100%; min-width: 640px; border-collapse: collapse; }
.price-table th,
.price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.price-table th {
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: none;
}
.price-table th:not(:first-child),
.price-table td:not(:first-child) { text-align: right; font-weight: 700; }
.price-table tbody tr:hover { background: var(--blue-50); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table__service { font-weight: 800; color: var(--ink); }
.price-table__sub { display: block; font-size: 12px; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__col ul li { padding: 4px 0; }
.footer__col a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer__col a:hover { color: var(--white); }
.footer__brand p { font-size: 13px; line-height: 1.5; margin: 10px 0 14px; }
.footer__brand .nav__brand { color: var(--white); }
.footer__brand .nav__brand-name { color: var(--white); }
.footer__contact { font-size: 13px; line-height: 1.6; }
.footer__contact strong { color: var(--white); }
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer__badges span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.footer__seal svg { width: 18px; height: 18px; color: var(--red); }

/* ============================================================
   ANIMATION (slide-in on scroll, IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .stamp { animation: none; }
}

/* ============================================================
   RESPONSIVE — 640 / 860 / 1100
   ============================================================ */
@media (min-width: 640px) {
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }
  .section--tight { padding: 56px 0; }
  .section__head h2 { font-size: 44px; }
  .hero__title { font-size: 64px; }
  .hero__inner { padding: 88px 0 96px; }
  .stamp { width: 220px; height: 220px; right: 4%; }
  .stamp__year { font-size: 60px; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat { border-right: 1px solid rgba(255, 255, 255, 0.18); border-bottom: none; }
  .stat:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.18); }
  .stat:last-child { border-right: none; }
  .stat__num { font-size: 56px; }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .review-badges { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner h2 { font-size: 40px; }
  .cta-banner__seal { width: 170px; height: 170px; }
  .cta-banner__seal-year { font-size: 44px; }
  .protected__list { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row--2col { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 54px; }
}

@media (min-width: 860px) {
  .utility__right { display: flex; }
  .nav__links { display: flex; gap: 2px; }
  .nav__cta { display: flex; }
  .nav__burger { display: none; }
  .hero { min-height: 720px; }
  .hero__title { font-size: 76px; }
  .hero__inner { padding: 110px 0 120px; max-width: 780px; }
  .stamp { width: 240px; height: 240px; }
  .stamp__year { font-size: 68px; }
  .section__head h2 { font-size: 52px; }
  .cert-grid { grid-template-columns: repeat(5, 1fr); }
  .partners__grid { grid-template-columns: repeat(6, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .t-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(5, 1fr); }
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .cta-banner__inner { grid-template-columns: 2fr 1fr; gap: 40px; }
  .cta-banner h2 { font-size: 48px; }
  .cta-banner__seal { position: static; transform: none; width: 200px; height: 200px; justify-self: end; }
  .protected { grid-template-columns: 1fr 1.4fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero { padding: 88px 0 80px; }
  .page-hero h1 { font-size: 64px; }
  .map-card { height: 360px; }
}

@media (min-width: 1100px) {
  .container { padding: 0 32px; }
  .section { padding: 96px 0; }
  .hero { min-height: 760px; }
  .hero__title { font-size: 88px; }
  .hero__inner { padding: 130px 0 140px; }
  .stamp { width: 260px; height: 260px; right: 6%; }
  .stamp__year { font-size: 72px; }
  .section__head h2 { font-size: 60px; }
  .cert-grid { gap: 20px; }
  .cert-card { padding: 24px 18px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat__num { font-size: 64px; }
  .partners__grid { gap: 20px; }
  .team-grid { gap: 24px; }
  .t-grid { gap: 24px; }
  .ba-grid { gap: 24px; }
  .service-grid { gap: 24px; }
  .area-grid { grid-template-columns: repeat(5, 1fr); }
  .form-row--2col { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 72px; }
}
