/* ──────────────────────────────────────────────
   Inner Page Styles — Why MedX, Our Model, etc.
   Builds on styles.css with page-specific blocks.
   ────────────────────────────────────────────── */

/* Active nav tab highlight */
.nav-links > li > a.active-tab { color: var(--gold); }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 100px 5% 70px;
  overflow: hidden;
}
.page-hero #networkCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: rgba(255,255,255,0.85); }
.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1.5rem;
}
.page-hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.page-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  line-height: 1.7;
  margin: 0;
}
.page-sub em { color: var(--gold); font-style: normal; font-weight: 600; }

/* ── Content Sections ── */
.content-section { padding: 80px 5%; background: var(--white); }
.content-section.alt-bg { background: var(--offwhite); }
.content-section .section-inner { max-width: 1200px; margin: 0 auto; }

.centered-header { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
.centered-header .section-sub { margin: 1rem auto 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col .col-copy .section-title { margin: 0.6rem 0 1.5rem; }
.two-col .col-copy p { color: var(--gray); line-height: 1.75; margin-bottom: 1.1rem; font-size: 1.02rem; }
.two-col .col-copy p strong { color: var(--navy); }

/* ── Stat stack (right column on Story) ── */
.stat-stack { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  padding: 1.8rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(10,34,64,0.05);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-lbl { font-size: 0.95rem; color: var(--navy); line-height: 1.45; }

/* ── Leadership grid ── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.leader-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.leader-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -10px rgba(10,34,64,0.18);
  border-color: rgba(212,160,23,0.4);
}
.leader-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.leader-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 0.35rem;
}
.leader-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.leader-bio {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ── AI Lifecycle Flow ── */
.ai-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}
.ai-flow-stage {
  flex: 1;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.ai-flow-stage:hover {
  transform: translateY(-2px);
  border-color: rgba(212,160,23,0.5);
  box-shadow: 0 10px 30px -10px rgba(10,34,64,0.15);
}
.ai-stage-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.ai-flow-stage h4 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.ai-flow-stage p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0 0 0.9rem;
}
.ai-chip {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
}
.ai-flow-arrow {
  display: flex;
  align-items: center;
  color: rgba(212,160,23,0.4);
  font-size: 1.4rem;
  font-weight: 300;
}
.honest-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray);
  font-style: italic;
  max-width: 740px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
  line-height: 1.7;
}
/* ── AI Section Blocks (Today + Roadmap) ── */
.ai-section-block {
  margin: 3rem 0 2rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--gray-light);
}
.ai-section-block:first-of-type { border-top: none; padding-top: 0; }
.ai-section-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.ai-section-label h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.ai-section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}
.ai-section-tag.live {
  background: rgba(34,197,94,0.12);
  color: #047857;
  border: 1px solid rgba(4,120,87,0.25);
}
.ai-section-tag.roadmap {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(212,160,23,0.3);
}
.ai-section-intro {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 2rem;
}

.ai-today-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ai-today-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 3px solid #047857;
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ai-today-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(10,34,64,0.15);
}
.ai-today-card .ai-stage-icon {
  background: rgba(34,197,94,0.1);
  margin-bottom: 1rem;
}
.ai-today-card .ai-stage-icon svg path,
.ai-today-card .ai-stage-icon svg rect,
.ai-today-card .ai-stage-icon svg circle,
.ai-today-card .ai-stage-icon svg polyline { stroke: #047857; }
.ai-today-card .ai-stage-icon svg circle[fill="#D4A017"] { fill: #047857; }
.ai-today-card h4 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.ai-today-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .ai-today-grid { grid-template-columns: 1fr; }
  .ai-section-label { flex-wrap: wrap; }
}

/* ── Differentiator grid ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.diff-card {
  background: var(--white);
  padding: 2rem 2.2rem;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  position: relative;
}
.diff-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.diff-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.diff-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ── Concept diagram (Our Model page) ── */
.concept-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}
.concept-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
}
.concept-ring-outer {
  inset: 0;
  background: rgba(212,160,23,0.05);
  border: 2px dashed rgba(212,160,23,0.35);
}
.concept-ring-mid {
  inset: 14%;
  background: rgba(212,160,23,0.1);
  border: 2px solid rgba(212,160,23,0.5);
}
.concept-ring-inner {
  inset: 33%;
  background: var(--navy);
  border: 2px solid var(--gold);
  padding-top: 0;
  align-items: center;
}
.concept-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}
.concept-ring-inner .concept-label { color: var(--gold); }
.diagram-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 1rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Model flow (3 rows, alternating) ── */
.model-flow { display: flex; flex-direction: column; gap: 3.5rem; margin-top: 2rem; }
.model-flow-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: center;
}
.model-flow-row.reverse { grid-template-columns: 1fr 1.6fr; }
.model-flow-row.reverse .model-step { order: 2; }
.model-flow-row.reverse .model-step-visual { order: 1; }

