/* ==========================================================================
   Hill Country Neurofeedback — Shared Stylesheet
   Design System: Navy + Gold medical practice
   Fonts: Inter (body) + Playfair Display (headings)
   ========================================================================== */

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #213555;
  --navy-dark: #172540;
  --navy-deeper: #0f1a2e;
  --navy-light: #2d4a75;
  --gold: #c9aa6f;
  --gold-light: #d9c08e;
  --gold-glow: rgba(201, 170, 111, 0.25);
  --gold-soft: rgba(201, 170, 111, 0.08);
  --beige: #f4efe8;
  --beige-warm: #f8f3ec;
  --blue-mid: #4f709c;
  --blue-soft: #6b8bb5;
  --tan: #d8c4b6;
  --white: #ffffff;
  --off-white: #fafaf8;
  --text-body: #3d4f65;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.55);
  --shadow-sm: 0 2px 8px rgba(33,53,85,0.06);
  --shadow-md: 0 8px 30px rgba(33,53,85,0.08);
  --shadow-lg: 0 20px 60px rgba(33,53,85,0.12);
  --radius: 16px;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ========== ANIMATIONS ========== */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulse { 0%,100%{opacity:.15;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
@keyframes eegScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes waveShift { 0%{transform:translateX(0)} 100%{transform:translateX(-25%)} }
@keyframes scan { 0%{top:-2px;opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{top:calc(100% - 2px);opacity:0} }


/* ==========================================================================
   SITE NAVIGATION
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,170,111,0.1);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

body {
  padding-top: var(--nav-height);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.15;
}

.nav-logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tan);
  opacity: 0.7;
}

/* Main nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active {
  color: var(--gold);
  background: rgba(201,170,111,0.08);
}

.nav-links > li > button .nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s;
}

/* Dropdown menus */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy-dark);
  border: 1px solid rgba(201,170,111,0.1);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  list-style: none;
}

.nav-links > li:hover > .nav-dropdown,
.nav-links > li:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links > li:hover > button .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav-dropdown li a:hover {
  background: rgba(201,170,111,0.08);
  color: var(--gold);
  padding-left: 24px;
}

/* Nav CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,170,111,0.3);
}

/* Hamburger menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================================
   PAGE HEADER BANNER (inner pages)
   ========================================================================== */

.page-header {
  background: linear-gradient(170deg, var(--navy-deeper) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 60px 30px 50px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,170,111,0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.page-header h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-header-sub {
  font-size: 17px;
  color: var(--tan);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}


/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.breadcrumbs li a {
  color: var(--tan);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs li a:hover {
  color: var(--gold);
}

.breadcrumbs .bc-sep {
  font-size: 10px;
  opacity: 0.5;
}

.breadcrumbs li:last-child {
  color: var(--gold);
  font-weight: 600;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

/* When nav is present, reduce hero height */
.site-nav + .hero {
  min-height: calc(100vh - var(--nav-height));
}

.hero-eeg-strip {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 200px;
  transform: translateY(-50%);
  opacity: 0.06;
  animation: eegScroll 20s linear infinite;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,170,111,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}

.neural-node {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 5s ease-in-out infinite;
}
.neural-node::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,170,111,0.2) 0%, transparent 70%);
}
.nn1{width:5px;height:5px;top:12%;left:8%;animation-delay:0s}
.nn2{width:4px;height:4px;top:25%;left:75%;animation-delay:1.2s}
.nn3{width:6px;height:6px;top:65%;left:85%;animation-delay:0.6s}
.nn4{width:3px;height:3px;top:80%;left:20%;animation-delay:2s}
.nn5{width:5px;height:5px;top:40%;left:45%;animation-delay:1.8s}
.nn6{width:4px;height:4px;top:15%;left:55%;animation-delay:3s}
.nn7{width:3px;height:3px;top:70%;left:55%;animation-delay:0.4s}
.nn8{width:5px;height:5px;top:50%;left:15%;animation-delay:2.5s}
.nn9{width:4px;height:4px;top:88%;left:70%;animation-delay:1s}
.nn10{width:6px;height:6px;top:8%;left:90%;animation-delay:3.5s}
.nn11{width:3px;height:3px;top:35%;left:30%;animation-delay:0.8s}
.nn12{width:4px;height:4px;top:58%;left:65%;animation-delay:2.2s}

.hero-brain-illustration {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.04;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 60px 30px;
  animation: fadeUp 1s ease-out;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(201,170,111,0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(201,170,111,0.04);
  backdrop-filter: blur(8px);
}

.hero-tag svg { opacity: 0.7; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--tan);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-sub-small {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 42px;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.2px;
}

.btn svg { flex-shrink: 0; }

.btn-gold{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.btn-gold:hover{background:var(--gold-light);border-color:var(--gold-light);transform:translateY(-3px);box-shadow:0 12px 35px rgba(201,170,111,0.35)}

.btn-white-outline{background:transparent;color:var(--white);border-color:rgba(255,255,255,0.3)}
.btn-white-outline:hover{border-color:#fff;background:rgba(255,255,255,0.06);transform:translateY(-3px)}

.btn-navy{background:var(--navy);color:var(--white);border-color:var(--navy)}
.btn-navy:hover{background:var(--navy-dark);transform:translateY(-3px);box-shadow:0 12px 35px rgba(33,53,85,0.3)}

.btn-navy-outline{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-navy-outline:hover{background:var(--navy);color:var(--white);transform:translateY(-3px)}

.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 20px 44px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}


/* ==========================================================================
   STAT BAR
   ========================================================================== */

.stat-bar {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,170,111,0.1);
  padding: 40px 30px;
}

.stat-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--tan);
  font-weight: 500;
  letter-spacing: 0.5px;
}


/* ==========================================================================
   WAVE DIVIDERS
   ========================================================================== */

.wave-div { position: relative; width: 100%; line-height: 0; margin-top: -1px; }
.wave-div svg { width: 100%; height: 70px; display: block; }
.wave-div-flip { transform: scaleY(-1); margin-bottom: -1px; margin-top: 0; }


/* ==========================================================================
   SECTIONS (general)
   ========================================================================== */

.sec { position: relative; padding: 100px 30px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }
.narrow { max-width: 780px; margin: 0 auto; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sec-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}

.sec-title-white { color: var(--white); }

.sec-sub {
  font-size: 18px;
  line-height: 1.75;
  max-width: 640px;
  font-weight: 400;
}

.sec-sub-muted { color: var(--text-body); }
.sec-sub-light { color: var(--tan); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }


/* ==========================================================================
   IMAGINE SECTION
   ========================================================================== */

.imagine-sec { background: var(--off-white); }

.imagine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 50px;
}

.imagine-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
  line-height: 1.3;
}

