/* ============================================================
   TRUE FLOW POOL SOLUTIONS — styles.css
   Brand Design System v2. Mobile-first. No framework.
   ============================================================ */

/* ----- self-hosted fonts ----------------------------------------- */
@font-face { font-family: "Libre Baskerville"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/LibreBaskerville-regular.ttf") format("truetype"); }
@font-face { font-family: "Libre Baskerville"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/LibreBaskerville-italic.ttf") format("truetype"); }
@font-face { font-family: "Libre Baskerville"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/LibreBaskerville-bold.ttf") format("truetype"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/Inter-regular.ttf") format("truetype"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/Inter-bold.ttf") format("truetype"); }

:root {
  /* ── South Beach Boutique palette ─────────────────────────────
     Vibrant aqua + cyan ocean blues, warm sand neutrals,
     sun-kissed gold. Think Miami pool water at noon.
  ──────────────────────────────────────────────────────────────── */

  /* Core brand */
  --tf-cerulean:     #0b4f6c;   /* deep ocean — hero/dark sections */
  --tf-navy:         #062840;   /* midnight — footer */
  --tf-aqua-soft:    #c8eef8;   /* shallow water shimmer */
  --tf-sand:         #f5ead8;   /* warm beach sand */
  --tf-saffron:      #c9a96e;   /* sun-kissed gold */
  --tf-white:        #ffffff;

  /* Blues — vivid, coastal, saturated */
  --tf-cerulean-700: #083d56;
  --tf-cerulean-600: #0d6080;
  --tf-cerulean-500: #1a7fa0;
  --tf-aqua:         #7dd4ea;   /* bright sky/lagoon blue */
  --tf-aqua-600:     #2db5d5;   /* vivid mid aqua */
  --tf-ocean:        #1a9fc4;   /* signature pool-water cyan */
  --tf-ocean-700:    #0f7a9a;   /* deeper ocean */
  --tf-aqua-050:     #e4f7fc;   /* airy aqua wash */

  /* Neutrals — warm sand, not cool grey */
  --tf-ink-900:      #062840;
  --tf-ink-700:      #1a4a62;
  --tf-ink-500:      #4d7d93;
  --tf-ink-400:      #7fa3b5;
  --tf-ink-300:      #a8c8d8;
  --tf-ink-200:      #cce3ec;
  --tf-ink-100:      #e3f2f7;
  --tf-ink-050:      #f2fafc;

  /* Semantic roles */
  --bg-page:         #fffdf9;   /* warm cream white, not clinical */
  --surface-trust:   #c8eef8;   /* aqua wash band */
  --surface-deep:    #0b4f6c;   /* deep ocean sections */
  --surface-deepest: #062840;   /* footer */
  --text-strong:     #062840;   /* headlines */
  --text-body:       #1a4a62;   /* body — ocean-tinted, not grey */
  --text-muted:      #4d7d93;   /* secondary */
  --text-on-dark:    #d8f2fb;   /* on deep/midnight sections */
  --text-link:       #1a9fc4;   /* cyan links */
  --cta-bg:          #c9a96e;   /* warm gold */
  --cta-bg-hover:    #a8844e;   /* gold hover */
  --cta-text:        #ffffff;   /* white on gold */

  /* Effects */
  --shadow-sm:       0 1px 3px rgba(6,40,64,0.08), 0 1px 2px rgba(6,40,64,0.05);
  --shadow-md:       0 6px 16px -6px rgba(11,79,108,0.18), 0 2px 6px -2px rgba(11,79,108,0.10);
  --shadow-lg:       0 18px 40px -12px rgba(11,79,108,0.24), 0 6px 14px -8px rgba(11,79,108,0.12);
  --radius-sm:       6px;
  --radius-md:       10px;
  --radius-lg:       16px;
  --radius-pill:     999px;
  --ease-standard:   cubic-bezier(0.4,0,0.2,1);
  --duration-base:   200ms;

  /* Typography */
  --font-display:    "Libre Baskerville", Georgia, serif;
  --font-sans:       "Inter", system-ui, sans-serif;

  /* Layout & legacy compatibility */
  --max-w:           1120px;
  --border:          rgba(6,40,64,0.10);
  --border-blue:     rgba(26,159,196,0.22);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.65;
  font-size: 1.0625rem;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tf-ink-400);
  margin-bottom: 0.85rem;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: var(--cta-bg);
  color: var(--cta-text);
}
.btn-gold:hover { background: var(--cta-bg-hover); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--tf-white);
}
.btn-outline-white:hover { border-color: var(--tf-white); background: rgba(255,255,255,0.10); }

.btn-outline-blue {
  background: transparent;
  border: 1.5px solid var(--tf-ocean);
  color: var(--tf-ocean);
}
.btn-outline-blue:hover { background: var(--tf-ocean); color: var(--tf-white); }

.btn-outline-deep {
  background: transparent;
  border: 1.5px solid var(--tf-cerulean);
  color: var(--tf-cerulean);
}
.btn-outline-deep:hover { background: var(--tf-cerulean); color: var(--tf-white); }

/* text-style CTA links */
.cta-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tf-ocean);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s, gap 0.2s;
}
.cta-link:hover { color: var(--tf-cerulean); gap: 0.5rem; }
.cta-link::after { content: '→'; }

/* ============================================================
   SECTION BASES
============================================================ */
.section     { padding: 5.5rem 0; }
.section-sm  { padding: 3.5rem 0; }

/* Editorial lifestyle image band */
.editorial-image-band {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.editorial-image {
  width: 100%;
  height: clamp(260px, 40vw, 560px);
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.bg-white    { background: var(--tf-white); }
/* Sand-background sections: use bg-cream or bg-stone. bg-sand is NOT defined — do not add it. */
.bg-cream    { background: var(--tf-sand); }
.bg-stone    { background: var(--tf-sand); }
.bg-blue-soft { background: var(--tf-aqua-050); }
.bg-deep     { background: var(--tf-cerulean); color: var(--tf-white); }
.bg-darkest  { background: var(--tf-navy); color: var(--tf-white); }

.section-header              { max-width: 680px; margin-bottom: 3rem; }
.section-header.centered     { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p            { margin-top: 0.85rem; font-size: 1.02rem; font-weight: 300; line-height: 1.8; color: var(--text-muted); }
.bg-deep .section-header p   { color: rgba(255,255,255,0.68); }
.bg-darkest .section-header p { color: rgba(255,255,255,0.60); }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.nav-logo {
  height: 90px;
  max-width: 260px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Slightly smaller on tighter desktops */
@media (max-width: 1100px) {
  .nav-logo { height: 78px; max-width: 230px; }
}

/* Mobile — keep it readable without crowding the hamburger */
@media (max-width: 599px) {
  .nav-logo { height: 64px; max-width: 195px; }
}

.nav-links {
  display: none;
  gap: 1.6rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--tf-ocean); }

.nav-cta-group {
  display: none;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Header buttons — tall enough to feel premium, compact enough to fit */
.nav-cta-group .btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-strong);
  border-radius: 1px;
  transition: all 0.25s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--tf-white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.75rem;
}
.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-strong);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-drawer a:last-child { border: none; }

.nav-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.nav-drawer-actions .btn { width: 100%; text-align: center; }

@media (min-width: 900px) {
  .nav-links       { display: flex; }
  .nav-cta-group   { display: flex; }
  .nav-hamburger   { display: none; }
  .nav-drawer      { display: none !important; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  background: var(--tf-cerulean);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/true-flow-residential-pool-services-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
  max-width: 660px;
}

.hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }

.hero h1 {
  color: var(--tf-white);
  margin-bottom: 1.35rem;
  /* Constrain width so the headline breaks into three balanced lines:
     "Pool Repair Service"
     "in Round Rock"
     "Made Simple"
     Avoids a single-word dangler on the last line. */
  max-width: 520px;
}
.hero h1 em { font-style: italic; color: var(--tf-aqua); }

.hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-call-nudge {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
}
.hero-call-nudge a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-call-nudge a:hover { color: var(--tf-white); }

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--cta-bg);
  margin: 2.5rem 0 1.75rem;
  opacity: 0.75;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
}
.hero-stars { color: var(--cta-bg); letter-spacing: 3px; font-size: 0.78rem; }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--tf-aqua);
  padding: 1.1rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 3rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tf-cerulean);
}
.trust-item svg { flex-shrink: 0; }

/* ============================================================
   ROUTING CARDS
============================================================ */
.routing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 560px) { .routing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .routing-grid { grid-template-columns: repeat(3, 1fr); } }

.routing-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--tf-white);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.18s;
  text-decoration: none;
  color: var(--text-strong);
}

.routing-card:hover { background: var(--tf-aqua-050); }

.routing-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--tf-aqua-050);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  transition: background 0.18s;
}
.routing-card:hover .routing-card-icon { background: var(--tf-aqua); }
.routing-card-icon svg { width: 18px; height: 18px; color: var(--tf-ocean); }

.routing-card h3 { font-size: 1.05rem; color: var(--text-strong); }
.routing-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; flex: 1; }

.routing-card .cta-link { margin-top: 0.75rem; }

/* ============================================================
   SERVICE CARDS
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--cta-bg);
  /* Full flex column so price + CTA pin to the bottom */
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card-rule { margin-bottom: 1.1rem; }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

/* Description grows to fill available space, aligning price rows */
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
  flex: 1;                  /* pushes price + CTA to bottom */
  min-height: 4.5rem;       /* keeps card height consistent at desktop */
}

.service-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tf-cerulean);
  letter-spacing: 0.04em;
  margin-top: 1.1rem;
  white-space: nowrap;
}

.service-card .cta-link {
  margin-top: 0.85rem;
  white-space: nowrap;      /* prevent CTA label from wrapping */
}

/* Hub links row */
.hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.hub-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tf-cerulean);
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hub-link::after { content: '→'; color: var(--tf-ocean); }
.hub-link:hover { background: var(--tf-ocean); color: var(--tf-white); border-color: var(--tf-ocean); }
.hub-link:hover::after { color: var(--tf-white); }

/* ============================================================
   WHY SECTION
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item {}
.why-icon { width: 36px; height: 36px; margin-bottom: 1rem; color: var(--tf-aqua); }
.why-item h3 { font-size: 1.05rem; color: var(--tf-white); margin-bottom: 0.4rem; }
.why-item p  { font-size: 0.9rem; color: rgba(255,255,255,0.80); line-height: 1.75; font-weight: 300; }

/* ============================================================
   BRANDS SECTION
============================================================ */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2.5rem 0 2rem;
}

.brand-badge {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  background: var(--tf-white);
}

.brands-support {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 680px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step {
  padding: 2.75rem 2.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--tf-white);
}
@media (min-width: 680px) {
  .step { border-bottom: none; border-right: 1px solid var(--border); }
  .step:last-child { border-right: none; }
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--tf-ocean);
  opacity: 0.80;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ============================================================
   REVIEWS CAROUSEL
============================================================ */
.reviews-section { overflow: hidden; }

.carousel-wrapper {
  position: relative;
}

.carousel-track-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.35s ease;
}

.review-card {
  flex: 0 0 100%;
  padding: 2rem 1.75rem;
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--tf-aqua);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px)  { .review-card { flex: 0 0 calc(50% - 0.625rem); } }
@media (min-width: 960px)  { .review-card { flex: 0 0 calc(33.333% - 0.834rem); } }

.review-source {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.review-source svg { width: 12px; height: 12px; }

.review-stars  { color: var(--cta-bg); font-size: 0.85rem; letter-spacing: 3px; }
.review-text   { font-family: var(--font-display); font-style: italic; font-size: 0.97rem; color: var(--text-body); line-height: 1.7; flex: 1; }
.review-author { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted); }
.review-service-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--tf-ocean);
  background: var(--tf-aqua-050);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-blue);
  background: var(--tf-white);
  color: var(--tf-cerulean);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--tf-ocean); border-color: var(--tf-ocean); color: var(--tf-white); }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-btn svg { width: 16px; height: 16px; }

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-blue);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--tf-ocean);
  transform: scale(1.3);
}

.carousel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ============================================================
   FAQ
============================================================ */
.faq-list  {
  max-width: 740px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--tf-white);
}

details.faq-item {
  border-bottom: 1px solid var(--border);
}
details.faq-item:last-child {
  border-bottom: none;
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
details.faq-item[open] .faq-question {
  background: var(--tf-aqua-050);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-strong);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.5;
  transition: background 0.15s;
}
.faq-question:hover {
  color: var(--tf-ocean);
  background: var(--tf-aqua-050);
}

.faq-icon {
  color: var(--cta-bg);
  font-size: 1.1rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 300;
  background: var(--tf-aqua-050);
}
.faq-answer a {
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

/* ============================================================
   FINAL CTA BAND
============================================================ */
.cta-band {
  background: var(--tf-ocean);
  padding: 6rem 0;
  text-align: center;
}
.cta-band .eyebrow { color: var(--tf-aqua); }
.cta-band h2 { color: var(--tf-white); margin-bottom: 1rem; }
.cta-band p  {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.cta-call-link {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
}
.cta-call-link a { color: var(--tf-white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--tf-navy);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Larger footer logo */
.footer-logo { height: 52px; width: auto; margin-bottom: 1.35rem; }

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-weight: 300;
  max-width: 290px;
}

.footer-contact {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--cta-bg); }

.footer-service-area {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cta-bg);
  margin-bottom: 1.25rem;
}
.footer-col h4 a { color: inherit; text-decoration: none; }
.footer-col h4 a:hover { color: rgba(212,175,127,0.75); }

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.95); }

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.80); }

/* ============================================================
   SERVICE AREA MAP SECTION
============================================================ */
.service-map-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .service-map-inner {
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .service-map-inner {
    gap: 4.5rem;
  }
}

.service-map-content h2 {
  margin-bottom: 1.25rem;
}

.service-map-body {
  color: var(--tf-cerulean);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-map-secondary {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.service-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.service-map-embed {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,38,59,0.10);
  line-height: 0;
}

.service-map-iframe {
  display: block;
  width: 100%;
  height: 280px;
  aspect-ratio: auto;
  border: 0;
}
@media (min-width: 768px) {
  .service-map-iframe {
    height: 360px;
    aspect-ratio: 16 / 9;
  }
}
@media (min-width: 1024px) {
  .service-map-iframe {
    height: 420px;
    aspect-ratio: 16 / 9;
  }
}

/* ============================================================
   UTILITIES
============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ============================================================
   MOBILE STICKY CTA
   Hidden on desktop. Fixed bottom bar on mobile only.
   z-index 150 keeps it below the nav drawer (200).
============================================================ */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: var(--tf-white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 12px rgba(6,40,64,0.10);
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    gap: 0.6rem;
    align-items: stretch;
  }

  .mobile-sticky-cta .btn {
    flex: 1;
    padding: 0.85rem 0.5rem;
    font-size: 0.74rem;
    white-space: nowrap;
    text-align: center;
  }

  /* Add bottom padding so sticky bar never covers page content */
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

@media print {
  .mobile-sticky-cta { display: none !important; }
}


/* ============================================================
   PRICING PAGE
   Merged from pricing.css
============================================================ */

.pricing-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-company-pricing-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.05);
}

.pricing-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  pointer-events: none;
}

.pricing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.pricing-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }

.pricing-hero h1 {
  color: var(--tf-white);
  margin-bottom: 1.25rem;
}

.pricing-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.pricing-routing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 560px) {
  .pricing-routing-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .pricing-routing-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-routing-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--tf-white);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.18s;
  text-decoration: none;
  color: var(--text-strong);
}

.pricing-routing-card:hover { background: var(--tf-aqua-050); }
.pricing-routing-card:hover .routing-card-icon { background: var(--tf-aqua); }
.pricing-routing-card h3 { font-size: 1.05rem; color: var(--text-strong); }
.pricing-routing-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; flex: 1; }
.pricing-routing-card .cta-link { margin-top: 0.75rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}

.pricing-card-top { margin-bottom: 1rem; }

.pricing-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.pricing-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tf-cerulean);
  line-height: 1;
}

.pricing-card-alt {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
}

.pricing-card-period {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.pricing-card-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--tf-cerulean);
  background: var(--tf-aqua);
  border-radius: 2px;
  padding: 0.2rem 0.55rem;
  align-self: center;
}

.pricing-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
  min-height: 4rem;
}

.pricing-card-payment-note {
  font-size: 0.82rem;
  color: var(--text-body);
  background: var(--tf-aqua-050);
  border-left: 2px solid var(--tf-ocean);
  padding: 0.65rem 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pricing-card-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  min-height: 8rem;
}

.pricing-card-details li {
  font-size: 0.87rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.pricing-card-details li:last-child { border: none; }

.pricing-card-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta-bg);
}

.pricing-card-addon {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pricing-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 0.5rem;
}

.pricing-card-actions .btn { width: 100%; text-align: center; }
.pricing-card-actions .cta-link { padding-left: 0.1rem; }

