/* =====================================================================
   HOOD'S POOL SERVICE — COMPONENT STYLES
   For Sitejet: paste after base.css in Custom CSS
   Components: Hero, Service Grid, Sticky Contact Bar
   ===================================================================== */

/* =================================================================
   1. BUTTONS
   ================================================================= */
.hps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hps-space-2);
  font-family: var(--hps-font-body);
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  letter-spacing: var(--hps-tracking-wide);
  text-transform: uppercase;
  padding: var(--hps-space-4) var(--hps-space-8);
  border-radius: var(--hps-radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--hps-transition-base);
  will-change: transform;
}

.hps-btn:hover {
  transform: translateY(-2px);
}

.hps-btn:active {
  transform: translateY(0);
}

/* Primary CTA — gold gradient with navy text */
.hps-btn.hps-btn--primary {
  background: var(--hps-gradient-cta);
  color: var(--hps-primary);
  font-weight: var(--hps-weight-bold);
  box-shadow: var(--hps-shadow-md);
}

.hps-btn.hps-btn--primary:hover {
  box-shadow: var(--hps-shadow-lg);
  color: var(--hps-primary-hover);
}

/* Outline / ghost button */
.hps-btn.hps-btn--outline {
  background: transparent;
  color: var(--hps-text-inverse);
  border-color: rgba(255, 255, 255, 0.5);
}

.hps-btn.hps-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--hps-white);
  color: var(--hps-text-inverse);
}

/* =================================================================
   1b. WAVING FLAGS ROW (top-of-page banner)
   ================================================================= */
.hps-root {
  --hps-flag-h: clamp(52px, 7vw, 88px);
  --hps-flag-band: calc(var(--hps-flag-h) + 28px);
}

.hps-flags {
  position: relative;
  z-index: 200; /* keep zoomed crests above the navbar */
  min-height: var(--hps-flag-band);
  padding: 14px var(--hps-container-padding, 16px);
  background: #0a2342;
  line-height: 0;
}

.hps-flags__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 32px);
  width: 100%;
  max-width: var(--hps-container-max, 1200px);
  margin-inline: auto;
}

.hps-flags__group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 40px);
}

.hps-flags .hps-flag-item {
  height: var(--hps-flag-h);
  width: calc(var(--hps-flag-h) * 1.7);
  object-fit: contain;
  filter: url(#hps-flag-wave);
  will-change: filter;
}

/* Badge sits in the top banner now — drop the hero spacing */
.hps-flags__veteran {
  margin-bottom: 0;
}

.hps-flag__filter {
  position: absolute;
  width: 0;
  height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hps-flags .hps-flag-item {
    filter: none;
  }
}

/* =================================================================
   2. NAVBAR
   ================================================================= */
.hps-navbar {
  position: absolute;
  top: var(--hps-flag-band, 0);
  left: 0;
  width: 100%;
  z-index: var(--hps-z-header);
  padding-block: var(--hps-space-5);
  transition: all var(--hps-transition-base);
}

.hps-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hps-space-5);
}

.hps-navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--hps-space-3);
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-extrabold);
  color: var(--hps-text-inverse);
  text-decoration: none;
  letter-spacing: var(--hps-tracking-tight);
}

.hps-navbar__logo-img {
  width: 48px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.hps-navbar__brand-text {
  color: var(--hps-text-inverse);
}

.hps-navbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--hps-space-4), 1.6vw, var(--hps-space-6));
}

.hps-navbar__link {
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-medium);
  color: var(--hps-text-inverse);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--hps-transition-fast);
}

.hps-navbar__link:hover {
  opacity: 1;
  color: var(--hps-text-inverse);
}

.hps-navbar__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(214, 178, 94, 0.4);
  border-radius: 100px;
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  color: var(--hps-text-inverse);
  text-decoration: none;
  transition: background var(--hps-transition-fast),
              border-color var(--hps-transition-fast);
  white-space: nowrap;
}

.hps-navbar__btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(214, 178, 94, 0.7);
  color: var(--hps-text-inverse);
}

/* Customer Login — the primary CTA. Solid brass gold so it stands out.
   Scoped under .hps-root to beat the base `.hps-root a` color rule. */
.hps-root .hps-navbar__btn--portal {
  background: var(--hps-accent);
  border-color: var(--hps-accent);
  color: var(--hps-primary);
  font-weight: var(--hps-weight-extrabold);
}

.hps-root .hps-navbar__btn--portal:hover {
  background: var(--hps-accent-hover);
  border-color: var(--hps-accent-hover);
  color: var(--hps-primary);
}

/* Pool Pro — staff-only, intentionally low-key. */
.hps-root .hps-navbar__btn--pro {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-medium);
  padding: 7px 14px;
}

.hps-root .hps-navbar__btn--pro:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--hps-text-inverse);
}

/* Persistent mobile-only Customer Login CTA (hidden on desktop). */
.hps-root .hps-navbar__portal-cta {
  display: none;
  align-items: center;
  padding: 9px 18px;
  margin-left: auto;
  background: var(--hps-accent);
  border-radius: 100px;
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-extrabold);
  color: var(--hps-primary);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(214, 178, 94, 0.4);
}

.hps-root .hps-navbar__portal-cta:active {
  background: var(--hps-accent-hover);
}

/* Discreet mobile-only Pool Pro link (hidden on desktop; shown in media query). */
.hps-root .hps-navbar__pro-cta {
  display: none;
  align-items: center;
  padding: 6px 12px;
  background: rgba(10, 35, 66, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: var(--hps-weight-medium);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.hps-root .hps-navbar__pro-cta:active {
  background: rgba(10, 35, 66, 0.9);
  color: #fff;
}

.hps-navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--hps-space-2);
  cursor: pointer;
}

.hps-navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hps-text-inverse);
  border-radius: 2px;
  transition: all var(--hps-transition-fast);
}

/* =================================================================
   3. HERO SECTION — Full-width with overlay
   ================================================================= */
.hps-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
}

.hps-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hps-gradient-hero);
}

.hps-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(214, 178, 94, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 109, 143, 0.35) 0%, transparent 50%);
  z-index: 1;
}

.hps-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(6, 23, 43, 0.35) 0%,
    rgba(6, 23, 43, 0.55) 100%
  );
}

.hps-hero__content {
  max-width: 720px;
  padding-block: var(--hps-space-32) var(--hps-space-32);
}

.hps-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-semibold);
  letter-spacing: var(--hps-tracking-wider);
  text-transform: uppercase;
  color: var(--hps-accent-light);
  margin-bottom: var(--hps-space-5);
}

.hps-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--hps-accent);
  border-radius: var(--hps-radius-full);
}

.hps-hero__veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(202, 240, 248, 0.35);
  border-radius: 100px;
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F2D98B;
  margin-bottom: var(--hps-space-5);
  backdrop-filter: blur(4px);
}

.hps-hero__veteran-badge svg {
  width: 14px;
  height: 14px;
  stroke: #D6B25E;
  fill: none;
  flex-shrink: 0;
}

.hps-hero__veteran-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  transform-origin: center top;
}

@media (hover: hover) and (pointer: fine) {
  .hps-hero__veteran-img:hover {
    transform: scale(5) translateY(6px);
    background: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(214, 178, 94, 0.9), 0 10px 26px rgba(6, 23, 43, 0.5);
    z-index: 300;
  }
}

.hps-hero__title {
  font-size: var(--hps-text-3xl);
  font-weight: var(--hps-weight-extrabold);
  color: var(--hps-text-inverse);
  margin-bottom: var(--hps-space-6);
  line-height: var(--hps-leading-tight);
  letter-spacing: var(--hps-tracking-tight);
}

.hps-hero__subtitle {
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-regular);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--hps-space-10);
  max-width: 560px;
  line-height: var(--hps-leading-snug);
}

.hps-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hps-space-4);
}

/* Hero service line */
.hps-hero__service-line {
  margin-top: var(--hps-space-8);
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-medium);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

/* Wave divider at bottom of hero */
.hps-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 0;
  line-height: 0;
}

.hps-hero__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* =================================================================
   4. SECTION HEADER (reusable)
   ================================================================= */
.hps-section-header {
  text-align: center;
  max-width: var(--hps-content-narrow);
  margin: 0 auto var(--hps-space-16);
}

.hps-section-header__eyebrow {
  display: inline-block;
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-semibold);
  letter-spacing: var(--hps-tracking-wider);
  text-transform: uppercase;
  color: var(--hps-accent);
  margin-bottom: var(--hps-space-3);
}

.hps-section-header__title {
  font-size: var(--hps-text-2xl);
  color: var(--hps-text);
  margin-bottom: var(--hps-space-4);
}

.hps-section-header__subtitle {
  font-size: var(--hps-text-base);
  color: var(--hps-text-muted);
  line-height: var(--hps-leading-normal);
}

/* =================================================================
   5. SERVICE GRID — 3 columns with icon hover effects
   ================================================================= */
.hps-services {
  padding-block: var(--hps-section-padding);
  background: var(--hps-bg);
}

.hps-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hps-space-8);
  align-items: stretch;
}

.hps-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--hps-space-12) var(--hps-space-8);
  background: var(--hps-surface);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-xl);
  transition: all var(--hps-transition-base);
  overflow: hidden;
  isolation: isolate;
}

/* Top accent line that slides in on hover */
.hps-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hps-gradient-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--hps-transition-base);
  z-index: 1;
}

/* Background glow on hover */
.hps-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(214, 178, 94, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--hps-transition-base);
  z-index: -1;
}

.hps-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hps-shadow-lg);
  border-color: var(--hps-accent-light);
}

.hps-service-card:hover::before {
  transform: scaleX(1);
}

.hps-service-card:hover::after {
  opacity: 1;
}

/* Icon container */
.hps-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: var(--hps-space-6);
  border-radius: var(--hps-radius-full);
  background: var(--hps-primary-light);
  transition: all var(--hps-transition-base);
}

.hps-service-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--hps-primary);
  fill: none;
  stroke-width: 2;
  transition: all var(--hps-transition-base);
}

/* Icon hover: scale + color shift */
.hps-service-card:hover .hps-service-card__icon {
  background: var(--hps-gradient-cta);
  transform: scale(1.1);
}

.hps-service-card:hover .hps-service-card__icon svg {
  stroke: var(--hps-text-inverse);
  transform: rotate(5deg);
}

.hps-service-card__title {
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-bold);
  color: var(--hps-text);
  margin-bottom: var(--hps-space-3);
}

.hps-service-card__desc {
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
  line-height: var(--hps-leading-normal);
  margin-bottom: var(--hps-space-6);
}

.hps-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  color: var(--hps-accent);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--hps-transition-fast);
}

.hps-service-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--hps-transition-fast);
}

.hps-service-card:hover .hps-service-card__link {
  gap: var(--hps-space-3);
}

.hps-service-card:hover .hps-service-card__link svg {
  transform: translateX(2px);
}

/* Coming Soon service cards */
.hps-service-card--soon {
  background: var(--hps-bg-alt, var(--hps-surface));
}

.hps-service-card--soon .hps-service-card__icon {
  opacity: 0.75;
}

.hps-service-card__badge {
  position: absolute;
  top: var(--hps-space-4);
  right: var(--hps-space-4);
  z-index: 2;
  display: inline-block;
  padding: var(--hps-space-1) var(--hps-space-3);
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wide);
  color: var(--hps-primary, #0a2342);
  background: var(--hps-accent);
  border-radius: var(--hps-radius-full, 999px);
  box-shadow: var(--hps-shadow-sm);
}

.hps-service-card__status {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  margin-top: auto;
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  color: var(--hps-text-muted);
}

.hps-service-card__status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hps-accent);
}

/* =================================================================
   5b. GALLERY — Gulf Coast pool showcase (navy section)
   ================================================================= */
