       it — this page will render correctly either way. -->
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet">

<style>
/* ═══════════════════════════════════════════════════════════════════
   HEALTH MOT — PHASE 2 DESIGN SYSTEM
   Premium Biotech / Private Performance Medicine
   v2.0 — May 2026
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Palette */
  --midnight:     #07101E;
  --navy-deep:    #0C1A2E;
  --navy-mid:     #112138;
  --navy-card:    #152844;
  --navy-border:  rgba(255,255,255,0.07);
  --teal:         #00C9B8;
  --teal-light:   #33D6C8;
  --teal-dim:     rgba(0,201,184,0.12);
  --teal-glow:    rgba(0,201,184,0.20);
  --teal-border:  rgba(0,201,184,0.28);
  --teal-ultra:   rgba(0,201,184,0.06);
  --white:        #FFFFFF;
  --off-white:    #F3F6FB;
  --light-bg:     #EBF0F8;
  --slate-light:  #CBD5E8;
  --slate:        #8A9AB5;
  --slate-mid:    #5A6E8A;
  --body-dark:    rgba(255,255,255,0.70);
  --gold:         #C4A55A;
  --gold-dim:     rgba(196,165,90,0.15);
  --red-soft:     #E85D5D;

  /* Type */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Layout */
  --container:    min(1180px, 92vw);
  --gap-section:  104px;
  --gap-section-sm: 64px;

  /* Shape */
  --r-card:   20px;
  --r-pill:   40px;
  --r-sm:     10px;
  --r-xs:     6px;

  /* Elevation */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.18);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.30);
  --shadow-lift:  0 20px 60px rgba(0,0,0,0.40);
  --glow-teal:    0 0 60px rgba(0,201,184,0.14);
  --glow-cta:     0 0 30px rgba(0,201,184,0.40);

  /* Motion */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --t-fast:       0.18s var(--ease);
  --t-base:       0.30s var(--ease);
  --t-slow:       0.55s var(--ease-out);
}

/* ── 2. RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy-deep);
  background: var(--white);
  overflow-x: hidden;
}

/* Reserve space for fixed nav */
body { padding-top: 76px; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--teal-border); border-radius: 3px; }

/* ── 3. LAYOUT UTILITIES ───────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--teal);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-mid);
  max-width: 600px;
}

/* Dark section overrides */
.dark .section-eyebrow { color: var(--teal); }
.dark .section-heading { color: var(--white); }
.dark .section-sub { color: var(--slate); }
.dark p, .dark li { color: var(--body-dark); }

/* ── 4. BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: var(--midnight) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--r-xs);
  border: none;
  cursor: pointer;
  transition: var(--t-base);
  box-shadow: 0 4px 20px rgba(0,201,184,0.25);
  white-space: nowrap;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t-fast);
}
.btn-primary:hover {
  background: var(--teal-light);
  box-shadow: var(--glow-cta);
  transform: translateY(-1px);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--r-xs);
  border: 1.5px solid rgba(255,255,255,0.30);
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
  text-decoration: none !important;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.07);
}

.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--r-xs);
  border: 1.5px solid var(--teal-border);
  cursor: pointer;
  transition: var(--t-base);
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-outline-teal:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
}

/* ── 5. NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  gap: 32px;
  background: rgba(7,16,30,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-border);
  transition: background var(--t-base), border-color var(--t-base);
}
.site-nav.scrolled {
  background: rgba(7,16,30,0.92);
  border-bottom-color: rgba(255,255,255,0.10);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white) !important;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none !important;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-light);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  text-decoration: none !important;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* Packages dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-light);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-dropdown-btn::after {
  content: '';
  width: 8px;
  height: 5px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%238A9AB5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-btn { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-dropdown:hover .nav-dropdown-btn::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: rgba(12,26,46,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--navy-border);
  border-radius: var(--r-sm);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast);
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  font-size: 13px;
  color: var(--slate-light);
  padding: 8px 12px;
  border-radius: var(--r-xs);
  transition: var(--t-fast);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(0,201,184,0.08); }

/* Nav right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.28);
  color: #4ADE80 !important;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: var(--t-fast);
  text-decoration: none !important;
}
.nav-whatsapp:hover {
  background: rgba(37,211,102,0.25);
  border-color: rgba(37,211,102,0.5);
}

.nav-book {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-xs);
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
  transform-origin: center;
}

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7,16,30,0.98);
  backdrop-filter: blur(24px);
  z-index: 899;
  overflow-y: auto;
  padding: 24px 5vw 40px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity var(--t-base), transform var(--t-base);
}
.nav-open .nav-mobile-drawer {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-drawer a,
.nav-mobile-drawer button.drawer-link {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--slate-light);
  padding: 13px 0;
  border-bottom: 1px solid var(--navy-border);
  transition: color var(--t-fast);
  background: none;
  border: none;
  border-bottom: 1px solid var(--navy-border);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}
.nav-mobile-drawer a:hover,
.nav-mobile-drawer button.drawer-link:hover { color: var(--white); }
.nav-mobile-drawer .drawer-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.nav-mobile-sub-links {
  padding-left: 16px;
  border-left: 2px solid var(--teal-border);
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-sub-links a {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: none;
  color: var(--slate);
}

/* ── 6. HERO ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background: var(--midnight);
  overflow: hidden;
  padding: 80px 0;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(0,201,184,0.10) 0%, transparent 70%);
  animation: orbDrift1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(50,80,200,0.08) 0%, transparent 70%);
  animation: orbDrift2 18s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 45%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(0,201,184,0.05) 0%, transparent 70%);
  animation: orbDrift3 22s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.05); }
  66%      { transform: translate(-25px,20px) scale(0.96); }
}
@keyframes orbDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(30px,-40px) scale(1.08); }
  80%     { transform: translate(-20px,15px) scale(0.95); }
}
@keyframes orbDrift3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%     { transform: translate(-45%,-55%) scale(1.15); }
}

/* Subtle grid texture overlay */
.hero-grid-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image:
    linear-gradient(rgba(0,201,184,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,184,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { padding-right: 20px; }

.hero-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeUp 0.7s var(--ease-out) both;
  animation-delay: 0.1s;
}
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 5px 14px;
  border: 1px solid var(--teal-border);
  border-radius: var(--r-pill);
  background: var(--teal-ultra);
}
.hero-eyebrow-pill .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}

