/* ============================================================
   TRUE FLOW POOL SOLUTIONS — styles.css
   South Beach Boutique palette. Mobile-first. No framework.
   ============================================================

   PALETTE
   --white        #FFFFFF   dominant base
   --cream        #FAF8F5   subtle warm section bg
   --stone        #EDE6DC   warmer neutral
   --blue-light   #B8DFF0   sky / light washes
   --blue         #2E9AC4   vibrant pool blue (links, accents)
   --blue-deep    #0D4F72   featured dark sections
   --blue-darkest #062840   footer
   --gold         #C9A96E   CTAs ONLY
   ============================================================ */

:root {
  --white:          #FFFFFF;
  --cream:          #FAF8F5;
  --stone:          #EDE6DC;
  --blue-light:     #B8DFF0;
  --blue-soft:      #EAF4FA;
  --blue:           #2E9AC4;
  --blue-deep:      #0D4F72;
  --blue-darkest:   #062840;
  --gold:           #C9A96E;
  --gold-dk:        #A8844E;

  --text:           #062840;
  --text-mid:       #2A5570;
  --text-light:     #5A7D90;
  --border:         rgba(6,40,64,0.10);
  --border-blue:    rgba(46,154,196,0.22);

  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Outfit', system-ui, sans-serif;

  --max-w:          1120px;
  --radius:         6px;
  --radius-sm:      3px;
}

/* ============================================================
   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);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}

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-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

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

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  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(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-1px); }

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

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

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

/* text-style CTA links */
.cta-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s, gap 0.2s;
}
.cta-link:hover { color: var(--blue-deep); 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(--white); }
.bg-cream    { background: var(--cream); }
.bg-stone    { background: var(--stone); }
.bg-blue-soft { background: var(--blue-soft); }
.bg-deep     { background: var(--blue-deep); color: var(--white); }
.bg-darkest  { background: var(--blue-darkest); color: var(--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-light); }
.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-mid);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }

.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);
  border-radius: 1px;
  transition: all 0.25s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--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);
  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(--blue-deep);
  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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

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

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

.hero h1 {
  color: var(--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(--blue-light); }

.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(--white); }

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  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(--gold); letter-spacing: 3px; font-size: 0.78rem; }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--blue-light);
  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(--blue-deep);
}
.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);
  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(--white);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.18s;
  text-decoration: none;
  color: var(--text);
}

.routing-card:hover { background: var(--blue-soft); }

.routing-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-soft);
  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(--blue-light); }
.routing-card-icon svg { width: 18px; height: 18px; color: var(--blue); }

.routing-card h3 { font-size: 1.05rem; color: var(--text); }
.routing-card p  { font-size: 0.88rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--gold);
  /* 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-light);
  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(--blue-deep);
  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(--blue-deep);
  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(--blue); }
.hub-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.hub-link:hover::after { color: var(--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(--blue-light); }
.why-item h3 { font-size: 1.05rem; color: var(--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-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  background: var(--white);
}

.brands-support {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  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(--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-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue);
  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-light); 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(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-light);
  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-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.review-source svg { width: 12px; height: 12px; }

.review-stars  { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; }
.review-text   { font-family: var(--font-serif); font-style: italic; font-size: 0.97rem; color: var(--text-mid); 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-light); }
.review-service-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-soft);
  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(--white);
  color: var(--blue-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--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(--blue);
  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: 700px; margin: 0 auto; }

details.faq-item { border-bottom: 1px solid var(--border); }
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); }

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

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

.faq-answer {
  padding: 0 0 1.35rem;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}
.faq-answer a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   FINAL CTA BAND
============================================================ */
.cta-band {
  background: var(--blue);
  padding: 6rem 0;
  text-align: center;
}
.cta-band .eyebrow { color: var(--blue-light); }
.cta-band h2 { color: var(--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(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--blue-darkest);
  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(--gold); }

.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(--gold);
  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); }

.footer-map {
  margin-top: 1.75rem;
}
.footer-map-heading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.footer-map-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
.footer-map-iframe {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 280px;
  border-radius: 4px;
}
@media (min-width: 960px) {
  .footer-map-iframe { height: 350px; }
}
.footer-map-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.footer-map-link:hover { color: var(--gold); }