.hps-gallery {
  padding-block: var(--hps-section-padding);
  background: var(--hps-gradient-hero, linear-gradient(135deg, #0a2342, #0d2d54));
  position: relative;
  isolation: isolate;
}

.hps-gallery__eyebrow {
  color: var(--hps-accent);
}

.hps-gallery__title {
  color: var(--hps-text-inverse);
}

.hps-gallery__subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.hps-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hps-space-6);
}

.hps-gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--hps-radius-xl);
  overflow: hidden;
  box-shadow: var(--hps-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hps-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--hps-transition-base);
}

.hps-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--hps-space-8) var(--hps-space-5) var(--hps-space-4);
  color: var(--hps-text-inverse);
  background: linear-gradient(
    to top,
    rgba(6, 23, 43, 0.92) 0%,
    rgba(6, 23, 43, 0.55) 55%,
    rgba(6, 23, 43, 0) 100%
  );
}

.hps-gallery__caption-title {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-base);
  font-weight: var(--hps-weight-bold);
  color: #fff;
}

.hps-gallery__caption-loc {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-semibold);
  letter-spacing: var(--hps-tracking-wide);
  text-transform: uppercase;
  color: var(--hps-accent-light, #f2d98b);
}

@media (hover: hover) and (pointer: fine) {
  .hps-gallery__item:hover .hps-gallery__img {
    transform: scale(1.04);
  }
}

/* Homepage slideshow → full gallery CTA */
.hps-gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--hps-space-10);
}

/* ===== Our Work slideshow ===== */
.hps-slideshow {
  max-width: 960px;
  margin-inline: auto;
  outline: none;
}
.hps-slideshow__viewport {
  position: relative;
  border-radius: var(--hps-radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.04);
}
.hps-slideshow__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hps-slide {
  position: relative;
  margin: 0;
  flex: 0 0 100%;
  min-width: 100%;
}
.hps-slide__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hps-slide__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--hps-space-8) var(--hps-space-6) var(--hps-space-5);
  background: linear-gradient(to top, rgba(6, 20, 40, 0.9), rgba(6, 20, 40, 0));
}
.hps-slide__title {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-bold);
  color: #fff;
}
.hps-slide__loc {
  font-size: var(--hps-text-sm);
  color: var(--hps-accent-light, #f2d98b);
  letter-spacing: var(--hps-tracking-wide);
  text-transform: uppercase;
}
.hps-slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hps-primary, #0d2d54);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
}
.hps-slideshow__arrow svg { width: 22px; height: 22px; }
.hps-slideshow__arrow--prev { left: var(--hps-space-4); }
.hps-slideshow__arrow--next { right: var(--hps-space-4); }
.hps-slideshow__dots {
  display: flex;
  justify-content: center;
  gap: var(--hps-space-2);
  margin-top: var(--hps-space-5);
}
.hps-slideshow__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hps-slideshow__dot.is-active {
  background: var(--hps-accent-light, #f2d98b);
  transform: scale(1.25);
}
.hps-slideshow:focus-visible { box-shadow: 0 0 0 3px var(--hps-accent-light, #f2d98b); border-radius: var(--hps-radius-xl); }

@media (hover: hover) and (pointer: fine) {
  .hps-slideshow__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
  .hps-slideshow__dot:hover { background: rgba(255, 255, 255, 0.6); }
}
@media (max-width: 640px) {
  .hps-slide__img { aspect-ratio: 4 / 3; }
  .hps-slideshow__arrow { width: 38px; height: 38px; }
  .hps-slideshow__arrow svg { width: 18px; height: 18px; }
  .hps-slideshow__arrow--prev { left: var(--hps-space-2); }
  .hps-slideshow__arrow--next { right: var(--hps-space-2); }
}
@media (prefers-reduced-motion: reduce) {
  .hps-slideshow__track { transition: none; }
}

/* ===== Gallery grid item as a button (clickable → lightbox) ===== */
.hps-gallery__item {
  display: block;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  aspect-ratio: 4 / 3;
  appearance: none;
  -webkit-appearance: none;
}
.hps-gallery__item:focus-visible {
  outline: 3px solid var(--hps-accent-light, #f2d98b);
  outline-offset: 3px;
}

.hps-gallery__empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--hps-text-base);
  padding-block: var(--hps-space-8);
}

/* ===== Lightbox ===== */
.hps-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--hps-space-2);
  padding: var(--hps-space-6);
  background: rgba(4, 15, 30, 0.92);
  backdrop-filter: blur(4px);
}
.hps-lightbox[hidden] { display: none; }

.hps-lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hps-space-4);
}
.hps-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--hps-radius-lg);
  box-shadow: var(--hps-shadow-lg);
  object-fit: contain;
}
.hps-lightbox__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  color: var(--hps-text-inverse);
}
.hps-lightbox__caption-title {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-bold);
  color: #fff;
}
.hps-lightbox__caption-loc {
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  letter-spacing: var(--hps-tracking-wide);
  text-transform: uppercase;
  color: var(--hps-accent-light, #f2d98b);
}

.hps-lightbox__close,
.hps-lightbox__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #0a2342;
  background: #fff;
  border-radius: var(--hps-radius-full, 999px);
  box-shadow: var(--hps-shadow-lg);
  transition: transform var(--hps-transition-base), background var(--hps-transition-base);
}
.hps-lightbox__arrow { width: 48px; height: 48px; flex-shrink: 0; }
.hps-lightbox__arrow svg { width: 24px; height: 24px; }
.hps-lightbox__close {
  position: absolute;
  top: var(--hps-space-5);
  right: var(--hps-space-5);
  width: 44px;
  height: 44px;
}
.hps-lightbox__close svg { width: 22px; height: 22px; }
@media (hover: hover) and (pointer: fine) {
  .hps-lightbox__close:hover,
  .hps-lightbox__arrow:hover { transform: scale(1.08); background: var(--hps-accent-light, #f2d98b); }
}
.hps-lightbox__close:focus-visible,
.hps-lightbox__arrow:focus-visible {
  outline: 3px solid var(--hps-accent-light, #f2d98b);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .hps-lightbox { padding: var(--hps-space-3); }
  .hps-lightbox__arrow { width: 40px; height: 40px; }
  .hps-lightbox__arrow svg { width: 20px; height: 20px; }
  .hps-lightbox__close { top: var(--hps-space-3); right: var(--hps-space-3); }
}

/* =================================================================
   6. STICKY CONTACT BAR — bottom of screen
   ================================================================= */
.hps-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: var(--hps-z-sticky);
  background: var(--hps-surface);
  border-top: 1px solid var(--hps-border);
  box-shadow: 0 -4px 24px rgba(10, 35, 66, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(100%);
  transition: transform var(--hps-transition-base);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.hps-contact-bar.is-visible {
  transform: translateY(0);
}

/* Auto-hide while scrolling on mobile */
.hps-contact-bar.is-hidden {
  transform: translateY(100%) !important;
}

.hps-contact-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hps-space-4);
  padding-block: var(--hps-space-4);
  padding-inline: var(--hps-container-padding);
  flex-wrap: wrap;
}

.hps-contact-bar__info {
  display: flex;
  align-items: center;
  gap: var(--hps-space-6);
  flex-wrap: wrap;
}

.hps-contact-bar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-medium);
  color: var(--hps-text);
  text-decoration: none;
  transition: color var(--hps-transition-fast);
}

.hps-contact-bar__item:hover {
  color: var(--hps-accent);
}

.hps-contact-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--hps-radius-full);
  background: var(--hps-primary-light);
  flex-shrink: 0;
}

.hps-contact-bar__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--hps-primary);
  fill: none;
  stroke-width: 2;
}

.hps-contact-bar__actions {
  display: flex;
  align-items: center;
  gap: var(--hps-space-3);
  flex-shrink: 0;
}

a.hps-contact-bar__cta {
  padding: var(--hps-space-3) var(--hps-space-6);
  font-size: var(--hps-text-sm);
}

/* =================================================================
   7. ABOUT SECTION — Two-column layout with stats panel
   ================================================================= */
.hps-about {
  padding-block: var(--hps-section-padding);
  background: var(--hps-surface);
}

.hps-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hps-space-16);
  align-items: center;
}

.hps-about__content {
  max-width: 540px;
}

.hps-about__title {
  font-size: var(--hps-text-2xl);
  color: var(--hps-text);
  margin-bottom: var(--hps-space-5);
  margin-top: var(--hps-space-3);
}

.hps-about__lead {
  font-size: var(--hps-text-lg);
  color: var(--hps-text);
  line-height: var(--hps-leading-snug);
  margin-bottom: var(--hps-space-5);
  font-weight: var(--hps-weight-medium);
}

.hps-about__text {
  font-size: var(--hps-text-base);
  color: var(--hps-text-muted);
  line-height: var(--hps-leading-normal);
  margin-bottom: var(--hps-space-8);
}

/* Feature list */
.hps-about__features {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-4);
  margin-bottom: var(--hps-space-10);
}

.hps-about__feature {
  display: flex;
  align-items: center;
  gap: var(--hps-space-3);
  font-size: var(--hps-text-base);
  color: var(--hps-text);
  font-weight: var(--hps-weight-medium);
}

.hps-about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--hps-radius-full);
  background: var(--hps-primary-light);
  color: var(--hps-primary);
  flex-shrink: 0;
}

.hps-about__feature-icon svg {
  width: 16px;
  height: 16px;
}

.hps-about__cta {
  padding-inline: var(--hps-space-10);
}

/* Stats panel (right column) */
.hps-about__visual {
  display: flex;
  justify-content: center;
}

.hps-about__stat-panel {
  width: 100%;
  max-width: 440px;
  background: var(--hps-gradient-hero);
  border-radius: var(--hps-radius-2xl);
  padding: var(--hps-space-10);
  box-shadow: var(--hps-shadow-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hps-about__stat-panel::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.hps-about__stat-panel-header h3 {
  font-size: var(--hps-text-lg);
  color: var(--hps-text-inverse);
  margin-bottom: var(--hps-space-1);
}

.hps-about__stat-panel-header p {
  font-size: var(--hps-text-sm);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--hps-space-8);
}

/* Supporting reasons list inside the navy panel — ensure light, readable text */
.hps-about__stat-panel ul span {
  color: rgba(255, 255, 255, 0.85);
}

.hps-about__stat-panel ul strong {
  color: var(--hps-text-inverse);
  font-weight: var(--hps-weight-semibold);
}

.hps-about__stat-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hps-space-2);
  padding: var(--hps-space-6) 0;
  margin-bottom: var(--hps-space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hps-about__stat-highlight .hps-about__stat-number {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-4xl);
  font-weight: var(--hps-weight-extrabold);
  color: var(--hps-text-inverse);
  line-height: 1;
}

.hps-about__stat-label {
  font-size: var(--hps-text-xs);
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wide);
}

.hps-about__badges {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-4);
}

.hps-about__badge {
  display: flex;
  align-items: center;
  gap: var(--hps-space-3);
  font-size: var(--hps-text-sm);
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--hps-weight-medium);
}

.hps-about__badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--hps-accent);
  fill: none;
}


/* =================================================================
   8. PRICING SECTION — 3-tier pricing table
   ================================================================= */
.hps-pricing {
  padding-block: var(--hps-section-padding);
  background: var(--hps-bg);
}

.hps-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hps-space-6);
  align-items: stretch;
}

.hps-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--hps-surface);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-xl);
  padding: var(--hps-space-8);
  transition: all var(--hps-transition-base);
  overflow: hidden;
}

.hps-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hps-shadow-lg);
  border-color: var(--hps-accent-light);
}

/* Featured plan */
.hps-pricing-card--featured {
  border: 2px solid var(--hps-accent);
  box-shadow: var(--hps-shadow-md);
  transform: scale(1.03);
}

.hps-pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--hps-shadow-xl);
}

.hps-pricing-card__badge {
  position: absolute;
  top: var(--hps-space-4);
  right: var(--hps-space-4);
  display: inline-flex;
  align-items: center;
  padding: var(--hps-space-1) var(--hps-space-3);
  background: var(--hps-accent);
  color: var(--hps-text-inverse);
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wide);
  border-radius: var(--hps-radius-full);
}