/* Phase 1 location line — restyled */
.p1-hero-location {
  display: none; /* absorbed into eyebrow pill for Phase 2 */
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease-out) both;
  animation-delay: 0.22s;
}
.hero-h1 .teal { color: var(--teal); }

.hero-sub {
  font-size: 17px;
  line-height: 1.70;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s var(--ease-out) both;
  animation-delay: 0.34s;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s var(--ease-out) both;
  animation-delay: 0.44s;
}

/* Phase 2 trust pills — restyled from Phase 1 .p1-trust-pills */
.p1-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: fadeUp 0.7s var(--ease-out) both;
  animation-delay: 0.54s;
}
.p1-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate-light);
  padding: 6px 14px;
  border: 1px solid var(--navy-border);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: var(--t-fast);
}
.p1-trust-pill:hover {
  border-color: var(--teal-border);
  color: var(--white);
  background: var(--teal-ultra);
}
.p1-trust-pill svg { color: var(--teal); flex-shrink: 0; }

/* Hero visual side */
.hero-visual {
  position: relative;
  animation: fadeLeft 0.8s var(--ease-out) both;
  animation-delay: 0.3s;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--navy-mid);
  box-shadow: var(--shadow-lift);
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,201,184,0.06) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
  background: var(--navy-mid);
  filter: saturate(1.15) contrast(1.05);
}

/* Floating stat cards */
.hero-stat {
  position: absolute;
  background: rgba(12,26,46,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--teal-border);
  border-radius: var(--r-sm);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card), var(--glow-teal);
}
.hero-stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-1 {
  top: -20px; left: -24px;
  animation: statFloat1 6s ease-in-out infinite;
}
.hero-stat-2 {
  bottom: -16px; right: -20px;
  animation: statFloat2 7s ease-in-out infinite;
}

@keyframes statFloat1 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes statFloat2 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(6px); }
}

/* ── 7. TRUST METRIC BAR ───────────────────────────────────────── */
.trust-bar-section {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 28px 0;
}
.trust-bar-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 28px;
  border-right: 1px solid var(--navy-border);
}
.trust-metric:last-child { border-right: none; }
.trust-metric-icon {
  width: 40px; height: 40px;
  background: var(--teal-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.trust-metric-text {}
.trust-metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-metric-desc {
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
  font-weight: 400;
}

/* ── 8. SERVICE SCOPE ──────────────────────────────────────────── */
.service-scope-section {
  padding: 72px 0;
  background: var(--off-white);
}
.service-scope-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.scope-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px 36px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}
.scope-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.scope-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scope-icon.includes { background: rgba(26,122,74,0.10); color: #1a7a4a; }
.scope-icon.excludes { background: rgba(232,93,93,0.10); color: var(--red-soft); }
.scope-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
}
.scope-list { display: flex; flex-direction: column; gap: 10px; }
.scope-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--slate-mid);
}
.scope-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.scope-card.includes .scope-list li::before { background: #1a7a4a; }
.scope-card.excludes .scope-list li::before { background: var(--red-soft); }

/* ── 9. WHO IS THIS FOR ────────────────────────────────────────── */
.who-section {
  padding: var(--gap-section) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.who-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,184,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.who-inner {
  width: var(--container);
  margin-inline: auto;
}
.who-header { text-align: center; margin-bottom: 56px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  background: rgba(21,40,68,0.60);
  border: 1px solid var(--navy-border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.who-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--teal-border), transparent, transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--t-base);
}
.who-card:hover {
  border-color: var(--teal-border);
  box-shadow: var(--glow-teal);
  transform: translateY(-4px);
}
.who-card:hover::after { opacity: 1; }
.who-card-icon {
  width: 52px; height: 52px;
  background: var(--teal-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.who-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(150deg);
  opacity: 0.85;
}
.who-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.who-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
}

/* ── 10. PACKAGES ──────────────────────────────────────────────── */
.packages-section {
  padding: var(--gap-section) 0;
  background: var(--off-white);
}
.packages-inner {
  width: var(--container);
  margin-inline: auto;
}
.packages-header {
  margin-bottom: 48px;
}

/* Category tabs */
.pkg-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 40px;
  scrollbar-width: none;
}
.pkg-tabs::-webkit-scrollbar { display: none; }

