/* ============================================================
   All Blue Pool Services — Design System
   Colors: #0B4F8A (primary) · #38BDF8 (accent) · #0F172A (dark)
   Fonts: DM Sans (headings + body)
   ============================================================ */

:root {
  --primary:       #0A3D62;
  --primary-light: #1589C8;
  --primary-dark:  #062A45;
  --accent:        #F4A225;
  --accent-light:  #F8C56D;
  --pool-surface:  #38C4E8;
  --dark:          #0D1F2D;
  --mid:           #4A6274;
  --light:         #F5ECD7;
  --warm-white:    #FEFAF6;
  --white:         #FFFFFF;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --shadow-sm:     0 2px 8px rgba(10,61,98,0.08);
  --shadow-md:     0 8px 24px rgba(10,61,98,0.14);
  --shadow-lg:     0 20px 48px rgba(10,61,98,0.20);
  --transition:    0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: #0A3D62;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--dark);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
  color: var(--dark);
  text-rendering: optimizeLegibility;
}
h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: calc(1.25rem + env(safe-area-inset-top)) 0 1.25rem;
  background: rgba(10,61,98,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(254,250,246,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(10,61,98,0.10);
  padding: calc(0.75rem + env(safe-area-inset-top)) 0 0.75rem;
}
.navbar.scrolled .logo-mark-main {
  background: linear-gradient(to bottom, #1589C8 0%, #0A3D62 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.navbar.scrolled .logo-mark-sub { color: var(--primary); }
.navbar.scrolled .nav-link { color: var(--dark); }
.navbar.scrolled .nav-link:hover { color: var(--primary); background: rgba(10,61,98,0.06); }
.navbar.scrolled .nav-link.active { color: var(--primary); }
.navbar.scrolled .hamburger span { background: var(--dark); }
.navbar.scrolled .nav-cta {
  background: var(--accent);
  color: white;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* ── Inline SVG logo mark ── */
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0;
  text-decoration: none;
}
.logo-mark-main {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  background: linear-gradient(to bottom, #5ab4f5 0%, #38BDF8 40%, #1a6fd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.logo-mark-wave {
  width: 100%;
  height: 6px;
  margin: 1px 0 2px;
}
.logo-mark-sub {
  font-family: 'Barlow Condensed', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.75);
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}
/* logo-mark-sub scrolled handled above */

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.12); }
.nav-link.active { color: var(--accent-light); }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--accent);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,162,37,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--light);
  box-shadow: 0 8px 24px rgba(11,79,138,0.12);
}
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu.open { display: flex; }