.hps-pricing-card__header {
  margin-bottom: var(--hps-space-6);
  padding-right: var(--hps-space-20);
}

.hps-pricing-card__name {
  font-size: var(--hps-text-lg);
  color: var(--hps-text);
  margin-bottom: var(--hps-space-1);
}

.hps-pricing-card__desc {
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
}

.hps-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--hps-space-1);
  margin-bottom: var(--hps-space-8);
  padding-bottom: var(--hps-space-6);
  border-bottom: 1px solid var(--hps-divider);
}

.hps-pricing-card__currency {
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-bold);
  color: var(--hps-text);
}

.hps-pricing-card__amount {
  font-family: var(--hps-font-heading);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: var(--hps-weight-extrabold);
  color: var(--hps-text);
  line-height: 1;
}

.hps-pricing-card__period {
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
  font-weight: var(--hps-weight-medium);
}

.hps-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-3);
  margin-bottom: var(--hps-space-8);
  flex-grow: 1;
}

.hps-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--hps-space-3);
  font-size: var(--hps-text-sm);
  color: var(--hps-text);
  line-height: var(--hps-leading-snug);
}

.hps-pricing-card__feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--hps-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Excluded features (strikethrough styling) */
.hps-pricing-card__feature--excluded {
  color: var(--hps-text-faint);
}

.hps-pricing-card__feature--excluded svg {
  stroke: var(--hps-text-faint);
}

.hps-pricing-card__cta {
  width: 100%;
  justify-content: center;
}

/* Featured plan CTA gets gradient, others get outline */
.hps-pricing-card:not(.hps-pricing-card--featured) .hps-pricing-card__cta {
  background: transparent;
  color: var(--hps-primary);
  border: 2px solid var(--hps-border);
  box-shadow: none;
}

.hps-pricing-card:not(.hps-pricing-card--featured) .hps-pricing-card__cta:hover {
  border-color: var(--hps-accent);
  color: var(--hps-accent);
  background: var(--hps-accent-light);
}

.hps-pricing__note {
  text-align: center;
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
  margin-top: var(--hps-space-10);
  max-width: var(--hps-content-default);
  margin-inline: auto;
}

/* Two-plan layout: center the pair instead of the 3-col grid */
.hps-pricing__grid--duo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.hps-pricing-card--duo {
  max-width: 420px;
  width: 100%;
}

/* Annual-prepay incentive line under the monthly price */
.hps-pricing-card__annual {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--hps-space-2);
  margin-top: calc(var(--hps-space-6) * -1);
  margin-bottom: var(--hps-space-4);
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
}
.hps-pricing-card__annual strong {
  color: var(--hps-text);
  font-weight: var(--hps-weight-bold);
}
.hps-pricing-card__annual-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px var(--hps-space-2);
  background: var(--hps-accent-light);
  color: var(--hps-primary);
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wide);
  border-radius: var(--hps-radius-full);
}
.hps-pricing-card__desc--tight {
  margin-top: calc(var(--hps-space-2) * -1);
}

/* "A plan pays for itself" reassurance strip */
.hps-plan-value {
  display: flex;
  align-items: flex-start;
  gap: var(--hps-space-4);
  max-width: 780px;
  margin: var(--hps-space-10) auto 0;
  padding: var(--hps-space-6) var(--hps-space-8);
  background: var(--hps-primary);
  color: var(--hps-text-inverse);
  border-radius: var(--hps-radius-xl);
  box-shadow: var(--hps-shadow-md);
}
.hps-plan-value svg {
  width: 28px;
  height: 28px;
  stroke: var(--hps-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.hps-plan-value p {
  margin: 0;
  font-size: var(--hps-text-sm);
  line-height: var(--hps-leading-relaxed);
  color: rgba(255, 255, 255, 0.82);
}
.hps-plan-value strong {
  color: var(--hps-text-inverse);
  font-weight: var(--hps-weight-bold);
}

/* =====================================================================
   GUARANTEE BAND
   ===================================================================== */
.hps-guarantee {
  padding-block: var(--hps-section-padding-sm);
  background: var(--hps-bg);
}
.hps-guarantee__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--hps-space-6) var(--hps-space-8);
  background: var(--hps-gradient-hero);
  border-radius: var(--hps-radius-2xl);
  padding: clamp(var(--hps-space-8), 4vw, var(--hps-space-16));
  box-shadow: var(--hps-shadow-lg);
  position: relative;
  overflow: hidden;
}
.hps-guarantee__seal {
  display: grid;
  place-items: center;
  width: clamp(64px, 10vw, 92px);
  height: clamp(64px, 10vw, 92px);
  border-radius: var(--hps-radius-full);
  background: rgba(214, 178, 94, 0.14);
  border: 1.5px solid var(--hps-accent);
  color: var(--hps-accent);
}
.hps-guarantee__seal svg {
  width: 52%;
  height: 52%;
}
.hps-guarantee__eyebrow {
  display: block;
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-bold);
  letter-spacing: var(--hps-tracking-wider);
  text-transform: uppercase;
  color: var(--hps-accent);
  margin-bottom: var(--hps-space-2);
}
.hps-guarantee__title {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-xl);
  font-weight: var(--hps-weight-extrabold);
  color: var(--hps-text-inverse);
  line-height: var(--hps-leading-tight);
  margin: 0 0 var(--hps-space-3);
}
.hps-guarantee__text p {
  margin: 0;
  font-size: var(--hps-text-base);
  line-height: var(--hps-leading-normal);
  color: rgba(255, 255, 255, 0.85);
}
.hps-guarantee__points {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--hps-space-3) var(--hps-space-6);
  padding-top: var(--hps-space-2);
}
.hps-guarantee__point {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  color: var(--hps-text-inverse);
}
.hps-guarantee__point svg {
  width: 18px;
  height: 18px;
  color: var(--hps-accent);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hps-guarantee__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hps-guarantee__points {
    justify-content: center;
  }
}

/* =====================================================================
   FAQ — native <details> accordion
   ===================================================================== */
.hps-faq {
  padding-block: var(--hps-section-padding);
  background: var(--hps-surface-alt);
}
.hps-faq__list {
  max-width: var(--hps-content-narrow);
  margin: clamp(var(--hps-space-8), 4vw, var(--hps-space-12)) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-3);
}
.hps-faq__item {
  background: var(--hps-surface);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-lg);
  overflow: hidden;
  transition: border-color var(--hps-transition-base), box-shadow var(--hps-transition-base);
}
.hps-faq__item[open] {
  border-color: var(--hps-accent);
  box-shadow: var(--hps-shadow-sm);
}
.hps-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hps-space-4);
  padding: var(--hps-space-5) var(--hps-space-6);
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-base);
  font-weight: var(--hps-weight-bold);
  color: var(--hps-primary);
  cursor: pointer;
  list-style: none;
}
.hps-faq__q::-webkit-details-marker {
  display: none;
}
.hps-faq__q:hover {
  color: var(--hps-accent-hover);
}
.hps-faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hps-faq__icon::before,
.hps-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--hps-accent);
  border-radius: var(--hps-radius-full);
  transition: transform var(--hps-transition-base);
}
.hps-faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  transform: translateY(-50%);
}
.hps-faq__icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2.5px;
  transform: translateX(-50%);
}
.hps-faq__item[open] .hps-faq__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.hps-faq__a {
  padding: 0 var(--hps-space-6) var(--hps-space-5);
}
.hps-faq__a p {
  margin: 0;
  font-size: var(--hps-text-sm);
  line-height: var(--hps-leading-normal);
  color: var(--hps-text-muted);
}
.hps-faq__a strong {
  color: var(--hps-text);
  font-weight: var(--hps-weight-semibold);
}
.hps-faq__a a {
  color: var(--hps-accent-hover);
  font-weight: var(--hps-weight-semibold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hps-faq__a a:hover {
  color: var(--hps-primary);
}

/* =====================================================================
   BREADCRUMB — used on service detail pages
   ===================================================================== */
.hps-breadcrumb {
  background: var(--hps-surface);
  border-bottom: 1px solid var(--hps-border);
}
.hps-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--hps-space-2);
  margin: 0;
  padding: var(--hps-space-4) 0;
  list-style: none;
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
}
.hps-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
}
.hps-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  color: var(--hps-border-strong, var(--hps-text-muted));
  opacity: 0.6;
}
.hps-breadcrumb__list a {
  color: var(--hps-text-muted);
  text-decoration: none;
  transition: color var(--hps-transition-base);
}
.hps-breadcrumb__list a:hover {
  color: var(--hps-accent-hover);
}
.hps-breadcrumb__list li[aria-current="page"] {
  color: var(--hps-primary);
  font-weight: var(--hps-weight-semibold);
}

/* ---- Value Pool Care: à la carte price list ---- */
.hps-valuelist {
  max-width: 780px;
  margin: clamp(var(--hps-space-12), 5vw, var(--hps-space-20)) auto 0;
  background-color: var(--hps-surface);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-2xl);
  box-shadow: var(--hps-shadow-lg);
  overflow: hidden;
}

.hps-valuelist__header {
  background: linear-gradient(135deg, var(--hps-primary), var(--hps-primary-dark, var(--hps-primary)));
  padding: clamp(var(--hps-space-5), 3vw, var(--hps-space-6)) clamp(var(--hps-space-6), 4vw, var(--hps-space-8));
  border-bottom: 3px solid var(--hps-accent);
}

.hps-valuelist__title {
  margin: 0;
  font-family: var(--hps-font-heading);
  font-weight: var(--hps-weight-bold);
  color: var(--hps-text-inverse);
  font-size: var(--hps-text-xl);
  line-height: var(--hps-leading-tight);
}

.hps-valuelist__subtitle {
  margin: var(--hps-space-2) 0 0;
  color: var(--hps-accent-light);
  font-size: var(--hps-text-sm);
}

.hps-valuelist__items {
  list-style: none;
  margin: 0;
  padding: 0 clamp(var(--hps-space-6), 4vw, var(--hps-space-8));
}

.hps-valuelist__item {
  display: flex;
  align-items: center;
  gap: var(--hps-space-4);
  padding: var(--hps-space-5) 0;
  border-bottom: 1px solid var(--hps-divider);
  transition: background-color var(--hps-transition-fast, 0.15s ease);
}

.hps-valuelist__item:last-child {
  border-bottom: none;
}

.hps-valuelist__item:hover {
  background-color: var(--hps-bg-alt);
}

.hps-valuelist__marker {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--hps-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hps-accent) 20%, transparent);
}

.hps-valuelist__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.hps-valuelist__name {
  font-family: var(--hps-font-heading);
  font-weight: var(--hps-weight-semibold, 600);
  color: var(--hps-text);
  font-size: var(--hps-text-base);
}

.hps-valuelist__desc {
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
  line-height: var(--hps-leading-normal);
}

.hps-valuelist__price {
  flex-shrink: 0;
  font-family: var(--hps-font-heading);
  font-weight: var(--hps-weight-bold);
  font-size: var(--hps-text-xl);
  color: var(--hps-primary);
  white-space: nowrap;
  text-align: right;
}

.hps-valuelist__unit {
  font-family: var(--hps-font-body, var(--hps-font-heading));
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-medium);
  color: var(--hps-text-muted);
}

.hps-valuelist__unit--pre {
  display: block;
  font-size: var(--hps-text-xs, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

@media (max-width: 480px) {
  .hps-valuelist__item {
    flex-wrap: wrap;
  }
  .hps-valuelist__price {
    width: 100%;
    text-align: left;
    padding-left: calc(10px + var(--hps-space-4));
  }
}


/* =================================================================
   8b. SERVICE AREA SECTION — Map + city list
   ================================================================= */
.hps-service-area {
  padding-block: clamp(var(--hps-space-16), 5vw, var(--hps-space-24));
  background-color: var(--hps-bg-alt);
}

.hps-service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hps-space-12);
  align-items: start;
}

/* ---- City lists ---- */
.hps-service-area__cities {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-8);
}