.model-step-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.model-step h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.25;
}
.model-step > p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.model-step-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.model-step-list li {
  font-size: 0.95rem;
  color: var(--navy);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.model-step-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.model-step-visual {
  background: var(--offwhite);
  border-radius: 16px;
  padding: 2rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,160,23,0.2);
}
.content-section.alt-bg .model-step-visual {
  background: var(--white);
}

/* ── Compare table ── */
.compare-table {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  margin-top: 1rem;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.compare-header {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
}
.compare-row.compare-header > div:nth-child(3) { color: var(--gold); }
.compare-metric { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.compare-bad { color: var(--gray); font-size: 0.92rem; line-height: 1.5; }
.compare-good { color: var(--navy); font-size: 0.92rem; font-weight: 500; line-height: 1.5; }
.compare-row:not(.compare-header):hover { background: rgba(212,160,23,0.04); }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 5%;
}
.cta-band .section-title.light { color: var(--white); }
.cta-band .section-sub.light { color: rgba(255,255,255,0.75); max-width: 600px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col, .model-flow-row, .model-flow-row.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .model-flow-row.reverse .model-step { order: 1; }
  .model-flow-row.reverse .model-step-visual { order: 2; }
  .leadership-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .ai-flow { flex-direction: column; }
  .ai-flow-arrow { transform: rotate(90deg); justify-content: center; }
  .compare-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1rem; }
  .compare-header { display: none; }
  .compare-bad::before { content: 'Traditional: '; font-weight: 600; color: var(--navy); }
  .compare-good::before { content: 'MedX: '; font-weight: 600; color: var(--gold); }
  .page-hero { padding: 60px 5% 50px; }
}

/* ================================================
   OUR STORY PAGE
   ================================================ */

.narrative-block {
  max-width: 860px;
  margin: 0 auto;
}
.narrative-chapter {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.chapter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  flex-shrink: 0;
}
.chapter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.narrative-prose p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.narrative-prose p strong {
  color: var(--navy);
  background: linear-gradient(to top, rgba(212,160,23,0.2) 0%, rgba(212,160,23,0.2) 35%, transparent 35%);
  padding: 0 0.1rem;
}

/* Founder cards with photo placeholders */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.founder-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.founder-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -15px rgba(10,34,64,0.15);
}
.founder-photo.placeholder {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(212,160,23,0.5);
  position: relative;
}
.photo-note {
  position: absolute;
  bottom: -1.8rem;
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.founder-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 2rem 0 0.3rem;
}
.founder-role {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--navy);
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}
.founder-quote em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

/* Emotional stats (Why Houston) */
.emotional-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
  padding: 2rem;
  background: var(--offwhite);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}
.emo-stat {
  text-align: center;
}
.emo-stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.emo-stat p {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.5;
  margin: 0;
}

/* ================================================
   HOW CLINICAL TRIALS WORK PAGE
   ================================================ */