/* ============================================================
   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(--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(--blue-deep);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-service-pricing-round-rock.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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  pointer-events: none;
}

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

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

.pricing-hero h1 {
  color: var(--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);
  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(--white);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.18s;
  text-decoration: none;
  color: var(--text);
}

.pricing-routing-card:hover { background: var(--blue-soft); }
.pricing-routing-card:hover .routing-card-icon { background: var(--blue-light); }
.pricing-routing-card h3 { font-size: 1.05rem; color: var(--text); }
.pricing-routing-card p  { font-size: 0.88rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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-mid);
  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-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1;
}

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

.pricing-card-period {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  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(--blue-deep);
  background: var(--blue-light);
  border-radius: 2px;
  padding: 0.2rem 0.55rem;
  align-self: center;
}

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

.pricing-card-payment-note {
  font-size: 0.82rem;
  color: var(--text-mid);
  background: var(--blue-soft);
  border-left: 2px solid var(--blue);
  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-mid);
  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(--gold);
}

.pricing-card-addon {
  font-size: 0.8rem;
  color: var(--text-light);
  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(--cream);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
}

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

.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-mid);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-notes-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  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(--blue-deep);
  color: var(--white);
  font-family: var(--font-serif);
  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); }
.booking-step p  { font-size: 0.88rem; color: var(--text-light); 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(--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(--white); }


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

.ps-hero {
  position: relative;
  background: var(--blue-deep);
  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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  pointer-events: none;
}

.ps-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.ps-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.ps-hero h1 { color: var(--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(--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(--gold);
  max-width: 760px;
}

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

.service-category-intro { font-size: 0.97rem; color: var(--text-light); 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(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.service-link-card:hover { background: var(--blue-soft); border-color: var(--blue); box-shadow: 0 2px 8px rgba(46,154,196,0.12); }
.service-link-card h4 { font-family: var(--font-serif); font-size: 1.02rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.service-link-card p  { font-size: 0.86rem; color: var(--text-light); 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(--blue); 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(--blue-deep); gap: 0.45rem; }

.service-supporting-note { font-size: 0.87rem; color: var(--text-light); 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(--blue-deep);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ps-help-block h2 { color: var(--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(--blue); }
.ps-area-text h2 { margin-bottom: 0.9rem; }
.ps-area-text p  { font-size: 0.97rem; color: var(--text-light); 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-light); font-style: italic; line-height: 1.7; font-weight: 300; }

.ps-area-card {
  background: var(--white);
  border: 1px solid #d6eaf8;
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  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(--blue-deep); margin-bottom: 1.1rem; flex-shrink: 0; }
.ps-area-card-heading { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 0.55rem; }
.ps-area-card-copy { font-size: 0.9rem; color: var(--text-light); 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(--blue-deep); 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(--blue-deep); background: var(--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); 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); 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(--blue); flex-shrink: 0; }
details[open] .ps-faq-question { background: var(--blue-soft); }
details[open] .ps-faq-question::after { content: '\2212'; }
.ps-faq-item:hover .ps-faq-question { background: var(--blue-soft); }
.ps-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }
.ps-faq-answer a { color: var(--blue); 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(--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(--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-solutions-round-rock-tx-our-story.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-mid); 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-mid); 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(--cream); border-radius: 4px; padding: 1.75rem 1.5rem 1.5rem; display: flex; flex-direction: column; border-top: 3px solid var(--gold); }
.about-service-card h3 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.about-service-card p  { color: var(--text-mid); 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-serif); font-size: 1.0625rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.about-proof-item p  { color: var(--blue-light); 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-mid); 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(--blue-deep);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.green-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/green-to-clean-round-rock-texas-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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  pointer-events: none;
}

.green-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.green-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.green-hero h1 { color: var(--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(--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(--white); border-radius: var(--radius); border-top: 3px solid var(--blue); 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); }
.symptom-card p  { font-size: 0.88rem; color: var(--text-light); 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(--white); border-radius: var(--radius); border-top: 3px solid var(--gold); 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-mid); 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-serif); font-size: 2.5rem; font-weight: 700; color: var(--blue-deep); 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(--blue-deep); background: var(--blue-light); 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-mid); 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(--gold); }

.green-service-addon { font-size: 0.8rem; color: var(--text-light); 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-light); 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-light); 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(--white); border-radius: var(--radius); padding: 1.5rem 1.4rem; border-left: 3px solid var(--gold); 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); }
.included-card p  { font-size: 0.88rem; color: var(--text-light); 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(--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-serif); font-size: 3rem; font-weight: 700; color: var(--blue); 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-light); line-height: 1.75; font-weight: 300; }

.filter-note-inner { max-width: 720px; margin: 0 auto; }
.filter-note-block { background: var(--blue-soft); border-radius: var(--radius); padding: 2rem 2.25rem; border: 1px solid var(--border-blue); border-left: 3px solid var(--blue); }
.filter-note-block p  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.filter-addon-price { font-size: 0.88rem; font-weight: 600; color: var(--blue-deep); 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(--white); border-radius: var(--radius); padding: 1.5rem 1.35rem; border-top: 2px solid var(--blue-light); box-shadow: 0 1px 3px rgba(6,40,64,0.07); }
.cause-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.cause-card p  { font-size: 0.87rem; color: var(--text-light); 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(--white); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.35rem; border-top: 2px solid var(--gold); 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); }
.related-card p  { font-size: 0.87rem; color: var(--text-light); 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(--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); 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); 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(--blue); flex-shrink: 0; }
details[open] .green-faq-question { background: var(--blue-soft); }
details[open] .green-faq-question::after { content: '\2212'; }
.green-faq-item:hover .green-faq-question { background: var(--blue-soft); }
.green-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }
.green-faq-answer a { color: var(--blue); 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(--blue-deep); padding: 5.5rem 0 4.5rem; overflow: hidden; }

.insp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/round-rock-pool-repair-equipment-pad.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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  pointer-events: none;
}

.insp-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.insp-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.insp-hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 580px; }
.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(--gold); 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(--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(--white); border-radius: var(--radius); border-top: 3px solid var(--blue); 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); }
.insp-reassurance-card p  { font-size: 0.88rem; color: var(--text-light); font-weight: 300; line-height: 1.65; }

.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(3, 1fr); } }
.insp-fit-card { background: var(--white); border-radius: var(--radius); border-left: 3px solid var(--blue); 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); }
.insp-fit-card p  { font-size: 0.88rem; color: var(--text-light); font-weight: 300; line-height: 1.65; }
.insp-fit-callout { margin-top: 2.5rem; background: var(--blue-soft); border-radius: var(--radius); border-left: 3px solid var(--blue); padding: 1.25rem 1.5rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.insp-fit-callout a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.insp-fit-callout a:hover { color: var(--blue-deep); }

.insp-price-inner { max-width: 760px; }
.insp-price-card { background: var(--white); border-radius: var(--radius); border-top: 3px solid var(--gold); 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-serif); font-size: 3rem; font-weight: 700; color: var(--blue-deep); 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-mid); }
.insp-price-card p { font-size: 0.97rem; color: var(--text-light); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.insp-price-note { font-size: 0.85rem; color: var(--text-light); 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(4, 1fr); } }
.insp-look-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.35rem; border-top: 2px solid var(--blue-light); 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); }
.insp-look-card p  { font-size: 0.87rem; color: var(--text-light); 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-light); 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); 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-mid); 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-light); font-weight: 300; }
.insp-followup { font-size: 0.95rem; color: var(--text-light); font-weight: 300; line-height: 1.8; }

.insp-compare-wrap { overflow-x: auto; margin-top: 2.5rem; border-radius: var(--radius); border: 1px solid var(--border); -webkit-overflow-scrolling: touch; }
.insp-compare-table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--white); font-size: 0.9rem; }
.insp-compare-table thead tr { background: var(--blue-deep); color: var(--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-mid); 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(--blue-soft); }
.insp-compare-table td:first-child { font-weight: 600; color: var(--text); font-size: 0.92rem; white-space: nowrap; }
.insp-compare-table .cta-link { font-size: 0.82rem; 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(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.insp-steps-text-link:hover { color: var(--blue-deep); }

.insp-facts-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); border-top: 3px solid var(--blue); overflow: hidden; margin-top: 2rem; max-width: 800px; }
.insp-facts-row { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--border); }
.insp-facts-row:last-child { border-bottom: none; }
.insp-facts-label { padding: 0.9rem 1.15rem; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); background: var(--blue-soft); border-right: 1px solid var(--border); display: flex; align-items: flex-start; padding-top: 1rem; white-space: nowrap; }
.insp-facts-value { padding: 0.9rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; }
@media (max-width: 540px) {
  .insp-facts-row { grid-template-columns: 1fr; }
  .insp-facts-label { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; white-space: normal; }
}

.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(--white); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.35rem; border-top: 2px solid var(--gold); 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); }
.insp-related-card p  { font-size: 0.87rem; color: var(--text-light); 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(--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); 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); 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(--blue); flex-shrink: 0; }
details[open] .insp-faq-question { background: var(--blue-soft); }
details[open] .insp-faq-question::after { content: '\2212'; }
.insp-faq-item:hover .insp-faq-question { background: var(--blue-soft); }
.insp-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }
.insp-faq-answer a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

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

/* Hero */
.weekly-hero {
  position: relative;
  background: var(--blue-deep);
  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-round-rock-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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

.weekly-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.weekly-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.weekly-hero h1 { color: var(--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(--white); }

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

.weekly-price-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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-mid);
  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-serif); font-size: 2.75rem; font-weight: 700; color: var(--blue-deep); line-height: 1; }
