/* ==========================================================================
   HydraVitalize Wellness — Production Stylesheet
   Solid colors only. No gradients. Urbanist throughout.
   ========================================================================== */

:root {
  --blue: #004990;
  --blue-deep: #00366E;
  --blue-mid: #1A63A8;
  --blue-soft: #E8F1F8;
  --green: #4FA72D;
  --green-deep: #3D8623;
  --green-soft: #EEF7E9;
  /* Aliases keep existing class hooks working */
  --teal: var(--blue);
  --teal-deep: var(--blue-deep);
  --teal-mid: var(--blue-mid);
  --teal-soft: var(--blue-soft);
  --gold: var(--green);
  --gold-deep: var(--green-deep);
  --gold-soft: var(--green-soft);
  --ink: #12304A;
  --ink-muted: #5A6F80;
  --ink-light: #7A8FA0;
  --white: #FFFFFF;
  --off-white: #F7FAFC;
  --surface: #EEF4F8;
  --border: #D4E0EA;
  --danger: #8B2E2E;
  --danger-bg: #F8EEEE;
  --success: #2A6B4F;
  --shadow: 0 8px 32px rgba(0, 73, 144, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 73, 144, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --header-nav-h: 84px;
  --topbar-h: 42px;
  --header-h: calc(var(--topbar-h) + var(--header-nav-h));
  --font: 'Urbanist', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-deep); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 20px;
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Custom Cursor (desktop) ---- */
.cursor-dot,
.cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--teal);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, opacity 0.3s;
}
body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor .cursor-ring.is-hover {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
}
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
}
@media (hover: hover) and (min-width: 901px) {
  body.has-cursor { cursor: none; }
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor .btn,
  body.has-cursor input,
  body.has-cursor textarea,
  body.has-cursor select { cursor: none; }
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--ink-muted); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--ink-muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-accent:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--teal);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
}

.topbar {
  background: var(--blue);
  color: var(--white);
  height: var(--topbar-h);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
  transition: color 0.2s;
  line-height: 1.2;
}
.topbar-item:hover { color: #D8F0C8; }
.topbar-icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex: 0 0 16px;
  display: block;
  overflow: hidden;
  color: var(--green);
}
.topbar-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.topbar-address span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  background: var(--white);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-full {
  height: 64px;
  width: auto;
  max-width: min(300px, 55vw);
  object-fit: contain;
  object-position: left center;
}
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.logo-name span { color: var(--green); }
.logo-sub {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  margin-top: 2px;
}
.logo-img { height: 48px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link.active { color: var(--teal); background: var(--teal-soft); }
.nav-chevron { transition: transform 0.25s; }
.has-dropdown:hover .nav-chevron,
.has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 100;
}
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
}
.dropdown-link:hover,
.dropdown-link.active {
  background: var(--teal-soft);
  color: var(--teal);
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--teal-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 56, 64, 0.72);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 100px;
  color: var(--white);
}
.hero-brand {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.hero-brand span { color: var(--green); }
.hero-headline {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: #D8F0C8;
  max-width: 560px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero .btn-group .btn-outline-light:hover { color: var(--teal-deep); }

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 72px;
  background: var(--teal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; max-width: 720px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 600px; font-size: 1.0625rem; }

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-teal { background: var(--teal); color: var(--white); }
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal p { color: rgba(255, 255, 255, 0.85); }
.section-teal .eyebrow { color: var(--gold); }
.section-soft { background: var(--surface); }
.section-white { background: var(--white); }
.section-gold-soft { background: var(--gold-soft); }

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; }

/* ---- Split Layout ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.split:hover .split-media img { transform: scale(1.03); }
.split-content .lead { margin-bottom: 24px; }
.split-content h2 { margin-bottom: 16px; }

/* ---- Feature / Benefit lists ---- */
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}
.feature-item p { color: var(--ink); font-weight: 500; font-size: 0.9875rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--teal-mid);
}
.pillar-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.pillar h3 { margin-bottom: 10px; font-size: 1.125rem; }
.pillar p { font-size: 0.9375rem; }