/* Lifecycle diagram */
.lifecycle-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  margin: 3rem auto 0;
  position: relative;
}
.lifecycle-stage {
  width: 100%;
  display: flex;
  justify-content: center;
}
.lifecycle-connector {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  opacity: 0.6;
}
.lifecycle-node {
  width: 100%;
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 2.2rem;
  position: relative;
  border: 1px solid var(--gray-light);
  box-shadow: 0 4px 20px rgba(10,34,64,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lifecycle-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(10,34,64,0.15);
}
.node-tag {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--white);
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  border: 1px solid var(--gray-light);
}
.phase-tag {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.fda-tag {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.node-num {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.node-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.lifecycle-node h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
  font-weight: 700;
}
.node-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 92%;
}
.node-stats {
  display: flex;
  gap: 2rem;
  margin-top: 0.6rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(212,160,23,0.3);
}
.node-stat {
  display: flex;
  flex-direction: column;
}
.stat-n {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
.node-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.meta-chip {
  font-size: 0.72rem;
  background: var(--offwhite);
  color: var(--navy);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  border: 1px solid var(--gray-light);
  letter-spacing: 0.03em;
}
.node-callout {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(212,160,23,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy);
}
.node-callout strong { color: var(--gold); }

.stage-highlight .lifecycle-node {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
  box-shadow: 0 10px 40px -10px rgba(10,34,64,0.3);
}
.stage-highlight .lifecycle-node h3 { color: var(--white); }
.stage-highlight .node-desc { color: rgba(255,255,255,0.8); }
.stage-highlight .node-tag { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.stage-highlight .node-num { color: var(--gold); opacity: 0.35; }
.stage-highlight .node-icon { background: rgba(212,160,23,0.15); }
.stage-highlight .node-stats { border-top-color: rgba(212,160,23,0.4); }
.stage-highlight .stat-l { color: rgba(255,255,255,0.6); }
.stage-highlight .node-callout {
  background: rgba(212,160,23,0.15);
  color: var(--white);
}

/* Concept grid (terms) */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 1rem;
}
.concept-card {
  background: var(--white);
  padding: 1.6rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.concept-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,160,23,0.4);
}
.concept-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.concept-card h4 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.concept-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

/* Rights list */
.rights-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.right-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
}
.right-num {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.right-item h4 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.right-item p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ================================================
   WHY PARTICIPATE PAGE
   ================================================ */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}
.benefit-card {
  background: var(--white);
  padding: 2rem 2.2rem;
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -10px rgba(10,34,64,0.15);
}
.benefit-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.benefit-card p {
  font-size: 0.96rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* Compensation visual */
.comp-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.comp-list li {
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}
.comp-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}
.comp-list li strong { color: var(--navy); }

.comp-visual {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  border: 1px solid var(--gray-light);
  box-shadow: 0 8px 30px -10px rgba(10,34,64,0.1);
}
.comp-visual-header {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 1.2rem;
}
.comp-visual-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 0.7rem;
}
.comp-visual-header h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
}
.comp-visual-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--gray-light);
  font-size: 0.92rem;
  color: var(--navy);
}
.comp-amt {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.comp-visual-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--navy);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}
.comp-total-amt {
  color: var(--gold);
  font-size: 1.5rem;
}
.comp-visual-note {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  text-align: right;
  margin: 0.7rem 0 0;
}

/* Extras grid */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.extra-item {
  text-align: left;
  padding: 1.6rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-light);
}
.extra-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.extra-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.extra-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

/* Eligibility card */
.eligibility-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 2rem;
  color: var(--white);
  box-shadow: 0 20px 50px -15px rgba(10,34,64,0.35);
}
.elig-header {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,160,23,0.25);
}
.elig-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.elig-list li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.elig-check {
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}
.elig-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(212,160,23,0.3);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.two-col.reverse-mobile { }
@media (max-width: 900px) {
  .two-col.reverse-mobile .col-visual { order: 2; }
  .two-col.reverse-mobile .col-copy { order: 1; }
}

/* Steps flow */
.steps-flow {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-top: 2rem;
}
.step-card {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  text-align: center;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}
.step-connector {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.5;
}

/* ================================================
   FAQS PAGE
   ================================================ */

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0 auto 3rem;
  max-width: 900px;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}