/* ── Buttons ── */
/* ── Global focus ring ── */
:focus-visible {
  outline: 3px solid #F4A225;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── touch-action on all interactive elements ── */
a, button, [role="button"] {
  touch-action: manipulation;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(10,61,98,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(10,61,98,0.35);
}

.btn-accent {
  background: var(--accent);
  color: white;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(244,162,37,0.30);
}
.btn-accent:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 28px rgba(244,162,37,0.45);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.8125rem 2rem;
  font-size: 0.95rem;
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: 0 8px 28px rgba(255,255,255,0.25);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,42,69,0.75) 0%,
    rgba(10,61,98,0.55) 40%,
    rgba(21,137,200,0.25) 75%,
    rgba(244,162,37,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(56,189,248,0.18);
  border: 1px solid rgba(56,189,248,0.4);
  color: var(--accent-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .accent { color: var(--accent); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}
.hero-area-tag svg { width: 12px; height: 12px; flex-shrink: 0; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollFloat 2s ease-in-out infinite;
  opacity: 0.6;
}
.scroll-indicator svg { width: 28px; height: 28px; color: white; }

/* ── Wave divider ── */
.wave { display: block; width: 100%; line-height: 0; }

/* ── Section ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-label { text-align: center; }

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,79,138,0.07);
}
.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--mid);
  font-weight: 500;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,79,138,0.07);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(56,189,248,0.15), rgba(11,79,138,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; color: var(--primary); }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.service-card p {
  font-size: 0.925rem;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}
.service-card:hover .learn-more { gap: 0.625rem; }
.service-card .learn-more svg { width: 16px; height: 16px; }

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.why-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(245,236,215,0.9);
  box-shadow: 0 4px 24px rgba(10,61,98,0.09);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,162,37,0.15), rgba(10,61,98,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.why-icon svg { width: 22px; height: 22px; color: var(--primary); }
.why-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.why-item p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/hero.png') center/cover no-repeat;
  opacity: 0.15;
}
.cta-banner .container { position: relative; z-index: 1; }

/* ── Health Risk Cards ── */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.risk-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245,236,215,0.9);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.risk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.risk-card.danger { box-shadow: 0 4px 24px rgba(239,68,68,0.10); }
.risk-card.warning { box-shadow: 0 4px 24px rgba(245,158,11,0.10); }
.risk-card.info    { box-shadow: 0 4px 24px rgba(10,61,98,0.09); }

.risk-card h3 { font-size: 1.05rem; margin-bottom: 0.625rem; }
.risk-card p  { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

/* ── Form ── */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.form-label .required { color: #EF4444; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1.5px solid rgba(10,61,98,0.15);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(21,137,200,0.15);
}
.form-control::placeholder { color: #94A3B8; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(11,79,138,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 36px; height: 36px; color: var(--primary); }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,79,138,0.07);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 1.25rem; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-location { font-size: 0.8rem; color: var(--mid); }

/* ── Area badges ── */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(10,61,98,0.08);
  color: var(--primary);
  border: 1px solid rgba(10,61,98,0.15);
  border-radius: 2rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.area-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Feature list ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
}
.feature-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ── Info boxes ── */
.info-box {
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(11,79,138,0.05));
  border: 1px solid rgba(11,79,138,0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

/* ── Copy email button ── */
.email-copy-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
}
.copy-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.copy-email-btn:hover {
  opacity: 1;
}
.copy-email-btn.copied {
  opacity: 1;
  background: rgba(255,255,255,0.15);
}

/* ── Footer ── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/hero.png') center 60%/cover no-repeat;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.15;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── Keyframe Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── Utilities ── */
.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 4rem;
  align-items: center;
}
.bg-light { background: var(--light); }
.bg-dark { background: var(--primary); }
.bg-warm { background: var(--warm-white); }
.bg-primary { background: var(--primary); color: white; }
.rounded { border-radius: var(--radius-md); }
.shadow { box-shadow: var(--shadow-md); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.img-hero {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 0; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .img-hero { height: 280px; }
  /* Remove GPU-compositing backdrop-filter on decorative badges at mobile */
  .hero-trust-item { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  /* Prevent iOS auto-zoom on input focus (triggers when font-size < 16px) */
  .form-control { font-size: 1rem; }
}

/* ── Nav phone number ── */
.nav-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-phone svg { width: 13px; height: 13px; flex-shrink: 0; }
.nav-phone:hover { color: white; }
.navbar.scrolled .nav-phone { color: var(--dark); }
.navbar.scrolled .nav-phone:hover { color: var(--primary); }
@media (min-width: 769px) { .nav-phone { display: flex; } }

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--primary) !important;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.9rem;
}
.mobile-phone-link svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════
   UNDERWATER HERO — Animated Light Rays
   ════════════════════════════════════════════════════ */

.hero-pool {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-pool-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% 0%, rgba(14,72,124,0.95) 0%, transparent 65%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #041828 0%, #020D18 100%);
}

.hero-surface {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 170px;
  background: linear-gradient(180deg,
    rgba(150,230,255,0.18) 0%,
    rgba(100,200,255,0.07) 45%,
    transparent 100%
  );
  animation: surfaceShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes surfaceShimmer {
  0%,100% { opacity: 0.7; transform: scaleX(1); }
  50%      { opacity: 1;   transform: scaleX(1.03); }
}

.hero-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ray {
  position: absolute;
  top: 0;
  transform-origin: top center;
  border-radius: 0 0 50% 50%;
  will-change: transform, opacity;
}

@keyframes rayPulse {
  0%,100% { transform: rotate(var(--ra)) scaleX(1);          opacity: var(--ro1); }
  50%      { transform: rotate(var(--rb)) scaleX(var(--rx)); opacity: var(--ro2); }
}

.ray-1  { left:3%;  width:80px;  height:82vh; background:linear-gradient(180deg,rgba(110,215,255,.30) 0%,rgba(100,205,255,.08) 55%,transparent 100%); filter:blur(2px); --ra:-9deg; --rb:1deg;  --rx:1.10; --ro1:.50; --ro2:.78; animation:rayPulse 8s   ease-in-out infinite 0s;   }
.ray-2  { left:11%; width:50px;  height:72vh; background:linear-gradient(180deg,rgba(100,205,255,.24) 0%,rgba(100,205,255,.05) 60%,transparent 100%); filter:blur(1px); --ra:5deg;  --rb:-2deg; --rx:0.92; --ro1:.38; --ro2:.60; animation:rayPulse 6.5s ease-in-out infinite 0.8s; }
.ray-3  { left:20%; width:110px; height:90vh; background:linear-gradient(180deg,rgba(130,225,255,.38) 0%,rgba(110,215,255,.10) 52%,transparent 100%); filter:blur(2px); --ra:-3deg; --rb:7deg;  --rx:1.18; --ro1:.62; --ro2:.90; animation:rayPulse 9.5s ease-in-out infinite 1.4s; }
.ray-4  { left:30%; width:65px;  height:78vh; background:linear-gradient(180deg,rgba(100,205,255,.22) 0%,rgba(100,205,255,.04) 62%,transparent 100%); filter:blur(1px); --ra:3deg;  --rb:-5deg; --rx:1.06; --ro1:.32; --ro2:.55; animation:rayPulse 7.2s ease-in-out infinite 2.2s; }
.ray-5  { left:40%; width:130px; height:95vh; background:linear-gradient(180deg,rgba(145,232,255,.42) 0%,rgba(120,220,255,.12) 48%,transparent 100%); filter:blur(3px); --ra:-5deg; --rb:5deg;  --rx:1.22; --ro1:.72; --ro2:.98; animation:rayPulse 10.5s ease-in-out infinite 0.4s; }
.ray-6  { left:52%; width:60px;  height:70vh; background:linear-gradient(180deg,rgba(100,205,255,.20) 0%,rgba(100,205,255,.04) 65%,transparent 100%); filter:blur(1px); --ra:4deg;  --rb:-3deg; --rx:0.94; --ro1:.28; --ro2:.50; animation:rayPulse 7.8s ease-in-out infinite 1.9s; }
.ray-7  { left:62%; width:95px;  height:86vh; background:linear-gradient(180deg,rgba(110,215,255,.34) 0%,rgba(100,205,255,.08) 56%,transparent 100%); filter:blur(2px); --ra:-7deg; --rb:4deg;  --rx:1.12; --ro1:.55; --ro2:.82; animation:rayPulse 8.8s ease-in-out infinite 2.7s; }
.ray-8  { left:73%; width:75px;  height:76vh; background:linear-gradient(180deg,rgba(100,205,255,.28) 0%,rgba(100,205,255,.06) 60%,transparent 100%); filter:blur(1px); --ra:6deg;  --rb:-2deg; --rx:1.05; --ro1:.42; --ro2:.68; animation:rayPulse 6.2s ease-in-out infinite 3.4s; }
.ray-9  { left:82%; width:105px; height:88vh; background:linear-gradient(180deg,rgba(125,222,255,.36) 0%,rgba(110,215,255,.09) 54%,transparent 100%); filter:blur(2px); --ra:-4deg; --rb:8deg;  --rx:1.15; --ro1:.58; --ro2:.84; animation:rayPulse 9.2s ease-in-out infinite 1.2s; }
.ray-10 { left:91%; width:55px;  height:68vh; background:linear-gradient(180deg,rgba(100,205,255,.22) 0%,rgba(100,205,255,.04) 65%,transparent 100%); filter:blur(1px); --ra:3deg;  --rb:-7deg; --rx:0.90; --ro1:.32; --ro2:.56; animation:rayPulse 7.4s ease-in-out infinite 4.0s; }

.hero-caustics {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120px 65px at 12% 85%, rgba(100,210,255,.05) 0%, transparent 100%),
    radial-gradient(ellipse 90px 55px at 35% 92%, rgba(100,210,255,.04) 0%, transparent 100%),
    radial-gradient(ellipse 140px 75px at 58% 78%, rgba(100,210,255,.06) 0%, transparent 100%),
    radial-gradient(ellipse 100px 60px at 80% 88%, rgba(100,210,255,.04) 0%, transparent 100%),
    radial-gradient(ellipse 70px 45px at 95% 75%, rgba(100,210,255,.03) 0%, transparent 100%);
  animation: causticDrift 14s ease-in-out infinite;
}

@keyframes causticDrift {
  0%,100% { opacity: 0.6; transform: translateX(0) scale(1); }
  33%      { opacity: 1;   transform: translateX(12px) scale(1.06); }
  66%      { opacity: 0.7; transform: translateX(-9px) scale(0.94); }
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(150,230,255,0.45);
  animation: floatUp linear infinite;
  will-change: transform, opacity;
}
.p1 { left:8%;  bottom:-5%; width:3px; height:3px; animation-duration:12s; animation-delay:0s;   }
.p2 { left:18%; bottom:-5%; width:2px; height:2px; animation-duration:9s;  animation-delay:2s;   }
.p3 { left:28%; bottom:-5%; width:4px; height:4px; animation-duration:15s; animation-delay:4s;   }
.p4 { left:40%; bottom:-5%; width:2px; height:2px; animation-duration:11s; animation-delay:1s;   }
.p5 { left:55%; bottom:-5%; width:3px; height:3px; animation-duration:13s; animation-delay:5s;   }
.p6 { left:67%; bottom:-5%; width:2px; height:2px; animation-duration:8s;  animation-delay:3s;   }
.p7 { left:78%; bottom:-5%; width:4px; height:4px; animation-duration:16s; animation-delay:0.5s; }
.p8 { left:90%; bottom:-5%; width:2px; height:2px; animation-duration:10s; animation-delay:6s;   }

@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(20px) scale(0.5); opacity: 0; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, transparent 0%, rgba(2,10,22,.28) 100%),
    linear-gradient(180deg, rgba(2,10,22,.08) 0%, rgba(2,10,22,0) 30%, rgba(2,10,22,.58) 100%);
  pointer-events: none;
}