.hps-service-area__county-name {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-bold);
  color: var(--hps-primary);
  margin-bottom: var(--hps-space-4);
  padding-bottom: var(--hps-space-2);
  border-bottom: 2px solid var(--hps-accent-light);
  display: flex;
  align-items: center;
  gap: var(--hps-space-2);
}

.hps-service-area__county-name::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hps-accent);
  flex-shrink: 0;
}

.hps-service-area__county-name--matagorda {
  color: #00805A;
  border-bottom-color: rgba(0, 128, 90, 0.2);
}

.hps-service-area__county-name--matagorda::before {
  background: #00805A;
}

.hps-service-area__city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hps-space-2) var(--hps-space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}

.hps-service-area__city-list li {
  display: flex;
  align-items: center;
  gap: var(--hps-space-2);
  font-size: var(--hps-text-sm);
  color: var(--hps-text);
  line-height: var(--hps-leading-snug);
}

.hps-service-area__city-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hps-accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.hps-service-area__city-list--matagorda li::before {
  background: #00805A;
}

.hps-service-area__city-list li.is-seat {
  font-weight: var(--hps-weight-semibold);
}

.hps-service-area__city-list li.is-seat::after {
  content: '★';
  font-size: 10px;
  color: var(--hps-accent);
  margin-left: 2px;
}

.hps-service-area__city-list--matagorda li.is-seat::after {
  color: #00805A;
}

/* ---- Legend ---- */
.hps-service-area__legend {
  display: flex;
  gap: var(--hps-space-6);
  flex-wrap: wrap;
  padding-top: var(--hps-space-4);
  border-top: 1px solid var(--hps-divider);
}

.hps-service-area__legend-item {
  display: flex;
  align-items: center;
  gap: var(--hps-space-2);
  font-size: var(--hps-text-xs);
  color: var(--hps-text-muted);
}

.hps-service-area__legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hps-service-area__legend-star {
  font-size: 12px;
  color: var(--hps-accent);
  line-height: 1;
}

/* ---- Map container ---- */
.hps-service-area__map {
  background: var(--hps-surface);
  border-radius: var(--hps-radius-lg);
  padding: var(--hps-space-4);
  box-shadow: var(--hps-shadow-md);
  border: 1px solid var(--hps-border-light);
}

.hps-service-area__svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--hps-radius-md);
}

/* ---- Expansion CTA ---- */
.hps-service-area__cta {
  text-align: center;
  margin-top: var(--hps-space-12);
  padding: var(--hps-space-8) var(--hps-space-6);
  background: var(--hps-gradient-cta);
  border-radius: var(--hps-radius-lg);
  color: var(--hps-primary);
}

.hps-service-area__cta p {
  font-size: var(--hps-text-base);
  margin-bottom: var(--hps-space-4);
  color: #FFFFFF;
}

.hps-service-area__cta .hps-btn {
  background: #FFFFFF;
  color: var(--hps-primary);
  border: none;
}

.hps-service-area__cta .hps-btn:hover {
  background: var(--hps-accent-light);
  transform: translateY(-2px);
}

/* ---- Coverage tiers (weekly route vs. county-wide service calls) ---- */
.hps-coverage-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hps-space-6);
  margin-bottom: var(--hps-space-12);
}

.hps-coverage-tier {
  padding: var(--hps-space-6);
  border-radius: var(--hps-radius-lg);
  background: var(--hps-surface, #FFFFFF);
  border: 1px solid var(--hps-border, #E2E8F0);
  border-top: 4px solid var(--hps-accent);
}

.hps-coverage-tier--repairs {
  border-top-color: #00805A;
}

.hps-coverage-tier__head {
  display: flex;
  align-items: center;
  gap: var(--hps-space-3);
  margin-bottom: var(--hps-space-4);
}

.hps-coverage-tier__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--hps-radius-md);
  background: var(--hps-accent-light);
  color: var(--hps-accent);
}

.hps-coverage-tier--repairs .hps-coverage-tier__icon {
  background: rgba(0, 128, 90, 0.12);
  color: #00805A;
}

.hps-coverage-tier__icon svg {
  width: 22px;
  height: 22px;
}

.hps-coverage-tier__label {
  display: block;
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-bold);
  color: var(--hps-primary);
  line-height: 1.2;
}

.hps-coverage-tier__badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 10px;
  border-radius: var(--hps-radius-full, 999px);
  background: var(--hps-accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: var(--hps-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hps-coverage-tier__badge--wide {
  background: #00805A;
}

.hps-coverage-tier__area {
  font-size: var(--hps-text-lg);
  font-weight: var(--hps-weight-bold);
  color: var(--hps-primary);
  margin-bottom: var(--hps-space-2);
}

.hps-coverage-tier__desc {
  font-size: var(--hps-text-sm);
  line-height: 1.6;
  color: var(--hps-text-muted, #64748B);
}

/* ---- City-list caption + weekly-route tags ---- */
.hps-service-area__cities-caption {
  font-size: var(--hps-text-sm);
  line-height: 1.6;
  color: var(--hps-text-muted, #64748B);
  margin-bottom: var(--hps-space-2);
}

.hps-service-area__weekly-key {
  display: block;
  margin-top: 2px;
}

.hps-service-area__weekly-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: var(--hps-radius-full, 999px);
  background: var(--hps-accent);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: var(--hps-weight-bold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}

.hps-service-area__city-list li.is-weekly {
  font-weight: var(--hps-weight-bold);
  color: var(--hps-primary);
}

/* Linked cities read as clickable on hover */
.hps-service-area__city-list a {
  transition: color var(--hps-transition-fast, 0.15s ease);
}

.hps-service-area__city-list a:hover {
  color: var(--hps-accent) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

  /* ---- City-page coverage notice (weekly route vs. service-call area) ---- */
.hps-coverage-notice {
  background: var(--hps-surface-alt, #F7FBFC);
  border-bottom: 1px solid var(--hps-border, #E2E8F0);
}

.hps-coverage-notice__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--hps-space-3);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--hps-space-4) 0;
}

.hps-coverage-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--hps-radius-md);
  background: var(--hps-accent-light);
  color: var(--hps-accent);
}

.hps-coverage-notice--repairs .hps-coverage-notice__icon {
  background: rgba(0, 128, 90, 0.12);
  color: #00805A;
}

.hps-coverage-notice__icon svg {
  width: 20px;
  height: 20px;
}

.hps-coverage-notice__text {
  font-size: var(--hps-text-sm);
  line-height: 1.55;
  color: var(--hps-text-muted, #64748B);
}

.hps-coverage-notice__text strong {
  color: var(--hps-primary);
  font-weight: var(--hps-weight-bold);
}


/* =================================================================
   9. RESPONSIVE BREAKPOINTS
   ================================================================= */

/* ---- Tablet: ≤ 1024px ---- */
@media (max-width: 1024px) {
  .hps-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hps-space-6);
  }

  .hps-hero__content {
    max-width: 600px;
  }

  .hps-contact-bar__inner {
    flex-direction: column;
    gap: var(--hps-space-3);
    padding-block: var(--hps-space-3);
  }

  .hps-contact-bar__info {
    justify-content: center;
    gap: var(--hps-space-4);
  }

  /* About: stack to single column */
  .hps-about__grid {
    grid-template-columns: 1fr;
    gap: var(--hps-space-10);
  }

  .hps-about__content {
    max-width: 100%;
  }

  .hps-about__visual {
    max-width: 480px;
    margin-inline: auto;
  }

  /* Pricing: featured loses scale on tablet */
  .hps-pricing-card--featured {
    transform: none;
  }

  .hps-pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  /* Service area: stack map above city list */
  .hps-service-area__grid {
    grid-template-columns: 1fr;
    gap: var(--hps-space-8);
  }

  .hps-service-area__map {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ---- Mobile: ≤ 768px ---- */
/* Navbar collapses to a hamburger below 1040px — the full menu has nine links
   plus two buttons, so it needs a wide desktop to sit on one line. */
@media (max-width: 1039px) {
  /* Hide nav links, show hamburger */
  .hps-navbar__nav {
    display: none;
  }

  .hps-navbar__toggle {
    display: flex;
    margin-left: var(--hps-space-3);
  }

  /* Persistent Customer Login CTA — pinned to the viewport so it stays
     visible no matter how far the customer scrolls. */
  .hps-root .hps-navbar__portal-cta {
    display: inline-flex;
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: calc(env(safe-area-inset-right, 0px) + 12px);
    margin-left: 0;
    z-index: 300; /* above the flag band (200) and navbar (100) */
    box-shadow: 0 4px 16px rgba(10, 35, 66, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.15);
  }

  /* Redundant in-menu Customer Login is hidden — the bar CTA replaces it */
  .hps-root .hps-navbar__btn--portal {
    display: none;
  }

  /* Discreet Pool Pro link — pinned bottom-left, small and out of the way,
     but always reachable without opening the menu. */
  .hps-root .hps-navbar__pro-cta {
    display: inline-flex;
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
    left: calc(env(safe-area-inset-left, 0px) + 14px);
    z-index: 300;
    box-shadow: 0 2px 10px rgba(10, 35, 66, 0.35);
  }

  /* In-menu Pool Pro is hidden — the floating link replaces it */
  .hps-root .hps-navbar__btn--pro {
    display: none;
  }

  /* Open mobile menu — navy dropdown panel */
  .hps-navbar.is-menu-open .hps-navbar__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--hps-space-2);
    position: absolute;
    top: calc(100% - var(--hps-space-2));
    left: var(--hps-space-4);
    right: var(--hps-space-4);
    padding: var(--hps-space-4);
    background: var(--hps-primary, #06172b);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--hps-radius-lg);
    box-shadow: var(--hps-shadow-lg);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .hps-navbar.is-menu-open .hps-navbar__link {
    opacity: 1;
    padding: var(--hps-space-3);
    border-radius: var(--hps-radius-md);
    font-size: var(--hps-text-base);
  }

  .hps-navbar.is-menu-open .hps-navbar__link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hps-navbar.is-menu-open .hps-navbar__btn {
    justify-content: center;
    padding-block: var(--hps-space-3);
  }

  /* Pool Pro stays subtle: a small, quiet staff link at the bottom */
  .hps-navbar.is-menu-open .hps-navbar__btn--pro {
    margin-top: var(--hps-space-2);
    font-size: var(--hps-text-xs);
    padding-block: var(--hps-space-2);
    color: rgba(255, 255, 255, 0.6);
  }

  /* Hamburger animates into an X */
  .hps-navbar.is-menu-open .hps-navbar__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hps-navbar.is-menu-open .hps-navbar__toggle span:nth-child(2) {
    opacity: 0;
  }
  .hps-navbar.is-menu-open .hps-navbar__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  /* Top banner: stack into a column with flags ABOVE the crests */
  .hps-flags__inner {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .hps-flags__group {
    order: 1;
    justify-content: center;
  }

  .hps-flags__veteran {
    order: 2;
  }

  .hps-services__grid {
    grid-template-columns: 1fr;
    gap: var(--hps-space-5);
  }

  .hps-service-card {
    padding: var(--hps-space-8) var(--hps-space-6);
  }

  /* Gallery: two columns on tablet/large phones */
  .hps-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hps-space-4);
  }

  /* Hero adjustments */
  .hps-hero {
    min-height: auto;
    padding-top: var(--hps-space-16);
  }

  .hps-hero__content {
    padding-block: var(--hps-space-2) var(--hps-space-8);
  }

  .hps-hero__title {
    font-size: var(--hps-text-2xl);
  }

  .hps-hero__subtitle {
    font-size: var(--hps-text-base);
    margin-bottom: var(--hps-space-4);
  }

  .hps-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hps-hero__actions .hps-btn {
    width: 100%;
    justify-content: center;
  }

  .hps-hero__veteran-badge {
    margin-bottom: var(--hps-space-3);
  }
  .hps-hero__service-line {
    text-align: center;
    margin-top: var(--hps-space-5);
  }

  /* Contact bar simplifies */
  .hps-contact-bar__info {
    display: none;
  }

  .hps-contact-bar__inner {
    flex-direction: row;
    justify-content: center;
  }

  .hps-contact-bar__actions {
    width: 100%;
    justify-content: center;
  }

  a.hps-contact-bar__cta {
    width: 100%;
    text-align: center;
  }

  /* Section headers */
  .hps-section-header__title {
    font-size: var(--hps-text-xl);
  }

  .hps-section-header {
    margin-bottom: var(--hps-space-10);
  }

  /* About section mobile */
  .hps-about__title {
    font-size: var(--hps-text-xl);
  }

  .hps-about__lead {
    font-size: var(--hps-text-base);
  }

  .hps-about__stat-panel {
    padding: var(--hps-space-8);
  }

  .hps-about__cta {
    width: 100%;
    justify-content: center;
  }

  /* Pricing: stack to single column */
  .hps-pricing__grid {
    grid-template-columns: 1fr;
    gap: var(--hps-space-5);
  }

  .hps-pricing-card--featured {
    transform: none;
    order: -1;
  }

  .hps-pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  /* Service area: single-column city list on mobile */
  .hps-service-area__city-list {
    grid-template-columns: 1fr;
  }

  /* Coverage tiers stack on mobile */
  .hps-coverage-tiers {
    grid-template-columns: 1fr;
  }

  .hps-service-area__cta {
    padding: var(--hps-space-6) var(--hps-space-4);
  }
}

/* ---- Small mobile: ≤ 480px ---- */
@media (max-width: 480px) {
  :root {
    --hps-container-padding: var(--hps-space-4);
  }

  .hps-hero {
    min-height: auto;
  }

  .hps-hero__eyebrow {
    font-size: var(--hps-text-xs);
    margin-bottom: var(--hps-space-3);
  }

  .hps-service-card__icon {
    width: 60px;
    height: 60px;
  }

  .hps-service-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .hps-contact-bar__inner {
    padding-block: var(--hps-space-2);
  }

  /* Pricing card padding tighter */
  .hps-pricing-card {
    padding: var(--hps-space-6);
  }

  .hps-pricing-card__header {
    padding-right: var(--hps-space-16);
  }
}

/* ---- Large desktop: ≥ 1440px ---- */
@media (min-width: 1440px) {
  :root {
    --hps-container-max: 1320px;
  }

  .hps-hero__content {
    max-width: 800px;
  }
}

/* ---- Extra large: ≥ 1920px ---- */
@media (min-width: 1920px) {
  .hps-hero__title {
    font-size: clamp(var(--hps-text-3xl), 4vw, 5.5rem);
  }
}

/* =================================================================
   8. ACCESSIBILITY — print + screen reader
   ================================================================= */
@media print {
  .hps-contact-bar,
  .hps-navbar,
  .hps-hero__wave {
    display: none !important;
  }

  .hps-hero {
    min-height: auto;
  }
}

/* =================================================
     LEAD CAPTURE SECTION
     ================================================= */
.hps-lead {
  position: relative;
  padding: var(--hps-space-16) 0;
  overflow: hidden;
}

.hps-lead__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #06172B 0%, #0A2342 48%, #006D8F 100%);
  z-index: 0;
}

.hps-lead .hps-container {
  position: relative;
  z-index: 1;
}

.hps-lead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hps-space-12);
  align-items: start;
}