.pkg-tab {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(0,0,0,0.10);
  background: var(--white);
  color: var(--slate-mid);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t-fast);
  flex-shrink: 0;
}
.pkg-tab:hover {
  border-color: var(--teal-border);
  color: var(--navy-deep);
}
.pkg-tab.active {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

/* Package grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Package card */
.pkg-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.pkg-card:hover {
  border-color: rgba(0,201,184,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), var(--glow-teal);
  transform: translateY(-3px);
}
.pkg-card.hidden {
  display: none;
}
.pkg-card.featured {
  border-color: var(--teal-border);
  box-shadow: var(--glow-teal);
}
.pkg-card-top {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pkg-cat-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-ultra);
  border: 1px solid var(--teal-border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.pkg-popular-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(196,165,90,0.30);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.pkg-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pkg-card-body {
  padding: 16px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 8px;
}
.pkg-desc {
  font-size: 13.5px;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 16px;
}
.pkg-tests-preview {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.pkg-tests-preview li {
  font-size: 13px;
  color: var(--navy-mid);
  padding-left: 16px;
  position: relative;
}
.pkg-tests-preview li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* Package details accordion */
.pkg-details {
  margin-bottom: 16px;
}
.pkg-details summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  padding: 8px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast);
  user-select: none;
}
.pkg-details summary::-webkit-details-marker { display: none; }
.pkg-details summary::after {
  content: '↓';
  font-size: 11px;
  transition: transform var(--t-fast);
}
.pkg-details[open] summary::after { transform: rotate(180deg); }
.pkg-details summary:hover { color: var(--teal-light); }

.pkg-details-body {
  padding: 12px 0;
  border-top: 1px solid var(--light-bg);
  margin-top: 4px;
}
.pkg-details-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-mid);
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}
.pkg-details-body h4:first-child { margin-top: 0; }
.pkg-details-body h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-mid);
  margin: 10px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pkg-details-body ul,
.pkg-details-body ol {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
}
.pkg-details-body ul { list-style: disc; }
.pkg-details-body ol { list-style: decimal; }
.pkg-details-body li {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.5;
}
.pkg-details-body p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 8px;
}
.pkg-details-body dl { margin-bottom: 8px; }
.pkg-details-body dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  margin-top: 8px;
}
.pkg-details-body dd {
  font-size: 13px;
  color: var(--slate-mid);
  padding-left: 12px;
  margin-bottom: 2px;
}

/* Disclaimer blocks inside details */
.disclaimer, .clinical-note, .important-info {
  background: var(--off-white);
  border-left: 3px solid rgba(0,0,0,0.10);
  padding: 10px 14px;
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  margin: 10px 0;
}
.disclaimer h5, .clinical-note h5, .important-info h5 {
  font-size: 11px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate-mid) !important;
  margin-bottom: 4px !important;
  margin-top: 0 !important;
}
.disclaimer p, .clinical-note p, .important-info p {
  font-size: 12px !important;
  color: var(--slate) !important;
  line-height: 1.5;
  margin-bottom: 0 !important;
}

.pkg-card-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--light-bg);
  margin-top: auto;
  background: var(--off-white);
}
.pkg-card-footer .btn-primary { flex: 1; font-size: 14px; padding: 11px 16px; }
.pkg-card-footer .btn-outline-teal { flex-shrink: 0; font-size: 13px; padding: 10px 14px; }

/* Pathway card special style */
.pathway-card {
  background: var(--navy-deep);
  border-color: var(--teal-border);
  box-shadow: var(--glow-teal);
}
.pathway-card .pkg-name,
.pathway-card .pkg-desc { color: var(--white); }
.pathway-card .pkg-cat-badge {
  background: rgba(255,255,255,0.06);
  color: var(--teal);
}
.pathway-card .pkg-card-footer {
  background: rgba(255,255,255,0.04);
  border-top-color: var(--navy-border);
}
.pathway-card .pkg-details-body h4,
.pathway-card .pkg-details-body h5 { color: var(--slate-light); }
.pathway-card .pkg-details-body p,
.pathway-card .pkg-details-body li { color: var(--slate); }
.pathway-card .pkg-tests-preview li { color: var(--slate-light); }
.pathway-card .pkg-tests-preview li::before { background: var(--teal); }