.weekly-price-unit { font-family: var(--font-sans); font-size: 1rem; font-weight: 400; color: var(--text-mid); }

.weekly-price-included { list-style: none; padding: 0; margin: 1rem 0; }
.weekly-price-included li {
  font-size: 0.87rem;
  color: var(--text-mid);
  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(--gold);
}

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

.weekly-price-reassurance {
  font-size: 0.82rem;
  color: var(--text-light);
  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(--blue-deep);
  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.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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

.pump-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.pump-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.pump-hero h1 { color: var(--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(--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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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); }
.pump-fit-card p  { font-size: 0.87rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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-mid);
  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-serif); font-size: 2.75rem; font-weight: 700; color: var(--blue-deep); 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-mid);
  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(--gold);
}

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

.pump-price-reassurance {
  font-size: 0.82rem;
  color: var(--text-light);
  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(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  border-left: 3px solid var(--gold);
  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); }
.pump-included-card p  { font-size: 0.87rem; color: var(--text-light); 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-mid); 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);
  overflow: hidden;
  background: var(--white);
}
.pump-not-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  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-light);
}

.pump-not-reassurance {
  font-size: 0.88rem;
  color: var(--text-mid);
  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(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.35rem;
  border-top: 2px solid var(--gold);
  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); }
.pump-compare-card p  { font-size: 0.87rem; color: var(--text-light); 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(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.pump-steps-text-link:hover { color: var(--blue-deep); }

/* Service facts */
.pump-facts-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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); background: var(--blue-soft); 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-mid); 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-light);
}
.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(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pump-related-more-links a:hover { color: var(--text); }

.pump-related-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.35rem;
  border-top: 2px solid var(--gold);
  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); }