/* Pitch side */
.hps-lead__pitch {
  color: #F7F6F2;
  padding-top: var(--hps-space-4);
}

.hps-lead__title {
  font-family: 'Manrope', sans-serif;
  font-size: var(--hps-text-4xl);
  font-weight: 800;
  color: #F7F6F2;
  margin: var(--hps-space-3) 0 var(--hps-space-4) 0;
  line-height: 1.1;
}

.hps-lead__subtitle {
  font-size: var(--hps-text-base);
  color: rgba(247, 246, 242, 0.8);
  line-height: 1.6;
  margin-bottom: var(--hps-space-6);
}

/* Trust badges */
.hps-lead__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hps-space-3);
  margin-bottom: var(--hps-space-8);
}

.hps-lead__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(214, 178, 94, 0.12);
  border: 1px solid rgba(214, 178, 94, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hps-accent);
}

.hps-lead__badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--hps-accent);
}

/* Steps */
.hps-lead__steps {
  margin-bottom: var(--hps-space-6);
}

.hps-lead__steps-title {
  font-family: 'Manrope', sans-serif;
  font-size: var(--hps-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 246, 242, 0.6);
  margin-bottom: var(--hps-space-4);
}

.hps-lead__step {
  display: flex;
  align-items: flex-start;
  gap: var(--hps-space-3);
  margin-bottom: var(--hps-space-4);
}

.hps-lead__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hps-accent);
  color: var(--hps-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hps-lead__step strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: var(--hps-text-base);
  font-weight: 700;
  color: #F7F6F2;
  margin-bottom: 2px;
}

.hps-lead__step p {
  font-size: 13px;
  color: rgba(247, 246, 242, 0.7);
  line-height: 1.5;
  margin: 0;
}

.hps-lead__phone-fallback {
  font-size: var(--hps-text-base);
  color: rgba(247, 246, 242, 0.7);
  margin-top: var(--hps-space-4);
}

.hps-lead__phone-fallback a {
  color: var(--hps-accent);
  font-weight: 700;
  text-decoration: none;
}

.hps-section-header__eyebrow--light {
  color: var(--hps-accent);
}

/* Form side */
.hps-lead__form-wrap {
  background: #F9F8F5;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hps-lead__form-header {
  background: var(--hps-gradient-hero);
  padding: var(--hps-space-6) var(--hps-space-8);
  text-align: center;
  border-bottom: 3px solid var(--hps-accent);
}

.hps-lead__form-title {
  font-family: 'Manrope', sans-serif;
  font-size: var(--hps-text-xl);
  font-weight: 700;
  color: #F7F6F2;
  margin: 0 0 4px 0;
}

.hps-lead__form-subtitle {
  font-size: 13px;
  color: rgba(247, 246, 242, 0.75);
  margin: 0;
}

.hps-lead__form {
  padding: var(--hps-space-8);
}

.hps-lead__section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hps-text-muted);
  margin: var(--hps-space-5) 0 var(--hps-space-3) 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--hps-border);
}

.hps-lead__form .hps-lead__section-label:first-child {
  margin-top: 0;
}

.hps-lead__field {
  margin-bottom: var(--hps-space-4);
}

.hps-lead__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hps-space-3);
}

.hps-lead__field label {
  display: block;
  font-size: var(--hps-text-sm);
  font-weight: 600;
  color: var(--hps-text);
  margin-bottom: var(--hps-space-2);
}

.hps-lead__field input,
.hps-lead__field select,
.hps-lead__field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--hps-border);
  border-radius: 8px;
  font-size: var(--hps-text-base);
  font-family: 'Inter', sans-serif;
  color: var(--hps-text);
  background: #FBFBF9;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.hps-lead__field input:focus,
.hps-lead__field select:focus,
.hps-lead__field textarea:focus {
  outline: none;
  border-color: var(--hps-pool);
  box-shadow: 0 0 0 3px rgba(0, 166, 200, 0.15);
}

.hps-lead__field textarea {
  resize: vertical;
}

.hps-lead__submit {
  width: 100%;
  margin-top: var(--hps-space-3);
  font-size: var(--hps-text-base);
  font-weight: 700;
  padding: 14px 24px;
  letter-spacing: 0.02em;
}

.hps-lead__disclaimer {
  font-size: 12px;
  color: var(--hps-text-muted);
  text-align: center;
  margin-top: var(--hps-space-3);
  line-height: 1.4;
}

/* Success message */
.hps-lead__success {
  text-align: center;
  padding: var(--hps-space-10) var(--hps-space-8);
}

.hps-lead__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--hps-space-4);
  background: rgba(67, 122, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hps-lead__success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--hps-success);
}

.hps-lead__success-title {
  font-family: 'Manrope', sans-serif;
  font-size: var(--hps-text-xl);
  font-weight: 700;
  color: var(--hps-primary);
  margin-bottom: var(--hps-space-3);
}

.hps-lead__success-text {
  font-size: var(--hps-text-base);
  color: var(--hps-text-muted);
  line-height: 1.6;
  margin-bottom: var(--hps-space-4);
}

.hps-lead__success-phone {
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
}

.hps-lead__success-phone a {
  color: var(--hps-pool-dark);
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hps-lead__grid {
    grid-template-columns: 1fr;
    gap: var(--hps-space-8);
  }

  .hps-lead__title {
    font-size: var(--hps-text-3xl);
  }

  .hps-lead__pitch {
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .hps-lead__field-row {
    grid-template-columns: 1fr;
  }

  .hps-lead__form {
    padding: var(--hps-space-5);
  }

  .hps-lead__form-header {
    padding: var(--hps-space-5);
  }

  .hps-lead__badges {
    flex-direction: column;
    gap: var(--hps-space-2);
  }

  .hps-lead__badge {
    justify-content: center;
  }
}

/* iPhone touch targets — 44px minimum */
@media (max-width: 768px) {
  .hps-btn,
  .hps-nav__link,
  .hps-contact-bar__item,
  .hps-contact-bar__cta,
  .hps-footer__nav a,
  .hps-service-card__link,
  .hps-navbar__brand,
  .hps-service-area__city-list a,
  .hps-lead__phone-fallback a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .hps-service-area__city-list li {
    margin-bottom: var(--hps-space-1);
  }
}

/* =====================================================
   SITE FOOTER
   ===================================================== */
.hps-footer {
  background: var(--hps-gradient-hero, linear-gradient(135deg, #0a2342, #0d2d54));
  color: rgba(255, 255, 255, 0.85);
  padding: var(--hps-space-16) 0 var(--hps-space-8);
  margin-top: var(--hps-space-20);
}

.hps-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--hps-space-10);
}

.hps-footer__logo {
  display: inline-block;
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-xl);
  font-weight: var(--hps-weight-extrabold);
  color: var(--hps-text-inverse);
  margin-bottom: var(--hps-space-4);
}

.hps-footer__tagline {
  font-size: var(--hps-text-sm);
  line-height: var(--hps-leading-relaxed);
  color: rgba(255, 255, 255, 0.75);
  max-width: 34ch;
  margin-bottom: var(--hps-space-4);
}

.hps-footer__est {
  font-size: var(--hps-text-xs);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wide);
  color: var(--hps-accent);
  font-weight: var(--hps-weight-semibold);
}

.hps-footer__heading {
  font-size: var(--hps-text-sm);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wide);
  color: var(--hps-text-inverse);
  margin-bottom: var(--hps-space-4);
}

.hps-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-3);
}

.hps-footer__links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: var(--hps-text-sm);
  transition: color var(--hps-transition-fast, 0.15s ease);
}

.hps-footer__links a:hover {
  color: var(--hps-accent);
}