.faq-nav-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--offwhite);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
  border: 1px solid var(--gray-light);
  transition: all 0.2s;
}
.faq-nav-chip:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.faq-category {
  max-width: 900px;
  margin: 0 auto 3rem;
  scroll-margin-top: 100px;
}
.faq-cat-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.faq-item {
  background: var(--white);
  margin-bottom: 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(212,160,23,0.3); }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0);
}
.faq-answer {
  padding: 0 1.6rem 1.5rem;
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.7;
  border-top: 1px solid var(--gray-light);
  padding-top: 1.2rem;
}
.faq-answer p { margin: 0 0 1rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.faq-answer ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.faq-answer ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 0.15rem;
}
.faq-answer ul li strong { color: var(--navy); }
.faq-answer em { color: var(--gold); font-style: italic; }

.faq-footer-card {
  max-width: 720px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  color: var(--white);
}
.faq-footer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 0.8rem;
}
.faq-footer-card p {
  color: rgba(255,255,255,0.8);
  margin: 0 0 1.5rem;
}

/* ================================================
   RESPONSIVE (About Us pages)
   ================================================ */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .emotional-stats { grid-template-columns: 1fr; gap: 1.8rem; }
  .concept-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .steps-flow { flex-direction: column; }
  .step-connector { transform: rotate(90deg); justify-content: center; }
  .narrative-chapter { flex-direction: column; gap: 0.4rem; }
  .node-stats { flex-direction: column; gap: 0.8rem; }
}

/* ================================================
   CONTACT US PAGE
   ================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

/* Contact details (left) */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -12px rgba(10,34,64,0.15);
}
.contact-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-block-body h3 {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}
.contact-link-main {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
  word-break: break-word;
}
.contact-link-main:hover { color: var(--gold); }
.contact-hint {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.2rem 0;
  margin-top: 0.5rem;
  border-top: 1px dashed var(--gray-light);
}
.contact-social-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-right: 0.3rem;
}
.contact-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
  color: var(--navy);
  transition: all 0.2s;
  text-decoration: none;
}
.contact-social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.contact-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Map (right) */
.contact-map-wrap {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.6rem;
  border: 1px solid var(--gray-light);
  box-shadow: 0 10px 40px -15px rgba(10,34,64,0.1);
}
.contact-map-header {
  margin-bottom: 1.2rem;
}
.map-pin-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 0.8rem;
}
.contact-map-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.contact-map-header p {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0 0 0.5rem;
  line-height: 1.55;
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
}
.map-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.6rem 1.1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 99px;
  transition: background 0.2s, transform 0.2s;
}
.map-directions-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

/* Quick Paths (3-card grid) */
.contact-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.contact-path-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-path-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 40px -12px rgba(10,34,64,0.18);
}
.path-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.contact-path-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0;
}
.contact-path-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.path-arrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map-wrap { position: static; }
  .contact-paths { grid-template-columns: 1fr; }
  .contact-social-row { flex-wrap: wrap; }
}

/* ================================================
   EXPLORE OUR TRIALS PAGE
   ================================================ */

.trial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}

.trial-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(10,34,64,0.18);
  border-color: rgba(212,160,23,0.4);
}

.trial-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--offwhite);
  overflow: hidden;
}
.trial-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 2px dashed rgba(212,160,23,0.3);
  background: linear-gradient(135deg, rgba(212,160,23,0.06) 0%, rgba(10,34,64,0.04) 100%);
}
.trial-image-placeholder span {
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  letter-spacing: 0.03em;
}
.trial-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
}

.trial-body {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.trial-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.trial-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 0.7rem;
  font-weight: 700;
}
.trial-desc {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 1.2rem;
}
.trial-meta {
  list-style: none;
  padding: 1rem 0 0;
  margin: 0 0 1.4rem;
  border-top: 1px dashed var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.trial-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.tm-label {
  color: var(--gray);
}
.tm-value {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}
.trial-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
  align-self: flex-start;
}
.trial-cta:hover { gap: 0.7rem; }
.trial-cta span { transition: transform 0.2s; }

@media (max-width: 1000px) { .trial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px)  { .trial-grid { grid-template-columns: 1fr; } }

/* ================================================
   HOW TO JOIN — ROADMAP
   ================================================ */