.pricing-notes {
  max-width: 720px;
  margin: 0 auto;
  background: var(--tf-sand);
  border-radius: var(--radius-sm);
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
}

.pricing-notes-heading { font-size: 1.1rem; margin-bottom: 1rem; color: var(--text-strong); }

.pricing-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-notes-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-notes-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cta-bg);
  font-size: 0.8rem;
  top: 0.15rem;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .booking-steps { flex-direction: row; align-items: flex-start; }
}

.booking-step { flex: 1; text-align: center; padding: 0 1.5rem; }

.booking-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tf-cerulean);
  color: var(--tf-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.booking-step h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.booking-step p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

.booking-step-divider {
  width: 1px;
  height: 2rem;
  background: var(--border-blue);
  margin: 1rem 0;
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .booking-step-divider { width: 2.5rem; height: 1px; margin: 1.5rem 0 0; align-self: flex-start; margin-top: 1.85rem; }
}

.final-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.final-cta-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.final-cta-inner p  { font-size: 1.02rem; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 2rem; }
.final-cta-inner .hero-actions { justify-content: center; }
.final-cta-inner .hero-call-nudge a { color: rgba(255,255,255,0.75); }
.final-cta-inner .hero-call-nudge a:hover { color: var(--tf-white); }


/* ============================================================
   POOL SERVICES HUB
   Merged from pool-services.css
============================================================ */

.ps-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.ps-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.05);
}

.ps-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  pointer-events: none;
}

.ps-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.ps-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.ps-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; }
.ps-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 2.25rem; line-height: 1.8; }
.ps-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1rem; }
.ps-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.58); }
.ps-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.ps-hero-call a:hover { color: var(--tf-white); }

.service-category { margin-bottom: 4.5rem; }
.service-category:last-of-type { margin-bottom: 0; }

.service-category-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--cta-bg);
  max-width: 760px;
}

.service-category-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 0.6rem;
}

.service-category-intro { font-size: 0.97rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; max-width: 680px; }

.service-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

@media (min-width: 560px) { .service-link-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .service-link-grid { grid-template-columns: repeat(3, 1fr); } }

.service-link-grid--repair { grid-template-columns: 1fr; }
@media (min-width: 560px) { .service-link-grid--repair { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .service-link-grid--repair { grid-template-columns: repeat(4, 1fr); } }

.service-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.35rem;
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-strong);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.service-link-card:hover { background: var(--tf-aqua-050); border-color: var(--tf-ocean); box-shadow: 0 2px 8px rgba(46,154,196,0.12); }
.service-link-card h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--text-strong); line-height: 1.3; }
.service-link-card p  { font-size: 0.86rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; flex: 1; }

.service-link-card .svc-arrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--tf-ocean); margin-top: 0.35rem; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.18s, color 0.18s;
}
.service-link-card .svc-arrow::after { content: '→'; }
.service-link-card:hover .svc-arrow { color: var(--tf-cerulean); gap: 0.45rem; }

.service-supporting-note { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; font-style: italic; max-width: 680px; margin-bottom: 1.5rem; }
.service-category-cta { margin-top: 0.25rem; }

.ps-help-block {
  background: var(--tf-cerulean);
  border-radius: var(--radius-sm);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ps-help-block h2 { color: var(--tf-white); margin-bottom: 0.85rem; }
.ps-help-block p  { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 2rem; }
.ps-help-actions  { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

.ps-area-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 760px) { .ps-area-inner { grid-template-columns: 1fr 1fr; } }

.ps-area-text .eyebrow { color: var(--tf-ocean); }
.ps-area-text h2 { margin-bottom: 0.9rem; }
.ps-area-text p  { font-size: 0.97rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.ps-area-text p:last-of-type { margin-bottom: 1.75rem; }
.ps-neighborhood-note { font-size: 0.87rem; color: var(--text-muted); font-style: italic; line-height: 1.7; font-weight: 300; }

.ps-area-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.ps-area-card {
  background: var(--tf-aqua-050);
  border: 1px solid #d6eaf8;
  border-radius: var(--radius-sm);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(13,79,114,0.06);
}

.ps-area-card-icon { width: 40px; height: 40px; border-radius: 50%; background: #d6eaf8; display: flex; align-items: center; justify-content: center; color: var(--tf-cerulean); margin-bottom: 1.1rem; flex-shrink: 0; }
.ps-area-card-heading { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-strong); margin-bottom: 0.55rem; }
.ps-area-card-copy { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; margin-bottom: 1.35rem; }
.ps-area-card-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tf-cerulean); margin-bottom: 0.65rem; }

.ps-neighborhood-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; padding: 0; margin: 0 0 1.75rem; }
.ps-neighborhood-chips li { font-size: 0.78rem; font-weight: 500; color: var(--tf-cerulean); background: var(--tf-white); border: 1px solid var(--border-blue); border-radius: 20px; padding: 0.3rem 0.75rem; white-space: nowrap; }

.ps-faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.ps-faq-item { border-bottom: 1px solid var(--border); }
.ps-faq-item:last-child { border-bottom: none; }
.ps-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.ps-faq-question::-webkit-details-marker { display: none; }
.ps-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .ps-faq-question { background: var(--tf-aqua-050); }
details[open] .ps-faq-question::after { content: '\2212'; }
.ps-faq-item:hover .ps-faq-question { background: var(--tf-aqua-050); }
.ps-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }
.ps-faq-answer a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }

.ps-final-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.ps-final-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.ps-final-inner p  { font-size: 1.02rem; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.ps-final-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; align-items: center; }
.ps-final-call { display: block; margin-top: 1.25rem; font-size: 0.88rem; color: rgba(255,255,255,0.60); }
.ps-final-call a { color: var(--tf-white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.ps-final-call a:hover { opacity: 0.85; }


/* ============================================================
   ABOUT / OUR STORY
   Merged from our-story.css
============================================================ */

.about-hero-bg {
  background-image: url('images/true-flow-pool-repair-company-round-rock-texas-our-story-hero.webp');
  background-size: cover;
  background-position: center 40%;
}

.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-two-col-text .eyebrow { display: block; margin-bottom: 0.75rem; }
.about-two-col-text h2 { margin-bottom: 1.5rem; }
.about-two-col-text p  { color: var(--text-body); line-height: 1.75; margin-bottom: 1.25rem; }
.about-two-col-text .btn { margin-top: 0.5rem; }
.about-two-col-image { display: flex; justify-content: center; }

.about-geoff-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(13,20,26,0.12);
}

@media (max-width: 768px) {
  .about-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-two-col-image { order: -1; }
  .about-geoff-img { max-width: 340px; }
}

.about-why-header { margin-bottom: 2rem; }
.about-why-body { max-width: 720px; margin: 0 auto; }
.about-why-body p { color: var(--text-body); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.0625rem; }
.about-why-body p:last-child { margin-bottom: 0; }

.about-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }

.about-service-card { background: var(--tf-sand); border-radius: 4px; padding: 1.75rem 1.5rem 1.5rem; display: flex; flex-direction: column; border-top: 3px solid var(--cta-bg); }
.about-service-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--text-strong); margin-bottom: 0.75rem; }
.about-service-card p  { color: var(--text-body); font-size: 0.9375rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.about-service-card .cta-link { margin-top: auto; font-size: 0.9rem; }

@media (max-width: 900px) { .about-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .about-services-grid { grid-template-columns: 1fr; } }

.about-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 2.5rem; margin-top: 3rem; }
.about-proof-item { border-top: 1px solid rgba(214,234,248,0.25); padding-top: 1.25rem; }
.about-proof-item h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600; color: var(--tf-white); margin-bottom: 0.5rem; }
.about-proof-item p  { color: var(--tf-aqua); font-size: 0.9375rem; line-height: 1.7; }

@media (max-width: 768px) { .about-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
@media (max-width: 480px) { .about-proof-grid { grid-template-columns: 1fr; } }

.about-area-body { max-width: 720px; margin: 0 auto; text-align: center; }
.about-area-body p { color: var(--text-body); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.25rem; }
.about-area-body p:last-of-type { margin-bottom: 0; }

.about-review-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }


/* ============================================================
   GREEN POOL CLEANUP
   Merged from green-pool-cleanup.css
============================================================ */

.green-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.green-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/green-to-clean-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.05);
}

.green-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  pointer-events: none;
}

.green-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.green-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.green-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 560px; }
.green-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.80); max-width: 520px; margin-bottom: 2.25rem; line-height: 1.8; }
.green-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.1rem; }
.green-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.58); }
.green-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.green-hero-call a:hover { color: var(--tf-white); }

.symptom-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .symptom-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .symptom-grid { grid-template-columns: repeat(4, 1fr); } }

.symptom-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--tf-ocean); padding: 1.5rem 1.35rem; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.symptom-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.symptom-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

.green-service-block { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 800px) { .green-service-block { grid-template-columns: 1fr 1fr; } }

.green-service-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--cta-bg); padding: 2rem 1.75rem 1.75rem; box-shadow: 0 1px 4px rgba(6,40,64,0.07); }
.green-service-card-label { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-body); margin-bottom: 0.5rem; }

.green-service-price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.green-service-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }
.green-service-badge { display: inline-block; font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--tf-cerulean); background: var(--tf-aqua); border-radius: 2px; padding: 0.2rem 0.6rem; }

.green-service-details { list-style: none; padding: 0; margin: 1rem 0; }
.green-service-details li { font-size: 0.87rem; color: var(--text-body); line-height: 1.5; padding: 0.3rem 0 0.3rem 1.2rem; position: relative; border-bottom: 1px solid var(--border); }
.green-service-details li:last-child { border: none; }
.green-service-details li::before { content: ''; position: absolute; left: 0; top: 0.68rem; width: 5px; height: 5px; border-radius: 50%; background: var(--cta-bg); }

.green-service-addon { font-size: 0.8rem; color: var(--text-muted); font-style: italic; line-height: 1.55; margin-bottom: 1.25rem; }
.green-service-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; }
.green-service-actions .btn { text-align: center; }
.green-service-reassurance { margin-top: 1rem; font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; font-style: italic; }

.green-block-copy { padding: 0.5rem 0; }
.green-block-copy h2 { margin-bottom: 1rem; }
.green-block-copy p  { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.green-block-copy .eyebrow { margin-bottom: 0.75rem; }

.included-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .included-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .included-grid { grid-template-columns: repeat(3, 1fr); } }

.included-card { background: var(--tf-white); border-radius: var(--radius-sm); padding: 1.5rem 1.4rem; border-left: 3px solid var(--cta-bg); box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.included-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.included-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

.steps-grid-4 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px)  { .steps-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .steps-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.step-4 { padding: 2.5rem 2rem; border-bottom: 1px solid var(--border); background: var(--tf-white); }
@media (min-width: 640px) {
  .step-4 { border-right: 1px solid var(--border); }
  .step-4:nth-child(2n) { border-right: none; }
}
@media (min-width: 960px) {
  .step-4 { border-bottom: none; border-right: 1px solid var(--border); }
  .step-4:nth-child(2n) { border-right: 1px solid var(--border); }
  .step-4:last-child { border-right: none; }
}
.step-4 .step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--tf-ocean); line-height: 1; margin-bottom: 1rem; }
.step-4 h3 { margin-bottom: 0.5rem; font-size: 1.08rem; }
.step-4 p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

.filter-note-inner { max-width: 720px; margin: 0 auto; }
.filter-note-block { background: var(--tf-aqua-050); border-radius: var(--radius-sm); padding: 2rem 2.25rem; border: 1px solid var(--border-blue); border-left: 3px solid var(--tf-ocean); }
.filter-note-block p  { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.filter-addon-price { font-size: 0.88rem; font-weight: 600; color: var(--tf-cerulean); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.filter-note-links { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.cause-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
@media (min-width: 560px) { .cause-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .cause-grid { grid-template-columns: repeat(5, 1fr); } }

.cause-card { background: var(--tf-white); border-radius: var(--radius-sm); padding: 1.5rem 1.35rem; border-top: 2px solid var(--tf-aqua); box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.cause-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.cause-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

.related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }

.related-card { background: var(--tf-white); border-radius: var(--radius-sm); padding: 1.6rem 1.4rem 1.35rem; border-top: 2px solid var(--cta-bg); display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.related-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.related-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.related-card .cta-link { margin-top: auto; }

.area-inner { max-width: 660px; }
.area-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.area-inner > p { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 0.85rem; }
.area-neighborhoods { font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.75; font-weight: 300; font-style: italic; margin-bottom: 2rem; }

.green-faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.green-faq-item { border-bottom: 1px solid var(--border); }
.green-faq-item:last-child { border-bottom: none; }
.green-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.green-faq-question::-webkit-details-marker { display: none; }
.green-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .green-faq-question { background: var(--tf-aqua-050); }
details[open] .green-faq-question::after { content: '\2212'; }
.green-faq-item:hover .green-faq-question { background: var(--tf-aqua-050); }
.green-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }
.green-faq-answer a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }

.green-editorial-band { width: 100%; overflow: hidden; line-height: 0; margin: 0; }
.green-editorial-img { width: 100%; height: clamp(220px, 32vw, 440px); object-fit: cover; object-position: center 55%; display: block; }


/* ============================================================
   POOL INSPECTION
   Merged from pool-inspection.css
============================================================ */

.insp-hero { position: relative; background: var(--tf-cerulean); padding: 5.5rem 0 4.5rem; overflow: hidden; }

.insp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-inspection-company-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.02);
}

.insp-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  pointer-events: none;
}

.insp-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.insp-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.insp-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 660px; }
.insp-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.80); max-width: 540px; margin-bottom: 1.5rem; line-height: 1.8; }
.insp-hero-reassurance { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 2.25rem; line-height: 1.8; }
.insp-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.insp-hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; margin-top: 0.25rem; }
.insp-hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.68); letter-spacing: 0.04em; }
.insp-hero-trust-item svg { color: var(--cta-bg); flex-shrink: 0; }
.insp-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 1rem; }
.insp-hero-call a { color: rgba(255,255,255,0.80); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.insp-hero-call a:hover { color: var(--tf-white); }

.insp-reassurance-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .insp-reassurance-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .insp-reassurance-grid { grid-template-columns: repeat(4, 1fr); } }
.insp-reassurance-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--tf-ocean); padding: 1.5rem 1.35rem; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.insp-reassurance-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.insp-reassurance-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.insp-reassurance-card a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }
.insp-reassurance-card a:hover { color: var(--tf-cerulean); }
.insp-sample-link { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }
.insp-sample-link:hover { color: var(--tf-cerulean); }

.insp-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 600px) { .insp-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .insp-fit-grid { grid-template-columns: repeat(2, 1fr); } }
.insp-fit-card { background: var(--tf-white); border-radius: var(--radius-sm); border-left: 3px solid var(--tf-ocean); padding: 1.5rem 1.4rem; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.insp-fit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.insp-fit-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.insp-fit-callout { margin-top: 2.5rem; background: var(--tf-aqua-050); border-radius: var(--radius-sm); border-left: 3px solid var(--tf-ocean); padding: 1.25rem 1.5rem; font-size: 0.92rem; color: var(--text-body); line-height: 1.75; font-weight: 300; }
.insp-fit-callout a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }
.insp-fit-callout a:hover { color: var(--tf-cerulean); }