/* ---- Service Cards (interactive containers) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.service-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { font-size: 0.9375rem; margin-bottom: 20px; flex: 1; }
.service-card .btn { align-self: flex-start; }

/* ---- Pricing Cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.price-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--green);
  background: var(--green-soft);
}
.price-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.price-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.price-card .formulation {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.price-card .benefits {
  font-size: 0.9375rem;
  color: var(--ink);
  flex: 1;
  margin-bottom: 20px;
}
.price-card .btn { margin-top: auto; }

.tier-block { margin-bottom: 64px; }
.tier-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tier-header h2 { margin: 0; }
.tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---- Accordion / Toggles ---- */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.accordion-item.is-open { border-color: var(--teal); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-trigger:hover { background: var(--teal-soft); }
.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel-inner {
  padding: 0 24px 24px;
  color: var(--ink-muted);
  font-size: 0.9875rem;
}
.accordion-panel-inner p + p { margin-top: 12px; }
.accordion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.875rem;
}
.accordion-meta strong { color: var(--teal); font-weight: 600; }

/* ---- Tabs ---- */
.tabs { margin-top: 8px; }
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.tab-btn {
  padding: 12px 20px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--teal); }
.tab-btn.is-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp 0.4s var(--ease); }

/* ---- Screening Grid ---- */
.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.screen-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.screen-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.screen-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.screen-icon svg { width: 24px; height: 24px; }
.screen-panel h3 { font-size: 1rem; margin-bottom: 8px; }
.screen-panel .target {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.screen-panel p { font-size: 0.875rem; }

/* ---- Timeline ---- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline-step {
  position: relative;
  padding: 0;
}
.timeline-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.timeline-step h3 { font-size: 1.125rem; margin-bottom: 10px; }
.timeline-step p { font-size: 0.9375rem; }
.timeline-step.is-expandable { cursor: pointer; }
.timeline-step .step-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.timeline-step.is-open .step-detail { max-height: 400px; }
.timeline-step .step-summary p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.timeline-step.is-open .step-summary p {
  display: block;
  -webkit-line-clamp: unset;
}

/* ---- Checklist ---- */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.checklist-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.125rem;
}
.checklist-block ul { display: flex; flex-direction: column; gap: 14px; }
.checklist-block li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}
.check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}
.checklist-block li strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ---- Time Blocks (Aftercare) ---- */
.time-blocks { display: flex; flex-direction: column; gap: 20px; }
.time-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 28px 28px 28px 32px;
}
.time-block.critical { border-left-color: var(--danger); }
.time-block.healing { border-left-color: var(--gold); }
.time-block.settling { border-left-color: var(--teal-mid); }
.time-block h3 { margin-bottom: 16px; }
.time-block ul { display: flex; flex-direction: column; gap: 12px; }
.time-block li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  padding-left: 16px;
  position: relative;
}
.time-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.time-block li strong { color: var(--ink); }

/* ---- Callout ---- */
.callout {
  background: var(--teal-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
}
.callout h2, .callout h3 { margin-bottom: 12px; }
.callout p { max-width: 720px; margin: 0 auto 24px; font-size: 1.0625rem; }
.callout-danger {
  background: var(--danger-bg);
  border: 2px solid var(--danger);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: left;
}
.callout-danger h3 { color: var(--danger); margin-bottom: 10px; }
.callout-danger p { color: var(--ink); margin: 0; }

.callout-teal {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.callout-teal h2, .callout-teal h3 { color: var(--white); margin-bottom: 12px; }
.callout-teal p { color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto 28px; }
.callout-teal .safety-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 32px;
}
.callout-teal .safety-list li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  padding-left: 20px;
  position: relative;
}
.callout-teal .safety-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---- Credentials ---- */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.cred-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.cred-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.cred-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.cred-item h4 { margin-bottom: 6px; font-size: 1rem; }
.cred-item p { font-size: 0.875rem; margin: 0; }

/* ---- Testimonials carousel ---- */
.section-testimonials {
  background: var(--surface);
  padding: 100px 0;
  overflow: hidden;
}
.testimonials-heading {
  color: var(--blue) !important;
  margin-bottom: 0;
}
.section-testimonials .section-header {
  margin-bottom: 48px;
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonial-marquee 45s linear infinite;
}
.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}
@keyframes testimonial-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px 28px;
  text-align: center;
  width: 340px;
  flex: 0 0 340px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote-icon {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  font-family: Georgia, 'Times New Roman', serif;
  opacity: 0.85;
}
.testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin: 8px 0 10px;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 14px;
  color: #E8B84A;
  font-size: 1.125rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--green-soft);
  padding: 80px 0;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-banner .eyebrow { color: var(--green-deep); }