.pump-related-card p  { font-size: 0.87rem; color: var(--text-light); 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(--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); 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); 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(--blue); flex-shrink: 0; }
details[open] .pump-faq-question { background: var(--blue-soft); }
details[open] .pump-faq-question::after { content: '\2212'; }
.pump-faq-item:hover .pump-faq-question { background: var(--blue-soft); }
.pump-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }
.pump-faq-answer a { color: var(--blue); 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(--blue-deep);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.diag-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-equipment-diagnostics-round-rock-technician.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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

.diag-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.diag-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.diag-hero h1 { color: var(--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(--gold); 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(--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(--white); border-radius: var(--radius); border-top: 3px solid var(--blue); 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); }
.diag-fit-card p  { font-size: 0.87rem; color: var(--text-light); 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(--white); border-radius: var(--radius); border-top: 3px solid var(--gold); 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-serif); font-size: 3rem; font-weight: 700; color: var(--blue-deep); 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-mid); }

.diag-price-included { list-style: none; padding: 0; margin: 0 0 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.diag-price-included li { font-size: 0.9rem; color: var(--text-mid); 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(--gold); }

.diag-price-addon { font-size: 0.82rem; color: var(--text-light); font-style: italic; line-height: 1.65; margin-bottom: 0.75rem; }
.diag-price-reassurance { font-size: 0.85rem; color: var(--text-mid); 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(--white); border-radius: var(--radius); padding: 1.5rem 1.35rem; border-top: 2px solid var(--blue-light); 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); }
.diag-check-card p  { font-size: 0.87rem; color: var(--text-light); 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-light); 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); 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-mid); 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-light); font-weight: 300; }
.diag-not-followup { font-size: 0.9rem; color: var(--text-light); 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-light);
}
.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(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.diag-related-more-links a:hover { color: var(--text); }
.diag-related-card { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.35rem; border-top: 2px solid var(--gold); 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); }
.diag-related-card p  { font-size: 0.87rem; color: var(--text-light); 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(--blue-deep);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.filter-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-filter-cleaning-round-rock-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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  pointer-events: none;
}