.insp-price-inner { max-width: 760px; }
.insp-price-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--cta-bg); padding: 2.25rem 2rem 2rem; box-shadow: 0 1px 4px rgba(6,40,64,0.07); margin-top: 2rem; max-width: 800px; }
.insp-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.insp-price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }
.insp-price-label { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-body); }
.insp-price-card p { font-size: 0.97rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.insp-price-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-top: 0.5rem; margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.insp-price-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.insp-look-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .insp-look-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .insp-look-grid { grid-template-columns: repeat(3, 1fr); } }
.insp-look-card { background: var(--tf-white); border-radius: var(--radius-sm); padding: 1.5rem 1.35rem; border-top: 2px solid var(--tf-aqua); box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.insp-look-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.insp-look-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

.insp-not-included-inner { max-width: 760px; }
.insp-not-included-inner p { font-size: 0.97rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.insp-not-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.5rem; }
@media (min-width: 600px) { .insp-not-list { grid-template-columns: 1fr 1fr; } }
.insp-not-list li { font-size: 0.9rem; color: var(--text-body); font-weight: 400; line-height: 1.5; padding: 0.85rem 1.25rem 0.85rem 2.25rem; border-bottom: 1px solid var(--border); position: relative; }
.insp-not-list li:last-child, .insp-not-list li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
@media (min-width: 600px) {
  .insp-not-list li:nth-child(2n) { border-left: 1px solid var(--border); }
  .insp-not-list li:nth-last-child(-n+2) { border-bottom: none; }
}
.insp-not-list li::before { content: '×'; position: absolute; left: 0.85rem; top: 0.82rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }
.insp-followup { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }

.insp-compare-wrap { overflow-x: auto; margin-top: 2.5rem; border-radius: var(--radius-sm); border: 1px solid var(--border); -webkit-overflow-scrolling: touch; }
.insp-compare-table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--tf-white); font-size: 0.9rem; }
.insp-compare-table thead tr { background: var(--tf-cerulean); color: var(--tf-white); }
.insp-compare-table th { padding: 0.85rem 1.15rem; text-align: left; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.insp-compare-table td { padding: 1rem 1.15rem; border-bottom: 1px solid var(--border); color: var(--text-body); font-weight: 300; line-height: 1.65; vertical-align: top; }
.insp-compare-table tbody tr:last-child td { border-bottom: none; }
.insp-compare-table tbody tr:nth-child(even) td { background: var(--tf-aqua-050); }
.insp-compare-table td:first-child { font-weight: 600; color: var(--text-strong); font-size: 0.92rem; white-space: nowrap; }
.insp-compare-table .cta-link { font-size: 0.82rem; white-space: nowrap; }

@media (min-width: 900px) { .insp-how-h2 { white-space: nowrap; } }
.insp-steps-after { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.insp-steps-text-link { font-size: 0.88rem; color: var(--tf-ocean); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.insp-steps-text-link:hover { color: var(--tf-cerulean); }

.insp-facts-card { background: var(--tf-white); border-radius: var(--radius-sm); border: 1px solid var(--border); border-top: 3px solid var(--tf-ocean); overflow: hidden; margin-top: 2rem; max-width: 900px; }
.insp-facts-row { display: grid; grid-template-columns: 240px 1fr; border-bottom: 1px solid var(--border); }
.insp-facts-row:last-child { border-bottom: none; }
.insp-facts-label { padding: 1rem 1.25rem; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-strong); background: var(--tf-aqua-050); border-right: 1px solid var(--border); display: flex; align-items: flex-start; white-space: nowrap; }
.insp-facts-value { padding: 1rem 1.5rem; font-size: 0.9rem; color: var(--text-body); font-weight: 300; line-height: 1.75; }
@media (max-width: 640px) {
  .insp-facts-row { grid-template-columns: 1fr; }
  .insp-facts-label { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 0.6rem; white-space: normal; }
  .insp-facts-value { padding: 0.75rem 1.25rem 1rem; }
}

.insp-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .insp-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .insp-related-grid { grid-template-columns: repeat(4, 1fr); } }
.insp-related-card { background: var(--tf-white); border-radius: var(--radius-sm); padding: 1.6rem 1.4rem 1.35rem; border-top: 2px solid var(--cta-bg); display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.insp-related-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.insp-related-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.insp-related-card .cta-link { margin-top: auto; }

.insp-area-inner { max-width: 660px; }
.insp-area-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.insp-area-inner > p { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 0.85rem; }
.insp-area-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.insp-faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.insp-faq-item { border-bottom: 1px solid var(--border); }
.insp-faq-item:last-child { border-bottom: none; }
.insp-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.insp-faq-question::-webkit-details-marker { display: none; }
.insp-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .insp-faq-question { background: var(--tf-aqua-050); }
details[open] .insp-faq-question::after { content: '\2212'; }
.insp-faq-item:hover .insp-faq-question { background: var(--tf-aqua-050); }
.insp-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }
.insp-faq-answer a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }

/* Pool inspection: H1 dangler fix */
.insp-h1-br { display: none; }
@media (min-width: 640px) { .insp-h1-br { display: block; } }

/* Pool inspection: fit heading max-width to prevent single-word dangle */
.insp-fit-heading { max-width: 520px; }

/* Pool inspection: local area heading max-width */
.insp-area-heading { max-width: 480px; }
.insp-area-h2-br { display: none; }
@media (min-width: 640px) { .insp-area-h2-br { display: block; } }

/* Pool inspection: CTAs below "What you get" section */
.insp-get-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.25); }

/* Pool inspection: comparison section heading max-width to prevent dangle */
.insp-compare-heading { max-width: 580px; }
.insp-compare-h2-br { display: none; }
@media (min-width: 640px) { .insp-compare-h2-br { display: block; } }

/* Pool inspection: "What we review" heading — allow full width so it sits on one line */
.insp-review-heading { max-width: none; white-space: nowrap; }
@media (max-width: 700px) { .insp-review-heading { white-space: normal; } }

/* ============================================================
   WEEKLY POOL CLEANING PAGE
============================================================ */

/* Hero */
.weekly-hero {
  position: relative;
  background: var(--tf-cerulean);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.weekly-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/weekly-pool-cleaning-company-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}

.weekly-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.weekly-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.weekly-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.weekly-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 600px; }
.weekly-h1-br { display: none; }
@media (min-width: 640px) { .weekly-h1-br { display: block; } }

.weekly-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.weekly-hero-reassurance {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.weekly-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.1rem; }

.weekly-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.58); }
.weekly-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.weekly-hero-call a:hover { color: var(--tf-white); }

/* Pricing block */
.weekly-price-block { display: flex; justify-content: center; margin-top: 2.5rem; }

.weekly-price-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 1px 5px rgba(6,40,64,0.08);
  max-width: 540px;
  width: 100%;
}

.weekly-price-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.weekly-price-row { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.85rem; }
.weekly-price-amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }
.weekly-price-unit { font-family: var(--font-sans); font-size: 1rem; font-weight: 400; color: var(--text-body); }

.weekly-price-included { list-style: none; padding: 0; margin: 1rem 0; }
.weekly-price-included li {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.5;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.weekly-price-included li:last-child { border: none; }
.weekly-price-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta-bg);
}

.weekly-price-addon {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.weekly-price-reassurance {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.weekly-price-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; }
.weekly-price-actions .btn { text-align: center; }

@media (min-width: 480px) {
  .weekly-price-actions { flex-direction: row; flex-wrap: wrap; }
  .weekly-price-actions .btn { flex: 1 1 auto; }
}

/* Related services — 4 featured cards */
.weekly-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .weekly-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .weekly-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   POOL PUMP REPAIR PAGE
============================================================ */

/* Hero */
.pump-hero {
  position: relative;
  background: var(--tf-cerulean);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.pump-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-pump-repair-equipment-pad-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}

.pump-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.pump-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.pump-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.pump-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }

.pump-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.pump-hero-reassurance {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.pump-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }

.pump-hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; margin-bottom: 1rem; }
.pump-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.70);
  font-weight: 400;
}

.pump-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.pump-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pump-hero-call a:hover { color: var(--tf-white); }

/* Fit/symptom cards */
.pump-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .pump-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pump-fit-grid { grid-template-columns: repeat(3, 1fr); } }

.pump-fit-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 1.5rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.pump-fit-card h3 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--text-strong); }
.pump-fit-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.pump-fit-card .btn { margin-top: auto; text-align: center; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.83rem; }

/* Pricing block */
.pump-price-inner { max-width: 660px; }

.pump-price-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 1px 5px rgba(6,40,64,0.08);
  margin-top: 1.75rem;
}

.pump-price-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.pump-price-row { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.85rem; }
.pump-price-amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }

.pump-price-included { list-style: none; padding: 0; margin: 1rem 0; }
.pump-price-included li {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.5;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.pump-price-included li:last-child { border: none; }
.pump-price-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta-bg);
}

.pump-price-addon {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.pump-price-reassurance {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pump-price-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; }
.pump-price-actions .btn { text-align: center; }
@media (min-width: 480px) {
  .pump-price-actions { flex-direction: row; flex-wrap: wrap; }
  .pump-price-actions .btn { flex: 1 1 auto; }
}

/* What's included */
.pump-included-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .pump-included-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pump-included-grid { grid-template-columns: repeat(3, 1fr); } }

.pump-included-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.4rem;
  border-left: 3px solid var(--cta-bg);
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.pump-included-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--text-strong); }
.pump-included-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin: 0; }

/* What's not included */
.pump-not-included-inner { max-width: 640px; }
.pump-not-included-inner > p { font-size: 0.93rem; font-weight: 300; color: var(--text-body); line-height: 1.8; margin-bottom: 1.25rem; }

.pump-not-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--tf-white);
}
.pump-not-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 300;
  padding: 0.7rem 1.25rem 0.7rem 2.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pump-not-list li:last-child { border-bottom: none; }
.pump-not-list li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
}

.pump-not-reassurance {
  font-size: 0.88rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* Choose this instead */
.pump-compare-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .pump-compare-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pump-compare-grid { grid-template-columns: repeat(4, 1fr); } }

.pump-compare-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.4rem 1.35rem;
  border-top: 2px solid var(--cta-bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.pump-compare-card h3 { font-size: 0.97rem; margin-bottom: 0.45rem; color: var(--text-strong); }
.pump-compare-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.pump-compare-card .cta-link { margin-top: auto; }

/* How it works — reuses existing .steps-grid-4 and .step-4 globals */
.pump-steps-after { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; margin-top: 2.5rem; }
.pump-steps-text-link { font-size: 0.9rem; color: var(--tf-ocean); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.pump-steps-text-link:hover { color: var(--tf-cerulean); }

/* Service facts */
.pump-facts-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 2rem;
}
.pump-facts-row { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--border); }
.pump-facts-row:last-child { border-bottom: none; }
.pump-facts-label { padding: 0.9rem 1.25rem; font-size: 0.8rem; font-weight: 600; color: var(--text-strong); background: var(--tf-aqua-050); border-right: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.pump-facts-value { padding: 0.9rem 1.25rem; font-size: 0.9rem; color: var(--text-body); font-weight: 300; line-height: 1.7; }
@media (max-width: 540px) {
  .pump-facts-row { grid-template-columns: 1fr; }
  .pump-facts-label { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; white-space: normal; }
}

/* Related services — 4 featured cards; compact link row for extras */
.pump-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .pump-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pump-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Compact "more services" link row — reuses .salt-related-more pattern */
.pump-related-more {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.pump-related-more-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pump-related-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.pump-related-more-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pump-related-more-links a:hover { color: var(--text-strong); }

.pump-related-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.4rem 1.35rem;
  border-top: 2px solid var(--cta-bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.pump-related-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.pump-related-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.pump-related-card .cta-link { margin-top: auto; }

/* Local area */
.pump-area-inner { max-width: 660px; }
.pump-area-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.pump-area-inner > p { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 0.85rem; }
.pump-area-actions { margin-top: 2rem; }

/* FAQ */
.pump-faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.pump-faq-item { border-bottom: 1px solid var(--border); }
.pump-faq-item:last-child { border-bottom: none; }
.pump-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.pump-faq-question::-webkit-details-marker { display: none; }
.pump-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .pump-faq-question { background: var(--tf-aqua-050); }
details[open] .pump-faq-question::after { content: '\2212'; }
.pump-faq-item:hover .pump-faq-question { background: var(--tf-aqua-050); }
.pump-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }
.pump-faq-answer a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }

/* Editorial band (mid-page lifestyle image) */
.pump-editorial-band { width: 100%; overflow: hidden; line-height: 0; }
.pump-editorial-img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }
@media (min-width: 768px) { .pump-editorial-img { height: 520px; } }

/* ============================================================
   POOL EQUIPMENT DIAGNOSTICS PAGE
============================================================ */

/* Hero */
.diag-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.diag-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-equipment-diagnostics-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.05);
}

.diag-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.diag-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.diag-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.diag-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }

/* Controlled H1 line break — hidden on mobile, active at 640px+ */
.diag-h1-br { display: none; }
@media (min-width: 640px) { .diag-h1-br { display: block; } }
.diag-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.80); max-width: 540px; margin-bottom: 1.5rem; line-height: 1.8; }
.diag-hero-reassurance { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.68); max-width: 560px; margin-bottom: 2.25rem; line-height: 1.8; }
.diag-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.diag-hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; margin-top: 0.25rem; }
.diag-hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.68); letter-spacing: 0.04em; }
.diag-hero-trust-item svg { color: var(--cta-bg); flex-shrink: 0; }
.diag-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 1rem; }
.diag-hero-call a { color: rgba(255,255,255,0.80); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.diag-hero-call a:hover { color: var(--tf-white); }

/* Fit cards */
.diag-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .diag-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .diag-fit-grid { grid-template-columns: repeat(3, 1fr); } }
.diag-fit-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--tf-ocean); padding: 1.6rem 1.4rem 1.35rem; display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.diag-fit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.diag-fit-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.diag-fit-card .cta-link { margin-top: auto; }

/* Pricing */
.diag-price-inner { max-width: 760px; }
.diag-price-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--cta-bg); padding: 2.25rem 2rem 2rem; box-shadow: 0 1px 4px rgba(6,40,64,0.07); margin-top: 2rem; max-width: 800px; }
.diag-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.diag-price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }
.diag-price-label { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-body); }

.diag-price-included { list-style: none; padding: 0; margin: 0 0 1.25rem; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.diag-price-included li { font-size: 0.9rem; color: var(--text-body); font-weight: 400; line-height: 1.5; padding: 0.75rem 1.25rem 0.75rem 2.25rem; border-bottom: 1px solid var(--border); position: relative; }
.diag-price-included li:last-child { border-bottom: none; }
.diag-price-included li::before { content: ''; position: absolute; left: 0.9rem; top: 1.05rem; width: 5px; height: 5px; border-radius: 50%; background: var(--cta-bg); }

.diag-price-addon { font-size: 0.82rem; color: var(--text-muted); font-style: italic; line-height: 1.65; margin-bottom: 0.75rem; }
.diag-price-reassurance { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.diag-price-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* What we check grid */
.diag-check-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .diag-check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .diag-check-grid { grid-template-columns: repeat(4, 1fr); } }
.diag-check-card { background: var(--tf-white); border-radius: var(--radius-sm); padding: 1.5rem 1.35rem; border-top: 2px solid var(--tf-aqua); box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.diag-check-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.diag-check-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

/* Not included */
.diag-not-inner { max-width: 760px; }
.diag-not-inner > p { font-size: 0.97rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.diag-not-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.5rem; }
@media (min-width: 600px) { .diag-not-list { grid-template-columns: 1fr 1fr; } }
.diag-not-list li { font-size: 0.9rem; color: var(--text-body); font-weight: 400; line-height: 1.5; padding: 0.85rem 1.25rem 0.85rem 2.25rem; border-bottom: 1px solid var(--border); position: relative; }
.diag-not-list li:last-child, .diag-not-list li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
@media (min-width: 600px) { .diag-not-list li:nth-child(2n) { border-left: 1px solid var(--border); } .diag-not-list li:nth-last-child(-n+2) { border-bottom: none; } }
.diag-not-list li::before { content: '×'; position: absolute; left: 0.85rem; top: 0.82rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }
.diag-not-followup { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* Related services — 4 featured cards; compact link row for extras */
.diag-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .diag-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .diag-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Compact "more services" link row */
.diag-related-more {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.diag-related-more-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.diag-related-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.diag-related-more-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.diag-related-more-links a:hover { color: var(--text-strong); }
.diag-related-card { background: var(--tf-white); border-radius: var(--radius-sm); padding: 1.6rem 1.4rem 1.35rem; border-top: 2px solid var(--cta-bg); display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.diag-related-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.diag-related-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.diag-related-card .cta-link { margin-top: auto; }

/* Final CTA — narrower centered text column */
.diag-cta-inner { max-width: 720px; margin: 0 auto; }


/* ============================================================
   POOL FILTER CLEANING PAGE
============================================================ */

/* Hero */
.filter-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.filter-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-filter-cleaning-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.02);
}

.filter-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  pointer-events: none;
}

.filter-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.filter-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.filter-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }

.filter-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.filter-hero-reassurance {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.filter-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.1rem; }

.filter-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.58); margin-bottom: 1.5rem; }
.filter-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.filter-hero-call a:hover { color: var(--tf-white); }

.filter-hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.filter-hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.68); letter-spacing: 0.04em; }
.filter-hero-trust-item svg { color: var(--cta-bg); flex-shrink: 0; }

/* Fit section */
.filter-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .filter-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .filter-fit-grid { grid-template-columns: repeat(3, 1fr); } }

.filter-fit-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--tf-ocean);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  display: flex;
  flex-direction: column;
}

.filter-fit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.filter-fit-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.filter-fit-card .btn { text-align: center; margin-top: auto; }
.filter-fit-card .cta-link { margin-top: auto; }

/* Pricing block */
.filter-price-block { display: flex; justify-content: center; margin-top: 2.5rem; }

.filter-price-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 1px 4px rgba(6,40,64,0.07);
  max-width: 680px;
  width: 100%;
}

.filter-price-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.filter-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--tf-cerulean);
  line-height: 1;
}

.filter-price-sep { font-family: var(--font-sans); font-size: 1.2rem; color: var(--text-muted); }

.filter-price-alt { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 600; color: var(--text-body); }

.filter-price-qualifier {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  align-self: flex-end;
  padding-bottom: 0.3rem;
}

.filter-price-details { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.filter-price-details li {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.5;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.filter-price-details li:last-child { border: none; }
.filter-price-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta-bg);
}

.filter-price-separate {
  background: var(--tf-sand);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--border-blue);
}