/* ── 11. WHY CHOOSE ────────────────────────────────────────────── */
.why-section {
  padding: var(--gap-section) 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,184,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-inner {
  width: var(--container);
  margin-inline: auto;
}
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.why-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.why-tile {
  background: var(--navy-card);
  padding: 36px 28px;
  transition: var(--t-base);
  position: relative;
}
.why-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}
.why-tile:hover { background: rgba(21,40,68,0.80); }
.why-tile:hover::before { transform: scaleX(1); }
.why-tile-icon {
  color: var(--teal);
  margin-bottom: 20px;
  opacity: 0.85;
}
.why-tile-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.why-tile-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  font-size: 11px;
}
.why-tile-desc {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
}

/* ── 12. PROCESS ───────────────────────────────────────────────── */
.process-section {
  padding: var(--gap-section) 0;
  background: var(--white);
}
.process-inner {
  width: var(--container);
  margin-inline: auto;
}
.process-header { text-align: center; margin-bottom: 60px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(0,201,184,0.3), var(--teal));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(0,201,184,0.20);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13.5px;
  color: var(--slate-mid);
  line-height: 1.6;
}

/* ── 13. CONTACT ───────────────────────────────────────────────── */
.contact-section {
  padding: var(--gap-section) 0;
  background: var(--off-white);
}
.contact-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

/* Left info panel */
.contact-info {}
.contact-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.contact-info-sub {
  font-size: 16px;
  color: var(--slate-mid);
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--navy-deep);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-detail-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.contact-detail-text span,
.contact-detail-text a {
  font-size: 14px;
  color: var(--slate-mid);
}
.contact-detail-text a:hover { color: var(--teal); }
.contact-trust-strip {
  background: var(--navy-deep);
  border-radius: var(--r-card);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--slate-light);
}
.contact-trust-item svg { color: var(--teal); flex-shrink: 0; }

/* Right form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 40px 40px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-card);
}
.booking-form {}
.booking-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-deep);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row textarea,
.form-row select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy-deep);
  background: var(--off-white);
  border: 1.5px solid var(--light-bg);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-dim);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }

.form-row-radio {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--navy-mid);
  cursor: pointer;
  padding: 8px 16px;
  border: 1.5px solid var(--light-bg);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.radio-label:hover { border-color: var(--teal-border); }
.radio-label input[type="radio"] { accent-color: var(--teal); }

.form-consent-text {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.55;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
.form-privacy-text {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 20px;
}
.form-submit { width: 100%; font-size: 16px; padding: 14px 24px; }

/* ── 14. FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--midnight);
  border-top: 1px solid var(--navy-border);
  padding: 60px 0 32px;
}
.footer-inner {
  width: var(--container);
  margin-inline: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-border);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: block;
}
.footer-logo span { color: var(--teal); }
.footer-tagline {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid var(--navy-border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-links a {
  font-size: 13.5px;
  color: var(--slate);
  transition: color var(--t-fast);
}
.footer-col-links a:hover { color: var(--white); }
.footer-email {
  font-size: 13.5px;
  color: var(--teal);
  transition: color var(--t-fast);
}
.footer-email:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 11.5px;
  color: var(--slate-mid);
  line-height: 1.6;
  max-width: 680px;
}
.footer-legal {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.footer-legal a {
  font-size: 12px;
  color: var(--slate-mid);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--white); }
.footer-copy {
  font-size: 11px;
  color: var(--slate-mid);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--navy-border);
  width: 100%;
}

/* ── 15. MOBILE STICKY BAR ─────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(7,16,30,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--navy-border);
  padding: 12px 16px;
  gap: 10px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-book {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 20px;
}
.sticky-bar-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.30);
  color: #4ADE80 !important;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: var(--r-xs);
  text-decoration: none !important;
  transition: var(--t-fast);
  white-space: nowrap;
}
.sticky-bar-wa:hover { background: rgba(37,211,102,0.25); }

/* ── 16. COOKIE BANNER ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(21,40,68,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--navy-border);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  max-width: 90vw;
}
#cookie-banner p {
  font-size: 13px;
  color: var(--slate-light);
}
#cookie-banner button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight);
  background: var(--teal);
  border: none;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: var(--t-fast);
  flex-shrink: 0;
}
#cookie-banner button:hover { background: var(--teal-light); }

/* ── 17. SCROLL REVEAL SYSTEM ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── 18. HERO ENTRANCE KEYFRAMES ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── 19. RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gap-section: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-image-frame img { height: auto; max-height: 360px; object-fit: contain; }
  .hero-stat-1 { top: -12px; left: 12px; }
  .hero-stat-2 { bottom: -12px; right: 12px; }
  .hero-content { padding-right: 0; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .why-tiles { grid-template-columns: repeat(2, 1fr); }
  .why-header { grid-template-columns: 1fr; gap: 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-metric { border-right: none; border-bottom: 1px solid var(--navy-border); }
  .trust-metric:nth-child(odd) { border-right: 1px solid var(--navy-border); }
  .trust-metric:nth-last-child(-n+2) { border-bottom: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  body { padding-top: 68px; }
  :root { --gap-section: 64px; }
  .site-nav { height: 68px; gap: 16px; }
  .nav-links, .nav-dropdown, .nav-whatsapp { display: none; }
  .nav-hamburger { display: flex; }
  .hero-section { padding: 60px 0 80px; min-height: auto; }
  .hero-h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-visual { display: none; } /* hero image hidden on small mobile */
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .service-scope-inner { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .why-tiles { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { width: 100%; justify-content: center; }
  .sticky-bar { display: flex; }
  #cookie-banner { bottom: 80px; }
  .scope-card { padding: 24px 20px; }
  .contact-trust-strip { padding: 20px 20px; }
}

@media (max-width: 480px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-metric:nth-child(odd) { border-right: none; }
  .trust-metric { border-bottom: 1px solid var(--navy-border); border-right: none; }
  .trust-metric:last-child { border-bottom: none; }
  .why-tiles { grid-template-columns: 1fr; }
  .pkg-tabs { gap: 6px; }
}

/* ── 20. REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow-line,
  .hero-h1,
  .hero-sub,
  .hero-cta-row,
  .p1-trust-pills,
  .hero-visual { animation: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   SUB-PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--teal); text-decoration: none; transition: var(--t-fast); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { color: var(--slate-mid); font-size: 11px; }

/* Panel hero (sub-pages) */
.panel-hero {
  background: var(--midnight);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.panel-hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,184,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.panel-hero-inner {
  width: var(--container);
  margin-inline: auto;
}
.panel-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 720px;
}
.panel-price-block {
  text-align: right;
  flex-shrink: 0;
}
.panel-price-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.panel-price-label {
  font-size: 12px;
  color: var(--slate);
  margin-top: 4px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.panel-hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.panel-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-light);
  padding: 7px 16px;
  border: 1px solid var(--navy-border);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
}
.panel-meta-pill svg { color: var(--teal); }

