/* Pure Flow Pool & Spa — Landing Page */

:root {
  --teal-900: #042f2f;
  --teal-800: #0a5c5c;
  --teal-700: #0d6e6e;
  --teal-600: #128585;
  --aqua-400: #2ec4b6;
  --aqua-300: #5eddd0;
  --aqua-100: #e8faf7;
  --ivory: #faf9f6;
  --sand-50: #f7f9fa;
  --sand-100: #eef2f4;
  --sand-200: #dde4e8;
  --slate-600: #5a6b75;
  --slate-700: #3d4f59;
  --slate-900: #142229;
  --white: #ffffff;
  --success: #15803d;
  --gold: #b8860b;
  --gold-soft: #d4a853;
  --shadow-sm: 0 1px 2px rgba(20, 34, 41, 0.06), 0 4px 12px rgba(20, 34, 41, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 34, 41, 0.08), 0 2px 6px rgba(20, 34, 41, 0.04);
  --shadow-lg: 0 24px 48px rgba(13, 110, 110, 0.12), 0 8px 16px rgba(20, 34, 41, 0.06);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.85) inset, 0 16px 40px rgba(20, 34, 41, 0.09);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Instrument Serif", "Fraunces", Georgia, serif;
  --header-h: 68px;
  --header-h-scrolled: 60px;
  --promo-h: 38px;
  --container: 1200px;
  --container-wide: 1280px;
  --gutter: clamp(1.25rem, 4.5vw, 3rem);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
}

/* Unified premium card */
.pf-card,
.feature-card,
.service-card,
.pricing-card,
.review-card,
.book-form,
.area-zone-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pf-card::before,
.service-card::before,
.pricing-card::before,
.review-card::before,
.book-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--space-5);
  right: var(--space-5);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--aqua-400), transparent);
  opacity: 0.7;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--promo-h));
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.promo-hidden { --promo-h: 0px; }
body.promo-hidden .promo-banner { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--teal-900); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--aqua-400);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-wide {
  max-width: var(--container-wide);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--teal-700);
  color: var(--white);
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--slate-900);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 700; }

p { margin: 0 0 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 540px;
}

.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section.problem { background: var(--white); }
.section.pricing { background: var(--white); }
.section.compare { background: var(--sand-50); }
.section.perks { background: var(--white); }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--aqua-400), var(--teal-700));
  z-index: 200;
  pointer-events: none;
}

/* Promo banner */
.promo-banner {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: var(--promo-h);
  padding: 0.5rem 3rem 0.5rem 1rem;
  background: var(--teal-800);
  color: rgba(255,255,255,0.95);
  font-size: 0.85rem;
  text-align: center;
}
.promo-banner a { color: var(--aqua-300); font-weight: 600; text-decoration: underline; }
.promo-banner a:hover { color: var(--white); }
.promo-dismiss {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.promo-dismiss:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(13, 110, 110, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 110, 110, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-700);
  border-color: var(--sand-200);
}
.btn-secondary:hover {
  border-color: var(--teal-700);
  color: var(--teal-800);
  background: var(--aqua-100);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--sand-200);
}
.btn-ghost:hover {
  background: var(--white);
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.btn-white {
  background: var(--white);
  color: var(--teal-700);
}
.btn-white:hover { background: var(--aqua-100); color: var(--teal-800); }

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 249, 250, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(221, 228, 232, 0.9);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  max-width: var(--container-wide);
}