.filter-price-separate-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}

.filter-price-separate-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
}

.filter-price-separate-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 0.85rem;
  position: relative;
}

.filter-price-separate-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.filter-price-reassurance {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.filter-price-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* What's included — closing note */
.filter-included-closing {
  margin-top: 2.5rem;
  font-size: 0.97rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Compare section */
.filter-compare-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .filter-compare-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .filter-compare-grid { grid-template-columns: repeat(3, 1fr); } }

.filter-compare-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--cta-bg);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  display: flex;
  flex-direction: column;
}

.filter-compare-card--primary { border-top-width: 3px; }

.filter-compare-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.filter-compare-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.filter-compare-card .btn { text-align: center; margin-top: auto; }
.filter-compare-card .cta-link { margin-top: auto; }

/* Process / how-it-works actions */
.filter-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* Service facts action */
.filter-facts-actions { margin-top: 2rem; }

/* Related services — 4 featured cards; compact link row for extras */
.filter-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .filter-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .filter-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Compact "more services" link row below the 6 featured cards */
.filter-related-more {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.filter-related-more-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-related-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.filter-related-more-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.filter-related-more-links a:hover { color: var(--text-strong); }

/* =============================================================
   ONE-TIME POOL CLEANING PAGE (/one-time-pool-cleaning)
   Prefix: otc-
============================================================= */

/* Hero */
.otc-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.otc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/one-time-cleaning-service-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.otc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  z-index: 1;
}

.otc-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.otc-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.otc-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 680px; }

.otc-hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.otc-hero-reassurance {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.otc-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.1rem; }

.otc-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.58); margin-bottom: 1.5rem; }
.otc-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.otc-hero-call a:hover { color: var(--tf-white); }

.otc-hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.otc-hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.68); letter-spacing: 0.04em; }
.otc-hero-trust-item svg { color: var(--cta-bg); flex-shrink: 0; }

/* Fit grid */
.otc-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .otc-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .otc-fit-grid { grid-template-columns: repeat(3, 1fr); } }

.otc-fit-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--cta-bg);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  display: flex;
  flex-direction: column;
}
.otc-fit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.otc-fit-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.otc-fit-card .btn { text-align: center; margin-top: auto; }
.otc-fit-card .cta-link { margin-top: auto; }

/* Pricing block */
.otc-price-block { display: flex; justify-content: center; margin-top: 2.5rem; }

.otc-price-card {
  background: var(--tf-sand);
  border-radius: var(--radius-sm);
  border-top: 4px solid var(--cta-bg);
  padding: 2.25rem 2.5rem 2rem;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(6,40,64,0.08);
}

.otc-price-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 0.75rem;
}

.otc-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem; }

.otc-price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1;
}

.otc-price-details { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.otc-price-details li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.5;
}
.otc-price-details li:last-child { border: none; }
.otc-price-details li::before {
  content: '✓';
  color: var(--cta-bg);
  font-weight: 700;
  margin-right: 0.6rem;
}

.otc-price-separate {
  background: var(--tf-white);
  border-radius: calc(var(--radius-sm) - 2px);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.otc-price-separate-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}
.otc-price-separate-list { list-style: none; padding: 0; margin: 0; }
.otc-price-separate-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.25rem 0;
  line-height: 1.5;
}
.otc-price-separate-list li::before {
  content: '–';
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.otc-price-reassurance {
  font-size: 0.87rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.otc-price-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Not included */
.otc-not-included-block { max-width: 680px; margin: 2rem auto 0; }

.otc-not-included-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.otc-not-included-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.5;
}
.otc-not-included-list li:last-child { border: none; }
.otc-not-included-list li::before {
  content: '×';
  color: var(--text-muted);
  font-weight: 700;
  margin-right: 0.65rem;
}

.otc-not-included-follow {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.75;
  border-left: 3px solid var(--cta-bg);
  padding-left: 1rem;
}

/* Comparison table */
.otc-compare-wrap { overflow-x: auto; margin-top: 2.5rem; }

.otc-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px;
}

.otc-compare-table thead tr {
  background: var(--tf-cerulean);
  color: var(--tf-white);
}

.otc-compare-table th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.otc-compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.6;
  vertical-align: top;
}

.otc-compare-table td strong {
  font-weight: 600;
  color: var(--text-strong);
}

.otc-compare-row--primary td { background: var(--tf-aqua-050); }
.otc-compare-row--primary td strong { color: var(--text-strong); }

/* Process actions */
.otc-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* Service facts actions */
.otc-facts-actions { margin-top: 2rem; }

/* Related grid */
.otc-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .otc-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .otc-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Area actions */
.otc-area-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* What We Do section — approved Soft Aqua background (#d6eaf8) */
.otc-included-section { background: #d6eaf8; }

/* H1 controlled desktop line break — hidden on mobile, fires at 640px+ */
.otc-h1-br { display: none; }
@media (min-width: 640px) { .otc-h1-br { display: inline; } }

/* Local section h2 controlled desktop line break */
.otc-local-h2-br { display: none; }
@media (min-width: 640px) { .otc-local-h2-br { display: block; } }

/* Compare table — widen Next step column, compress Best when slightly */
.otc-compare-table th:nth-child(2),
.otc-compare-table td:nth-child(2) { width: 28%; }
.otc-compare-table th:nth-child(3),
.otc-compare-table td:nth-child(3) { width: 28%; }
.otc-compare-table th:nth-child(4),
.otc-compare-table td:nth-child(4) { width: 18%; white-space: nowrap; }


/* ============================================================
   POOL REPAIR HUB PAGE
============================================================ */

/* Hero */
.repair-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.repair-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.02);
}

.repair-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.repair-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.repair-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.repair-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 520px; }

/* H1 controlled line break — hidden on mobile, active at 640px+ */
.repair-h1-br { display: none; }
@media (min-width: 640px) { .repair-h1-br { display: block; } }

.repair-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.80); max-width: 540px; margin-bottom: 1.5rem; line-height: 1.8; }
.repair-hero-reassurance { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.68); max-width: 560px; margin-bottom: 2.25rem; line-height: 1.8; }
.repair-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.repair-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 0.75rem; }
.repair-hero-call a { color: rgba(255,255,255,0.80); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.repair-hero-call a:hover { color: var(--tf-white); }

/* Mid-page lifestyle image */
.repair-lifestyle-img-wrap { width: 100%; }
.repair-lifestyle-img { width: 100%; display: block; }

/* Fast service routing cards — 10 cards, 3-col desktop */
.repair-routing-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .repair-routing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .repair-routing-grid { grid-template-columns: repeat(3, 1fr); } }

.repair-routing-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--tf-ocean);
  padding: 1.6rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.repair-routing-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.repair-routing-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.repair-routing-card .btn { margin-top: auto; text-align: center; }

/* Pricing block */
.repair-price-inner { max-width: 760px; }

.repair-price-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 1px 4px rgba(6,40,64,0.07);
  margin-top: 2rem;
  max-width: 800px;
}

.repair-price-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.repair-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.repair-price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }

.repair-price-included { list-style: none; padding: 0; margin: 0 0 1.25rem; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.repair-price-included li { font-size: 0.9rem; color: var(--text-body); font-weight: 400; line-height: 1.5; padding: 0.75rem 1.25rem 0.75rem 2.25rem; border-bottom: 1px solid var(--border); position: relative; }
.repair-price-included li:last-child { border-bottom: none; }
.repair-price-included li::before { content: ''; position: absolute; left: 0.9rem; top: 1.05rem; width: 5px; height: 5px; border-radius: 50%; background: var(--cta-bg); }

.repair-price-addon { font-size: 0.82rem; color: var(--text-muted); font-style: italic; line-height: 1.65; margin-bottom: 0.75rem; }
.repair-price-reassurance { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.repair-price-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* Symptoms — 3-col desktop, 6 cards */
.repair-symptom-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .repair-symptom-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .repair-symptom-grid { grid-template-columns: repeat(3, 1fr); } }

.repair-symptom-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--tf-ocean);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  display: flex;
  flex-direction: column;
}
.repair-symptom-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.repair-symptom-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.repair-symptom-card .btn { margin-top: auto; text-align: center; }

/* What we repair — 3-col desktop, 10 cards */
.repair-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .repair-services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .repair-services-grid { grid-template-columns: repeat(3, 1fr); } }

.repair-services-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--tf-aqua);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  display: flex;
  flex-direction: column;
}
.repair-services-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.repair-services-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.repair-services-card .cta-link { margin-top: auto; }

/* Not included */
.repair-not-inner { max-width: 760px; }
.repair-not-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.5rem; margin-top: 2rem; }
@media (min-width: 600px) { .repair-not-list { grid-template-columns: 1fr 1fr; } }
.repair-not-list li { font-size: 0.9rem; color: var(--text-body); font-weight: 400; line-height: 1.5; padding: 0.85rem 1.25rem 0.85rem 2.25rem; border-bottom: 1px solid var(--border); position: relative; }
.repair-not-list li:last-child { border-bottom: none; }
@media (min-width: 600px) { .repair-not-list li:nth-child(2n) { border-left: 1px solid var(--border); } .repair-not-list li:nth-last-child(-n+2) { border-bottom: none; } }
.repair-not-list li::before { content: '\00D7'; position: absolute; left: 0.85rem; top: 0.82rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }
.repair-not-followup { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* Compare — 3-col desktop, 6 cards */
.repair-compare-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .repair-compare-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .repair-compare-grid { grid-template-columns: repeat(3, 1fr); } }

.repair-compare-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--cta-bg);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  display: flex;
  flex-direction: column;
}
.repair-compare-card--primary { border-top-width: 3px; }
.repair-compare-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.repair-compare-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.repair-compare-card .btn { text-align: center; margin-top: auto; }

/* How it works actions */
.repair-how-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* Service facts */
.repair-facts-inner { max-width: 760px; }

.repair-facts-list { margin: 2rem 0 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }

.repair-facts-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 560px) { .repair-facts-row { grid-template-columns: 210px 1fr; } }
.repair-facts-row:last-child { border-bottom: none; }

.repair-facts-row dt {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 0.85rem 1.25rem 0 1.25rem;
  background: var(--tf-aqua-050);
}
@media (min-width: 560px) {
  .repair-facts-row dt {
    padding: 0.85rem 1.25rem;
    border-right: 1px solid var(--border);
    white-space: nowrap;
  }
}

.repair-facts-row dd {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  padding: 0.45rem 1.25rem 0.85rem 1.25rem;
  margin: 0;
}
@media (min-width: 560px) { .repair-facts-row dd { padding: 0.85rem 1.25rem; } }

.repair-facts-actions { margin-top: 2rem; }

/* Related services — 4-col desktop, 14 cards */
.repair-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .repair-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .repair-related-grid { grid-template-columns: repeat(4, 1fr); } }

.repair-related-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--cta-bg);
  padding: 1.6rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.repair-related-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.repair-related-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.repair-related-card .cta-link { margin-top: auto; }

/* Local area — two-column desktop layout */
.repair-area-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 860px) { .repair-area-two-col { grid-template-columns: 1fr 380px; } }

.repair-area-left h2 { color: var(--tf-white); margin-bottom: 1.5rem; }
.repair-area-left p { font-size: 0.97rem; color: rgba(255,255,255,0.80); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.repair-area-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-top: 2rem; }

/* Service area chip card */
.repair-area-chip-card {
  background: var(--tf-aqua-050);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-blue);
}
.repair-area-chip-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--tf-cerulean);
  margin-bottom: 0.5rem;
}
.repair-area-chip-sub {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.repair-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.repair-area-chip {
  background: var(--tf-white);
  border: 1px solid var(--border-blue);
  border-radius: 2rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--tf-cerulean);
  white-space: nowrap;
}

/* FAQ */
.repair-faq-list { max-width: 720px; margin: 2.5rem auto 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.repair-faq-item { border-bottom: 1px solid var(--border); }
.repair-faq-item:last-child { border-bottom: none; }
.repair-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.repair-faq-question::-webkit-details-marker { display: none; }
.repair-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .repair-faq-question { background: var(--tf-aqua-050); }
details[open] .repair-faq-question::after { content: '\2212'; }
.repair-faq-item:hover .repair-faq-question { background: var(--tf-aqua-050); }
.repair-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }

/* Final CTA */
.repair-final-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.repair-final-inner h2 { margin-bottom: 1rem; }
.repair-final-inner p { font-size: 0.97rem; color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.repair-final-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; justify-content: center; }


/* =============================================================
   POOL CARE AND MAINTENANCE (/pool-care-maintenance)
============================================================= */

/* Hero */
.care-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.care-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-care-maintenance-water-testing.webp');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.55;
  filter: brightness(0.92) saturate(1.04);
}

.care-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  pointer-events: none;
}

.care-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.care-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.care-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }

.care-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.care-hero-reassurance {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.care-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.1rem; }

.care-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.58); margin-bottom: 1.5rem; }
.care-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.care-hero-call a:hover { color: var(--tf-white); }

.care-hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.care-hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.68); letter-spacing: 0.04em; }
.care-hero-trust-item svg { color: var(--cta-bg); flex-shrink: 0; }

/* Fit grid */
.care-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .care-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .care-fit-grid { grid-template-columns: repeat(3, 1fr); } }

.care-fit-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.4rem 1.4rem;
  border-top: 2px solid var(--cta-bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.care-fit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.care-fit-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.care-fit-card .btn { text-align: center; margin-top: auto; }
.care-fit-card .cta-link { margin-top: auto; }

/* Pricing block */
.care-price-block { display: flex; justify-content: center; margin-top: 2.5rem; }

.care-price-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--tf-ocean);
  border-radius: var(--radius-sm);
  padding: 2rem 2.25rem 2rem;
  max-width: 660px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(6,40,64,0.08);
}

.care-price-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--tf-ocean);
  margin-bottom: 0.5rem;
}

.care-price-tag {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 1.5rem;
}

.care-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--border);
}
.care-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.care-price-service { color: var(--text-strong); font-weight: 400; }
.care-price-amount  { color: var(--tf-ocean); font-weight: 600; white-space: nowrap; }

.care-price-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.care-price-reassurance {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.care-price-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Not included */
.care-not-included-inner { max-width: 680px; }
.care-not-included-inner .eyebrow { display: block; margin-bottom: 0.5rem; }
.care-not-included-inner h2 { margin-bottom: 1rem; }
.care-not-included-inner > p { font-size: 0.97rem; color: var(--text-body); font-weight: 300; line-height: 1.8; margin-bottom: 1.25rem; }

.care-not-included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 640px) { .care-not-included-list { grid-template-columns: 1fr 1fr; } }

.care-not-included-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
}
.care-not-included-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.care-not-included-list a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }

.care-not-included-reassurance {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
}

/* Boundary / service-routing grid (2-col max) */
.care-boundary-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .care-boundary-grid { grid-template-columns: 1fr 1fr; } }

.care-boundary-note {
  margin: 2.5rem auto 0;
  max-width: 720px;
  padding: 1.35rem 1.5rem;
  background: var(--tf-aqua-050);
  border-radius: var(--radius-sm);
}
.care-boundary-note-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.55rem;
}
.care-boundary-note p { font-size: 0.875rem; color: var(--text-body); font-weight: 300; line-height: 1.72; margin-bottom: 0.45rem; }
.care-boundary-note p:last-child { margin-bottom: 0; font-style: italic; }

/* Compare grid */
.care-compare-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .care-compare-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .care-compare-grid { grid-template-columns: repeat(4, 1fr); } }

.care-compare-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.4rem 1.4rem;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.care-compare-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.care-compare-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.care-compare-card .cta-link { margin-top: auto; }

/* How it works */
.care-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

/* Service facts */
.care-facts-actions { margin-top: 2rem; }

/* Related grid — 4 featured cards; compact link row for extras */
.care-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .care-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .care-related-grid { grid-template-columns: repeat(4, 1fr); } }


/* ============================================================
   POOL CLEANING SERVICES HUB (/pool-cleaning-services)
============================================================ */

/* Hero */
.pcs-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4.5rem;
  background-color: var(--tf-navy);
}
@media (min-width: 768px) { .pcs-hero { padding: 8rem 0 6rem; } }

.pcs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-cleaning-company-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.90) saturate(1.06);
}

.pcs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  pointer-events: none;
}

.pcs-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.pcs-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.pcs-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }

.pcs-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.pcs-hero-reassurance {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.pcs-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1rem; }

.pcs-hero-tertiary {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.75rem;
}
.pcs-hero-tertiary a {
  color: rgba(255,255,255,0.80);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pcs-hero-tertiary a:hover { color: var(--tf-white); }

.pcs-hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.pcs-hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.68); letter-spacing: 0.04em; }
.pcs-hero-trust-item svg { color: var(--cta-bg); flex-shrink: 0; }

/* Service options grid */
.pcs-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.75rem;
}
@media (min-width: 560px) { .pcs-options-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pcs-options-grid { grid-template-columns: repeat(3, 1fr); } }