/* Panel info strip */
.panel-info-strip {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 24px 0;
}
.panel-info-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.panel-info-cell {
  padding: 12px 28px;
  border-right: 1px solid var(--navy-border);
  display: flex;
  flex-direction: column;
}
.panel-info-cell:last-child { border-right: none; }
.panel-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin-bottom: 4px;
}
.panel-info-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

/* Panel body content */
.panel-body {
  padding: var(--gap-section) 0;
  background: var(--off-white);
}
.panel-body-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.panel-body-inner.single { grid-template-columns: 1fr; max-width: 780px; }

.panel-content-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px 36px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
}
.panel-content-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.panel-content-card h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin: 20px 0 8px;
}
.panel-content-card h3:first-child { margin-top: 0; }
.panel-content-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.panel-content-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--slate-mid);
  line-height: 1.5;
}
.panel-content-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}
.panel-content-card ol {
  counter-reset: panel-ol;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  list-style: none;
}
.panel-content-card ol li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--slate-mid);
}
.panel-content-card ol li::before {
  counter-increment: panel-ol;
  content: counter(panel-ol);
  width: 24px; height: 24px;
  background: var(--teal-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.panel-content-card p {
  font-size: 14.5px;
  color: var(--slate-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}
.panel-disclaimer {
  background: var(--off-white);
  border-left: 3px solid var(--slate-light);
  padding: 12px 16px;
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  margin-top: 16px;
}
.panel-disclaimer h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-mid);
  margin-bottom: 5px;
}
.panel-disclaimer p {
  font-size: 12.5px !important;
  color: var(--slate) !important;
  line-height: 1.55;
  margin-bottom: 0 !important;
}

/* Panel booking section */
.panel-booking {
  padding: var(--gap-section) 0;
  background: var(--white);
}
.panel-booking-inner {
  width: var(--container);
  margin-inline: auto;
  max-width: 720px;
  text-align: center;
}
.panel-booking-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.panel-booking-inner p {
  color: var(--slate-mid);
  font-size: 16px;
  margin-bottom: 36px;
}
.panel-booking-form {
  background: var(--off-white);
  border-radius: var(--r-card);
  padding: 36px;
  text-align: left;
  border: 1px solid var(--border);
}

/* Sub-page responsive */
@media (max-width: 900px) {
  .panel-body-inner { grid-template-columns: 1fr; gap: 24px; }
  .panel-info-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-info-cell { border-right: none; border-bottom: 1px solid var(--navy-border); }
  .panel-info-cell:last-child { border-bottom: none; }
  .panel-info-cell:nth-child(odd) { border-right: 1px solid var(--navy-border); }
}
@media (max-width: 600px) {
  .panel-hero { padding: 60px 0 52px; }
  .panel-price-val { font-size: 36px; }
  .panel-booking-form { padding: 24px 20px; }
  .panel-content-card { padding: 24px 20px; }
  .panel-hero-top { flex-direction: column; }
  .panel-price-block { text-align: left; }
}

/* Thank you page */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5vw;
  background: var(--off-white);
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 60px 48px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.07);
}
.thankyou-icon {
  width: 72px; height: 72px;
  background: var(--teal-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--teal);
}
.thankyou-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.thankyou-sub { font-size: 16px; color: var(--slate-mid); line-height: 1.65; margin-bottom: 32px; }