.imagine-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}

.imagine-text p:last-of-type { margin-bottom: 0; }
.imagine-text strong { color: var(--navy); }


/* ==========================================================================
   EEG DISPLAY
   ========================================================================== */

.eeg-display {
  position: relative;
  background: linear-gradient(145deg, var(--navy-deeper), var(--navy));
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
}

.eeg-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,170,111,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,170,111,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.eeg-scanline {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  animation: scan 4s ease-in-out infinite;
  z-index: 2;
}

.eeg-display svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.eeg-channel { fill: none; stroke-width: 2; stroke-linecap: round; }
.eeg-ch1 { stroke: var(--gold); }
.eeg-ch2 { stroke: var(--blue-soft); opacity: 0.7; }
.eeg-ch3 { stroke: var(--tan); opacity: 0.5; }
.eeg-ch4 { stroke: var(--gold-light); opacity: 0.6; }
.eeg-ch5 { stroke: #7fa8d4; opacity: 0.4; }

.eeg-label {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  z-index: 3;
}


/* ==========================================================================
   WHAT IS SECTION
   ========================================================================== */

.what-sec { background: var(--white); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 50px;
}

.brain-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  width: 100%;
  max-width: 460px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(33,53,85,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(33,53,85,0.18);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-main {
  grid-column: 1 / -1;
  height: 260px;
  border-radius: 20px;
}

.photo-small { height: 180px; }

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(transparent, rgba(33,53,85,0.7));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige) 0%, var(--tan) 50%, var(--gold-soft) 100%);
  color: var(--navy);
  text-align: center;
  padding: 20px;
}

.photo-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  opacity: 0.5;
}