.pcs-option-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(6,40,64,0.08);
}

.pcs-option-card--text { border-top-color: var(--tf-ocean); }

.pcs-option-card-body { flex: 1; display: flex; flex-direction: column; }
.pcs-option-card-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text-strong); }
.pcs-option-card-body p:not(.pcs-option-price) { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin-bottom: 0.5rem; flex: 1; }

.pcs-option-price {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--tf-cerulean) !important;
  margin-top: auto !important;
  padding-top: 0.75rem !important;
  margin-bottom: 1.25rem !important;
  flex-shrink: 0;
}

.pcs-option-card-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.pcs-option-card-actions .btn { text-align: center; }
.pcs-option-card-actions .cta-link { text-align: center; }

/* Fit list — editorial two-column routing rows */
.pcs-fit-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.pcs-fit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 2.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .pcs-fit-row {
    grid-template-columns: 180px 1fr;
    align-items: baseline;
    gap: 0 2.5rem;
  }
}

.pcs-fit-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tf-cerulean);
  letter-spacing: 0.01em;
  padding-top: 0.1rem;
}

.pcs-fit-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.45rem;
}
.pcs-fit-body .cta-link { font-size: 0.87rem; }

/* Good to Know band */
.pcs-good-to-know { text-align: center; }

.pcs-gk-inner { max-width: 700px; margin: 0 auto; }

.pcs-gk-header { margin-bottom: 2rem; }
.pcs-gk-header h2 { margin-top: 0.5rem; margin-bottom: 1rem; }
.pcs-gk-header p {
  font-size: 0.97rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.8;
}

.pcs-gk-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pcs-gk-item {
  background: var(--tf-white);
  border: 1px solid rgba(27,98,148,0.18);
  border-radius: 2rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--tf-cerulean);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pcs-gk-item::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--tf-ocean);
  border-radius: 50%;
  flex-shrink: 0;
}

.pcs-gk-cta { display: flex; justify-content: center; }

/* Includes checklist — compact grid with light dividers, no card shadows */
.pcs-includes-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.5rem;
}
@media (min-width: 480px) { .pcs-includes-checklist { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pcs-includes-checklist { grid-template-columns: repeat(4, 1fr); } }

.pcs-includes-check-item {
  padding: 1.1rem 1.25rem 1.1rem 0;
  border-bottom: 1px solid rgba(27,38,59,0.10);
}
@media (min-width: 480px) {
  .pcs-includes-check-item { padding-right: 1.5rem; }
}

.pcs-includes-check-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.pcs-includes-check-item span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--tf-ocean);
  border-radius: 50%;
  flex-shrink: 0;
}
.pcs-includes-check-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
  padding-left: 1.1rem;
}

.pcs-includes-closing {
  margin-top: 2.5rem;
  font-size: 0.97rem;
  color: var(--text-body);
  font-weight: 400;
  max-width: 600px;
  line-height: 1.75;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Compare grid */
.pcs-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .pcs-compare-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pcs-compare-grid { grid-template-columns: repeat(4, 1fr); } }

.pcs-compare-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.4rem 1.4rem;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.pcs-compare-card--active { border-top-color: var(--cta-bg); background: var(--tf-aqua-050); }
.pcs-compare-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.pcs-compare-card p { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.pcs-compare-card .cta-link { margin-top: auto; }

/* How it works — process actions */
.pcs-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

/* At a glance — compact facts section */
.pcs-atglance-header { margin-bottom: 2rem; }
.pcs-atglance-header h2 { margin-top: 0.5rem; }

.pcs-atglance-card {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.pcs-atglance-list { display: block; }

.pcs-atglance-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border);
}
.pcs-atglance-row:last-child { border-bottom: none; }

@media (min-width: 560px) {
  .pcs-atglance-row { grid-template-columns: 210px 1fr; }
}

.pcs-atglance-row dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--tf-aqua-050);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: flex-start;
  padding-top: 0.95rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
@media (max-width: 559px) {
  .pcs-atglance-row dt { border-right: none; border-bottom: 1px solid var(--border); padding: 0.65rem 1rem; white-space: normal; }
}

.pcs-atglance-row dd {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.7;
  padding: 0.85rem 1.25rem;
  margin: 0;
}
@media (max-width: 559px) {
  .pcs-atglance-row dd { padding: 0.65rem 1rem 0.9rem; }
}

.pcs-atglance-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Local area */
.pcs-area-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) { .pcs-area-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.pcs-area-text .eyebrow { display: block; margin-bottom: 0.5rem; }
.pcs-area-text h2 { margin-bottom: 1rem; }
.pcs-area-text p { font-size: 0.97rem; color: var(--text-body); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.pcs-area-text .btn { margin-top: 0.5rem; }

.pcs-neighborhood-note { font-style: italic; }
.pcs-area-nearby { font-size: 0.9rem !important; }

.pcs-area-card {
  background: var(--tf-aqua-050);
  border-radius: var(--radius-sm);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--tf-ocean);
}
.pcs-area-card-icon { margin-bottom: 0.75rem; color: var(--tf-ocean); }
.pcs-area-card-heading { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.pcs-area-card-copy { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin-bottom: 1.25rem; }
.pcs-area-card-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }

/* Related grid */
.pcs-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .pcs-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pcs-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Final CTA */
.pcs-final-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.pcs-final-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.pcs-final-inner > p { color: rgba(255,255,255,0.75); font-weight: 300; margin-bottom: 2rem; line-height: 1.8; }

.pcs-final-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-bottom: 1.25rem; }

.pcs-final-tertiary {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.pcs-final-tertiary a {
  color: rgba(255,255,255,0.80);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   SALT CELL CLEANING PAGE
============================================================ */

/* Hero */
.salt-hero {
  position: relative;
  background-color: #1B263B;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.salt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-salt-cell-cleaning-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center top;
}
.salt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}
.salt-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.salt-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.salt-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }
.salt-hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 580px;
}
.salt-hero-reassurance {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 540px;
}
.salt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.salt-hero-call {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  margin: 0;
}
.salt-hero-call a {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Fit grid */
.salt-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .salt-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .salt-fit-grid { grid-template-columns: repeat(4, 1fr); } }

.salt-fit-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.4rem;
  border-left: 3px solid var(--cta-bg);
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.salt-fit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.salt-fit-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin: 0; }

/* Comparison grid */
.salt-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .salt-compare-grid { grid-template-columns: 1fr 1fr; } }

.salt-compare-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.salt-compare-card--primary {
  border-top-color: var(--cta-bg);
}
.salt-compare-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text-strong); }
.salt-compare-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }

/* Pricing block */
.salt-price-block { max-width: 720px; margin: 2.5rem auto 0; }
.salt-price-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--tf-ocean);
  padding: 2rem 1.75rem;
}
.salt-price-section { margin-bottom: 1.75rem; }
.salt-price-section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}
.salt-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.salt-price-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 300;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}
.salt-price-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--tf-ocean);
  font-size: 0.8rem;
}
.salt-price-list--excluded li::before {
  content: '\2013';
  color: var(--text-muted);
}
.salt-price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2rem;
}

/* Process actions */
.salt-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 3rem;
}

/* Service facts block + actions */
.salt-facts-block { max-width: 860px; }
.salt-facts-block .insp-facts-card { margin-top: 2rem; }
/* Label column override now handled by global insp-facts-row at 210px */
.salt-facts-actions { margin-top: 1.25rem; }

/* Related grid — 4 featured cards; compact link row for extras */
.salt-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .salt-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .salt-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Compact more-links row */
.salt-related-more {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.salt-related-more-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.salt-related-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.salt-related-more-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.salt-related-more-links a:hover { color: var(--text-strong); }

/* Section subhead helper */
.section-subhead {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.75;
}
.pcs-final-tertiary a:hover { color: var(--tf-white); }


/* =============================================================
   POOL CHEMICAL BALANCING — /pool-chemical-balancing
   ============================================================= */

/* Hero */
.chem-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.chem-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-water-maintenance-company-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.55;
  filter: brightness(0.92) saturate(1.05);
}

.chem-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.chem-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.chem-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.chem-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 600px; }

/* Controlled H1 line break — hidden on mobile, active at 640px+ */
.chem-h1-br { display: none; }
@media (min-width: 640px) { .chem-h1-br { display: block; } }

.chem-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.chem-hero-reassurance {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
.chem-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.chem-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 0.5rem; }
.chem-hero-call a { color: rgba(255,255,255,0.80); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.chem-hero-call a:hover { color: var(--tf-white); }

/* Fit grid */
.chem-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .chem-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .chem-fit-grid { grid-template-columns: repeat(3, 1fr); } }
.chem-fit-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--tf-ocean);
  padding: 1.6rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.chem-fit-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.chem-fit-card p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin: 0; }

/* Offer block */
.chem-offer-block { display: flex; justify-content: center; margin-top: 2.5rem; }
.chem-offer-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--cta-bg);
  border-radius: var(--radius-sm);
  padding: 2.25rem 2rem 2rem;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(6,40,64,0.10);
}
.chem-offer-label {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.chem-offer-included {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.chem-offer-included li {
  font-size: 0.93rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
  padding: 0.7rem 0 0.7rem 1.75rem;
  border-bottom: 1px solid var(--border-light, #eaecef);
  position: relative;
}
.chem-offer-included li:last-child { border-bottom: none; }
.chem-offer-included li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cta-bg);
}
.chem-offer-separate {
  background: var(--cream, #EFE5DC);
  border-radius: calc(var(--radius-sm) - 2px);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.chem-offer-separate-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.6rem;
}
.chem-offer-separate-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
}
.chem-offer-separate-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.chem-offer-separate-list li::before {
  content: '+ ';
  color: var(--text-muted);
}
.chem-offer-reassurance {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.chem-offer-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Service boundaries (not-included list) */
.chem-not-inner { max-width: 760px; }
.chem-not-inner > p { font-size: 0.97rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.chem-not-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) { .chem-not-list { grid-template-columns: 1fr 1fr; } }
.chem-not-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
  padding: 0.85rem 1.25rem 0.85rem 2.25rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.chem-not-list li:last-child,
.chem-not-list li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
@media (min-width: 600px) {
  .chem-not-list li:nth-child(2n) { border-left: 1px solid var(--border); }
  .chem-not-list li:nth-last-child(-n+2) { border-bottom: none; }
}
.chem-not-list li::before {
  content: '×';
  position: absolute;
  left: 0.85rem;
  top: 0.82rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}
.chem-not-followup { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* Comparison table column width override */
.chem-compare-table th:nth-child(1),
.chem-compare-table td:nth-child(1) { width: 18%; }
.chem-compare-table th:nth-child(2),
.chem-compare-table td:nth-child(2) { width: 30%; }
.chem-compare-table th:nth-child(3),
.chem-compare-table td:nth-child(3) { width: 34%; }
.chem-compare-table th:nth-child(4),
.chem-compare-table td:nth-child(4) { width: 18%; min-width: 130px; }

/* Related grid — 4 featured cards; compact link row for extras */
.chem-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .chem-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .chem-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Service facts actions */
.chem-facts-actions { margin-top: 2rem; }


/* =============================================================
   POOL FILTER REPAIR — /pool-filter-repair
============================================================= */

/* Hero */
.fr-hero {
  position: relative;
  background: var(--tf-cerulean);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.fr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-filter-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}

.fr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.fr-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.fr-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.fr-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }

.fr-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.fr-hero-reassurance {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.fr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.fr-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.fr-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.fr-hero-call a:hover { color: var(--tf-white); }

/* Fit section */
.fr-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .fr-fit-grid { grid-template-columns: 1fr 1fr; } }

.fr-fit-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.35rem;
}

.fr-fit-card h3 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--text-strong); }
.fr-fit-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin: 0; }

.fr-fit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2.25rem;
}

/* Soft aqua support section */
.fr-support-inner { max-width: 640px; }

.fr-support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fr-support-list li {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--text-strong);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.65;
}

.fr-support-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta-bg);
}

.fr-support-list a {
  color: var(--tf-cerulean);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fr-support-list a:hover { color: var(--tf-ocean); }

/* Editorial lifestyle band */
.fr-editorial-band {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-height: 480px;
}

.fr-editorial-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Related grid — 4 featured cards; compact link row for extras */
.fr-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .fr-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .fr-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   COMPACT "MORE SERVICES" LINK ROWS — sitewide standardization
   All pages use the same visual pattern; class prefix varies by page.
   ============================================================ */

/* Green Pool Cleanup */
.green-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.green-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.green-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.green-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.green-related-more-links a:hover { color: var(--text-strong); }

/* Weekly Pool Cleaning */
.weekly-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.weekly-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.weekly-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.weekly-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.weekly-related-more-links a:hover { color: var(--text-strong); }

/* Pool Cleaning Services hub */
.pcs-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.pcs-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.pcs-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.pcs-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.pcs-related-more-links a:hover { color: var(--text-strong); }

/* Pool Repair hub */
.repair-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.repair-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.repair-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.repair-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.repair-related-more-links a:hover { color: var(--text-strong); }

/* Pool Filter Repair */
.fr-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.fr-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.fr-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.fr-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.fr-related-more-links a:hover { color: var(--text-strong); }

/* One-Time Pool Cleaning */
.otc-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.otc-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.otc-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.otc-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.otc-related-more-links a:hover { color: var(--text-strong); }

/* Pool Care and Maintenance hub */
.care-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.care-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.care-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.care-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.care-related-more-links a:hover { color: var(--text-strong); }

/* Pool Chemical Balancing */
.chem-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.chem-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.chem-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.chem-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.chem-related-more-links a:hover { color: var(--text-strong); }

/* ============================================================
   POOL OPENING AND CLOSING (/pool-opening-closing)
   ============================================================ */

/* Hero */
.poc-hero {
  position: relative;
  background-color: #1B263B;
  overflow: hidden;
  padding: 5rem 0 3.5rem;
  min-height: 520px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .poc-hero { padding: 6.5rem 0 4.5rem; min-height: 580px; } }

/* Hero: seasonal-pool-opening-closing-round-rock-tx-hero.webp */
.poc-hero-bg {
  position: absolute; inset: 0;
  background: url('images/seasonal-pool-opening-closing-round-rock-tx-hero.webp') center/cover no-repeat;
}
.poc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}
.poc-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.poc-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.poc-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 680px; }

.poc-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.poc-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.1rem; }

.poc-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.58); margin-bottom: 1.5rem; }
.poc-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.poc-hero-call a:hover { color: var(--tf-white); }

.poc-h1-br { display: none; }
@media (min-width: 640px) { .poc-h1-br { display: inline; } }

/* Fit grid — 4 cards, 2x2 at medium, 4-up at large */
.poc-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .poc-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .poc-fit-grid { grid-template-columns: repeat(4, 1fr); } }

.poc-fit-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.poc-fit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.poc-fit-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 0.75rem; }
.poc-fit-card .cta-link { margin-top: auto; }

/* Routing grid — same 4-up layout as related-card grid */
.poc-routing-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .poc-routing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .poc-routing-grid { grid-template-columns: repeat(4, 1fr); } }

/* Process actions */
.poc-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.75rem;
}

/* Facts actions */
.poc-facts-actions { margin-top: 2rem; }

/* Related grid — 4-up */
.poc-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 560px) { .poc-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .poc-related-grid { grid-template-columns: repeat(4, 1fr); } }

/* Compact more-links row */
.poc-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.poc-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.poc-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.poc-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.poc-related-more-links a:hover { color: var(--text-strong); }

/* Local area H2 break */
.poc-local-h2-br { display: none; }
@media (min-width: 640px) { .poc-local-h2-br { display: block; } }

/* ============================================================
   POOL AUTOMATION REPAIR PAGE
============================================================ */

/* Hero */
.auto-hero {
  position: relative;
  background: var(--tf-cerulean);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.auto-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-automation-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.45;
  filter: brightness(1.0) saturate(1.05);
}

.auto-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}

.auto-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.auto-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.auto-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }

.auto-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.auto-hero-route {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.auto-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.auto-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.auto-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.auto-hero-call a:hover { color: var(--tf-white); }

/* Problem / fit cards */
.auto-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .auto-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .auto-fit-grid { grid-template-columns: repeat(4, 1fr); } }

.auto-fit-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.auto-fit-card h3 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--text-strong); }
.auto-fit-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin: 0; }

.auto-fit-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-top: 2.25rem; }

/* Diagnosis / pricing block */
.auto-diagnosis-inner { max-width: 660px; }

.auto-diagnosis-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--cta-bg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 1px 5px rgba(6,40,64,0.08);
  margin-top: 1.75rem;
}

.auto-diagnosis-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.auto-diagnosis-price-row { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.85rem; }
.auto-diagnosis-amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }

.auto-diagnosis-included { list-style: none; padding: 0; margin: 1rem 0; }
.auto-diagnosis-included li {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.5;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.auto-diagnosis-included li:last-child { border: none; }
.auto-diagnosis-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta-bg);
}