.roadmap {
  max-width: 860px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 60px;
}
.roadmap-line {
  position: absolute;
  left: 22px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(212,160,23,0.3) 100%);
}
.roadmap-step {
  position: relative;
  padding-bottom: 3rem;
}
.roadmap-step:last-child { padding-bottom: 0; }
.roadmap-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px -4px rgba(10,34,64,0.3);
  z-index: 2;
}
.roadmap-content {
  background: var(--white);
  padding: 1.6rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.roadmap-content:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 30px -8px rgba(10,34,64,0.12);
}
.roadmap-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.roadmap-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.roadmap-content p {
  font-size: 0.96rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 0.9rem;
}
.roadmap-content p strong {
  color: var(--navy);
}
.roadmap-timing {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
}

.reassure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}
.reassure-item {
  background: var(--white);
  padding: 1.6rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  text-align: center;
}
.reassure-item svg { margin-bottom: 0.8rem; }
.reassure-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.reassure-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 700px) {
  .roadmap { padding-left: 50px; }
  .roadmap-marker { left: -50px; width: 38px; height: 38px; font-size: 0.82rem; }
  .roadmap-line { left: 18px; }
  .reassure-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   CAPABILITIES — HEX PILLARS
   ================================================ */

.hex-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.hex-pillar {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hex-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(10,34,64,0.15);
}
.hex-pillar-accent {
  background: linear-gradient(135deg, rgba(212,160,23,0.06) 0%, rgba(10,34,64,0.02) 100%);
  border-color: rgba(212,160,23,0.35);
}
.hex-shape {
  width: 120px;
  height: 132px;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 6px 16px rgba(10,34,64,0.15));
}
.hex-pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.8rem;
}
.hex-pillar > p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 1.4rem;
  text-align: left;
}
.hex-features {
  list-style: none;
  padding: 1.2rem 0 0;
  margin: 0;
  border-top: 1px dashed rgba(212,160,23,0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hex-features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.5;
}
.hex-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
  top: 0;
}

@media (max-width: 1000px) { .hex-pillars { grid-template-columns: 1fr; } }