.hps-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hps-space-4);
  flex-wrap: wrap;
  margin-top: var(--hps-space-12);
  padding-top: var(--hps-space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hps-footer__copy {
  font-size: var(--hps-text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.hps-footer__legal {
  display: flex;
  align-items: center;
  gap: var(--hps-space-3);
}

.hps-footer__legal a {
  font-size: var(--hps-text-xs);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--hps-transition-fast, 0.15s ease);
}

.hps-footer__legal a:hover {
  color: var(--hps-accent);
}

.hps-footer__legal-sep {
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .hps-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--hps-space-8);
  }
  .hps-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hps-footer__grid {
    grid-template-columns: 1fr;
  }
  .hps-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================================================
   LEGAL PAGES (Privacy Policy / EULA)
   ===================================================== */
.hps-legal-hero {
  background: var(--hps-gradient-hero, linear-gradient(135deg, #0a2342, #0d2d54));
  color: var(--hps-text-inverse);
  padding: var(--hps-space-16) 0 var(--hps-space-12);
}

.hps-legal-hero__back {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-2);
  color: var(--hps-accent);
  text-decoration: none;
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  margin-bottom: var(--hps-space-6);
  transition: opacity var(--hps-transition-fast, 0.15s ease);
}

.hps-legal-hero__back:hover {
  opacity: 0.8;
}

.hps-legal-hero__eyebrow {
  display: block;
  font-size: var(--hps-text-sm);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wide);
  color: var(--hps-accent);
  font-weight: var(--hps-weight-semibold);
  margin-bottom: var(--hps-space-2);
}

.hps-legal-hero__title {
  font-size: var(--hps-text-4xl);
  color: var(--hps-text-inverse);
  margin-bottom: var(--hps-space-3);
}

.hps-legal-hero__updated {
  font-size: var(--hps-text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.hps-legal {
  padding: var(--hps-space-16) 0 var(--hps-space-20);
}

.hps-legal__body {
  max-width: 760px;
  margin: 0 auto;
}

.hps-legal__intro {
  font-size: var(--hps-text-lg);
  line-height: var(--hps-leading-relaxed);
  color: var(--hps-text);
  margin-bottom: var(--hps-space-10);
}

.hps-legal__section {
  margin-bottom: var(--hps-space-10);
}

.hps-legal__section h2 {
  font-size: var(--hps-text-xl);
  color: var(--hps-primary, #0a2342);
  margin-bottom: var(--hps-space-4);
  padding-bottom: var(--hps-space-2);
  border-bottom: 2px solid var(--hps-accent);
  display: inline-block;
}

.hps-legal__section h3 {
  font-size: var(--hps-text-base);
  color: var(--hps-text);
  margin: var(--hps-space-6) 0 var(--hps-space-2);
}

.hps-legal__section p,
.hps-legal__section li {
  font-size: var(--hps-text-base);
  line-height: var(--hps-leading-relaxed);
  color: var(--hps-text-muted);
  margin-bottom: var(--hps-space-3);
}

.hps-legal__section ul {
  padding-left: var(--hps-space-6);
  margin-bottom: var(--hps-space-4);
}

.hps-legal__section a {
  color: var(--hps-pool, #007a99);
  font-weight: var(--hps-weight-medium);
}

@media (max-width: 640px) {
  .hps-legal-hero__title {
    font-size: var(--hps-text-3xl);
  }
}

/* =================================================================
   ROUTE AVAILABILITY BANNER — limited weekly routes CTA
   ================================================================= */
.hps-route-banner {
  position: relative;
  z-index: 2;
  padding: var(--hps-space-6) 0 var(--hps-space-4);
  background: var(--hps-bg, #f7fbfc);
}

.hps-route-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--hps-space-8);
  padding: clamp(var(--hps-space-6), 4vw, var(--hps-space-10));
  border-radius: var(--hps-radius-2xl, 1.25rem);
  background: linear-gradient(135deg, #0a2342 0%, #1b3a5c 55%, #2d5278 100%);
  border: 1px solid rgba(214, 178, 94, 0.35);
  box-shadow: var(--hps-shadow-lg);
}

.hps-route-banner__content {
  flex: 1 1 24rem;
}

.hps-route-banner__badge {
  display: inline-block;
  margin-bottom: var(--hps-space-3);
  padding: 0.3rem 0.85rem;
  border-radius: var(--hps-radius-full, 999px);
  background: var(--hps-accent, #d6b25e);
  color: #0a2342;
  font-size: var(--hps-text-xs, 0.8125rem);
  font-weight: var(--hps-weight-bold, 700);
  letter-spacing: var(--hps-tracking-wide, 0.04em);
  text-transform: uppercase;
}

.hps-route-banner__title {
  margin: 0 0 var(--hps-space-3);
  font-family: var(--hps-font-heading, inherit);
  font-size: clamp(1.85rem, 1rem + 2.6vw, 2.85rem);
  font-weight: var(--hps-weight-extrabold, 800);
  line-height: var(--hps-leading-tight, 1.1);
  color: var(--hps-text-inverse, #ffffff);
  text-wrap: balance;
}

.hps-route-banner__text {
  margin: 0;
  max-width: 48ch;
  font-size: var(--hps-text-lg, 1.125rem);
  line-height: var(--hps-leading-relaxed, 1.6);
  color: rgba(242, 230, 197, 0.92);
  text-wrap: pretty;
}

.hps-route-banner .hps-route-banner__cta,
.hps-route-banner .hps-route-banner__cta:link,
.hps-route-banner .hps-route-banner__cta:visited {
  display: inline-flex;
  align-items: center;
  gap: var(--hps-space-3);
  flex-shrink: 0;
  padding: var(--hps-space-4) var(--hps-space-8);
  border-radius: var(--hps-radius-lg);
  background: var(--hps-accent, #d6b25e);
  color: #0a2342;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(214, 178, 94, 0.35);
  transition: transform var(--hps-transition-base, 0.2s ease),
    background var(--hps-transition-base, 0.2s ease),
    box-shadow var(--hps-transition-base, 0.2s ease);
}

.hps-route-banner .hps-route-banner__cta * {
  color: #0a2342;
}

.hps-route-banner .hps-route-banner__cta:hover,
.hps-route-banner .hps-route-banner__cta:focus-visible {
  background: var(--hps-accent-hover, #b99336);
  color: #0a2342;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(214, 178, 94, 0.45);
}

.hps-route-banner__cta svg {
  flex-shrink: 0;
}

.hps-route-banner__cta-label {
  display: block;
  font-size: var(--hps-text-sm, 0.875rem);
  font-weight: var(--hps-weight-medium, 500);
  opacity: 0.8;
}

.hps-route-banner__cta-number {
  display: block;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.65rem);
  font-weight: var(--hps-weight-extrabold, 800);
  line-height: var(--hps-leading-tight, 1.1);
}

@media (max-width: 640px) {
  .hps-route-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .hps-route-banner__cta {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================================
   SHOP / STORE — sellable products, cart, order modal (mobile-first)
   ===================================================================== */
.hps-shop {
  padding: var(--hps-space-16, 4rem) 0;
  background: var(--hps-surface-alt);
}
.hps-btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--hps-text-sm);
}

.hps-shop__perks {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-4);
  margin: var(--hps-space-8) 0;
}
.hps-shop__perk {
  display: flex;
  gap: var(--hps-space-4);
  align-items: flex-start;
  background: var(--hps-surface);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-lg, 14px);
  padding: var(--hps-space-5);
}
.hps-shop__perk svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--hps-pool-dark);
}
.hps-shop__perk div { display: flex; flex-direction: column; gap: 2px; }
.hps-shop__perk strong { color: var(--hps-text); font-family: var(--hps-font-heading); }
.hps-shop__perk span { color: var(--hps-text-muted); font-size: var(--hps-text-sm); line-height: 1.5; }

.hps-shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: var(--hps-space-3);
  margin-top: var(--hps-space-8);
}
.hps-product--featured { grid-column: span 2; }
.hps-shop__loading,
.hps-shop__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--hps-text-muted);
  padding: var(--hps-space-8);
}
.hps-shop__empty a { color: var(--hps-pool-dark); font-weight: 600; }

.hps-product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--hps-surface);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-lg, 14px);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hps-product:hover { box-shadow: 0 8px 24px rgba(10, 35, 66, 0.12); transform: translateY(-2px); }
.hps-product--featured { border-color: var(--hps-accent); }
.hps-product__badge {
  position: absolute;
  top: var(--hps-space-3);
  left: var(--hps-space-3);
  background: var(--hps-gradient-cta);
  color: var(--hps-primary);
  font-size: var(--hps-text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}
.hps-product__type {
  position: absolute;
  top: var(--hps-space-3);
  right: var(--hps-space-3);
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--hps-primary);
  color: var(--hps-text-inverse);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hps-product__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--hps-surface-alt);
}
.hps-product__img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hps-text-faint);
}
.hps-product__img--ph svg { width: 56px; height: 56px; }
.hps-product__body { display: flex; flex-direction: column; gap: 6px; padding: var(--hps-space-5); flex: 1; }
.hps-product__cat { font-size: var(--hps-text-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--hps-pool-dark); font-weight: 700; }
.hps-product__name { font-family: var(--hps-font-heading); font-size: var(--hps-text-base); font-weight: 700; color: var(--hps-text); margin: 0; }
.hps-product__desc { font-size: var(--hps-text-sm); color: var(--hps-text-muted); line-height: 1.5; margin: 0; }
.hps-product__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--hps-space-3); margin-top: auto; padding-top: var(--hps-space-3); }
.hps-product__price { font-weight: 800; color: var(--hps-text); font-size: var(--hps-text-lg); }
.hps-product__unit { font-size: var(--hps-text-xs); font-weight: 500; color: var(--hps-text-muted); }

/* Keep standard products compact so shoppers can scan more inventory at once. */
.hps-product:not(.hps-product--featured) .hps-product__img { aspect-ratio: 16 / 9; }
.hps-product:not(.hps-product--featured) .hps-product__body { gap: 3px; padding: var(--hps-space-3); }
.hps-product:not(.hps-product--featured) .hps-product__cat { font-size: 10px; }
.hps-product:not(.hps-product--featured) .hps-product__name { font-size: var(--hps-text-sm); line-height: 1.3; }
.hps-product:not(.hps-product--featured) .hps-product__desc {
  display: -webkit-box;
  overflow: hidden;
  font-size: var(--hps-text-xs);
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hps-product:not(.hps-product--featured) .hps-product__foot { gap: var(--hps-space-2); padding-top: var(--hps-space-2); }
.hps-product:not(.hps-product--featured) .hps-product__price { font-size: var(--hps-text-base); }
.hps-product:not(.hps-product--featured) .hps-btn { min-height: 32px; padding: 6px 10px; }

@media (max-width: 520px) {
  .hps-shop__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hps-product--featured { grid-column: 1 / -1; }
  .hps-product:not(.hps-product--featured) .hps-product__desc { display: none; }
  .hps-product:not(.hps-product--featured) .hps-product__foot { align-items: flex-start; flex-direction: column; }
  .hps-product:not(.hps-product--featured) .hps-btn { width: 100%; }
}

.hps-shop__testing {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-4);
  align-items: flex-start;
  margin-top: var(--hps-space-8);
  padding: var(--hps-space-6);
  background: var(--hps-gradient-water);
  border-radius: var(--hps-radius-lg, 16px);
  color: var(--hps-text-inverse);
}
.hps-shop__testing h3 { font-family: var(--hps-font-heading); font-size: var(--hps-text-lg); margin: 0 0 4px; }
.hps-shop__testing p { margin: 0; opacity: 0.92; }
.hps-shop__testing strong { color: var(--hps-accent-light); }