@media (min-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
  }
  .logo { grid-column: 1; justify-self: start; }
  .nav-desktop {
    grid-column: 2;
    justify-self: center;
    display: flex;
    gap: clamp(0.85rem, 1.8vw, 1.5rem);
  }
  .header-actions {
    grid-column: 3;
    justify-self: end;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.logo:hover { color: inherit; }

.logo-icon {
  width: 42px;
  height: 42px;
  color: var(--teal-700);
  background: linear-gradient(145deg, var(--aqua-100), var(--white));
  border-radius: 12px;
  border: 1px solid var(--sand-200);
  padding: 5px;
  box-shadow: var(--shadow-sm);
}
.logo-icon svg { width: 100%; height: 100%; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.logo-text small {
  font-size: 0.7rem;
  color: var(--slate-600);
  font-weight: 500;
}

.nav-desktop {
  display: none;
  gap: 1.25rem;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  position: relative;
}
.nav-desktop a:hover { color: var(--teal-700); }
.nav-desktop a.is-active {
  color: var(--teal-700);
  font-weight: 600;
}
.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--aqua-400);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  display: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-900);
}
.phone-link:hover { color: var(--teal-700); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--slate-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--sand-200);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--slate-700);
  border-bottom: 1px solid var(--sand-100);
}
.nav-mobile .btn { margin-top: 0.75rem; }
.mobile-phone { border: none !important; font-weight: 600; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .phone-link { display: block; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .header-actions .btn-sm { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
  .logo-text small { display: none; }
  .logo-icon { width: 38px; height: 38px; }
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(46, 196, 182, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(13, 110, 110, 0.06), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--sand-50) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--white);
  color: var(--slate-700);
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
}
.badge-solid {
  background: var(--sand-50);
}
.badge-accent {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
  color: var(--white);
  border-color: transparent;
}

.hero-community {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.community-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  color: var(--slate-600);
}
.community-score strong {
  font-size: 1rem;
  color: var(--slate-900);
  font-weight: 700;
}
.score-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.community-creds {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.community-creds li {
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-800);
  background: var(--aqua-100);
  border-radius: 999px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--slate-600);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 600px) {
  .trust-list { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  padding: 0.65rem 0.75rem;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
}
.trust-list svg { width: 18px; height: 18px; color: var(--teal-700); flex-shrink: 0; margin-top: 1px; }

/* Hero report card */
.hero-visual {
  position: relative;
}

.report-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand-200);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-700), var(--aqua-400));
}

.report-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.report-logo {
  font-weight: 700;
  color: var(--teal-700);
  font-size: 0.95rem;
}

.report-date {
  font-size: 0.75rem;
  color: var(--slate-600);
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.metric {
  background: var(--sand-50);
  border-radius: var(--radius);
  padding: 0.55rem 0.4rem;
  text-align: center;
}

.metric-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-600);
  margin-bottom: 0.2rem;
}

.metric-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-900);
}
.metric-value.good { color: var(--success); }

.report-notes {
  font-size: 0.8rem;
  color: var(--slate-600);
  margin-bottom: 0.75rem;
  padding: 0.65rem;
  background: var(--aqua-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--aqua-400);
}
.report-notes p { margin: 0; }

.report-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.report-photo-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.report-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.65rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.report-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--slate-600);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-pill {
  background: #dcfce7;
  color: var(--success);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--sand-200);
  border-bottom: 1px solid var(--sand-200);
  padding: 1rem 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .trust-strip-inner { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.trust-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-700);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  text-align: center;
}
@media (max-width: 959px) {
  .report-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { max-width: 100%; }
  .report-card { padding: 1.15rem; }
}

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%);
  color: var(--white);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(46, 196, 182, 0.15), transparent 50%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat { border-right: 1px solid rgba(255,255,255,0.12); padding: 0 1rem; }
  .stat:last-child { border-right: none; }
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 0.82rem;
  opacity: 0.88;
  font-weight: 500;
  line-height: 1.35;
  display: block;
  max-width: 140px;
  margin-inline: auto;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid.three { grid-template-columns: 1fr; }
.card-grid.two { grid-template-columns: 1fr; }

@media (min-width: 700px) {
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 800px) {
  .card-grid.two { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 110, 110, 0.25);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aqua-100);
  color: var(--teal-700);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { margin: 0; color: var(--slate-600); font-size: 0.95rem; }

/* Services */
.services { background: var(--white); }

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card.featured {
  border-color: var(--teal-700);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--white) 0%, var(--aqua-100) 120%);
}

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--teal-700);
  color: var(--white);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card > p {
  color: var(--slate-600);
  font-size: 0.95rem;
  flex: 1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--slate-700);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua-400);
  font-weight: 700;
}
.check-list.compact { margin-bottom: 1.5rem; }