.auto-diagnosis-addon {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.auto-diagnosis-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; }
.auto-diagnosis-actions .btn { text-align: center; }
@media (min-width: 480px) {
  .auto-diagnosis-actions { flex-direction: row; flex-wrap: wrap; }
  .auto-diagnosis-actions .btn { flex: 1 1 auto; }
}

/* What we check — checklist cards */
.auto-check-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .auto-check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .auto-check-grid { grid-template-columns: repeat(3, 1fr); } }

.auto-check-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--cta-bg);
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  font-size: 0.93rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
}
.auto-check-card svg { flex-shrink: 0; color: var(--cta-bg); margin-top: 0.1rem; }

/* Choose right service — 4 cards on blue-soft background */
.auto-compare-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .auto-compare-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .auto-compare-grid { grid-template-columns: repeat(4, 1fr); } }

.auto-compare-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.4rem 1.35rem;
  border-top: 2px solid var(--cta-bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.auto-compare-card h3 { font-size: 0.97rem; margin-bottom: 0.45rem; color: var(--text-strong); }
.auto-compare-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.auto-compare-card .cta-link { margin-top: auto; }

/* Editorial band (mid-page lifestyle image) */
.auto-editorial-band { width: 100%; overflow: hidden; line-height: 0; }
.auto-editorial-img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }
@media (min-width: 768px) { .auto-editorial-img { height: 520px; } }

/* Service facts */
.auto-facts-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 2rem;
}
.auto-facts-row { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--border); }
.auto-facts-row:last-child { border-bottom: none; }
.auto-facts-label { padding: 0.9rem 1.25rem; font-size: 0.8rem; font-weight: 600; color: var(--text-strong); background: var(--tf-aqua-050); border-right: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.auto-facts-value { padding: 0.9rem 1.25rem; font-size: 0.9rem; color: var(--text-body); font-weight: 300; line-height: 1.7; }
@media (max-width: 540px) {
  .auto-facts-row { grid-template-columns: 1fr; }
  .auto-facts-label { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; white-space: normal; }
}

/* Related services — 4 featured cards */
.auto-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .auto-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .auto-related-grid { grid-template-columns: repeat(4, 1fr); } }

.auto-related-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.4rem 1.35rem;
  border-top: 2px solid var(--cta-bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.auto-related-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.auto-related-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.auto-related-card .cta-link { margin-top: auto; }

/* Compact "more services" link row */
.auto-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.auto-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.auto-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.auto-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.auto-related-more-links a:hover { color: var(--text-strong); }

/* Local area */
.auto-area-inner { max-width: 660px; }
.auto-area-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.auto-area-inner > p { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 0.85rem; }
.auto-area-actions { margin-top: 2rem; }

/* FAQ */
.auto-faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.auto-faq-item { border-bottom: 1px solid var(--border); }
.auto-faq-item:last-child { border-bottom: none; }
.auto-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.auto-faq-question::-webkit-details-marker { display: none; }
.auto-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .auto-faq-question { background: var(--tf-aqua-050); }
details[open] .auto-faq-question::after { content: '\2212'; }
.auto-faq-item:hover .auto-faq-question { background: var(--tf-aqua-050); }
.auto-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }
.auto-faq-answer a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   POOL LIGHT REPAIR PAGE (plr-)
============================================================ */

/* Hero */
.plr-hero {
  position: relative;
  background-color: #1B263B;
  padding: 5rem 0 4rem;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.plr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-light-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.plr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
  z-index: 1;
}
.plr-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.plr-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.plr-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 580px; }
.plr-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 580px;
}
.plr-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.plr-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.plr-hero-call a { color: rgba(255,255,255,0.82); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.plr-hero-call a:hover { color: var(--tf-white); }

/* Problem / Fit grid — 4 cards, 2-col at tablet, 4-col at desktop */
.plr-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .plr-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .plr-fit-grid { grid-template-columns: repeat(4, 1fr); } }
.plr-fit-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.plr-fit-card h3 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--text-strong); }
.plr-fit-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin: 0; }

/* Pricing card */
.plr-price-inner { max-width: 660px; }
.plr-price-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem;
  margin-top: 2rem;
}
.plr-price-card-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta-bg);
  margin-bottom: 0.5rem;
}
.plr-price-row { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.85rem; }
.plr-price-amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--tf-cerulean); line-height: 1; }
.plr-price-included { list-style: none; padding: 0; margin: 1rem 0; }
.plr-price-included li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-body);
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.55;
}
.plr-price-included li:last-child { border-bottom: none; }
.plr-price-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta-bg);
}
.plr-price-addon {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.plr-price-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; }
.plr-price-actions .btn { text-align: center; }
@media (min-width: 480px) {
  .plr-price-actions { flex-direction: row; flex-wrap: wrap; }
  .plr-price-actions .btn { flex: 1 1 auto; }
}

/* What we check — 6 cards, 2-col at tablet, 3-col at desktop */
.plr-check-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .plr-check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .plr-check-grid { grid-template-columns: repeat(3, 1fr); } }
.plr-check-card {
  background: var(--tf-sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.25rem;
}
.plr-check-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--text-strong); }
.plr-check-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; margin: 0; }

/* Different first step routing — 4 cards */
.plr-route-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .plr-route-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .plr-route-grid { grid-template-columns: repeat(4, 1fr); } }
.plr-route-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.plr-route-card h3 { font-size: 0.97rem; margin-bottom: 0.45rem; color: var(--text-strong); }
.plr-route-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.plr-route-card .cta-link { margin-top: auto; }

/* How it works after-steps CTA row */
.plr-steps-after { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; margin-top: 2.5rem; }
.plr-steps-text-link { font-size: 0.9rem; color: var(--tf-ocean); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.plr-steps-text-link:hover { color: var(--tf-cerulean); }

/* Mid-page lifestyle band */
.plr-editorial-band { width: 100%; overflow: hidden; line-height: 0; }
.plr-editorial-img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }
@media (min-width: 768px) { .plr-editorial-img { height: 520px; } }

/* Service facts table */
.plr-facts-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 2rem;
}
.plr-facts-row { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--border); }
.plr-facts-row:last-child { border-bottom: none; }
.plr-facts-label { padding: 0.9rem 1.25rem; font-size: 0.8rem; font-weight: 600; color: var(--text-strong); background: var(--tf-aqua-050); border-right: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.plr-facts-value { padding: 0.9rem 1.25rem; font-size: 0.9rem; color: var(--text-body); font-weight: 300; line-height: 1.7; }
@media (max-width: 600px) {
  .plr-facts-row { grid-template-columns: 1fr; }
  .plr-facts-label { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; white-space: normal; }
}

/* Related services — 4 featured cards + compact link row */
.plr-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .plr-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .plr-related-grid { grid-template-columns: repeat(4, 1fr); } }
.plr-related-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.plr-related-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.plr-related-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.plr-related-card .cta-link { margin-top: auto; }
.plr-related-more { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.plr-related-more-label { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.plr-related-more-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.plr-related-more-links a { font-size: 0.88rem; font-weight: 500; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 3px; }
.plr-related-more-links a:hover { color: var(--text-strong); }

/* Local service area */
.plr-area-inner { max-width: 660px; }
.plr-area-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.plr-area-inner > p { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 0.85rem; }
.plr-area-actions { margin-top: 2rem; }

/* FAQ accordion */
.plr-faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.plr-faq-item { border-bottom: 1px solid var(--border); }
.plr-faq-item:last-child { border-bottom: none; }
.plr-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.plr-faq-question::-webkit-details-marker { display: none; }
.plr-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .plr-faq-question { background: var(--tf-aqua-050); }
details[open] .plr-faq-question::after { content: '\2212'; }
.plr-faq-item:hover .plr-faq-question { background: var(--tf-aqua-050); }
.plr-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }
.plr-faq-answer a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }


/* =============================================================
   POOL HEATER REPAIR PAGE (/pool-heater-repair)
   Reuses .pump-* component classes for layout consistency.
   Only adds hero background image and fit-grid override.
============================================================= */

/* Hero background image (fallback until heater-specific asset is uploaded) */
.heater-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-heater-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}

.timer-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-timer-automation-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}

/* Fit/symptom grid: 4 cards in 2x2 layout at wider viewports */
.heater-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .heater-fit-grid { grid-template-columns: 1fr 1fr; } }


/* =============================================================
   POOL SCHOOL PAGE (/pool-school)
============================================================= */

/* Hero */
.ps-hero {
  position: relative;
  background-color: #1B263B;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.ps-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/new-pool-owner-training-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.1);
}
.ps-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.78) 0%, rgba(11,79,108,0.48) 50%, rgba(26,159,196,0.04) 100%);
}
.ps-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.ps-hero-inner .eyebrow { color: var(--cta-bg); margin-bottom: 0.75rem; display: block; }
.ps-hero-inner h1 { color: var(--tf-white); margin-bottom: 1.25rem; }
.ps-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.ps-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.ps-hero-call { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }
.ps-hero-call a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 2px; }
.ps-hero-call a:hover { color: var(--tf-white); }

/* Fit cards */
.ps-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .ps-fit-grid { grid-template-columns: 1fr 1fr; } }
.ps-fit-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.ps-fit-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-strong); margin-bottom: 0.5rem; }
.ps-fit-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin: 0; font-weight: 300; }

/* Checklist */
.ps-checklist {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 620px;
}
@media (min-width: 600px) { .ps-checklist { grid-template-columns: 1fr 1fr; } }
.ps-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-strong);
  font-weight: 400;
  line-height: 1.55;
}
.ps-checklist-item svg { color: var(--cta-bg); flex-shrink: 0; margin-top: 2px; }
.ps-cover-cta { text-align: center; margin-top: 2.5rem; }

/* Compare / choose right service cards */
.ps-compare-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .ps-compare-grid { grid-template-columns: 1fr 1fr; } }
.ps-compare-card {
  background: var(--tf-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ps-compare-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-strong); margin: 0; }
.ps-compare-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin: 0; font-weight: 300; flex: 1; }
.ps-compare-card .cta-link { margin-top: 0.5rem; align-self: flex-start; }

/* How it works after-row */
.ps-how-after { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; justify-content: center; margin-top: 3rem; }
.ps-how-text-link { font-size: 0.9rem; color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.ps-how-text-link:hover { color: var(--text-strong); }

/* Service facts */
.ps-facts-card {
  max-width: 780px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ps-facts-row { display: flex; border-bottom: 1px solid var(--border); }
.ps-facts-row:last-child { border-bottom: none; }
.ps-facts-label {
  width: 220px;
  min-width: 160px;
  flex-shrink: 0;
  padding: 0.9rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-strong);
  background: var(--tf-aqua-050);
  border-right: 1px solid var(--border);
}
.ps-facts-value {
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 300;
}
.ps-facts-value a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 540px) {
  .ps-facts-row { flex-direction: column; }
  .ps-facts-label { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
}

/* Related services cards */
.ps-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .ps-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .ps-related-grid { grid-template-columns: repeat(4, 1fr); } }
.ps-related-card {
  background: var(--tf-sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ps-related-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-strong); margin: 0; }
.ps-related-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin: 0; font-weight: 300; flex: 1; }
.ps-related-card .cta-link { margin-top: 0.5rem; align-self: flex-start; }

/* Compact crawlable link row */
.ps-compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  justify-content: center;
}
.ps-compact-links a {
  font-size: 0.88rem;
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
  white-space: nowrap;
}
.ps-compact-links a:hover { color: var(--text-strong); }

/* Local area */
.ps-area-inner { max-width: 660px; }
.ps-area-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.ps-area-inner > p { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 0.85rem; }
.ps-area-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* FAQ accordion */
.ps-faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.ps-faq-item { border-bottom: 1px solid var(--border); }
.ps-faq-item:last-child { border-bottom: none; }
.ps-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 1.5rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--text-strong); cursor: pointer; list-style: none; transition: background 0.15s; gap: 1rem; }
.ps-faq-question::-webkit-details-marker { display: none; }
.ps-faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--tf-ocean); flex-shrink: 0; }
details[open] .ps-faq-question { background: var(--tf-aqua-050); }
details[open] .ps-faq-question::after { content: '\2212'; }
.ps-faq-item:hover .ps-faq-question { background: var(--tf-aqua-050); }
.ps-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.75; font-weight: 300; background: var(--tf-aqua-050); }
.ps-faq-answer a { color: var(--tf-ocean); text-decoration: underline; text-underline-offset: 2px; }


/* =============================================================
   POOL PLUMBING REPAIR PAGE (/pool-plumbing-repair)
   Reuses .pump-* component classes for layout consistency.
   Only adds hero background image.
============================================================= */

.plumb-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-plumbing-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}


/* =============================================================
   POOL SALT SYSTEM REPAIR PAGE (/pool-salt-system-repair)
   Reuses .pump-* component classes for layout consistency.
   Only adds hero background image and fit-grid override.
============================================================= */

/* Hero background image */
.salt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-salt-cell-cleaning-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}

/* Fit/symptom grid: 4 cards in 2x2 layout at wider viewports */
.salt-fit-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }


/* =============================================================
   POOL WATER FEATURE REPAIR PAGE (/pool-water-feature-repair)
   Reuses .pump-* component classes for layout consistency.
   Only adds hero background image.
   Intended hero: pool-water-feature-repair-round-rock-tx-hero.webp. If unavailable at runtime, hero falls back to navy background via CSS. Do not substitute another page's image.
============================================================= */

.water-feature-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-water-feature-repair-round-rock-tx-hero.webp');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.55;
  filter: brightness(1.0) saturate(1.05);
}
@media (min-width: 560px) { .salt-fit-grid { grid-template-columns: 1fr 1fr; } }


/* =============================================================
   SAME-DAY POOL SERVICE PAGE (/same-day-pool-service)
   Urgent triage page. No hero image — navy fallback is intentional.
   Wire in images/same-day-pool-service-round-rock-tx-hero.webp
   when available by adding background-image to .sd-hero-bg.
============================================================= */

.sd-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.sd-hero-bg {
  position: absolute;
  inset: 0;
  /* Intended hero: images/same-day-pool-service-round-rock-tx-hero.webp — add background-image here when available */
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.05);
}

.sd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.82) 0%, rgba(11,79,108,0.52) 55%, rgba(26,159,196,0.05) 100%);
}

.sd-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.sd-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.sd-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 620px; }

.sd-h1-br { display: none; }
@media (min-width: 640px) { .sd-h1-br { display: block; } }

.sd-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 1.25rem; line-height: 1.8; }
.sd-hero-secondary { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.62); max-width: 540px; margin-bottom: 2.25rem; line-height: 1.75; }
.sd-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.sd-hero-link { font-size: 0.9rem; color: rgba(255,255,255,0.72); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.sd-hero-link:hover { color: var(--tf-white); }

.sd-service-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .sd-service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .sd-service-grid { grid-template-columns: repeat(3, 1fr); } }

.sd-service-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--tf-ocean); padding: 1.6rem 1.4rem 1.35rem; display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.sd-service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.sd-service-card p  { font-size: 0.87rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.sd-service-card-links { display: flex; flex-direction: column; gap: 0.45rem; margin-top: auto; }
.sd-service-card-links .cta-link { margin-top: 0; }

.sd-calendar-box { background: var(--tf-cerulean); border-radius: var(--radius-sm); padding: 2.5rem 2.25rem; max-width: 720px; margin: 0 auto; }
.sd-calendar-box h2 { color: var(--tf-white); margin-bottom: 1rem; }
.sd-calendar-box p { font-size: 0.97rem; color: rgba(255,255,255,0.78); font-weight: 300; line-height: 1.8; margin-bottom: 0.85rem; }
.sd-calendar-box p:last-of-type { margin-bottom: 1.75rem; }

.sd-neighborhood-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.sd-neighborhood-chip { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.62); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 0.3rem 0.85rem; letter-spacing: 0.02em; }

.sd-area-locations-link { margin-top: 1.25rem; font-size: 0.9rem; }
.sd-area-locations-link a { color: rgba(255,255,255,0.65); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.sd-area-locations-link a:hover { color: var(--tf-white); }

.sd-what-to-text { background: var(--tf-aqua-050); }
.sd-what-to-text-inner { max-width: 680px; }
.sd-what-to-text .eyebrow { color: var(--tf-ocean); }
.sd-what-to-text h2 { margin-bottom: 1rem; }
.sd-what-to-text p { font-size: 0.97rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.75rem; }


/* =============================================================
   POOL DRAIN AND PRESSURE WASH PAGE (/pool-drain-pressure-wash)
   No hero image — blue/navy fallback is intentional.
   Wire in images/pool-drain-pressure-wash-round-rock-tx-hero.webp
   when available by adding background-image to .drain-hero-bg.
============================================================= */

.drain-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.drain-hero-bg {
  position: absolute;
  inset: 0;
  /* Intended hero: images/pool-drain-pressure-wash-round-rock-tx-hero.webp — add background-image here when available */
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.05);
}

.drain-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.82) 0%, rgba(11,79,108,0.52) 55%, rgba(26,159,196,0.05) 100%);
}