/* Floating cart button */
.hps-cart-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  background: var(--hps-primary);
  color: var(--hps-text-inverse);
  box-shadow: 0 8px 24px rgba(10, 35, 66, 0.35);
  cursor: pointer;
}
.hps-cart-fab svg { width: 22px; height: 22px; }
.hps-cart-fab__count {
  background: var(--hps-accent);
  color: var(--hps-primary);
  font-weight: 800;
  font-size: var(--hps-text-xs);
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* Cart drawer */
.hps-cart { position: fixed; inset: 0; z-index: 100; }
.hps-cart__overlay { position: absolute; inset: 0; background: rgba(6, 23, 43, 0.55); }
.hps-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--hps-surface);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(6, 23, 43, 0.25);
  animation: hpsCartIn 0.25s ease;
}
@keyframes hpsCartIn { from { transform: translateX(24px); opacity: 0.6; } to { transform: translateX(0); opacity: 1; } }
.hps-cart__header { display: flex; align-items: center; justify-content: space-between; padding: var(--hps-space-5); border-bottom: 1px solid var(--hps-divider); }
.hps-cart__title { font-family: var(--hps-font-heading); font-size: var(--hps-text-lg); margin: 0; }
.hps-cart__close { background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--hps-text-muted); }
.hps-cart__items { flex: 1; overflow-y: auto; padding: var(--hps-space-5); display: flex; flex-direction: column; gap: var(--hps-space-4); }
.hps-cart__empty { color: var(--hps-text-muted); text-align: center; margin: var(--hps-space-6) 0; }
.hps-cart-line { display: flex; align-items: center; gap: var(--hps-space-3); }
.hps-cart-line__info { flex: 1; display: flex; flex-direction: column; }
.hps-cart-line__name { font-weight: 600; font-size: var(--hps-text-sm); }
.hps-cart-line__price { font-size: var(--hps-text-xs); color: var(--hps-text-muted); }
.hps-cart-line__qty { display: flex; align-items: center; border: 1px solid var(--hps-border); border-radius: 8px; overflow: hidden; }
.hps-cart-line__qty button { width: 30px; height: 32px; border: none; background: var(--hps-surface-alt); font-size: 16px; cursor: pointer; color: var(--hps-text); }
.hps-cart-line__qty input { width: 40px; height: 32px; border: none; text-align: center; font-size: var(--hps-text-sm); -moz-appearance: textfield; }
.hps-cart-line__qty input::-webkit-outer-spin-button,
.hps-cart-line__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hps-cart-line__remove { background: none; border: none; font-size: 22px; color: var(--hps-text-faint); cursor: pointer; line-height: 1; }
.hps-cart__testing { display: flex; gap: var(--hps-space-3); align-items: flex-start; margin: 0 var(--hps-space-5); padding: var(--hps-space-4); background: var(--hps-surface-alt); border-radius: 10px; cursor: pointer; }
.hps-cart__testing input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--hps-pool-dark); flex-shrink: 0; }
.hps-cart__testing-hint { color: var(--hps-text-muted); font-size: var(--hps-text-xs); }
.hps-cart__footer { padding: var(--hps-space-5); border-top: 1px solid var(--hps-divider); }
.hps-cart__subtotal { display: flex; justify-content: space-between; font-weight: 800; font-size: var(--hps-text-lg); margin-bottom: 6px; }
.hps-cart__note { font-size: var(--hps-text-xs); color: var(--hps-text-muted); margin: 0 0 var(--hps-space-4); }
.hps-cart__checkout { width: 100%; justify-content: center; }

/* Order modal */
.hps-modal { position: fixed; inset: 0; z-index: 110; display: flex; align-items: center; justify-content: center; padding: var(--hps-space-4); }
.hps-modal__overlay { position: absolute; inset: 0; background: rgba(6, 23, 43, 0.6); }
.hps-modal__card { position: relative; background: var(--hps-surface); border-radius: var(--hps-radius-lg, 16px); width: min(520px, 100%); max-height: 90vh; overflow-y: auto; padding: var(--hps-space-6); box-shadow: 0 24px 64px rgba(6, 23, 43, 0.35); }
.hps-modal__header { display: flex; align-items: center; justify-content: space-between; }
.hps-modal__header h2 { font-family: var(--hps-font-heading); font-size: var(--hps-text-lg); margin: 0; }
.hps-modal__close { background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--hps-text-muted); }
.hps-modal__sub { color: var(--hps-text-muted); font-size: var(--hps-text-sm); margin: 6px 0 var(--hps-space-5); }
.hps-order-form { display: flex; flex-direction: column; gap: var(--hps-space-4); }
.hps-order-form__row { display: flex; flex-direction: column; gap: var(--hps-space-4); }
.hps-order-form__field { display: flex; flex-direction: column; gap: 4px; }
.hps-order-form__field label { font-size: var(--hps-text-sm); font-weight: 600; color: var(--hps-text); }
.hps-order-form__field input,
.hps-order-form__field textarea,
.hps-order-form__field select { width: 100%; padding: 10px 12px; border: 1px solid var(--hps-border); border-radius: 8px; font: inherit; font-size: var(--hps-text-sm); background: var(--hps-surface); color: var(--hps-text); }
.hps-order-form__field input:focus,
.hps-order-form__field textarea:focus,
.hps-order-form__field select:focus { outline: none; border-color: var(--hps-pool); box-shadow: 0 0 0 3px rgba(0, 166, 200, 0.15); }
.hps-field-note { color: var(--hps-text-muted); font-weight: 400; }
.hps-refill-fields { margin: 0; padding: var(--hps-space-4); border: 1px solid var(--hps-border); border-radius: 10px; }
.hps-refill-fields legend { padding: 0 6px; color: var(--hps-text); font-size: var(--hps-text-sm); font-weight: 700; }
.hps-refill-choice { display: flex; flex: 1; gap: var(--hps-space-3); align-items: flex-start; padding: var(--hps-space-3); border: 1px solid var(--hps-border); border-radius: 8px; cursor: pointer; }
.hps-refill-choice:has(input:checked) { border-color: var(--hps-pool); background: var(--hps-surface-alt); }
.hps-refill-choice input { margin-top: 3px; accent-color: var(--hps-pool-dark); }
.hps-refill-choice span { display: flex; flex-direction: column; gap: 2px; }
.hps-refill-choice small { color: var(--hps-text-muted); line-height: 1.4; }
.hps-order-form__consent { display: flex; gap: var(--hps-space-3); align-items: flex-start; font-size: var(--hps-text-sm); color: var(--hps-text-muted); cursor: pointer; }
.hps-order-form__consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--hps-pool-dark); flex-shrink: 0; }
.hps-order-form__error { color: var(--hps-error); font-size: var(--hps-text-sm); background: rgba(214, 69, 69, 0.08); padding: 10px 12px; border-radius: 8px; }
.hps-modal__actions { display: flex; gap: var(--hps-space-3); }
.hps-modal__actions .hps-btn { flex: 1; justify-content: center; }
.hps-order-success { text-align: center; padding: var(--hps-space-5) var(--hps-space-3); }
.hps-order-success__icon { width: 64px; height: 64px; margin: 0 auto var(--hps-space-4); border-radius: 999px; background: rgba(42, 157, 92, 0.12); color: var(--hps-success); display: flex; align-items: center; justify-content: center; }
.hps-order-success__icon svg { width: 32px; height: 32px; }
.hps-order-success h3 { font-family: var(--hps-font-heading); margin: 0 0 var(--hps-space-3); }
.hps-order-success p { color: var(--hps-text-muted); margin: 0 0 var(--hps-space-3); }
.hps-order-success__phone a { color: var(--hps-pool-dark); font-weight: 700; }

/* Desktop enhancements */
@media (min-width: 768px) {
  .hps-shop__perks { flex-direction: row; }
  .hps-shop__perk { flex: 1; }
  .hps-shop__testing { flex-direction: row; align-items: center; justify-content: space-between; }
  .hps-order-form__row { flex-direction: row; }
  .hps-order-form__row .hps-order-form__field { flex: 1; }
  .hps-cart-fab { right: 24px; bottom: 24px; }
}

/* =====================================================================
   VACATION & RENTAL HOME POOL CARE (mobile-first)
   ===================================================================== */
.hps-rentals {
  padding: var(--hps-space-16, 4rem) 0;
  background: var(--hps-bg);
}
.hps-rentals__main {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-8);
  margin-top: var(--hps-space-8);
}

.hps-rentals__media {
  position: relative;
  border-radius: var(--hps-radius-lg, 18px);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 35, 66, 0.18);
}
.hps-rentals__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hps-rentals__media-badge {
  position: absolute;
  bottom: var(--hps-space-4);
  left: var(--hps-space-4);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--hps-gradient-water);
  color: var(--hps-text-inverse);
  box-shadow: 0 6px 18px rgba(6, 23, 43, 0.35);
}
.hps-rentals__media-badge-num {
  font-family: var(--hps-font-heading);
  font-weight: 800;
  font-size: var(--hps-text-xl);
  line-height: 1;
}
.hps-rentals__media-badge-text {
  font-size: var(--hps-text-xs);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hps-rentals__lead {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  font-weight: 700;
  color: var(--hps-text);
  margin: 0 0 var(--hps-space-3);
}
.hps-rentals__text {
  color: var(--hps-text-muted);
  line-height: var(--hps-leading-normal);
  margin: 0 0 var(--hps-space-6);
}
.hps-rentals__text strong { color: var(--hps-pool-dark); }

.hps-rentals__features {
  list-style: none;
  margin: 0 0 var(--hps-space-6);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-4);
}
.hps-rentals__feature {
  display: flex;
  gap: var(--hps-space-3);
  align-items: flex-start;
}
.hps-rentals__feature svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--hps-pool-dark);
  margin-top: 2px;
}
.hps-rentals__feature div { display: flex; flex-direction: column; gap: 2px; }
.hps-rentals__feature strong { color: var(--hps-text); font-size: var(--hps-text-base); }
.hps-rentals__feature span { color: var(--hps-text-muted); font-size: var(--hps-text-sm); line-height: 1.5; }

.hps-rentals__cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-3);
}
.hps-rentals__cta-row .hps-btn { justify-content: center; }
/* Outline button sits on a LIGHT background here, so use navy ink/border */
.hps-rentals__cta-row .hps-btn.hps-btn--outline {
  color: var(--hps-primary);
  border-color: var(--hps-primary);
}
.hps-rentals__cta-row .hps-btn.hps-btn--outline:hover {
  background: var(--hps-primary);
  border-color: var(--hps-primary);
  color: var(--hps-text-inverse);
}
.hps-rentals__note {
  margin: var(--hps-space-4) 0 0;
  font-size: var(--hps-text-sm);
  color: var(--hps-text-muted);
}

/* Desktop enhancements */
@media (min-width: 768px) {
  .hps-rentals__main {
    flex-direction: row;
    align-items: center;
    gap: var(--hps-space-10, 3rem);
  }
  .hps-rentals__media { flex: 1 1 45%; }
  .hps-rentals__body { flex: 1 1 55%; }
  .hps-rentals__features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--hps-space-5); }
  .hps-rentals__cta-row { flex-direction: row; }
  .hps-rentals__cta-row .hps-btn { flex: 0 0 auto; }
}

/* =====================================================================
   CONVERSION COMPONENTS — promo bar, reviews, referral program
   Shared across the home page and all service-area pages.
   ===================================================================== */

/* ---- Top promo / offer bar ----------------------------------------
   The navbar is absolutely positioned at top:flag-band over the hero.
   When a promo bar sits above the flags, pages add .hps-root--promo so
   the navbar drops by the promo height. Scoped so promo-less pages are
   unaffected. */
.hps-root--promo { --hps-promo-h: 44px; }
.hps-root--promo .hps-navbar { top: calc(var(--hps-flag-band) + var(--hps-promo-h)); }