/* Privacy / Terms pages */
.prose-section {
  padding: var(--gap-section) 0;
  background: var(--white);
}
.prose-inner {
  width: var(--container);
  margin-inline: auto;
  max-width: 760px;
}
.prose-inner h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--navy-deep);
}
.prose-date { font-size: 13px; color: var(--slate); margin-bottom: 40px; font-family: var(--font-mono); }
.prose-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-deep);
  margin: 36px 0 12px;
}
.prose-inner p, .prose-inner li {
  font-size: 15.5px;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.prose-inner ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose-inner a { color: var(--teal); text-decoration: underline; }

/* ============================================================
   PHASE 2.3 — PREMIUM PANEL PAGE UPGRADES
   ============================================================ */

/* Hero wrap with deeper background + radial glows */
.panel-hero-wrap {
  background: radial-gradient(1100px 600px at 80% -10%, rgba(0,201,184,0.18), transparent 60%),
              radial-gradient(900px 500px at 0% 10%, rgba(0,201,184,0.08), transparent 65%),
              linear-gradient(180deg, #050C18 0%, var(--midnight) 60%, var(--navy-deep) 100%);
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}
.panel-hero-wrap::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
  pointer-events: none; opacity: 0.5;
}

.panel-hero { padding: 56px 0 64px; }
.panel-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.panel-hero-copy { min-width: 0; }
.panel-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px;
}
.panel-hero-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%) !important;
  color: var(--midnight) !important;
  box-shadow: 0 12px 32px -8px rgba(0,201,184,0.55), 0 0 0 1px rgba(0,201,184,0.4) inset;
  padding: 14px 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  border-radius: 999px !important;
}
.panel-hero-cta:hover { transform: translateY(-1px); }
.panel-hero-cta-2 {
  border: 1px solid var(--teal-border) !important;
  color: var(--teal) !important;
  background: rgba(0,201,184,0.06);
  padding: 14px 24px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}
.panel-hero-cta-2:hover { background: rgba(0,201,184,0.12); }

.panel-hero-visual {
  position: relative;
  /* Remove fixed 1:1 aspect ratio so that hero visuals can scale to the natural
     dimensions of the supplied images.  Without a fixed aspect ratio the
     container’s height will adjust to its contents, allowing tall or wide
     images to be displayed fully. */
  aspect-ratio: auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6),
              0 0 0 1px rgba(0,201,184,0.10),
              0 0 60px -10px rgba(0,201,184,0.25);
  background: var(--navy-deep);
}
.panel-hero-visual img {
  /* Ensure hero images display fully without cropping.  Using object-fit: contain allows
     the entire image to be visible inside its container, preventing important
     details from being cut off.  The saturate/contrast filter is retained to
     maintain colour vibrancy. */
  /* Let images grow naturally while preserving aspect ratio.  Set width to 100%
     and height to auto so that the full image is shown without cropping.  Use
     object-fit: contain as a fallback for browsers that honour both.
  */
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.panel-hero-visual-glow {
  position: absolute; inset: -2px;
  border-radius: 30px;
  background: conic-gradient(from 120deg, rgba(0,201,184,0.5), transparent 30%, rgba(0,201,184,0.3) 60%, transparent 90%);
  filter: blur(28px); opacity: 0.45;
  pointer-events: none; z-index: 0;
}

/* Premium info strip */
.panel-info-strip {
  background: linear-gradient(180deg, rgba(12,26,46,0.85), rgba(7,16,30,0.95));
  backdrop-filter: blur(8px);
}

/* Body upgrade: gradient backdrop */
.panel-body {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(0,201,184,0.06), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(0,201,184,0.05), transparent 60%),
    var(--off-white);
}

/* Card glow border */
.panel-content-card {
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset,
              0 20px 50px -25px rgba(7,16,30,0.18),
              0 4px 10px -4px rgba(7,16,30,0.06);
  position: relative;
  overflow: hidden;
}
.panel-content-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light), transparent);
  opacity: 0.85;
}
.panel-content-card h2 {
  display: flex; align-items: center; gap: 12px;
  font-size: 24px;
}
.panel-content-card h2::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,201,184,0.18);
}

/* Convert plain UL inside Tests Included / Who Is This For / Why etc into a chip-grid feel */
.panel-content-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 14px;
}
.panel-content-card ul li {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 12px 14px 12px 14px;
  font-size: 14px;
  color: var(--navy-deep);
  align-items: center;
  transition: all .2s;
}
.panel-content-card ul li:hover {
  border-color: var(--teal-border);
  background: #fff;
  box-shadow: 0 6px 18px -10px rgba(0,201,184,0.4);
}
.panel-content-card ul li::before {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 30%, rgba(0,201,184,0.25) 70%);
  margin-top: 0;
}