.drain-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.drain-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.drain-hero h1 { color: var(--tf-white); margin-bottom: 1.25rem; max-width: 620px; }

.drain-h1-br { display: none; }
@media (min-width: 640px) { .drain-h1-br { display: block; } }

.drain-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 1.25rem; line-height: 1.8; }
.drain-hero-secondary { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.62); max-width: 540px; margin-bottom: 2.25rem; line-height: 1.75; }
.drain-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-bottom: 1.25rem; }
.drain-hero-compare-link { font-size: 0.9rem; color: rgba(255,255,255,0.72); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.drain-hero-compare-link:hover { color: var(--tf-white); }

/* What is included — price card on soft-aqua background */
.drain-price-card { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 3px solid var(--cta-bg); padding: 2.25rem 2rem 2rem; box-shadow: 0 1px 4px rgba(6,40,64,0.07); margin-top: 2rem; max-width: 720px; }

/* How it works — 6-step 3-column grid */
.drain-steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .drain-steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .drain-steps-grid { grid-template-columns: repeat(3, 1fr); } }

.drain-step { background: var(--tf-white); border-radius: var(--radius-sm); border-top: 2px solid var(--tf-aqua); padding: 1.75rem 1.5rem 1.5rem; box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.drain-step .step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--tf-ocean); line-height: 1; margin-bottom: 0.75rem; }
.drain-step h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.drain-step p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

.drain-steps-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.drain-steps-link { font-size: 0.88rem; color: var(--tf-ocean); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.drain-steps-link:hover { color: var(--tf-cerulean); }


/* =============================================================
   LOCATIONS HUB PAGE (/locations)
   No hero image — blue/navy fallback is intentional.
   Wire in images/locations-true-flow-pool-service-areas-hero.webp
   when available by adding background-image to .loc-hero-bg.
============================================================= */

.loc-hero {
  position: relative;
  background: var(--tf-cerulean);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.loc-hero-bg {
  position: absolute;
  inset: 0;
  /* Intended hero: images/locations-true-flow-pool-service-areas-hero.webp — add background-image here when available */
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  filter: brightness(0.95) saturate(1.05);
}

.loc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.82) 0%, rgba(11,79,108,0.52) 55%, rgba(26,159,196,0.05) 100%);
}

.loc-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.loc-hero .eyebrow { color: var(--tf-aqua); letter-spacing: 0.20em; }
.loc-hero h1 {
  color: var(--tf-white);
  margin-bottom: 1.25rem;
  max-width: 680px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.loc-h1-br-1, .loc-h1-br-2 { display: none; }
@media (min-width: 640px) {
  .loc-h1-br-1 { display: block; }
}
@media (min-width: 640px) and (max-width: 900px) {
  .loc-h1-br-2 { display: block; }
}

.loc-hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 1.25rem; line-height: 1.8; }
.loc-hero-secondary { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.62); max-width: 540px; margin-bottom: 2.25rem; line-height: 1.75; }

.loc-hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.loc-hero-schedule-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.loc-hero-schedule-link:hover { color: var(--tf-white); }

/* Section 1: overview */
.loc-overview-inner { max-width: 680px; }
.loc-overview-inner .eyebrow { display: block; margin-bottom: 0.75rem; }
.loc-overview-inner h2 { margin-bottom: 1rem; }
.loc-overview-inner > p { font-size: 0.97rem; color: var(--text-strong); font-weight: 300; line-height: 1.8; margin-bottom: 0.85rem; }
.loc-overview-secondary { color: var(--text-body) !important; }
.loc-overview-inner .btn { margin-top: 1.5rem; }

/* Section 2: featured local pages — 4-col grid */
.loc-featured-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .loc-featured-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .loc-featured-grid { grid-template-columns: repeat(4, 1fr); } }

.loc-featured-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--cta-bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.loc-featured-card h3 { font-size: 1.05rem; margin-bottom: 0.65rem; color: var(--text-strong); font-weight: 600; }
.loc-featured-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; flex: 1; margin-bottom: 1.2rem; }
.loc-featured-card .cta-link { margin-top: auto; }

/* Compact links (shared between section 2 and related) */
.loc-compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.loc-compact-links a {
  font-size: 0.88rem;
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s;
}
.loc-compact-links a:hover { color: var(--tf-cerulean); }

/* Section 3: service routing grid — 2-col on mobile+, 3-col on wide */
.loc-routing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .loc-routing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .loc-routing-grid { grid-template-columns: repeat(3, 1fr); } }

.loc-routing-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--tf-aqua);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.loc-routing-card h3 { font-size: 1.02rem; margin-bottom: 0.65rem; color: var(--text-strong); font-weight: 600; }
.loc-routing-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; flex: 1; margin-bottom: 1.2rem; }
.loc-routing-card .cta-link { margin-top: auto; }

/* Related grid — 4-col */
.loc-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 560px) { .loc-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .loc-related-grid { grid-template-columns: repeat(4, 1fr); } }

.loc-related-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--cta-bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
}
.loc-related-card h3 { font-size: 1.05rem; margin-bottom: 0.65rem; color: var(--text-strong); font-weight: 600; }
.loc-related-card p  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; flex: 1; margin-bottom: 1.2rem; }
.loc-related-card .cta-link { margin-top: auto; }

/* Final CTA inner */
.loc-cta-inner { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.loc-cta-inner h2 { color: var(--tf-white); margin-bottom: 1rem; }
.loc-cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.78); font-weight: 300; line-height: 1.8; }

/* Section 1B: Round Rock-area service routing */
.loc-area-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .loc-area-groups {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.loc-area-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--tf-ocean);
  box-shadow: 0 1px 2px rgba(6,40,64,0.05);
  display: flex;
  flex-direction: column;
}
.loc-area-card .btn { margin-top: auto; align-self: flex-start; }

.loc-area-card h3 {
  font-size: 1rem;
  color: var(--text-strong);
  margin-bottom: 1.35rem;
  font-weight: 600;
}

.loc-area-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.loc-area-links a {
  font-size: 0.9rem;
  color: var(--tf-ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
  transition: color 0.2s;
}
.loc-area-links a:hover {
  color: var(--tf-cerulean);
}

.loc-area-note {
  font-size: 0.87rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Section 2B: Local pool conditions */
.loc-conditions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2.5rem;
}

.section-header p.loc-conditions-supporting {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.75;
}



/* =============================================================
   LOCATIONS HUB — NEW SECTIONS (hours, reach)
   Added 2026-06-09
============================================================= */

.loc-hours-inner { max-width: 680px; }
.loc-hours-inner .eyebrow { display: block; margin-bottom: 0.75rem; }
.loc-hours-inner h2 { margin-bottom: 1rem; }
.loc-hours-inner > p { font-size: 0.97rem; color: var(--text-strong); font-weight: 300; line-height: 1.8; margin-bottom: 0; }

.loc-hours-grid {
  margin-top: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.loc-hours-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.loc-hours-row:last-child { border-bottom: none; }

.loc-hours-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-strong);
  padding-top: 0.1rem;
}
.loc-hours-value {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.65;
}

.loc-hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  align-items: center;
}

@media (max-width: 480px) {
  .loc-hours-row { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* Reach section */
.loc-reach-intro {
  font-size: 0.97rem;
  color: var(--text-strong);
  font-weight: 300;
  line-height: 1.8;
  max-width: 660px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.loc-reach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 860px;
}
@media (min-width: 560px) { .loc-reach-grid { grid-template-columns: repeat(2, 1fr); } }

.loc-reach-card {
  background: var(--tf-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(6,40,64,0.06);
}
.loc-reach-card h3 {
  font-size: 1rem;
  color: var(--text-strong);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.loc-reach-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.loc-reach-note {
  font-size: 0.9rem;
  color: var(--text-strong);
  font-weight: 500;
  margin-top: 1.5rem;
}


/* =============================================================
   ROUND ROCK CITY PAGE (/locations/round-rock)
   Added 2026-06-09
============================================================= */

.rr-section-intro {
  font-size: 1rem;
  color: var(--text-strong);
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.rr-section-body {
  font-size: 0.97rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.rr-service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2.5rem;
  max-width: 580px;
}
@media (max-width: 480px) { .rr-service-list { grid-template-columns: 1fr; } }
.rr-service-list li {
  font-size: 0.9rem;
  color: var(--text-strong);
  font-weight: 400;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.rr-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta-bg);
}

/* Cleaning cards */
.rr-cleaning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .rr-cleaning-grid { grid-template-columns: repeat(3, 1fr); } }

.rr-cleaning-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-top: 3px solid var(--tf-ocean);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.06);
}
.rr-cleaning-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--tf-cerulean);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.rr-cleaning-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.rr-cleaning-card h3 {
  font-size: 1rem;
  color: var(--text-strong);
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.rr-cleaning-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.rr-cleaning-card .cta-link { margin-top: auto; }

.rr-cleaning-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 2rem;
  max-width: 560px;
}

/* Reviews */
.rr-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 560px) { .rr-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .rr-reviews-grid { grid-template-columns: repeat(4, 1fr); } }

.rr-review-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(6,40,64,0.06);
}
.rr-review-stars {
  color: var(--cta-bg);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.rr-review-text {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1rem;
}
.rr-review-author {
  font-size: 0.85rem;
  color: var(--text-strong);
  font-weight: 600;
}

/* ============================================================
   SALT SYSTEM CONVERSION PAGE
============================================================ */
.salt-conv-h1-br { display: none; }
@media (min-width: 640px) { .salt-conv-h1-br { display: block; } }

/* ============================================================
   TFP BOOKING WIDGET
   Scoped to .tfp-drawer and .tfp-backdrop so no conflict with
   main site styles. The widget CSS tokens use --w-* prefixed
   custom properties on .tfp-drawer to avoid overriding site tokens.
============================================================ */

/* --- Tokens (scoped to drawer so they don't override site palette) --- */
.tfp-drawer, .tfp-loading-overlay {
  --w-cerulean:   #0b4f6c;
  --w-navy:       #062840;
  --w-aqua:       #ddf3f9;
  --w-sand:       #f5ead8;
  --w-saffron:    #c9a96e;
  --w-saffron-dk: #b8935e;
  --w-white:      #ffffff;
  --w-text:       #062840;
  --w-text-muted: #5a6a7a;
  --w-border:     #d0dce8;
  --w-radius:     10px;
  --w-shadow:     0 2px 12px rgba(6,40,64,.08);
}

/* --- Backdrop --- */
.tfp-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,20,26,.45);
  z-index: 499;
}
.tfp-backdrop.show { display: block; }

/* --- Drawer shell (fixed right panel on desktop) --- */
.tfp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(460px, 100vw);
  background: var(--w-white);
  z-index: 500;
  box-shadow: -8px 0 40px rgba(13,20,26,.18);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: var(--w-text);
}
.tfp-drawer.open { transform: translateX(0); }

/* Mobile: bottom sheet */
@media (max-width: 640px) {
  .tfp-drawer {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 92dvh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -8px 40px rgba(13,20,26,.18);
  }
  .tfp-drawer.open { transform: translateY(0); }
}

/* --- Inline embed mode (service pages) --- */
.tfp-drawer.tfp-inline {
  position: static;
  width: 100%;
  height: auto;
  transform: none !important;
  box-shadow: none;
  transition: none;
  border-radius: 0;
  overflow: visible;
  display: block;
}

/* --- Close button --- */
.tfp-drawer .drawer-close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 36px;
  height: 36px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--w-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
  opacity: .7;
  transition: opacity .15s;
}
.tfp-drawer .drawer-close-btn:hover { opacity: 1; }

/* --- Branded header (shown in drawer mode only) --- */
.tfp-drawer .drawer-branded-header {
  background: var(--w-white);
  border-bottom: 1px solid var(--w-border);
  padding: 0 3rem 0 1.25rem;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.tfp-drawer .drawer-favicon-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .9;
}
.tfp-drawer .drawer-mark { flex-shrink: 0; }
.tfp-drawer .drawer-wordmark {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--w-cerulean);
  line-height: 1;
}
.tfp-drawer .drawer-pipe {
  width: 1px; height: 14px;
  background: var(--w-border);
  flex-shrink: 0;
}
.tfp-drawer .drawer-subhead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .78rem;
  color: var(--w-text-muted);
  font-weight: 500;
}

/* --- Scrollable interior --- */
.tfp-drawer .drawer-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.tfp-drawer.tfp-inline .drawer-scroll {
  overflow: visible;
  flex: none;
}

/* --- Summary strip (steps 3+4, drawer mode) --- */
.tfp-summary-strip {
  background: var(--w-aqua);
  border-bottom: 1px solid var(--w-border);
  padding: .6rem 1.5rem;
  font-size: .85rem;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 5;
  display: none;
}
.tfp-summary-strip .summary-strip-service { font-weight: 600; color: var(--w-cerulean); }
.tfp-summary-strip .summary-strip-deposit { color: var(--w-saffron-dk); font-weight: 700; font-size: 1rem; }

/* --- Widget wrap --- */
.tfp-drawer .widget-wrap {
  max-width: none;
  margin: 0;
  padding: 1.25rem 1.25rem 2rem;
}
.tfp-drawer.tfp-inline .widget-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

/* Hide standalone header inside drawer (it only lives in schedule.html) */
.tfp-drawer .widget-header { display: none; }

/* --- Stepper --- */
.tfp-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .2rem;
  margin-bottom: 0;
  flex-wrap: nowrap;
  background: var(--w-white);
  padding: .6rem 1rem;
  position: sticky;
  top: 0;
  z-index: 6;
  border-bottom: 1px solid var(--w-border);
}
.tfp-drawer.tfp-inline .tfp-stepper {
  position: static;
  border-bottom: 1px solid var(--w-border);
  margin-bottom: 0;
}

/* Drawer mode: slim 4-segment progress bar */
.tfp-drawer:not(.tfp-inline) .tfp-stepper {
  padding: 0;
  gap: 3px;
  height: 4px;
  background: transparent;
  border-bottom: none;
  justify-content: stretch;
  overflow: hidden;
  border-radius: 0;
}
.tfp-drawer:not(.tfp-inline) .tfp-stepper .tfp-step-dot:not([data-step]) {
  display: none;
}
.tfp-drawer:not(.tfp-inline) .tfp-stepper .tfp-step-dot[data-step] {
  flex: 1;
  height: 4px;
  background: var(--w-border);
  border-radius: 2px;
  font-size: 0;
  gap: 0;
  cursor: default;
  transition: background .25s;
}
.tfp-drawer:not(.tfp-inline) .tfp-stepper .tfp-step-dot[data-step].active,
.tfp-drawer:not(.tfp-inline) .tfp-stepper .tfp-step-dot[data-step].complete {
  background: var(--w-saffron);
}
.tfp-drawer:not(.tfp-inline) .tfp-stepper .tfp-step-dot[data-step].complete {
  cursor: pointer;
}
.tfp-drawer:not(.tfp-inline) .tfp-step-dot .dot { display: none; }
.tfp-drawer:not(.tfp-inline) .tfp-step-dot .sep { display: none; }