/* RADAR */
.radar-two-col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.radar-two-col .col-copy .section-title { margin: 0.6rem 0 1.5rem; }
.radar-two-col .col-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 1.1rem;
}
.radar-chart {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.radar-legend {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: var(--offwhite);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  margin-top: 0.5rem;
}
.radar-legend-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--navy);
}
.radar-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.radar-legend-dot.medx { background: #D4A017; }
.radar-legend-dot.traditional { background: #6B7280; opacity: 0.55; }

@media (max-width: 900px) {
  .radar-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* STACK LAYER CAKE */
.stack-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 3rem auto 0;
}
.stack-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  transition: transform 0.25s ease;
}
.stack-layer:hover { transform: translateX(4px); }
.stack-l1 { background: var(--offwhite); }
.stack-l2 { background: #FFF8E7; border-color: rgba(212,160,23,0.2); }
.stack-l3 { background: #FCEAB5; border-color: rgba(212,160,23,0.35); }
.stack-l4 { background: linear-gradient(135deg, #D4A017 0%, #E9BA2C 100%); color: var(--navy); border-color: var(--gold); }
.stack-l5 { background: var(--navy); color: var(--white); border-color: var(--navy); }

.stack-label {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
}
.stack-index {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.4;
  width: 40px;
  flex-shrink: 0;
}
.stack-label h4 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: inherit;
  margin: 0 0 0.25rem;
  font-weight: 700;
}
.stack-label p {
  font-size: 0.86rem;
  color: inherit;
  opacity: 0.75;
  margin: 0;
  line-height: 1.45;
}
.stack-l5 .stack-label p { color: rgba(255,255,255,0.75); opacity: 1; }
.stack-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.stack-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem;
  border-radius: 99px;
  background: rgba(10,34,64,0.08);
  color: inherit;
  white-space: nowrap;
}
.stack-l4 .stack-chip { background: rgba(10,34,64,0.15); }
.stack-l5 .stack-chip { background: rgba(212,160,23,0.2); color: var(--gold); }

.stack-connector {
  height: 14px;
  position: relative;
}
.stack-connector::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(212,160,23,0.3), rgba(212,160,23,0.6));
  transform: translateX(-50%);
}

@media (max-width: 750px) {
  .stack-layer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stack-chips { justify-content: flex-start; }
}

/* HONEYCOMB */
.honeycomb {
  margin: 3rem auto 0;
  max-width: 900px;
}
.hex-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: -24px;
}
.hex-row-3 { margin-left: 0; padding-left: 104px; padding-right: 104px; }
.hex-cell {
  width: 200px;
  height: 230px;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--white);
  transition: transform 0.3s ease;
}
.hex-cell-alt { background: var(--navy); color: var(--white); }
.hex-cell:hover { transform: scale(1.03); }
.hex-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.2rem 1.5rem;
  gap: 0.5rem;
}
.hex-cell::after {
  content: '';
  position: absolute;
  inset: 2px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: inherit;
  pointer-events: none;
}
/* Create gold border by layering a gold clip-path behind */
.hex-cell { background: #D4A017; }
.hex-cell .hex-inner { background: var(--white); clip-path: polygon(50% 2%, 98% 26%, 98% 74%, 50% 98%, 2% 74%, 2% 26%); }
.hex-cell-alt .hex-inner { background: var(--navy); }
.hex-cell::after { display: none; }

.hex-inner h5 {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.hex-cell-alt .hex-inner h5 { color: var(--gold); }
.hex-inner p {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.4;
  margin: 0;
}
.hex-cell-alt .hex-inner p { color: rgba(255,255,255,0.7); }

@media (max-width: 750px) {
  .honeycomb { max-width: 420px; }
  .hex-row { flex-wrap: wrap; gap: 0.5rem; }
  .hex-row-3 { padding: 0; }
  .hex-cell { width: 170px; height: 196px; }
  .hex-inner { padding: 1.8rem 1.1rem; }
}

/* ================================================
   REQUEST FEASIBILITY PAGE
   ================================================ */

.feasibility-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.feasibility-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2.8rem;
  border: 1px solid var(--gray-light);
  box-shadow: 0 10px 40px -15px rgba(10,34,64,0.1);
}
.feasibility-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.feasibility-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.feasibility-form-header h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.feasibility-form-header p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.feasibility-form { display: flex; flex-direction: column; gap: 1rem; }
.form-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(212,160,23,0.3);
}
.form-section-label:first-child { margin-top: 0; }
.feasibility-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feasibility-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feasibility-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.feasibility-form input,
.feasibility-form select,
.feasibility-form textarea {
  padding: 0.7rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feasibility-form input:focus,
.feasibility-form select:focus,
.feasibility-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}
.feasibility-form textarea { resize: vertical; min-height: 120px; font-family: var(--font-sans); }

.feasibility-consent {
  padding: 1rem;
  background: var(--offwhite);
  border-radius: 8px;
  margin-top: 0.5rem;
}
.checkbox-label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.btn-cta-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 1rem;
  align-self: flex-start;
}

/* Right sidebar */
.feasibility-side {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: sticky;
  top: 100px;
}
.feasibility-side-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
}
.feasibility-side-card.alt {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-color: var(--navy);
}
.feasibility-side-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 1rem;
}
.feasibility-side-card.alt h3 { color: var(--gold); }
.feasibility-side-card.alt p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; margin: 0 0 1.2rem; }

.feasibility-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feasibility-steps li {
  display: flex;
  gap: 0.9rem;
}
.fs-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feasibility-steps strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.feasibility-steps p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

.feasibility-direct-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.6rem 0;
  border-top: 1px dashed rgba(212,160,23,0.3);
  transition: color 0.2s;
}
.feasibility-direct-link:first-of-type { border-top: none; }
.feasibility-direct-link:hover { color: var(--white); }

.feasibility-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.feasibility-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s;
}
.feasibility-links a:hover { color: var(--navy); }

@media (max-width: 1000px) {
  .feasibility-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feasibility-side { position: static; }
  .feasibility-form-wrap { padding: 1.8rem 1.6rem; }
  .feasibility-form .form-row { grid-template-columns: 1fr; }
}