.photo-placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}

.what-copy p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}

.callout-box {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 12px 12px 0;
}

.callout-box p {
  font-size: 16px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 0;
}

.callout-box cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: var(--blue-mid);
}


/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how-sec { background: var(--beige-warm); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-icon-wrap {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  background: linear-gradient(145deg, var(--navy-deeper), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(33,53,85,0.2);
}

.step-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold);
  opacity: 0.25;
}

.step-icon-wrap svg { width: 38px; height: 38px; }

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

.step-highlight {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: var(--gold-soft);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}


/* ==========================================================================
   CONDITIONS
   ========================================================================== */

.conditions-sec {
  background: linear-gradient(175deg, var(--navy-deeper) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.conditions-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,170,111,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

.conditions-sec .container { position: relative; z-index: 1; }

.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.cond-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cond-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cond-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,170,111,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

.cond-card:hover::before { opacity: 1; }

.cond-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cond-icon {
  width: 40px; height: 40px;
  background: rgba(201,170,111,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cond-icon svg { width: 20px; height: 20px; }

.cond-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

.cond-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.cond-card li {
  font-size: 14px;
  color: var(--text-light);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.cond-card li:last-child { border-bottom: none; }

.cond-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}


/* ==========================================================================
   LOCATIONS
   ========================================================================== */

.loc-sec { background: var(--off-white); }

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.loc-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.loc-header {
  background: linear-gradient(145deg, var(--navy-deeper), var(--navy));
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.loc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,170,111,0.06) 1px, transparent 0);
  background-size: 20px 20px;
}

.loc-header > * { position: relative; }
.loc-header svg { margin-bottom: 10px; }

.loc-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.loc-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(201,170,111,0.3);
  color: var(--gold);
}

.loc-body {
  padding: 24px;
}

.loc-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}


/* ==========================================================================
   WHY US
   ========================================================================== */

.why-sec { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.why-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--beige-warm);
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-ico {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.why-ico svg { width: 26px; height: 26px; }

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}


/* ==========================================================================
   PRICING CTA
   ========================================================================== */

.pricing-sec {
  background: linear-gradient(170deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,170,111,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.pricing-sec .container { position: relative; z-index: 1; }

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}

.price-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.price-card.highlight {
  border-color: var(--gold);
  background: rgba(201,170,111,0.06);
}

.price-card.highlight .price-amount { font-size: 60px; }

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.price-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.price-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--tan);
  margin-bottom: 28px;
}

.price-card .btn { width: 100%; }


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-sec { background: var(--beige-warm); }

.faq-list { margin-top: 50px; }

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color 0.3s;
  gap: 16px;
}

.faq-q:hover { color: var(--blue-mid); }

.faq-chev {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s ease;
}

.faq-item.open .faq-chev { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-sec {
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.final-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(33,53,85,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

.final-sec .container { position: relative; z-index: 1; }
.final-sec .sec-title { color: var(--navy); }

.final-sub {
  font-size: 18px;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}


/* ==========================================================================
   SIDEBAR LAYOUT (content pages)
   ========================================================================== */

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px 80px;
  align-items: start;
}

.content-main {
  min-width: 0;
}

.content-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.content-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.content-main h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 10px;
}

.content-main p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}

.content-main ul,
.content-main ol {
  margin: 0 0 20px 20px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.85;
}

.content-main li {
  margin-bottom: 8px;
}

.content-main img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.content-main blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
}

/* Sidebar */
.content-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(33,53,85,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card-navy {
  background: linear-gradient(145deg, var(--navy-deeper), var(--navy));
  border: none;
  color: var(--white);
}

.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.sidebar-card-navy h4 {
  color: var(--gold);
}

.sidebar-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

.sidebar-card-navy p {
  color: var(--tan);
}

.sidebar-card .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
}

.sidebar-divider {
  height: 1px;
  background: rgba(33,53,85,0.08);
  margin: 16px 0;
}

.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.sidebar-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-contact-item a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-contact-item a:hover {
  color: var(--gold);
}


/* ==========================================================================
   PRICING TABLE
   ========================================================================== */

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  text-align: left;
}

.pricing-table thead th:last-child {
  text-align: right;
}