.service-price {
  margin: 1rem 0 1.25rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.price-from { font-size: 0.85rem; color: var(--slate-600); }
.price-amount { font-size: 2rem; font-weight: 700; color: var(--slate-900); font-family: var(--font-display); }
.price-period { font-size: 0.95rem; color: var(--slate-600); }
.price-bundle {
  width: 100%;
  font-size: 0.85rem;
  color: var(--teal-700);
  font-weight: 600;
  margin-top: 0.25rem;
}

.combo-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
  border-radius: var(--radius-lg);
  color: var(--white);
}
.combo-banner h3 { color: var(--white); margin-bottom: 0.35rem; }
.combo-banner p { margin: 0; opacity: 0.9; font-size: 0.95rem; }
.combo-price {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.combo-price span { font-size: 1.1rem; }
.combo-price strong { font-size: 1.75rem; font-family: var(--font-display); }

/* Report section */
.report-section {
  background: var(--slate-900);
  color: var(--sand-100);
}
.report-section h2 { color: var(--white); }
.report-section p { color: rgba(255,255,255,0.75); }

.report-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .report-grid { grid-template-columns: 1fr 1fr; }
}

.report-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.report-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.report-features svg {
  width: 22px;
  height: 22px;
  color: var(--aqua-400);
  flex-shrink: 0;
}

.phone-mockup {
  width: 280px;
  margin-inline: auto;
  background: #1a2830;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 3px solid #2d3f4a;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #1a2830;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}

.phone-header {
  background: var(--teal-700);
  color: var(--white);
  padding: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.phone-body { padding: 1.25rem; }

.phone-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--sand-100);
}
.phone-row strong.good { color: var(--success); }

.phone-divider { height: 1px; background: var(--sand-200); margin: 0.75rem 0; }

.phone-note {
  font-size: 0.8rem;
  color: var(--slate-600);
  margin: 0.75rem 0;
}

.phone-img {
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  line-height: 0;
}

.phone-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-status {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  text-align: center;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.pricing-card.highlight {
  border-color: var(--teal-700);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aqua-400);
  color: var(--slate-900);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}
.pricing-amount span {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-600);
}

.pricing-card .btn { margin-top: auto; }

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}

.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--sand-50);
  border-radius: var(--radius);
  border: 1px solid var(--sand-200);
  font-size: 0.9rem;
}
.extra-item strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal-700);
}

.pricing-fine {
  font-size: 0.8rem;
  color: var(--slate-600);
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

/* Compare table */
.compare { background: var(--sand-50); }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--sand-100);
}
.compare-table thead th {
  background: var(--sand-50);
  font-weight: 700;
  color: var(--slate-900);
  padding-top: 1.25rem;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--slate-700);
  max-width: 220px;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .col-highlight {
  background: var(--aqua-100);
  font-weight: 600;
}
.check-yes { color: var(--success); font-weight: 700; font-size: 1.1rem; }
.check-no { color: var(--sand-200); }
.check-partial { font-size: 0.8rem; color: var(--slate-600); }

/* Member perks */
.perks-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .perks-grid { grid-template-columns: repeat(4, 1fr); } }

.perk {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.2s;
}
.perk:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.perk svg {
  width: 28px;
  height: 28px;
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.perk h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.perk p { margin: 0; font-size: 0.875rem; color: var(--slate-600); }

/* Steps */
.steps { background: var(--sand-50); }

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  margin-inline: auto;
  counter-reset: steps;
}

.steps-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--sand-200);
}
.steps-list li:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-700);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
}

.steps-list h3 { margin-bottom: 0.35rem; }
.steps-list p { margin: 0; color: var(--slate-600); font-size: 0.95rem; }