.hps-promo-bar {
  position: relative;
  z-index: calc(var(--hps-z-header, 100) + 1);
  min-height: var(--hps-promo-h, 44px);
  display: flex;
  align-items: center;
  background: var(--hps-gradient-cta);
  color: var(--hps-primary);
  font-family: var(--hps-font-body);
}
.hps-promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px var(--hps-space-4);
  width: 100%;
  padding: var(--hps-space-2) var(--hps-container-padding);
  text-align: center;
}
.hps-promo-bar__text {
  margin: 0;
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-semibold);
  letter-spacing: var(--hps-tracking-normal);
}
.hps-promo-bar__badge {
  display: inline-block;
  margin-right: var(--hps-space-2);
  padding: 2px var(--hps-space-2);
  border-radius: var(--hps-radius-full);
  background: var(--hps-primary);
  color: var(--hps-accent);
  font-size: var(--hps-text-xs);
  font-weight: var(--hps-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wider);
  vertical-align: middle;
}
.hps-promo-bar .hps-promo-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--hps-weight-bold);
  color: var(--hps-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.hps-promo-bar .hps-promo-bar__cta:hover { color: var(--hps-primary-hover); }

@media (max-width: 600px) {
  .hps-root--promo { --hps-promo-h: 64px; }
  .hps-promo-bar__text { font-size: var(--hps-text-xs); }
}

/* ---- Reviews / testimonials --------------------------------------- */
.hps-reviews { padding: var(--hps-section-padding) 0; background: var(--hps-surface); }
  .hps-reviews__source-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--hps-space-5);
  max-width: var(--hps-container-max);
  margin: 0 auto var(--hps-space-6);
  padding: var(--hps-space-5);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-lg);
  background: var(--hps-bg);
  }
  .hps-reviews__source-label {
  display: block;
  margin-bottom: var(--hps-space-1);
  color: var(--hps-primary);
  font-size: var(--hps-text-sm);
  font-weight: var(--hps-weight-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
  }
  .hps-reviews__source-head p { margin: 0; color: var(--hps-text-muted); }
 .hps-reviews__source-actions { display: flex; flex-wrap: wrap; gap: var(--hps-space-3); }
 .hps-btn.hps-btn--google { background: var(--hps-surface); border-color: var(--hps-border); color: var(--hps-text); box-shadow: var(--hps-shadow-sm); }
 .hps-btn.hps-btn--google:hover { border-color: var(--hps-primary); color: var(--hps-primary); }
 .hps-btn.hps-btn--yelp { background: var(--hps-primary); border-color: var(--hps-primary); color: var(--hps-surface); box-shadow: var(--hps-shadow-sm); }
 .hps-btn.hps-btn--yelp:hover { background: var(--hps-primary-hover); border-color: var(--hps-primary-hover); color: var(--hps-surface); }
  .hps-review-card__source { display: flex; align-items: center; justify-content: space-between; gap: var(--hps-space-3); color: var(--hps-primary); font-size: var(--hps-text-xs); font-weight: var(--hps-weight-bold); letter-spacing: .04em; text-transform: uppercase; }
  .hps-review-card__verified { color: var(--hps-text-muted); font-weight: var(--hps-weight-medium); }
  .hps-reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--hps-space-2) var(--hps-space-4);
  margin: 0 auto var(--hps-space-10);
  max-width: var(--hps-content-narrow);
  text-align: center;
}
.hps-stars { display: inline-flex; gap: 2px; color: var(--hps-accent); }
.hps-stars svg { width: 22px; height: 22px; fill: currentColor; }
.hps-reviews__rating-text {
  font-size: var(--hps-text-base);
  color: var(--hps-text-muted);
  font-weight: var(--hps-weight-medium);
}
.hps-reviews__rating-text strong { color: var(--hps-text); font-weight: var(--hps-weight-bold); }
.hps-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hps-space-6);
  max-width: var(--hps-container-max);
  margin: 0 auto;
}
.hps-review-card {
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-4);
  padding: var(--hps-space-6);
  background: var(--hps-surface);
  border: 1px solid var(--hps-border);
  border-radius: var(--hps-radius-xl);
  box-shadow: var(--hps-shadow-sm);
  transition: transform var(--hps-transition-base), box-shadow var(--hps-transition-base);
}
.hps-review-card:hover { transform: translateY(-4px); box-shadow: var(--hps-shadow-lg); }
.hps-review-card__stars { color: var(--hps-accent); display: inline-flex; gap: 2px; }
.hps-review-card__stars svg { width: 18px; height: 18px; fill: currentColor; }
.hps-review-card__quote {
  margin: 0;
  font-size: var(--hps-text-base);
  line-height: var(--hps-leading-normal);
  color: var(--hps-text);
}
.hps-review-card__author {
  display: flex;
  align-items: center;
  gap: var(--hps-space-3);
  margin-top: auto;
}
.hps-review-card__avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--hps-radius-full);
  background: var(--hps-gradient-water);
  color: var(--hps-text-inverse);
  font-weight: var(--hps-weight-bold);
  font-size: var(--hps-text-sm);
}
.hps-review-card__name { font-weight: var(--hps-weight-bold); color: var(--hps-text); font-size: var(--hps-text-sm); }
.hps-review-card__meta { font-size: var(--hps-text-xs); color: var(--hps-text-muted); }
.hps-reviews__cta { margin-top: var(--hps-space-10); text-align: center; }

  @media (min-width: 640px) {
  .hps-reviews__source-head { flex-direction: row; align-items: center; }
  .hps-reviews__grid { grid-template-columns: 1fr 1fr; }
  }
@media (min-width: 1000px) { .hps-reviews__grid { grid-template-columns: repeat(3, 1fr); } }

/* Compact reviews strip for service-area pages */
.hps-reviews--strip { padding: var(--hps-section-padding-sm) 0; background: var(--hps-surface-alt); }
.hps-reviews--strip .hps-reviews__grid { gap: var(--hps-space-5); }

/* ---- Referral program --------------------------------------------- */
.hps-referral { padding: var(--hps-section-padding) 0; background: var(--hps-bg); }
.hps-referral__card {
  position: relative;
  overflow: hidden;
  max-width: var(--hps-container-max);
  margin: 0 auto;
  padding: clamp(var(--hps-space-8), 5vw, var(--hps-space-16));
  border-radius: var(--hps-radius-2xl);
  background: var(--hps-gradient-hero);
  color: var(--hps-text-inverse);
  box-shadow: var(--hps-shadow-xl);
}
.hps-referral__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--hps-space-8);
}
.hps-referral__eyebrow {
  display: inline-block;
  color: var(--hps-accent);
  font-weight: var(--hps-weight-bold);
  font-size: var(--hps-text-sm);
  text-transform: uppercase;
  letter-spacing: var(--hps-tracking-wider);
}
.hps-referral__title {
  margin: var(--hps-space-2) 0 var(--hps-space-3);
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-2xl);
  font-weight: var(--hps-weight-extrabold);
  line-height: var(--hps-leading-tight);
}
.hps-referral__title span { color: var(--hps-accent); }
.hps-referral__text {
  margin: 0;
  max-width: 52ch;
  font-size: var(--hps-text-base);
  line-height: var(--hps-leading-normal);
  color: rgba(255, 255, 255, 0.85);
}
.hps-referral__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hps-space-5);
}
.hps-referral__step {
  display: flex;
  gap: var(--hps-space-4);
  align-items: flex-start;
}
.hps-referral__step-num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--hps-radius-full);
  background: rgba(214, 178, 94, 0.18);
  color: var(--hps-accent);
  font-weight: var(--hps-weight-bold);
  border: 1px solid rgba(214, 178, 94, 0.4);
}
.hps-referral__step-title { font-weight: var(--hps-weight-bold); color: var(--hps-white); }
.hps-referral__step-desc { font-size: var(--hps-text-sm); color: rgba(255, 255, 255, 0.75); }
.hps-referral__cta-row { display: flex; flex-wrap: wrap; gap: var(--hps-space-4); align-items: center; }
.hps-referral__fine { font-size: var(--hps-text-xs); color: rgba(255, 255, 255, 0.6); }

@media (min-width: 860px) {
  .hps-referral__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--hps-space-12); align-items: center; }
  .hps-referral__steps { gap: var(--hps-space-6); }
}

/* =====================================================
   GUIDE PAGES — long-form pool care articles
   ===================================================== */
.hps-guide-crumbs {
  background: var(--hps-surface);
  border-bottom: 1px solid var(--hps-divider);
}
.hps-guide-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  font-size: var(--hps-text-xs);
  color: var(--hps-text-muted);
}
.hps-guide-crumbs li + li::before { content: '·'; margin-right: 6px; }
.hps-guide-crumbs a { color: inherit; text-decoration: none; }
.hps-guide-crumbs a:hover { color: var(--hps-primary); text-decoration: underline; }

.hps-guide {
  padding-block: var(--hps-section-padding-sm);
  background: var(--hps-surface);
}
.hps-guide__body { max-width: 780px; margin-inline: auto; }
.hps-guide__body > p {
  margin: 0 0 var(--hps-space-4);
  color: var(--hps-text);
  font-size: var(--hps-text-base);
  line-height: var(--hps-leading-loose);
}
.hps-guide__body h2 {
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  color: var(--hps-primary);
  margin: var(--hps-space-8) 0 12px;
}
.hps-guide__body ul {
  margin: 0 0 var(--hps-space-4);
  padding-left: 22px;
  color: var(--hps-text);
  font-size: var(--hps-text-base);
  line-height: var(--hps-leading-loose);
}
.hps-guide__body li { margin-bottom: 8px; }
.hps-guide__body a { color: var(--hps-accent, #0E7490); font-weight: 600; text-decoration: none; }
.hps-guide__body a:hover { text-decoration: underline; }

.hps-guide__callout {
  border-left: 4px solid var(--hps-accent, #0E7490);
  background: var(--hps-surface-alt);
  border-radius: 0 var(--hps-radius-md, 12px) var(--hps-radius-md, 12px) 0;
  padding: var(--hps-space-4) var(--hps-space-6, 24px);
  margin: var(--hps-space-6, 24px) 0;
}
.hps-guide__callout--gold { border-left-color: var(--hps-accent-light, #D6B25E); }
.hps-guide__callout p { margin: 0; color: var(--hps-text); font-size: var(--hps-text-sm); line-height: var(--hps-leading-normal); }
.hps-guide__callout strong { color: var(--hps-primary); }

.hps-guide__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--hps-space-4);
  margin: var(--hps-space-6, 24px) 0;
}
.hps-guide__fact {
  background: var(--hps-surface-alt);
  border-radius: var(--hps-radius-md, 12px);
  padding: var(--hps-space-4);
  text-align: center;
}
.hps-guide__fact b {
  display: block;
  font-family: var(--hps-font-heading);
  font-size: var(--hps-text-lg);
  color: var(--hps-primary);
}
.hps-guide__fact span { font-size: var(--hps-text-xs); color: var(--hps-text-muted); }

.hps-guide__cta {
  margin-top: var(--hps-space-8);
  background: var(--hps-gradient-cta, linear-gradient(135deg, #0A2342, #14417A));
  border-radius: var(--hps-radius-lg, 16px);
  padding: var(--hps-space-8) var(--hps-space-6, 24px);
  text-align: center;
  color: var(--hps-text-inverse);
}
.hps-guide__cta h3 { font-family: var(--hps-font-heading); font-size: var(--hps-text-lg); margin: 0 0 8px; }
.hps-guide__cta p { margin: 0 0 var(--hps-space-4); color: rgba(255,255,255,.85); }

.hps-guide-more { background: var(--hps-surface-alt); }

/* =================================================================
   25. STICKY CONTACT BAR — floating-element clearance
   -----------------------------------------------------------------
   The bar (see .hps-contact-bar) is pinned to the bottom of the
   viewport once a visitor scrolls past the hero, so on phones the
   discreet staff link has to move up out of its way.
   body.has-contact-bar is toggled by the page script.
   ================================================================= */
@media (max-width: 768px) {
  body.has-contact-bar .hps-navbar__pro-cta {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

/* =================================================================
   26. SKIP LINK — keyboard users can bypass the nav (WCAG 2.4.1)
   ================================================================= */
.hps-skip {
  position: fixed;
  top: 0;
  left: -9999px;
  z-index: 400;
  padding: 10px 18px;
  background: var(--hps-accent);
  color: var(--hps-primary);
  font-family: var(--hps-font-heading);
  font-weight: var(--hps-weight-extrabold);
  font-size: var(--hps-text-sm);
  text-decoration: none;
  border-radius: 0 0 var(--hps-radius-md, 12px) 0;
}
.hps-skip:focus {
  left: 0;
  outline: 2px solid var(--hps-text-inverse);
  outline-offset: 2px;
}
/* Fragment targets are not interactive; don't draw a focus ring on them. */
#hero:focus, #main:focus { outline: none; }

/* Inline status line for the quote form (validation / rate-limit / failure).
   Kept quiet by default so it never competes with the primary CTA. */
.hps-lead__status {
  margin: var(--hps-space-3) 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: var(--hps-text-sm);
  line-height: 1.5;
  text-align: center;
}
.hps-lead__status--error {
  background: rgba(214, 69, 69, 0.1);
  border: 1px solid rgba(214, 69, 69, 0.35);
  color: #8f2b2b;
}
.hps-lead__status--success {
  background: rgba(42, 157, 92, 0.1);
  border: 1px solid rgba(42, 157, 92, 0.35);
  color: #1d6b3f;
}