.pricing-table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(33,53,85,0.06);
  background: var(--white);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover td {
  background: var(--beige-warm);
}

.pricing-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
}

.pricing-table .table-highlight td {
  background: var(--gold-soft);
  font-weight: 600;
}

.pricing-table .table-highlight td:last-child {
  color: var(--gold);
  font-size: 17px;
}

/* Generic table styles */
.styled-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
}

.styled-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
}

.styled-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(33,53,85,0.06);
  color: var(--text-body);
  background: var(--white);
}

.styled-table tbody tr:last-child td { border-bottom: none; }
.styled-table tbody tr:hover td { background: var(--beige-warm); }


/* ==========================================================================
   BLOG / ARTICLE STYLES
   ========================================================================== */

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-date {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-date svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.article-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

/* Blog listing grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 24px 20px;
}

.blog-card-body .article-tag {
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 12px;
}

.blog-card-footer {
  font-size: 13px;
  color: var(--blue-mid);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-footer svg {
  width: 14px;
  height: 14px;
}

/* Related articles */
.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(33,53,85,0.08);
}

.related-articles h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}


/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
  background: var(--navy-deeper);
  padding: 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--tan);
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--tan);
  opacity: 0.7;
}

.footer-contact-list li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer-contact-list li a {
  color: var(--tan);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list li a:hover {
  color: var(--gold);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 14px;
  color: var(--tan);
  opacity: 0.7;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.footer-links li a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-cta-col .btn {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px 20px;
  font-size: 14px;
}

.footer-cta-col p {
  font-size: 13px;
  color: var(--tan);
  opacity: 0.5;
  text-align: center;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(201,170,111,0.08);
  padding: 20px 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--tan);
  opacity: 0.4;
}

.footer-bottom a {
  color: var(--tan);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}


/* ==========================================================================
   PAGE HERO (inner pages — full-width navy gradient hero)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: 140px 24px 80px;
  background: linear-gradient(170deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--navy-light) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,170,111,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 1s ease-out;
}

.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-hero .breadcrumb a {
  color: var(--tan);
  text-decoration: none;
  transition: color 0.3s;
}

.page-hero .breadcrumb a:hover { color: var(--gold); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.15;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero h1 span { color: var(--gold); }

.page-hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--tan);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.page-hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   INNER PAGE SECTIONS
   ========================================================================== */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--beige);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}


/* ==========================================================================
   SECTION HEADERS (inner pages)
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(201,170,111,0.15);
}

.section-navy .section-label {
  background: rgba(201,170,111,0.1);
  border-color: rgba(201,170,111,0.2);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2 em {
  color: var(--gold);
  font-style: italic;
}

.section-navy .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
}

.section-navy .section-header p {
  color: var(--tan);
}


/* ==========================================================================
   CONTENT SECTIONS (brain-mapping, what-to-expect, pricing, faq style)
   ========================================================================== */

.content-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}

.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 700;
}

.content-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Alternating section backgrounds */
.bg-beige { background: var(--beige); }
.bg-white { background: var(--white); }
.bg-warm { background: var(--beige-warm); }


/* ==========================================================================
   ARTICLE CONTENT (how-it-works style)
   ========================================================================== */

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.article-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.section-navy .article-content h2 {
  color: var(--white);
}

.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
}

.section-navy .article-content h3 {
  color: var(--gold-light);
}

.article-content p {
  color: var(--text-body);
  font-size: 16.5px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.section-navy .article-content p {
  color: var(--tan);
}

.article-content strong {
  color: var(--navy);
  font-weight: 600;
}

.section-navy .article-content strong {
  color: var(--white);
}

.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.article-content a:hover {
  color: var(--gold-light);
}


/* ==========================================================================
   HIGHLIGHT BOX (how-it-works callout)
   ========================================================================== */

.highlight-box {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 32px 0;
}

.highlight-box p {
  color: var(--navy) !important;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.highlight-box p:not(:last-child) {
  margin-bottom: 12px;
}

.section-navy .highlight-box {
  background: rgba(201, 170, 111, 0.1);
  border-left-color: var(--gold);
}

.section-navy .highlight-box p {
  color: var(--white) !important;
}


/* ==========================================================================
   INLINE CTA (how-it-works)
   ========================================================================== */

.inline-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0;
}

.inline-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0 !important;
}