.filter-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.filter-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.filter-hero h1 { color: var(--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(--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(--gold); 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(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  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); }
.filter-fit-card p  { font-size: 0.88rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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-mid);
  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-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1;
}

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

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

.filter-price-qualifier {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  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-mid);
  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(--gold);
}

.filter-price-separate {
  background: var(--cream);
  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-mid);
  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-light);
  font-weight: 300;
  padding-left: 0.85rem;
  position: relative;
}

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

.filter-price-reassurance {
  font-size: 0.82rem;
  color: var(--text-light);
  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-mid);
  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(--white);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  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); }
.filter-compare-card p  { font-size: 0.87rem; color: var(--text-light); 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-light);
}
.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(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.filter-related-more-links a:hover { color: var(--text); }

/* =============================================================
   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-round-rock-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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  z-index: 1;
}

.otc-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.otc-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.otc-hero h1 { color: var(--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(--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(--gold); 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(--white);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  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); }
.otc-fit-card p  { font-size: 0.88rem; color: var(--text-light); 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(--cream);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  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-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  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-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  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-mid);
  font-weight: 300;
  line-height: 1.5;
}
.otc-price-details li:last-child { border: none; }
.otc-price-details li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.6rem;
}

.otc-price-separate {
  background: var(--white);
  border-radius: calc(var(--radius) - 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-mid);
  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-light);
  font-weight: 300;
  padding: 0.25rem 0;
  line-height: 1.5;
}
.otc-price-separate-list li::before {
  content: '–';
  color: var(--text-light);
  margin-right: 0.5rem;
}

.otc-price-reassurance {
  font-size: 0.87rem;
  color: var(--text-mid);
  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-mid);
  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-light);
  font-weight: 700;
  margin-right: 0.65rem;
}

.otc-not-included-follow {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  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(--blue-deep);
  color: var(--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-mid);
  font-weight: 300;
  line-height: 1.6;
  vertical-align: top;
}

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

.otc-compare-row--primary td { background: var(--blue-soft); }
.otc-compare-row--primary td strong { color: var(--text); }

/* 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(--blue-deep);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.repair-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-repair-round-rock-equipment-pad.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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

.repair-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.repair-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.repair-hero h1 { color: var(--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(--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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--blue);
  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); }
.repair-routing-card p  { font-size: 0.87rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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-mid);
  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-serif); font-size: 3rem; font-weight: 700; color: var(--blue-deep); 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); overflow: hidden; }
.repair-price-included li { font-size: 0.9rem; color: var(--text-mid); 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(--gold); }

.repair-price-addon { font-size: 0.82rem; color: var(--text-light); font-style: italic; line-height: 1.65; margin-bottom: 0.75rem; }
.repair-price-reassurance { font-size: 0.85rem; color: var(--text-mid); 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(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  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); }
.repair-symptom-card p  { font-size: 0.87rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border-top: 2px solid var(--blue-light);
  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); }
.repair-services-card p  { font-size: 0.87rem; color: var(--text-light); 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); 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-mid); 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-light); font-weight: 300; }
.repair-not-followup { font-size: 0.9rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  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); }
.repair-compare-card p  { font-size: 0.87rem; color: var(--text-light); 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); 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-mid);
  padding: 0.85rem 1.25rem 0 1.25rem;
  background: var(--blue-soft);
}
@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-mid);
  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(--white);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  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); }
.repair-related-card p  { font-size: 0.87rem; color: var(--text-light); 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(--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(--blue-soft);
  border-radius: var(--radius);
  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(--blue-deep);
  margin-bottom: 0.5rem;
}
.repair-area-chip-sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  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(--white);
  border: 1px solid var(--border-blue);
  border-radius: 2rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-deep);
  white-space: nowrap;
}

/* FAQ */
.repair-faq-list { max-width: 720px; margin: 2.5rem auto 0; border: 1px solid var(--border); border-radius: var(--radius); 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); 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(--blue); flex-shrink: 0; }
details[open] .repair-faq-question { background: var(--blue-soft); }
details[open] .repair-faq-question::after { content: '\2212'; }
.repair-faq-item:hover .repair-faq-question { background: var(--blue-soft); }
.repair-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }

/* 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(--blue-deep);
  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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  pointer-events: none;
}

.care-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.care-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.care-hero h1 { color: var(--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(--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(--gold); 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(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  border-top: 2px solid var(--gold);
  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); }
.care-fit-card p  { font-size: 0.88rem; color: var(--text-light); 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(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  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(--blue);
  margin-bottom: 0.5rem;
}

.care-price-tag {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  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); font-weight: 400; }
.care-price-amount  { color: var(--blue); font-weight: 600; white-space: nowrap; }

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

.care-price-reassurance {
  font-size: 0.88rem;
  color: var(--text-mid);
  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-mid); 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-mid);
  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-light);
}
.care-not-included-list a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.care-not-included-reassurance {
  font-size: 0.88rem;
  color: var(--text-light);
  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(--blue-soft);
  border-radius: var(--radius);
}
.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-mid);
  margin-bottom: 0.55rem;
}
.care-boundary-note p { font-size: 0.875rem; color: var(--text-mid); 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(--white);
  border-radius: var(--radius);
  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); }
.care-compare-card p  { font-size: 0.87rem; color: var(--text-light); 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(--blue-darkest);
}
@media (min-width: 768px) { .pcs-hero { padding: 8rem 0 6rem; } }

/* Intended hero: pool-cleaning-services-round-rock-hero.webp. Until that file is uploaded, uses weekly-pool-cleaning-services-in-round-rock-tx-lifestyle.webp as a same-service stand-in. Replace when the correct asset is available. */
.pcs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/weekly-pool-cleaning-services-in-round-rock-tx-lifestyle.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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  pointer-events: none;
}

.pcs-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.pcs-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.pcs-hero h1 { color: var(--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(--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(--gold); 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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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(--blue); }

.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); }
.pcs-option-card-body p:not(.pcs-option-price) { font-size: 0.88rem; color: var(--text-light); 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(--blue-deep) !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(--blue-deep);
  letter-spacing: 0.01em;
  padding-top: 0.1rem;
}

.pcs-fit-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  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-mid);
  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(--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(--blue-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pcs-gk-item::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--blue);
  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);
  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(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.pcs-includes-check-item p {
  font-size: 0.84rem;
  color: var(--text-light);
  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-mid);
  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(--white);
  border-radius: var(--radius);
  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(--gold); background: var(--blue-soft); }