/* OL: numbered steps with stronger badge */
.panel-content-card ol li::before {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--midnight);
  box-shadow: 0 6px 16px -6px rgba(0,201,184,0.55);
  width: 28px; height: 28px;
}

/* Disclaimer cards */
.panel-disclaimer {
  background: linear-gradient(180deg, #fff, var(--off-white));
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 6px 18px -14px rgba(7,16,30,0.18);
}

/* How It Works premium section */
.panel-howitworks {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(0,201,184,0.10), transparent 60%),
    linear-gradient(180deg, var(--midnight), var(--navy-deep));
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
}
.panel-howitworks-inner {
  width: var(--container);
  margin-inline: auto;
  text-align: center;
}
.panel-howitworks-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 8px 0 48px;
  color: var(--white);
}
.howitworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.howitworks-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all .25s;
}
.howitworks-step:hover {
  transform: translateY(-3px);
  border-color: var(--teal-border);
  box-shadow: 0 30px 60px -25px rgba(0,201,184,0.35);
}
.howitworks-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.howitworks-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.howitworks-step p {
  color: var(--slate-light);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Booking section premium upgrade */
.panel-booking {
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(0,201,184,0.08), transparent 60%),
    var(--off-white);
}
.panel-booking-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 70px -30px rgba(7,16,30,0.25),
              0 0 0 1px rgba(0,201,184,0.05),
              0 0 50px -10px rgba(0,201,184,0.10);
  position: relative;
}
.panel-booking-form::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  border-radius: 0 0 4px 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .panel-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .panel-hero-visual { max-width: 480px; margin: 0 auto; }
  .panel-content-card ul { grid-template-columns: 1fr; }
  .howitworks-grid { grid-template-columns: 1fr; }
  .panel-booking-form { padding: 24px; }
  .panel-howitworks { padding: 64px 0 72px; }
}

/* =====================================================================
   CONTRAST & VISIBILITY HARDENING — WCAG AA audit pass
   Added to fix unreadable body text on light surfaces, weak teal links
   on white, low-contrast disclaimers, and mobile overlay readability.
   ===================================================================== */
:root {
  --ink-strong: #0B1A2E;          /* headings on light surfaces */
  --ink-body:   #2F3D55;          /* body text on light – AA on white ~10.4 */
  --ink-muted:  #41506B;          /* muted body on light – AA on white ~7.4 */
  --teal-ink:   #007F72;          /* teal text/link on light – AA on white ~4.6 */
  --gold-ink:   #8A6F2C;          /* gold text on light – AA on white ~4.7 */
  --red-ink:    #B53A3A;          /* red text on light – AA on white ~5.1 */
}

/* --- Light-surface text colour overrides ----------------------------- */
.panel-content-card p,
.panel-content-card ul li,
.panel-content-card ol li,
.panel-booking-inner p,
.thankyou-sub,
.prose-inner p,
.prose-inner li,
.contact-detail-text span,
.contact-detail-text a,
.howitworks-step p { color: var(--ink-body) !important; }

/* Disclaimers were the worst offender (slate on off-white, ~2.6) */
.panel-disclaimer h4 { color: var(--ink-strong) !important; }
.panel-disclaimer p  { color: var(--ink-muted) !important; }

/* Form helper text */
.form-consent-text,
.form-privacy-text { color: var(--ink-muted) !important; }

/* Headings on light surfaces */
.panel-content-card h2,
.panel-booking-inner h2,
.thankyou-title,
.prose-inner h1,
.prose-inner h2,
.contact-card h2,
.contact-card h3,
.contact-detail-text strong { color: var(--ink-strong) !important; }

/* Teal accents on light surfaces — darken to AA */
.panel-content-card h3,
.panel-content-card a,
.panel-content-card ol li::before,
.contact-detail-text a:hover,
.breadcrumb a,
.section-eyebrow,
.pkg-link,
.pkg.feature .pkg-link,
.pkg-details summary { color: var(--teal-ink) !important; }
.section-eyebrow::before { background: var(--teal-ink) !important; }
.pkg-cat-badge { color: var(--teal-ink) !important; }

/* Eyebrow chip background needs more contrast for the teal text */
.section-eyebrow { background: rgba(0,127,114,0.10); }

/* Breadcrumb separator + meta dates */
.breadcrumb,
.breadcrumb-sep,
.prose-date { color: var(--ink-muted) !important; }

/* Red & gold accents on light surfaces */
.scope-icon.excludes { color: var(--red-ink) !important; }