.inline-cta p {
  color: var(--tan) !important;
  font-size: 16px;
  margin-bottom: 24px;
}

.inline-cta .btn { margin-top: 0; }


/* ==========================================================================
   BIO SECTION (about page)
   ========================================================================== */

.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.bio-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--beige) 0%, var(--tan) 100%);
  box-shadow: var(--shadow-lg);
}

.bio-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 14px;
  gap: 12px;
}

.bio-photo-placeholder svg { opacity: 0.3; }
.bio-photo-placeholder span { opacity: 0.5; font-weight: 500; }

.bio-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.bio-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.bio-content p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}


/* ==========================================================================
   CREDENTIALS LIST (about page)
   ========================================================================== */

.credentials-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 28px 0;
  padding: 0;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
}

.credentials-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ==========================================================================
   APPROACH SECTION (about page)
   ========================================================================== */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(33,53,85,0.06);
  transition: transform 0.35s, box-shadow 0.35s;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.approach-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.approach-icon svg { color: var(--gold); }

.approach-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.approach-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
}


/* ==========================================================================
   WHY CONTENT (about page navy section)
   ========================================================================== */

.why-content {
  max-width: 760px;
  margin: 0 auto;
}

.why-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.why-content p {
  color: var(--tan);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.why-content p:last-child { margin-bottom: 0; }


/* ==========================================================================
   CTA BANNER (about page bottom CTA)
   ========================================================================== */

.cta-banner {
  text-align: center;
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,170,111,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-banner p {
  color: var(--tan);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-price {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}


/* ==========================================================================
   CTA SECTION (brain-mapping, what-to-expect, pricing, faq style)
   ========================================================================== */

.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(170deg, var(--navy-deeper) 0%, var(--navy) 60%, var(--navy-light) 100%);
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================================
   PILL BUTTONS (inner page CTA style — rounded)
   ========================================================================== */

.cta-section .btn-gold,
.cta-buttons .btn-gold,
.page-links + .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy-deeper);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,170,111,0.35);
  border: none;
}

.cta-section .btn-gold:hover,
.cta-buttons .btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,170,111,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,170,111,0.08);
}


/* ==========================================================================
   PAGE LINKS (internal nav footer on inner pages)
   ========================================================================== */

.page-links {
  text-align: center;
  padding: 40px 24px;
  background: var(--beige-warm);
}

.page-links a {
  display: inline-block;
  margin: 6px 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.page-links a:hover { color: var(--gold); }


/* ==========================================================================
   STEP CARDS (brain-mapping vertical, how-it-works grid)
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.steps-grid .step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(33,53,85,0.06);
  border-left: 4px solid var(--gold);
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
  text-align: left;
}

.steps-grid .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bg-beige .step-card { background: var(--white); }
.bg-white .step-card { background: var(--beige-warm); }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.steps-grid .step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.steps-grid .step-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
}

.steps-grid .step-card p:last-child { margin-bottom: 0; }


/* ==========================================================================
   WHO LIST (brain-mapping)
   ========================================================================== */

.who-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.who-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
}


/* ==========================================================================
   REVEALS GRID (brain-mapping — what your map reveals)
   ========================================================================== */

.reveals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.reveal-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.reveal-item .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.reveal-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.reveal-item p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0;
}


/* ==========================================================================
   FAQ LIST — inline (brain-mapping, content-section context)
   ========================================================================== */

.content-section .faq-list {
  margin: 28px 0;
}

.content-section .faq-item {
  border-bottom: 1px solid rgba(33,53,85,0.1);
  padding: 20px 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
}

.content-section .faq-item:last-child { border-bottom: none; }

.content-section .faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
  cursor: default;
}

.content-section .faq-item p {
  font-size: 1rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.8;
}


/* ==========================================================================
   TIMELINE (what-to-expect)
   ========================================================================== */

.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.timeline-item h3 {
  margin-top: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.timeline-item p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.timeline-item p:last-child { margin-bottom: 0; }


/* ==========================================================================
   PREP CHECKLIST (what-to-expect)
   ========================================================================== */

.prep-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.prep-list li {
  padding: 10px 0 10px 40px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.prep-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-glow);
}