/* Area */
.area-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 800px) {
  .area-grid { grid-template-columns: 1fr 1fr; }
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-list li {
  padding: 0.4rem 0.9rem;
  background: var(--aqua-100);
  color: var(--teal-800);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.area-note { font-size: 0.9rem; margin-top: 1rem; }

.area-zones {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}
@media (min-width: 600px) {
  .area-zones { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .area-zones { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 600px) and (max-width: 959px) {
  .area-zone-card-wide { grid-column: 1 / -1; }
}

.area-zone-card {
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.area-zone-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-700);
  margin: 0 0 0.65rem;
}

.area-zone-card .area-list {
  margin: 0;
  gap: 0.35rem;
}
.area-zone-card .area-list li {
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  background: var(--sand-50);
  color: var(--slate-700);
  font-weight: 500;
}

.service-map-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 40, 48, 0.14);
  border: 1px solid var(--sand-200);
  background: var(--white);
}

.service-map-frame {
  position: relative;
  background: #e8eef0;
}

.service-map-embed {
  display: block;
  width: 100%;
  height: min(62vw, 420px);
  min-height: 280px;
  border: 0;
}

.service-map-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.92) 35%, rgba(255, 255, 255, 0.98) 100%);
  pointer-events: none;
}

.map-badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--teal-700);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.service-map-caption {
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-600);
  background: var(--white);
  border-top: 1px solid var(--sand-200);
  text-align: center;
}

.service-map-caption a {
  color: var(--teal-700);
  font-weight: 600;
}

/* Reviews */
.reviews { background: var(--sand-50); }

.review-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  margin: 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 0.75rem;
  align-items: center;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-800);
  background: linear-gradient(145deg, var(--aqua-100), var(--white));
  border: 2px solid var(--sand-200);
}

.review-meta strong {
  display: block;
  color: var(--slate-900);
  font-size: 0.95rem;
}
.review-meta span {
  font-size: 0.78rem;
  color: var(--slate-600);
}

.review-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

.founder-card {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 700px) {
  .founder-card { grid-template-columns: auto 1fr; align-items: start; }
}

.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.founder-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aqua-300);
  margin: 0 0 0.35rem;
}

.founder-card h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 0.65rem;
}
.founder-body p { margin: 0 0 1rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.founder-creds {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.founder-creds li {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
}

/* FAQ */
.faq-container { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--teal-700);
  background: var(--white);
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  color: var(--slate-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--teal-700);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.15rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-600);
}

/* Availability strip */
.availability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .availability-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .avail-pill.avail-accent { grid-column: 1 / -1; }
}
.avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 999px;
  color: var(--slate-700);
}
.avail-pill.avail-accent {
  background: var(--aqua-100);
  border-color: rgba(13, 110, 110, 0.2);
  color: var(--teal-800);
}

/* Book section */
.book { background: var(--sand-50); }

.book-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .book-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

.book-perks {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.book-perks li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--slate-700);
}

/* Quote form (legacy alias) */
.quote { background: var(--sand-50); }

.quote-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .quote-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

.founding-offer {
  padding: 1.25rem;
  background: var(--aqua-100);
  border-radius: var(--radius);
  border-left: 4px solid var(--aqua-400);
  margin: 1.5rem 0;
}
.founding-offer strong { display: block; color: var(--teal-800); margin-bottom: 0.35rem; }
.founding-offer p { margin: 0; font-size: 0.9rem; }

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-top: 0.5rem;
}
.phone-cta svg { width: 22px; height: 22px; color: var(--teal-700); }
.phone-cta:hover { color: var(--teal-700); }

.quote-form,
.book-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand-200);
}

.form-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--sand-200);
}
.form-head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--slate-900);
}
.form-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate-600);
}

.form-errors {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: #991b1b;
  font-size: 0.9rem;
}
.form-errors[hidden] { display: none; }

.form-row .field-error {
  display: block;
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.35rem;
}

.form-row { margin-bottom: 1.25rem; }
.form-row.two-col {
  display: grid;
  gap: 1rem;
}
@media (min-width: 500px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.4rem;
}
.form-row label span { color: #dc2626; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.15);
}
.form-row input.error,
.form-row select.error,
.form-row textarea.error {
  border-color: #dc2626;
}

.form-note {
  font-size: 0.8rem;
  color: var(--slate-600);
  text-align: center;
  margin: 1rem 0 0;
}