.pcs-compare-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); }
.pcs-compare-card p { font-size: 0.87rem; color: var(--text-light); 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);
  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-light);
  background: var(--blue-soft);
  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-mid);
  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-mid); 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(--blue-soft);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--blue);
}
.pcs-area-card-icon { margin-bottom: 0.75rem; color: var(--blue); }
.pcs-area-card-heading { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); }
.pcs-area-card-copy { font-size: 0.88rem; color: var(--text-light); 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-light); 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(--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-system-maintenance-round-rock-tx.webp');
  background-size: cover;
  background-position: center top;
}
.salt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}
.salt-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.salt-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.salt-hero h1 { color: var(--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(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  border-left: 3px solid var(--gold);
  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); }
.salt-fit-card p  { font-size: 0.88rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  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(--gold);
}
.salt-compare-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text); }
.salt-compare-card p  { font-size: 0.88rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  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-mid);
  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-mid);
  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(--blue);
  font-size: 0.8rem;
}
.salt-price-list--excluded li::before {
  content: '\2013';
  color: var(--text-light);
}
.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-light);
}
.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(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.salt-related-more-links a:hover { color: var(--text); }

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


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

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

.chem-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pool-care-maintenance-water-testing.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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

.chem-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.chem-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.chem-hero h1 { color: var(--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(--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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--blue);
  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); }
.chem-fit-card p { font-size: 0.88rem; color: var(--text-light); 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(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  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-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  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-mid);
  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(--gold);
}
.chem-offer-separate {
  background: var(--cream, #EFE5DC);
  border-radius: calc(var(--radius) - 2px);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.chem-offer-separate-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  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-light);
  font-weight: 300;
  line-height: 1.5;
}
.chem-offer-separate-list li::before {
  content: '+ ';
  color: var(--text-light);
}
.chem-offer-reassurance {
  font-size: 0.88rem;
  color: var(--text-light);
  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-light); 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);
  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-mid);
  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-light);
  font-weight: 300;
}
.chem-not-followup { font-size: 0.9rem; color: var(--text-light); 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(--blue-deep);
  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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

.fr-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.fr-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.fr-hero h1 { color: var(--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(--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(--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); }
.fr-fit-card p  { font-size: 0.87rem; color: var(--text-light); 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);
  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(--gold);
}

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

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

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.green-related-more-links a:hover { color: var(--text); }

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.weekly-related-more-links a:hover { color: var(--text); }

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.pcs-related-more-links a:hover { color: var(--text); }

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.repair-related-more-links a:hover { color: var(--text); }

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.fr-related-more-links a:hover { color: var(--text); }

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.otc-related-more-links a:hover { color: var(--text); }

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.care-related-more-links a:hover { color: var(--text); }

/* 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.chem-related-more-links a:hover { color: var(--text); }

/* ============================================================
   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; } }

/* Intended hero: pool-lifestyle-round-rock.webp. Until that file is uploaded, uses true-flow-pool-operator-round-rock-tx-lifestyle.webp. Replace when the correct asset is available. */
.poc-hero-bg {
  position: absolute; inset: 0;
  background: url('images/true-flow-pool-operator-round-rock-tx-lifestyle.webp') center/cover no-repeat;
}
.poc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,40,64,0.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}
.poc-hero-inner { position: relative; z-index: 2; max-width: 660px; }
.poc-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.poc-hero h1 { color: var(--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(--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(--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); }
.poc-fit-card p  { font-size: 0.88rem; color: var(--text-light); 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.poc-related-more-links a:hover { color: var(--text); }

/* 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(--blue-deep);
  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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}

.auto-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.auto-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.auto-hero h1 { color: var(--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(--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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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); }
.auto-fit-card p  { font-size: 0.87rem; color: var(--text-light); 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(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  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-mid);
  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-serif); font-size: 2.75rem; font-weight: 700; color: var(--blue-deep); 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-mid);
  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(--gold);
}

.auto-diagnosis-addon {
  font-size: 0.8rem;
  color: var(--text-light);
  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(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 1px 3px rgba(6,40,64,0.07);
  font-size: 0.93rem;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.5;
}
.auto-check-card svg { flex-shrink: 0; color: var(--gold); 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(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.35rem;
  border-top: 2px solid var(--gold);
  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); }
.auto-compare-card p  { font-size: 0.87rem; color: var(--text-light); 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);
  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); background: var(--blue-soft); 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-mid); 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(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.35rem;
  border-top: 2px solid var(--gold);
  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); }
.auto-related-card p  { font-size: 0.87rem; color: var(--text-light); 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.auto-related-more-links a:hover { color: var(--text); }

/* Local area */
.auto-area-inner { max-width: 660px; }
.auto-area-inner h2 { color: var(--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); 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); 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(--blue); flex-shrink: 0; }
details[open] .auto-faq-question { background: var(--blue-soft); }
details[open] .auto-faq-question::after { content: '\2212'; }
.auto-faq-item:hover .auto-faq-question { background: var(--blue-soft); }
.auto-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }
.auto-faq-answer a { color: var(--blue); 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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
  z-index: 1;
}
.plr-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.plr-hero .eyebrow { color: var(--blue-light); letter-spacing: 0.20em; }
.plr-hero h1 { color: var(--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(--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(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.plr-fit-card h3 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--text); }
.plr-fit-card p  { font-size: 0.87rem; color: var(--text-light); font-weight: 300; line-height: 1.65; margin: 0; }

/* Pricing card */
.plr-price-inner { max-width: 660px; }
.plr-price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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(--gold);
  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-serif); font-size: 2.75rem; font-weight: 700; color: var(--blue-deep); 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-mid);
  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(--gold);
}
.plr-price-addon {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  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(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
}
.plr-check-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--text); }
.plr-check-card p  { font-size: 0.87rem; color: var(--text-light); 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(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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); }
.plr-route-card p  { font-size: 0.87rem; color: var(--text-light); 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(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.plr-steps-text-link:hover { color: var(--blue-deep); }

/* 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);
  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); background: var(--blue-soft); 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-mid); 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(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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); }
.plr-related-card p  { font-size: 0.87rem; color: var(--text-light); 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-light); }
.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(--blue); text-decoration: underline; text-underline-offset: 3px; }
.plr-related-more-links a:hover { color: var(--text); }

/* Local service area */
.plr-area-inner { max-width: 660px; }
.plr-area-inner h2 { color: var(--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); 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); 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(--blue); flex-shrink: 0; }
details[open] .plr-faq-question { background: var(--blue-soft); }
details[open] .plr-faq-question::after { content: '\2212'; }
.plr-faq-item:hover .plr-faq-question { background: var(--blue-soft); }
.plr-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }
.plr-faq-answer a { color: var(--blue); 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/pool-school-in-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.88) 0%, rgba(13,79,114,0.60) 50%, rgba(46,154,196,0.08) 100%);
}
.ps-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.ps-hero-inner .eyebrow { color: var(--gold); margin-bottom: 0.75rem; display: block; }
.ps-hero-inner h1 { color: var(--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(--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(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.ps-fit-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.ps-fit-card p { font-size: 0.9rem; color: var(--text-mid); 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);
  font-weight: 400;
  line-height: 1.55;
}
.ps-checklist-item svg { color: var(--gold); 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(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ps-compare-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 0; }
.ps-compare-card p { font-size: 0.9rem; color: var(--text-mid); 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(--blue); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.ps-how-text-link:hover { color: var(--text); }

/* Service facts */
.ps-facts-card {
  max-width: 780px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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);
  background: var(--blue-soft);
  border-right: 1px solid var(--border);
}
.ps-facts-value {
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}
.ps-facts-value a { color: var(--blue); 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(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ps-related-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 0; }
.ps-related-card p { font-size: 0.9rem; color: var(--text-mid); 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(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
  white-space: nowrap;
}
.ps-compact-links a:hover { color: var(--text); }

/* Local area */
.ps-area-inner { max-width: 660px; }
.ps-area-inner h2 { color: var(--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); 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); 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(--blue); flex-shrink: 0; }
details[open] .ps-faq-question { background: var(--blue-soft); }
details[open] .ps-faq-question::after { content: '\2212'; }
.ps-faq-item:hover .ps-faq-question { background: var(--blue-soft); }
.ps-faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; background: var(--blue-soft); }
.ps-faq-answer a { color: var(--blue); 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-system-maintenance-round-rock-tx.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; } }