/* ==========================================================================
   FEARS GRID (what-to-expect)
   ========================================================================== */

.fears-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.fear-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}

.fear-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 600;
}

.fear-card p {
  font-size: 1rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.8;
}


/* ==========================================================================
   PROGRESS CARDS (what-to-expect)
   ========================================================================== */

.progress-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.progress-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--beige-warm);
  border-radius: var(--radius);
}

.progress-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.progress-card .label {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-top: 4px;
}


/* ==========================================================================
   CONDITIONS INTRO (conditions page)
   ========================================================================== */

.conditions-intro {
  background: var(--beige-warm);
  padding: 70px 30px 80px;
}

.conditions-intro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conditions-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}

.conditions-intro h1 em {
  color: var(--gold);
  font-style: italic;
}

.conditions-intro .intro-text {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}


/* ==========================================================================
   CONDITIONS GRID SECTION (conditions page — navy area)
   ========================================================================== */

.conditions-grid-section {
  background: linear-gradient(170deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 80px 30px 100px;
  position: relative;
  overflow: hidden;
}

.conditions-grid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,170,111,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.conditions-grid-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.conditions-grid-section .section-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.conditions-grid-section .section-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 50px;
  line-height: 1.3;
}

.conditions-grid-section .section-heading em {
  color: var(--gold);
  font-style: italic;
}


/* ==========================================================================
   CONDITION CARDS (conditions page)
   ========================================================================== */

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.condition-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,170,111,0.12);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.condition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s;
}

.condition-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,170,111,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.condition-card:hover::before { opacity: 1; }

.condition-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(201,170,111,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.condition-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.condition-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.condition-card .card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
  flex-grow: 1;
}

.condition-card .sub-conditions {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  padding: 0;
}

.condition-card .sub-conditions li {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201,170,111,0.08);
  border: 1px solid rgba(201,170,111,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.condition-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
  margin-top: auto;
}

.condition-card .card-link:hover {
  gap: 12px;
  color: var(--gold-light);
}

.condition-card .card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}

.condition-card:hover .card-link svg {
  transform: translateX(3px);
}


/* ==========================================================================
   NOT SURE SECTION (conditions page)
   ========================================================================== */

.not-sure-section {
  background: var(--beige-warm);
  padding: 80px 30px;
}

.not-sure-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.not-sure-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.not-sure-inner h2 em {
  color: var(--gold);
  font-style: italic;
}

.not-sure-inner p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}


/* ==========================================================================
   RESEARCH CALLOUT (conditions page)
   ========================================================================== */

.research-callout {
  background: var(--navy-dark);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

.research-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,170,111,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.research-callout-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.research-stats {
  display: flex;
  gap: 50px;
  flex-shrink: 0;
}

.research-stat { text-align: center; }

.research-stat .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.research-stat .stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--tan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.research-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.research-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}


/* ==========================================================================
   BOTTOM CTA (conditions page)
   ========================================================================== */

.bottom-cta {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-deeper) 100%);
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,170,111,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.bottom-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.bottom-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.bottom-cta h2 em {
  color: var(--gold);
  font-style: italic;
}

.bottom-cta p {
  font-size: 17px;
  color: var(--tan);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}


/* ==========================================================================
   PRICING CARDS (pricing page)
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 4px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-top: 4px solid var(--navy);
  background: var(--navy);
  color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-note {
  color: var(--white);
}

.pricing-card.featured p { color: var(--text-light); }
.pricing-card.featured .price { color: var(--gold); }

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0 4px;
  line-height: 1;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
}

.pricing-card.featured ul li { color: var(--text-light); }

.pricing-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
}

.pricing-card .btn-card {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.pricing-card .btn-card.btn-gold-card {
  background: var(--gold);
  color: var(--navy-deeper);
  box-shadow: 0 4px 20px rgba(201,170,111,0.35);
}

.pricing-card .btn-card.btn-gold-card:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.pricing-card .btn-card.btn-outline-card {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.pricing-card .btn-card.btn-outline-card:hover {
  background: var(--gold-soft);
}

.bg-beige .pricing-card:not(.featured) { background: var(--white); }


/* ==========================================================================
   INFO BOX (pricing page)
   ========================================================================== */