/* ── 2-col layout ── */
.hero-pool-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(56,189,248,0.15);
  border: 1px solid rgba(56,189,248,0.35);
  color: var(--accent-light);
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease both 0.1s;
}

.hero-pool-headline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  color: white;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease both 0.2s;
}
.hero-pool-headline .h-accent { color: var(--accent); }

.hero-pool-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.7s ease both 0.32s;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.7s ease both 0.44s;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.hero-trust-item svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

.hero-pool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.7s ease both 0.54s;
}

.hero-pool-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  animation: fadeInUp 0.7s ease both 0.64s;
}
.pool-area-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 0.28rem 0.65rem;
  border-radius: 2rem;
  font-size: 0.74rem;
  font-weight: 500;
}

/* ── Hero Form Card ── */
.hero-form-wrap { animation: fadeInUp 0.7s ease both 0.22s; }

.hero-form-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
}
.hero-form-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.hero-form-card .fc-sub {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 1.1rem;
  line-height: 1.5;
}
.hero-form-card .form-control {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  font-size: 0.875rem;
  padding: 0.6rem 0.875rem;
  border-radius: var(--radius-sm);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
}
.hero-form-card .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.14);
  background: white;
}
.hfc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.hfc-group { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 0.6rem; }
.hfc-group label { font-size: 0.72rem; font-weight: 600; color: var(--mid); }
.hfc-trust {
  text-align: center;
  font-size: 0.73rem;
  color: var(--mid);
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.hfc-trust svg { width: 12px; height: 12px; color: #10B981; }

/* hero form success */
.hfc-success {
  display: none;
  text-align: center;
  padding: 1.25rem 0;
}
.hfc-success .hfc-success-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(11,79,138,0.12));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.875rem;
}
.hfc-success .hfc-success-icon svg { width: 26px; height: 26px; color: var(--primary); }
.hfc-success h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.375rem; }
.hfc-success p { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }

/* ════════════════════════════════════════════════════
   PRICING TIERS
   ════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tier-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(11,79,138,0.10);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tier-card.tier-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 40px rgba(56,189,248,0.18);
  transform: translateY(-6px) scale(1.02);
}
.tier-card.tier-featured:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(56,189,248,0.28);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.72rem;
  border-radius: 2rem;
  margin-bottom: 1.1rem;
  width: fit-content;
}
.tier-badge.badge-premium { background: linear-gradient(135deg,#0B4F8A,#1A6FAD); color: white; }
.tier-badge.badge-popular { background: var(--accent); color: var(--primary-dark); }
.tier-badge.badge-entry   { background: var(--light); color: var(--mid); }

.tier-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.tier-tagline { font-size: 0.82rem; color: var(--mid); margin-bottom: 1rem; line-height: 1.5; }

.tier-price { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.2rem; }
.tier-price .t-dollar { font-size: 1.35rem; font-weight: 700; color: var(--primary); align-self: flex-start; margin-top: 0.5rem; }
.tier-price .t-amount { font-family: 'DM Sans', sans-serif; font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.tier-price .t-period  { font-size: 0.85rem; color: var(--mid); }
.tier-note { font-size: 0.77rem; color: var(--mid); margin-bottom: 1.25rem; }
.tier-divider { height: 1px; background: var(--light); margin-bottom: 1.25rem; }

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.575rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.855rem;
  color: var(--mid);
  line-height: 1.5;
}
.tier-features li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.tier-features li.tf-check svg { color: #10B981; }
.tier-features li.tf-plus  svg { color: var(--accent); }

.tier-cta-btn {
  display: block;
  text-align: center;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  text-decoration: none;
  margin-top: auto;
}
.tier-cta-btn:hover { transform: translateY(-2px); }
.tier-cta-btn.cta-accent  { background: var(--accent); color: var(--primary-dark); box-shadow: 0 4px 16px rgba(56,189,248,.30); }
.tier-cta-btn.cta-accent:hover  { box-shadow: 0 8px 28px rgba(56,189,248,.45); }
.tier-cta-btn.cta-primary { background: var(--primary); color: white; box-shadow: 0 4px 16px rgba(11,79,138,.22); }
.tier-cta-btn.cta-primary:hover { box-shadow: 0 8px 28px rgba(11,79,138,.38); }
.tier-cta-btn.cta-outline { background: transparent; color: var(--primary); border: 1.5px solid rgba(11,79,138,.22); }
.tier-cta-btn.cta-outline:hover { background: var(--light); }

.pricing-footer-note { text-align: center; font-size: 0.85rem; color: var(--mid); margin-top: 1.75rem; line-height: 1.6; }
.pricing-footer-note a { color: var(--primary); font-weight: 600; }
.pricing-footer-note a:hover { text-decoration: underline; }

/* ── Mobile ── */
@media (max-width: 960px) {
  .hero-pool-inner {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    min-height: auto;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
  .hero-form-wrap { order: -1; }
  .hero-form-card { max-width: 520px; }
  .hero-pool-sub { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .tier-card.tier-featured { transform: none; }
  .tier-card.tier-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 520px) {
  .hfc-row { grid-template-columns: 1fr; }
  .hero-pool-headline { font-size: 2.1rem; }
  .ray-2,.ray-4,.ray-6,.ray-8,.ray-10 { display: none; }
}

/* ── Sticky mobile call button ── */
.sticky-call { display: none; }
@media (max-width: 768px) {
  .sticky-call {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: #0A3D62;
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-top: 3px solid #F4A225;
    box-shadow: 0 -4px 20px rgba(10,61,98,0.30);
    letter-spacing: 0.01em;
  }
  .sticky-call svg {
    width: 18px; height: 18px;
    color: #F4A225;
    flex-shrink: 0;
  }
  /* push footer content up so it's not hidden behind the bar */
  body { padding-bottom: 60px; }
}