.form-success {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--sand-200);
}
.form-success[hidden] { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: #dcfce7;
  color: var(--success);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--slate-600); }
.success-sub { font-size: 0.85rem; margin-top: 0.5rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  padding: 4rem 0;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
  max-width: 500px;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text small { color: rgba(255,255,255,0.5); }
.footer-brand .logo-icon { color: var(--aqua-400); }

.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.site-footer a:hover { color: var(--aqua-400); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}
.footer-bottom p { margin: 0; }

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid var(--sand-200);
  box-shadow: 0 -8px 32px rgba(20, 34, 41, 0.1);
  gap: 0.65rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 76px; }
}

.mobile-cta-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-width: 64px;
  padding: 0.5rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-700);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.mobile-cta-call svg { width: 20px; height: 20px; color: var(--teal-700); }
.mobile-cta-book {
  flex: 1;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
}

#form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn-loading[hidden] { display: none; }
#form-submit.is-loading .btn-label { display: none; }
#form-submit.is-loading .btn-loading { display: inline; }

/* ===== Premium UI v2 ===== */

body { background: var(--ivory); }

h1, h2 {
  font-weight: 400;
  letter-spacing: -0.03em;
}

.promo-banner {
  background: linear-gradient(90deg, #2a2420 0%, #3d342c 50%, #2a2420 100%);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.25);
}
.promo-banner a { color: var(--gold-soft); text-decoration: none; font-weight: 700; }
.promo-banner strong { color: var(--gold-soft); font-weight: 600; }

.site-header.scrolled {
  --header-h: var(--header-h-scrolled);
}
.site-header.scrolled .header-inner { height: var(--header-h-scrolled); }
.site-header.scrolled .logo-icon { width: 36px; height: 36px; padding: 4px; }
.site-header.scrolled .logo-text strong { font-size: 0.98rem; }

.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 99;
  padding: 0;
  background: rgba(20, 34, 41, 0.45);
  backdrop-filter: blur(4px);
  border: none;
}
.nav-mobile-inner {
  margin-left: auto;
  width: min(100%, 360px);
  height: 100%;
  padding: var(--space-6) var(--space-5);
  background: var(--white);
  box-shadow: -12px 0 40px rgba(20, 34, 41, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-mobile-inner a {
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-900);
  border-bottom: 1px solid var(--sand-100);
}
.nav-mobile-inner .btn { margin-top: var(--space-4); border: none; }
.nav-mobile-inner .mobile-phone {
  margin-top: var(--space-3);
  text-align: center;
  font-size: 1.1rem;
  border: none;
}

/* Cinema hero */
.hero-cinema {
  position: relative;
  min-height: clamp(520px, 88vh, 780px);
  padding: calc(var(--header-h) + var(--promo-h) + var(--space-6)) 0 var(--space-8);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--slate-900);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 47, 47, 0.9) 0%, rgba(4, 47, 47, 0.72) 38%, rgba(4, 47, 47, 0.35) 58%, rgba(4, 47, 47, 0.12) 78%, rgba(4, 47, 47, 0.05) 100%),
    linear-gradient(180deg, rgba(4, 47, 47, 0.35) 0%, transparent 35%, rgba(4, 47, 47, 0.75) 100%);
}
.hero-cinema .hero-grid {
  position: relative;
  z-index: 2;
  /* inherit container max-width + padding — never width:100% override */
}
.hero-cinema .hero-content {
  color: var(--white);
  max-width: 36rem;
  padding-inline: 0;
}
.hero-cinema h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  max-width: 16em;
}
.hero-cinema .hero-lead {
  color: rgba(255,255,255,0.9);
  max-width: 38rem;
  margin-bottom: var(--space-5);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}
.hero-cinema .hero-lead strong { color: var(--aqua-300); }