.info-box {
  background: var(--beige-warm);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 24px 0;
  border-left: 4px solid var(--gold);
}

.info-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.info-box p {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.8;
}

.info-box p:last-child { margin-bottom: 0; }


/* ==========================================================================
   COMPARISON TABLE (pricing page)
   ========================================================================== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(33,53,85,0.08);
}

.comparison-table tbody tr:nth-child(even) td {
  background: var(--beige-warm);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight-row td {
  background: var(--gold-soft);
  font-weight: 600;
  color: var(--navy);
}


/* ==========================================================================
   FAQ CATEGORIES & ACCORDION (faq page)
   ========================================================================== */

.faq-category {
  margin-bottom: 48px;
}

.faq-category:last-child { margin-bottom: 0; }

.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.accordion-item {
  border-bottom: 1px solid rgba(33,53,85,0.1);
}

.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  transition: color 0.2s;
}

.accordion-trigger:hover { color: var(--gold); }

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-content-inner {
  padding: 0 0 20px;
}

.accordion-content-inner p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

.accordion-content-inner a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.accordion-content-inner a:hover { text-decoration: underline; }


/* ==========================================================================
   CONDITIONS GRID LIST (how-it-works — bulleted list)
   ========================================================================== */

.article-content .conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  margin: 30px 0;
  list-style: none;
  padding: 0;
}

.article-content .conditions-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
  padding: 8px 0;
}

.article-content .conditions-grid li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ==========================================================================
   INNER PAGE RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .research-callout-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .research-stats {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bio-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .credentials-list {
    grid-template-columns: 1fr;
  }
  .article-content .conditions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 60px; }
  .content-section { padding: 48px 20px; }
  .cta-section { padding: 60px 20px; }
  .fears-grid { grid-template-columns: 1fr; }
  .progress-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 10px 12px; }
  .step-card { padding: 24px; }
  .reveals-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .page-hero { padding: 120px 20px 60px; }
  .section { padding: 60px 0; }
  .container-narrow { padding: 0 20px; }
  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .condition-card {
    padding: 28px 22px 26px;
  }
  .research-stats {
    gap: 30px;
  }
  .research-stat .stat-number {
    font-size: 36px;
  }
  .conditions-intro {
    padding: 50px 20px 60px;
  }
  .conditions-grid-section {
    padding: 60px 20px 70px;
  }
  .highlight-box { padding: 22px 20px; }
  .inline-cta { padding: 32px 24px; }
  .bio-photo { max-width: 260px; }
  .article-content .conditions-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

a { color: var(--blue-mid); transition: color 0.2s; }
a:hover { color: var(--gold); }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr 280px; gap: 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .sec { padding: 70px 20px; }
  .imagine-grid, .what-grid { grid-template-columns: 1fr; gap: 40px; }
  .eeg-display { max-width: 380px; margin: 0 auto; }
  .brain-viz { max-width: 400px; margin: 0 auto; }
  .photo-main { height: 200px; }
  .photo-small { height: 150px; }
  .steps-row, .loc-grid, .why-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .steps-row { margin-top: 40px; }
  .cond-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero-brain-illustration { display: none; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item .stat-number { font-size: 28px; }

  /* Content layout stacks */
  .content-layout {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
  }

  .content-sidebar {
    position: static;
  }

  /* Blog grid stacks */
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* Footer stacks */
  .footer-main { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-contact-list { align-items: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-cta-col .btn { max-width: 320px; margin-left: auto; margin-right: auto; }

  /* Navigation becomes mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--navy-dark);
    padding: 20px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
    border-top: 1px solid rgba(201,170,111,0.1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li > a,
  .nav-links > li > button {
    padding: 14px 16px;
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0,0,0,0.15);
  }

  .nav-dropdown.open {
    max-height: 500px;
  }

  .nav-dropdown li a {
    padding: 12px 20px 12px 32px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Page header */
  .page-header { padding: 40px 20px 36px; }

  /* Table responsive */
  .pricing-table,
  .styled-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .btn { padding: 16px 24px; font-size: 15px; }
  .btn-row { flex-direction: column; align-items: center; }
  .article-hero-img { height: 200px; }
}