/* Inline stepper (service pages) — keeps existing dot style */
.tfp-step-dot {
  display: flex;
  align-items: center;
  gap: .28rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--w-text-muted);
  white-space: nowrap;
}
.tfp-step-dot.active  { font-weight: 700; color: var(--w-cerulean); }
.tfp-step-dot .dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--w-border);
  color: var(--w-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 600;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.tfp-step-dot.active .dot   { background: var(--w-saffron); color: var(--w-white); border-color: var(--w-saffron); }
.tfp-step-dot.complete .dot {
  background: var(--w-cerulean); border-color: var(--w-cerulean); color: var(--w-white); font-size: 0;
}
.tfp-step-dot.complete .dot::after {
  content: '';
  display: block;
  width: 8px; height: 5px;
  border-left: 2px solid var(--w-white);
  border-bottom: 2px solid var(--w-white);
  transform: rotate(-45deg) translate(1px,-1px);
}
.tfp-step-dot .sep { color: var(--w-border); font-size: .7rem; margin: 0 .15rem; }

/* --- Panels --- */
.tfp-panel { display: none; }
.tfp-panel.active { display: block; padding-top: .75rem; }

/* --- Service cards (inline / schedule.html) --- */
.tfp-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 420px) {
  .tfp-service-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
.tfp-drawer.tfp-inline .tfp-service-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.tfp-service-card {
  background: var(--w-sand);
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(6,40,64,.10);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.tfp-service-card:hover   { border-color: var(--w-saffron); }
.tfp-service-card.selected { border-color: var(--w-cerulean); box-shadow: 0 0 0 3px rgba(11,79,108,.12); }

.tfp-service-card-img {
  width: 100%; height: 140px; object-fit: cover;
  background: var(--w-aqua); display: block;
}
.tfp-service-card-img-placeholder {
  width: 100%; height: 140px;
  background: linear-gradient(160deg, #0b4f6c 0%, #1a9fc4 60%, #7dd4ea 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.tfp-service-card-img-placeholder svg { opacity: .25; position: relative; z-index: 1; }
.tfp-service-card-img-placeholder::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 40'%3E%3Cpath d='M0 20c50-14 100-14 150 0s100 14 150 0 100-14 150 0v20H0z' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E") bottom/100% auto no-repeat;
}
.tfp-service-card-body   { padding: 1rem; }
.tfp-service-card-name   { font-family: 'Libre Baskerville', Georgia, serif; font-size: 1.05rem; color: var(--w-cerulean); margin-bottom: .3rem; }
.tfp-service-card-desc   { font-size: .82rem; color: var(--w-text-muted); line-height: 1.5; margin-bottom: .75rem; }
.tfp-service-card-price  { font-weight: 600; font-size: .9rem; color: var(--w-cerulean); }
.tfp-service-card-deposit { font-size: .78rem; color: var(--w-text-muted); }
.tfp-service-card-badge  { display: inline-block; font-size: .7rem; font-weight: 600; background: var(--w-aqua); color: var(--w-cerulean); border-radius: 4px; padding: 2px 6px; margin-top: .4rem; }
.tfp-service-card-select-btn {
  width: 100%; margin-top: .75rem; padding: .6rem;
  background: var(--w-saffron); border: none; border-radius: 6px;
  font-size: .85rem; font-weight: 600; color: var(--w-white); cursor: pointer;
  transition: background .15s;
}
.tfp-service-card-select-btn:hover { background: var(--w-saffron-dk); }
.tfp-service-card.selected .tfp-service-card-select-btn { background: var(--w-saffron-dk); }

/* --- Drawer mode: compact list rows (replaces card grid) --- */
.tfp-drawer:not(.tfp-inline) .tfp-service-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  overflow: hidden;
  margin-top: .75rem;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card {
  background: var(--w-white);
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.06);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 1.3rem 1rem 1.3rem 1.125rem;
  position: relative;
  transition: background .15s;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card:last-child { border-bottom: none; }
.tfp-drawer:not(.tfp-inline) .tfp-service-card:hover { background: #f6fbfd; border-color: transparent; }
.tfp-drawer:not(.tfp-inline) .tfp-service-card.selected { background: #edf8fc; border-color: transparent; }

/* Left selection bar */
.tfp-drawer:not(.tfp-inline) .tfp-service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .15s;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card.selected::before { background: var(--w-saffron); }

/* Chevron */
.tfp-drawer:not(.tfp-inline) .tfp-service-card::after {
  content: '›';
  font-size: 1.3rem;
  line-height: 1;
  color: var(--w-border);
  margin-left: .5rem;
  flex-shrink: 0;
  transition: color .15s;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card:hover::after,
.tfp-drawer:not(.tfp-inline) .tfp-service-card.selected::after { color: var(--w-saffron); }

/* Hide image area */
.tfp-drawer:not(.tfp-inline) .tfp-service-card-img,
.tfp-drawer:not(.tfp-inline) .tfp-service-card-img-placeholder { display: none; }

/* Body: flex row — name left, price right */
.tfp-drawer:not(.tfp-inline) .tfp-service-card-body {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: .75rem;
  padding: 0;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--w-cerulean);
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  white-space: normal;
  line-height: 1.3;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--w-cerulean);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card-desc,
.tfp-drawer:not(.tfp-inline) .tfp-service-card-deposit,
.tfp-drawer:not(.tfp-inline) .tfp-service-card-badge,
.tfp-drawer:not(.tfp-inline) .tfp-service-card-select-btn { display: none; }

/* --- Date / block picker --- */
.tfp-picker-section {
  background: var(--w-white);
  border-radius: var(--w-radius);
  box-shadow: var(--w-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.tfp-picker-section h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.15rem; color: var(--w-cerulean); margin-bottom: 1rem;
}
/* Drawer mode: no card chrome — open form feel */
.tfp-drawer:not(.tfp-inline) .tfp-picker-section {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: .5rem 0 1rem;
  margin-bottom: 0;
}
.tfp-drawer:not(.tfp-inline) .tfp-picker-section h2 {
  font-size: 1rem;
  margin-bottom: .75rem;
}

.tfp-month-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.tfp-month-nav button {
  background: none; border: 1px solid var(--w-border); border-radius: 6px;
  padding: .35rem .75rem; cursor: pointer; font-size: .9rem; color: var(--w-cerulean);
}
.tfp-month-nav button:disabled { opacity: .35; cursor: default; }
.tfp-month-nav .tfp-month-label { font-weight: 600; font-size: 1rem; color: var(--w-cerulean); }

.tfp-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.tfp-cal-dow { text-align: center; font-size: .7rem; font-weight: 600; color: var(--w-text-muted); padding-bottom: 4px; }
.tfp-cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: .85rem; cursor: pointer;
  border: 1px solid transparent;
  transition: background .1s, border-color .1s;
  position: relative;
}
.tfp-cal-day.empty       { cursor: default; }
.tfp-cal-day.unavailable { color: var(--w-border); cursor: default; }
.tfp-cal-day.loading     { color: var(--w-border); cursor: default; }
.tfp-cal-day.available   { color: var(--w-cerulean); font-weight: 500; }
.tfp-cal-day.available:hover { background: var(--w-aqua); border-color: var(--w-border); }
.tfp-cal-day.today       { outline: 2px solid var(--w-cerulean); outline-offset: -2px; border-color: var(--w-cerulean); }
.tfp-cal-day.selected    { background: var(--w-saffron); color: var(--w-white); border-color: var(--w-saffron); }
.tfp-units-dot {
  position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--w-saffron);
}

.tfp-block-picker { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.tfp-block-btn {
  flex: 1; min-width: 140px; padding: .8rem 1rem;
  border: 2px solid var(--w-border); border-radius: 8px;
  background: var(--w-white); cursor: pointer; text-align: left;
  transition: border-color .15s, background .15s;
}
.tfp-block-btn:disabled { opacity: .4; cursor: default; }
.tfp-block-btn.selected { border-color: var(--w-cerulean); background: var(--w-aqua); }
.tfp-block-label  { font-weight: 600; font-size: .9rem; color: var(--w-cerulean); display: block; }
.tfp-block-time   { font-size: .75rem; color: var(--w-text-muted); }
.tfp-block-units  { font-size: .7rem; color: var(--w-saffron-dk); font-weight: 500; margin-top: .15rem; }
.tfp-block-units--full { color: var(--w-border) !important; }

.tfp-cal-legend { display: flex; gap: 1rem; margin-top: 1rem; font-size: .72rem; color: var(--w-text-muted); }
.tfp-cal-legend span { display: flex; align-items: center; gap: .3rem; }
.tfp-legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.tfp-legend-dot.av   { background: var(--w-cerulean); }
.tfp-legend-dot.full { background: var(--w-border); }

/* --- Form --- */
.tfp-form-card {
  background: var(--w-white); border-radius: var(--w-radius);
  box-shadow: var(--w-shadow); padding: 1.5rem;
}
.tfp-form-card h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.15rem; color: var(--w-cerulean); margin-bottom: 1.25rem;
}
/* Drawer mode: no card chrome */
.tfp-drawer:not(.tfp-inline) .tfp-form-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: .5rem 0 0;
}
.tfp-drawer:not(.tfp-inline) .tfp-form-card h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.tfp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .tfp-form-row { grid-template-columns: 1fr; } }

.tfp-field { margin-bottom: 1rem; }
.tfp-field label {
  display: block; font-size: .7rem; font-weight: 600;
  color: var(--w-text-muted); margin-bottom: .3rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.tfp-field input, .tfp-field textarea, .tfp-field select {
  width: 100%; padding: .65rem .85rem;
  border: 1px solid var(--w-border); border-radius: 7px;
  font-family: inherit; font-size: .9rem; color: var(--w-text);
  background: var(--w-white); outline: none;
  transition: border-color .15s;
}
.tfp-field input:focus, .tfp-field textarea:focus, .tfp-field select:focus {
  border-color: var(--w-cerulean);
}
.tfp-field textarea { resize: vertical; min-height: 80px; }

.tfp-qq-block { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--w-border); }
.tfp-qq-block h3 { font-size: .95rem; font-weight: 600; color: var(--w-cerulean); margin-bottom: .9rem; }

/* --- Booking layout (step 3+4 with sidebar) --- */
.tfp-booking-layout { display: grid; grid-template-columns: 1fr 280px; gap: 1.5rem; align-items: start; }
@media (max-width: 680px) {
  .tfp-booking-layout { grid-template-columns: 1fr; }
  .tfp-summary-sidebar { order: -1; }
}
.tfp-drawer:not(.tfp-inline) .tfp-booking-layout { grid-template-columns: 1fr; }
.tfp-drawer:not(.tfp-inline) .tfp-summary-sidebar { display: none; }

.tfp-summary-sidebar {
  background: var(--w-cerulean); color: var(--w-white);
  border-radius: var(--w-radius); padding: 1.25rem;
  font-size: .88rem; position: sticky; top: 1rem;
}
.tfp-summary-sidebar h3 { font-family: 'Libre Baskerville', Georgia, serif; font-size: 1rem; margin-bottom: 1rem; opacity: .85; }
.tfp-summary-row { display: flex; justify-content: space-between; margin-bottom: .55rem; gap: .5rem; }
.tfp-summary-label  { opacity: .7; }
.tfp-summary-val    { font-weight: 600; text-align: right; }
.tfp-summary-divider { border: none; border-top: 1px solid rgba(255,255,255,.2); margin: .9rem 0; }
.tfp-summary-deposit { font-size: .95rem; color: var(--w-saffron); font-weight: 700; }

/* --- Confirm screen --- */
.tfp-confirm-screen { text-align: center; padding: 2.5rem 1.5rem; }
.tfp-confirm-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--w-cerulean);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.tfp-confirm-icon svg { color: var(--w-white); }
.tfp-confirm-screen h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.5rem; color: var(--w-cerulean); margin-bottom: .6rem;
}
.tfp-confirm-screen p { color: var(--w-text-muted); max-width: 440px; margin: 0 auto; line-height: 1.6; }
.tfp-confirm-close-note { margin-top: 1rem; font-size: .82rem; color: var(--w-text-muted); font-style: italic; }

/* --- Buttons (scoped to drawer so they don't affect site .btn) --- */
.tfp-drawer .tfp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; padding: .75rem 1.75rem; border-radius: 8px;
  font-family: inherit; font-size: .95rem; font-weight: 600;
  cursor: pointer; border: none; transition: background .15s, opacity .15s;
}
.tfp-drawer .tfp-btn-primary { background: var(--w-saffron); color: var(--w-white); }
.tfp-drawer .tfp-btn-primary:hover:not(:disabled) { background: var(--w-saffron-dk); }
.tfp-drawer .tfp-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.tfp-drawer .tfp-btn-ghost  { background: transparent; color: var(--w-text-muted); border: 1px solid var(--w-border); }
.tfp-drawer .tfp-btn-ghost:hover { background: var(--w-sand); }

.tfp-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.5rem; flex-wrap: wrap; gap: .75rem;
}
.tfp-drawer:not(.tfp-inline) .tfp-actions {
  position: sticky; bottom: 0;
  background: var(--w-white);
  padding: .875rem 1.25rem;
  margin: 0 -1.25rem -2rem;
  border-top: 1px solid var(--w-border);
  z-index: 5;
}
.tfp-drawer:not(.tfp-inline) .tfp-actions .tfp-btn-primary {
  flex: 1; height: 56px; font-size: 1rem;
}

/* --- Banners --- */
.tfp-banner {
  border-radius: 8px; padding: .8rem 1rem;
  font-size: .88rem; margin-bottom: 1.25rem; display: none;
}
.tfp-banner.show  { display: block; }
.tfp-banner-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.tfp-banner-info  { background: var(--w-aqua); color: var(--w-cerulean); border: 1px solid var(--w-border); }

/* --- Spinner --- */
.tfp-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: var(--w-white);
  border-radius: 50%;
  animation: tfp-spin .6s linear infinite;
  flex-shrink: 0;
  display: inline-block;
}
@keyframes tfp-spin { to { transform: rotate(360deg); } }

/* --- Loading overlay --- */
.tfp-loading-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,20,26,.35);
  z-index: 600;
  align-items: center; justify-content: center;
}
.tfp-loading-overlay.show { display: flex; }
.tfp-loading-box {
  background: var(--w-white); border-radius: 12px;
  padding: 2rem 2.5rem; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.tfp-loading-box .tfp-spinner {
  border-color: rgba(27,38,59,.2);
  border-top-color: #1B263B;
  width: 32px; height: 32px;
  margin: 0 auto .9rem;
}
.tfp-loading-box p { color: #1B263B; font-weight: 500; }

/* --- Inline booking section wrapper (service pages) --- */
.tfp-inline-section {
  background: var(--tf-sand, #f5ead8);
  padding: 3.5rem 0 4rem;
}
.tfp-inline-section-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.tfp-inline-section-intro h2 {
  font-family: var(--font-display, 'Libre Baskerville', Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-strong, #062840);
  margin-bottom: 0.5rem;
}
.tfp-inline-section-intro p {
  color: var(--text-muted, #5a6a7a);
  font-size: 0.95rem;
}

/* =============================================================================
   BOOKING WIDGET — Inline two-column layout & supporting styles
   Added: inline embed UI redesign (two-column step 2-4, auto-date, right-panel)
============================================================================= */

/* --- Step layout container (steps 2-4) --- */
.tfp-step-layout { display: block; }

/* Two-column side-by-side at ≥ 720px in inline mode */
@media (min-width: 720px) {
  .tfp-drawer.tfp-inline .tfp-step-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .tfp-drawer.tfp-inline .tfp-step-cal-col {
    position: sticky;
    top: 1rem;
  }
  .tfp-drawer.tfp-inline .tfp-step-right-col {
    min-height: 340px;
  }
}

/* Calendar column hidden state (drawer mode steps 3+) */
.tfp-step-cal-col.tfp-cal-hidden { display: none; }

/* Remove bottom margin from calendar picker-section when in its own column */
.tfp-step-cal-col .tfp-picker-section { margin-bottom: 0; }

/* --- Right column loading state (inline mode) --- */
.tfp-right-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  gap: .75rem;
  text-align: center;
  color: var(--w-text-muted, #5a6a7a);
  font-size: .9rem;
  min-height: 160px;
}
.tfp-right-loading.show { display: flex; }
.tfp-right-loading .tfp-spinner {
  border-color: rgba(27,38,59,.15);
  border-top-color: var(--w-cerulean, #1B263B);
  width: 28px; height: 28px;
}

/* --- Date hint (no available dates in month) --- */
.tfp-date-hint {
  display: none;
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--w-text-muted, #5a6a7a);
  font-size: .88rem;
  line-height: 1.6;
  background: var(--w-sand, #efe5dc);
  border-radius: var(--w-radius, 10px);
  margin-bottom: 1rem;
}
.tfp-date-hint.show { display: block; }

/* --- Block picker technician note --- */
.tfp-block-tech-note {
  font-size: .8rem;
  color: var(--w-text-muted, #5a6a7a);
  margin-top: .75rem;
  line-height: 1.5;
  padding: .6rem .9rem;
  background: var(--w-aqua, #d6eaf8);
  border-radius: 6px;
}

/* --- Stepper back-navigation --- */
.tfp-step-dot[data-step].complete {
  cursor: pointer;
}
.tfp-step-dot[data-step].complete:hover .dot {
  opacity: .8;
}

/* --- Inline mode overrides --- */

/* Hide step 2 Back button in inline mode (stepper handles back-nav) */
.tfp-drawer.tfp-inline #tfpBtnStep2Back { display: none; }

/* Summary sidebar not needed in inline mode — calendar serves as visual anchor */
.tfp-drawer.tfp-inline .tfp-summary-sidebar { display: none; }

/* Actions not sticky in inline mode */
.tfp-drawer.tfp-inline .tfp-actions {
  position: static;
  padding: .75rem 0 0;
  margin: 0;
  background: transparent;
  border-top: none;
}
.tfp-drawer.tfp-inline .tfp-actions .tfp-btn-primary {
  flex: none;
  height: auto;
  font-size: inherit;
}

/* --- Service group headers (drawer mode only) --- */
.tfp-drawer:not(.tfp-inline) .tfp-service-group-label {
  padding: .65rem 1.125rem .45rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8fa3b3;
  background: #fafcfd;
  border-bottom: 1px solid rgba(0,0,0,.05);
  user-select: none;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-group-label:not(:first-child) {
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: .25rem;
}

/* --- Service icon (drawer mode only) --- */
.tfp-drawer:not(.tfp-inline) .tfp-service-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: .75rem;
  background: var(--w-aqua);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w-cerulean);
  transition: background .15s;
}
.tfp-drawer:not(.tfp-inline) .tfp-service-card.selected .tfp-service-icon {
  background: var(--w-cerulean);
  color: var(--w-white);
}