/* --- Dark-surface readability tightening ----------------------------- */
/* Slate-mid (#5A6E8A) on dark navy is borderline; bump to slate-light  */
.panel-info-label,
.panel-meta-pill,
.howitworks-step p,
.footer-tagline,
.footer-col-links a,
.footer-disclaimer,
.footer-copy { color: #C7D3E5 !important; }
.footer-col-links a:hover { color: var(--teal-light) !important; }

/* Hero subtitle on dark — keep ≥ AA */
.hero .sub, .hero-sub { color: rgba(255,255,255,0.86) !important; }

/* Panel hero copy paragraph (used inline-styled var(--slate)) */
.panel-hero-copy p { color: #D5DDEC !important; }

/* --- Buttons: prevent invisible text edge cases --------------------- */
.btn-outline { color: #fff; }                  /* on dark hero default  */
.panel-hero-cta-2.btn-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,0.45) !important;
  background: transparent;
}
.panel-hero-cta-2.btn-outline:hover {
  background: rgba(255,255,255,0.10) !important;
  color: #fff !important;
  border-color: #fff !important;
}
.btn-ghost { color:#fff; border:1.5px solid rgba(255,255,255,0.35); }

/* Sticky bar on mobile — ensure both items are legible & tappable */
.sticky-bar {
  background: rgba(7,16,30,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.sticky-bar .btn-primary { color:#07101E; background:var(--teal); }
.sticky-bar-wa { color:#fff; }

/* Cookie banner */
#cookie-banner {
  background:#07101E !important;
  color:#fff !important;
  border-top:1px solid rgba(255,255,255,0.08);
}
#cookie-banner button {
  background: var(--teal); color:#07101E; border:0;
  padding:10px 18px; border-radius:10px; font-weight:600; cursor:pointer;
}

/* --- Image overlay safety: hero copy over photo --------------------- */
.hero-image::after,
.panel-hero-visual::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(7,16,30,0) 55%, rgba(7,16,30,0.35) 100%);
}
.hero-image, .panel-hero-visual { position: relative; }

/* --- Mobile breakpoint readability & layout fixes ------------------- */
@media (max-width: 720px) {
  .panel-hero-top { gap: 16px; }
  .panel-price-block { text-align: left; }
  .panel-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .panel-hero-ctas .btn-primary,
  .panel-hero-ctas .btn-outline,
  .panel-hero-cta,
  .panel-hero-cta-2 { width: 100%; justify-content: center; text-align: center; }
  .panel-info-grid { grid-template-columns: 1fr 1fr; }
  .panel-info-cell { padding: 12px 16px; }
  .panel-meta-pill { font-size: 12px; padding: 6px 12px; }
  .panel-title { font-size: clamp(28px, 7vw, 40px); line-height: 1.12; }
  .panel-hero-copy p { font-size: 15.5px; line-height: 1.6; }
  /* Make sure sticky bar never hides last form button */
  body { padding-bottom: 76px; }
  .sticky-bar { padding: 10px 12px; gap: 8px; }
  .sticky-bar .btn-primary,
  .sticky-bar-wa { flex:1; text-align:center; padding: 12px 14px; font-size: 14px; }
  /* Drawer text size */
  .drawer a { font-size: 16px; }
}

@media (max-width: 480px) {
  .panel-info-grid { grid-template-columns: 1fr; }
  .panel-info-cell { border-right: none !important;
                     border-bottom: 1px solid var(--navy-border); }
  .panel-info-cell:last-child { border-bottom: none; }
  .panel-booking-form { padding: 22px 16px; }
  .panel-content-card { padding: 22px 18px; }
  .form-row input, .form-row textarea, .form-row select {
    font-size: 16px; /* prevent iOS zoom on focus */
  }
}

/* --- Forms: input text contrast on light surfaces ------------------- */
.panel-booking-form input,
.panel-booking-form textarea,
.panel-booking-form select { color: var(--ink-strong); }
.panel-booking-form input::placeholder,
.panel-booking-form textarea::placeholder { color: #6B7A93; opacity: 1; }

/* --- Reduced motion: keep CTAs visible if animation aborted --------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --- v3 Mobile audit fixes (cookie banner overflow + breadcrumb tap targets) --- */
@media (max-width: 720px) {
  #cookie-banner {
    left: 12px !important;
    right: 12px !important;
    transform: none !important;
    max-width: none !important;
    white-space: normal !important;
    border-radius: 16px !important;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
    bottom: 84px;
  }
  #cookie-banner p { font-size: 13px; flex: 1 1 200px; }
  #cookie-banner button { flex: 0 0 auto; min-height: 40px; padding: 10px 18px; }
  /* Breadcrumb readability + tap padding */
  .breadcrumb { font-size: 13px; line-height: 1.6; }
  .breadcrumb a { padding: 6px 4px; display: inline-block; min-height: 32px; }
}
@media (max-width: 480px) {
  #cookie-banner { bottom: 88px; }
  #cookie-banner p { flex: 1 1 100%; }
  #cookie-banner button { width: 100%; }
}

/* v3 — footer link tap padding on mobile */
@media (max-width: 720px) {
  .footer-col-links a,
  .footer-copy a,
  .foot-bottom a,
  .contact-detail-text a { padding: 6px 2px; display: inline-block; min-height: 32px; }
  .nav-logo, .foot-brand a { padding: 6px 0; display: inline-block; }
}