.hero-trust-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 var(--space-4);
  padding: 0.55rem 0.95rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  max-width: 100%;
  line-height: 1.45;
}
.hero-trust-line strong { color: var(--white); }
.hero-trust-line .score-stars { color: var(--gold-soft); letter-spacing: 1px; }
.trust-dot { opacity: 0.45; }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.hero-cinema .avail-pill {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
}
.hero-cinema .avail-pill.avail-accent {
  background: rgba(46, 196, 182, 0.2);
  border-color: rgba(46, 196, 182, 0.45);
  color: var(--aqua-300);
}

.report-card-glass {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  max-width: 420px;
  margin-inline: auto;
}

.hero-cinema .hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 960px) {
  .hero-cinema .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 400px);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
  .hero-cinema .hero-visual {
    margin-top: 0;
    justify-content: flex-end;
  }
  .hero-cinema .report-card-glass {
    margin-inline: 0 0;
    max-width: 100%;
  }
}
@media (max-width: 959px) {
  .hero-cinema { min-height: auto; padding-bottom: var(--space-6); }
  .hero-cinema .hero-visual { margin-top: var(--space-6); }
  .hero-cinema h1 { max-width: none; }
  .hero-media img { object-position: center 30%; }
}

/* Seal strip */
.seal-strip {
  background: var(--white);
  border-top: 1px solid var(--sand-200);
  border-bottom: 1px solid var(--sand-200);
  padding: var(--space-4) 0;
}
.seal-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-5);
}
.seal-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-700);
}
.seal-medallion {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--aqua-100), var(--white));
  border: 1px solid var(--sand-200);
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}
.seal-medallion svg { width: 18px; height: 18px; }

.seal-strip-compact {
  padding: 0;
  border: none;
  margin-bottom: var(--space-5);
  background: transparent;
}
.seal-strip-compact .seal-strip-inner { justify-content: flex-start; gap: var(--space-3); }
.seal-strip-compact .seal-item { font-size: 0.68rem; }
.seal-strip-compact .seal-medallion { width: 30px; height: 30px; }
.seal-strip-compact .seal-medallion svg { width: 15px; height: 15px; }

.service-micro {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-700);
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}

/* Static map */
.service-map-static { position: relative; overflow: hidden; }
.service-map-img {
  display: block;
  width: 100%;
  height: min(62vw, 420px);
  min-height: 280px;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.85) contrast(1.05);
}
.map-pins { position: absolute; inset: 0; pointer-events: none; }
.map-pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  transform: translate(-50%, -100%);
  padding: 0.3rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal-800);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--teal-800);
}

.compare-table-wrap {
  box-shadow: var(--shadow-md);
}
.compare-table .col-highlight {
  position: sticky;
  left: 0;
  z-index: 1;
}
.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}
.check-dash { color: var(--sand-200); font-size: 1.1rem; }

/* Report glass mockup */
.report-mockup-stack { position: relative; }
.report-glass-panel {
  position: absolute;
  inset: 10% 5% 5%;
  background: linear-gradient(135deg, rgba(46,196,182,0.15), rgba(13,110,110,0.08));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.phone-mockup-lg {
  width: min(100%, 300px);
  position: relative;
  z-index: 1;
}

/* Reviews premium */
.review-card { position: relative; overflow: hidden; padding-top: 2rem; }
.review-quote {
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--aqua-100);
  pointer-events: none;
}
.review-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-800);
  background: var(--aqua-100);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

/* Form checkout */
.form-section {
  border: none;
  margin: 0 0 var(--space-5);
  padding: 0;
}
.form-section legend {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--slate-900);
  padding: 0 0 var(--space-3);
  margin-bottom: var(--space-3);
  border-bottom: 1px solid var(--sand-200);
  width: 100%;
}
.book-form input,
.book-form select,
.book-form textarea {
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.book-form textarea { min-height: 96px; resize: vertical; }
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
}
.btn-submit { gap: 0.5rem; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.form-success {
  padding: var(--space-6);
  text-align: center;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success);
  background: #dcfce7;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.form-success .success-sub {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin: var(--space-4) 0;
}

.pricing-card.highlight {
  transform: none;
  border-width: 2px;
  background: linear-gradient(180deg, var(--white) 0%, var(--aqua-100) 140%);
}
.combo-banner {
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