.cta-banner h2 { color: var(--blue); margin-bottom: 14px; }
.cta-banner p { color: var(--ink-muted); }
.cta-banner-action { text-align: left; }

/* ---- Footer ---- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-mark { width: 40px; height: 40px; flex-shrink: 0; }
.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-logo-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--green);
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  max-width: 280px;
}
.footer-region {
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 600;
}
.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-links span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
  flex: 1 1 280px;
}
.footer-copy a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-copy a:hover { color: var(--green); }
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-left: auto;
}
.footer-bottom-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.footer-bottom-links a:hover { color: var(--green); }

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease), background 0.25s;
  z-index: 900;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--green); }

/* ---- Forms ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9875rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 79, 92, 0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.8125rem; color: var(--ink-light); margin-top: 16px; }
.form-consent {
  margin-top: 20px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
  cursor: pointer;
}
.consent-text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.consent-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-text a:hover { color: var(--green); }
.form-success {
  background: var(--teal-soft);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--teal-deep);
  font-weight: 500;
  margin-bottom: 24px;
}
.form-error {
  background: var(--danger-bg);
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--danger);
  font-weight: 500;
  margin-bottom: 24px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info .lead { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item h4 {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.contact-detail-item p,
.contact-detail-item a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ---- FAQ ---- */
.faq-search-wrap {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  z-index: 50;
  margin-bottom: 32px;
}
.faq-search {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%235A6B70' stroke-width='2'%3E%3Ccircle cx='9' cy='9' r='6'/%3E%3Cpath d='M14 14l4 4'/%3E%3C/svg%3E") 16px center no-repeat;
  box-shadow: var(--shadow);
  outline: none;
  transition: border-color 0.25s;
}
.faq-search:focus { border-color: var(--teal); }
.faq-category { margin-bottom: 48px; }
.faq-category h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.faq-item.hidden { display: none; }

/* ---- Why Choose ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 26px; height: 26px; }
.why-item h3 { margin-bottom: 10px; font-size: 1.125rem; }
.why-item p { font-size: 0.9375rem; }

/* ---- Legal pages ---- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.375rem;
  margin: 40px 0 16px;
}
.legal-content ul.legal-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul.legal-list li {
  font-size: 0.9875rem;
  color: var(--ink-muted);
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Focus & a11y */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Read-more panels */
[id^="more-"] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .screen-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .topbar-label { display: none; }
  .topbar-address span:last-child {
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-nav-h: 78px;
    --topbar-h: 40px;
    --header-h: calc(var(--topbar-h) + var(--header-nav-h));
  }
  .topbar-inner {
    justify-content: center;
    gap: 18px;
  }
  .topbar-address { display: none; }
  .topbar-item { font-size: 0.75rem; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 999;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
  .nav-link {
    padding: 14px 16px;
    font-size: 1.0625rem;
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s var(--ease);
  }
  .has-dropdown.is-open .dropdown-menu {
    max-height: 500px;
    padding: 4px 0 8px 12px;
  }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .split, .split-reverse { grid-template-columns: 1fr; gap: 36px; }
  .split-reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 16 / 10; max-height: 400px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-bottom-links { margin-left: 0; }
}

@media (max-width: 640px) {
  :root {
    --topbar-h: auto;
    --header-nav-h: 72px;
    --header-h: calc(64px + var(--header-nav-h));
  }
  .topbar {
    height: auto;
    padding: 8px 0;
  }
  .topbar-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: auto;
  }
  .topbar-item {
    font-size: 0.72rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .topbar-address {
    display: inline-flex;
  }
  .topbar-address span:last-child {
    max-width: 280px;
  }
  .section { padding: 72px 0; }
  .hero-content { padding: 56px 0 72px; }
  .services-grid,
  .pillars,
  .screen-grid,
  .cred-grid,
  .timeline,
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .callout, .callout-teal, .contact-form-wrap { padding: 28px 22px; }
  .logo-full { height: 52px; max-width: min(240px, 62vw); }
  .testimonial-card { width: 280px; flex-basis: 280px; padding: 28px 20px 24px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .page-hero { padding: calc(var(--header-h) + 48px) 0 48px; }
}
