﻿/* ── PREGMUNE DESIGN TOKENS (from original WordPress stylesheet) ── */
:root {
  --teal:        #00394a;
  --teal-mid:    #005a6e;
  --teal-light:  #cddbe4;
  --teal-xlight: #e8f3f7;
  --peach:       #f4c4bb;
  --peach-light: #fdf0ed;
  --peach-deep:  #e8a090;
  --cream:       #faf9f8;
  --warm-white:  #ffffff;
  --text:        #1a2e35;
  --text-mid:    #3d5a64;
  --text-soft:   #7a9aa5;
  --gold:        #c4793a;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --r:           8px;
  --r-lg:        16px;
  --shadow:      0 4px 24px rgba(0,57,74,0.10);
  --shadow-lg:   0 12px 48px rgba(0,57,74,0.16);
  /* Align hamburger + language controls (matches 18px globe icon + vertical padding + borders) */
  --nav-end-btn-min-height: calc(18px + 0.35rem + 0.35rem + 2px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.serif { font-family: var(--font-serif); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: block;
  margin-bottom: 0.6rem;
}
.eyebrow-peach { color: var(--peach-deep); }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 100px 0; }

/* ── NAV (teal bar — matches Get Started / TealSiteNav) ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--teal);
  border-bottom: none;
  box-shadow: 0 2px 16px rgba(0,57,74,0.15);
}
.nav-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.01em;
}
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  margin: 0 min(1.25rem, 2vw) 0 0;
  padding: 0;
  min-width: 0;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-inline-link {
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-inline-link:hover {
  color: white;
  text-decoration: underline;
}
.nav-links .nav-cta a {
  background: var(--peach-deep);
  color: white;
  padding: 9px 20px;
  border-radius: var(--r);
  font-size: 0.85rem;
}
.nav-links .nav-cta a:hover {
  background: #d4806a;
  color: white;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  min-width: 2rem;
  height: auto;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  min-height: var(--nav-end-btn-min-height);
}
.nav-menu-toggle:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.18);
}
.nav-menu-toggle:focus-visible {
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 2px;
}
.nav-menu-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 18px;
}
.nav-menu-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav.nav--open .nav-menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav.nav--open .nav-menu-toggle__bar:nth-child(2) { opacity: 0; }
.nav.nav--open .nav-menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-switcher > summary {
  list-style: none;
  cursor: pointer;
}
.lang-switcher > summary::-webkit-details-marker { display: none; }
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  box-sizing: border-box;
  padding: 0.35rem calc(0.5rem - 4.5px) 0.35rem calc(0.4rem - 4.5px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  min-height: var(--nav-end-btn-min-height);
}
.lang-switcher__btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
}
.lang-switcher[open] .lang-switcher__btn {
  border-color: rgba(255,255,255,0.55);
  color: white;
}
.lang-switcher[open] .lang-switcher__chev { transform: rotate(180deg); }
.lang-switcher__icon {
  display: flex;
  color: rgba(255,255,255,0.9);
}
.lang-switcher__code { min-width: 1rem; }
.lang-switcher__chev {
  font-size: 0.65rem;
  line-height: 1;
  color: rgba(255,255,255,0.75);
  opacity: 0.9;
  transition: transform 0.15s ease;
}
.lang-switcher__menu {
  position: absolute;
  z-index: 110;
  right: 0;
  top: calc(100% + 6px);
  min-width: 10.5rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--teal-mid);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,57,74,0.12);
}
.lang-switcher__menu li { list-style: none; }
.lang-switcher__item {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.lang-switcher__item:hover {
  background: rgba(0,0,0,0.12);
  color: white;
}
.lang-switcher__item[aria-current="page"] {
  color: white;
  font-weight: 600;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.22s ease;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-peach { background: var(--peach-deep); color: white; }
.btn-peach:hover { background: #d4806a; transform: translateY(-1px); }
.btn-white { background: white; color: var(--teal); }
.btn-white:hover { background: var(--teal-xlight); }
.btn-ghost-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }

/* ── HERO (Panel 1) — White background matching quiz section ── */
.hero {
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
  padding: 56px 0 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}
.hero-content {
  padding: 20px 48px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,57,74,0.08);
  color: var(--teal);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,57,74,0.13);
  width: fit-content;
}
.hero h1 {
  color: var(--teal);
  margin-bottom: 20px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--peach-deep); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 28px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.95rem; color: var(--text-mid);
}
.hero-trust-item svg { flex-shrink: 0; }

/* Hero image — mix-blend-mode:multiply drops the black background */
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}
.hero-image img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 2;
  transform: translateY(-100px);
}

/* ── PANEL 2: CONDITIONS — teal-xlight background (after white hero) ── */
.conditions-panel {
  background: var(--teal-xlight);
  padding: 80px 0;
}
.conditions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.conditions-left {}
.conditions-left h2 {
  color: var(--teal);
  margin-bottom: 12px;
}
.conditions-left .section-intro {
  color: var(--text-mid);
  font-size: 1.02rem;
  margin-bottom: 36px;
}
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.condition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: white;
  border-radius: var(--r-lg);
  padding: 20px 14px;
  box-shadow: 0 2px 12px rgba(0,57,74,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.condition-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.condition-item img {
  width: 56px; height: 56px;
  object-fit: contain;
}
.condition-item p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.4;
}

/* IRMA Report Preview — April 16 style */
.irma-preview {
  background: var(--teal);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.irma-preview-header {
  background: rgba(0,0,0,0.2);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.irma-preview-title {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
}
.irma-preview-badge {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.irma-preview-body { padding: 24px; }

.irma-tag-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.irma-tag {
  padding: 5px 12px; border-radius: 20px;
  font-size: 0.76rem; font-weight: 500;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s;
}
.irma-tag.active {
  background: rgba(255,255,255,0.18);
  color: white;
  border-color: rgba(255,255,255,0.35);
}

.irma-score-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.irma-score-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.irma-score-value {
  font-size: 0.82rem; font-weight: 600;
  color: var(--peach); letter-spacing: 0.03em;
}
.irma-bar-track {
  background: rgba(255,255,255,0.12);
  border-radius: 6px; height: 10px;
  margin-bottom: 6px; position: relative; overflow: hidden;
}
.irma-bar-fill {
  height: 100%; width: 58%;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, var(--peach-deep) 100%);
  border-radius: 6px;
  animation: bar-grow 1.2s ease both 0.4s;
}
@keyframes bar-grow { from { width: 0; } to { width: 58%; } }
.irma-bar-markers {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  margin-top: 5px;
}
.irma-insight {
  background: rgba(0,0,0,0.2);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 0.84rem; color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-top: 18px;
  border-left: 3px solid var(--peach-deep);
}
.irma-insight strong { color: white; }

.irma-preview-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.irma-preview-footer span { font-size: 0.76rem; color: rgba(255,255,255,0.5); }
.irma-preview-footer a { font-size: 0.8rem; font-weight: 600; color: var(--teal-light); text-decoration: none; }
.irma-preview-footer a:hover { color: white; }

/* ── PANEL 4: QUIZ — white background (after dark teal Process) ── */
.quiz-section {
  background: var(--warm-white);
  padding: 80px 0;
}
.quiz-section .section-header { text-align: center; margin-bottom: 48px; }
.quiz-section .section-header h2 { color: var(--teal); }
.quiz-section .section-header p { color: var(--text-mid); max-width: 560px; margin: 12px auto 0; font-size: 1rem; }

.quiz-card {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,57,74,0.08);
  overflow: hidden;
}
.quiz-card-header {
  background: var(--teal);
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.quiz-card-header-title { color: white; font-family: var(--font-serif); font-size: 1.1rem; }
.quiz-step-dots { display: flex; gap: 8px; }
.quiz-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s;
}
.quiz-dot.active { background: white; }
.quiz-dot.done { background: rgba(255,255,255,0.7); }
.quiz-progress-bar {
  height: 3px; background: rgba(0,57,74,0.08);
}
.quiz-progress-fill {
  height: 100%; background: var(--teal-mid);
  transition: width 0.5s ease;
}
.quiz-body { padding: 36px 32px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--peach-deep); margin-bottom: 8px;
}
.quiz-question {
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--teal);
  margin-bottom: 28px; line-height: 1.3;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  padding: 14px 20px;
  border: 1.5px solid rgba(0,57,74,0.15);
  border-radius: var(--r);
  font-size: 0.92rem; color: var(--text);
  cursor: pointer; background: white;
  text-align: left; font-family: var(--font-sans);
  transition: all 0.18s;
}
.quiz-option:hover {
  border-color: var(--teal-mid);
  background: var(--teal-xlight);
  color: var(--teal);
}
.quiz-option.selected {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}
.quiz-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px;
}
.quiz-back {
  background: none; border: none;
  font-size: 0.85rem; color: var(--text-soft);
  cursor: pointer; padding: 6px 0;
  font-family: var(--font-sans);
}
.quiz-back:hover { color: var(--teal); }

/* Results */
.quiz-result { display: none; }
.quiz-result.visible { display: block; }
.result-top {
  text-align: center;
  margin-bottom: 28px;
}
.result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-xlight);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.result-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem; color: var(--teal);
  margin-bottom: 10px;
}
.result-body { font-size: 0.95rem; color: var(--text-mid); max-width: 520px; margin: 0 auto 20px; }
.result-likelihood {
  display: flex; align-items: center; gap: 12px;
  background: var(--teal-xlight); border-radius: var(--r);
  padding: 14px 20px; margin-bottom: 24px;
}
.result-likelihood-label { font-size: 0.82rem; color: var(--text-mid); flex: 1; }
.result-pct { font-size: 1.2rem; font-weight: 600; color: var(--teal); }
.result-bar-bg { flex: 2; height: 8px; background: rgba(0,57,74,0.12); border-radius: 4px; }
.result-bar-fill { height: 100%; border-radius: 4px; background: var(--teal); transition: width 0.8s ease; }
.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.result-badge {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.result-high { background: rgba(220,80,60,0.1); color: #c44030; }
.result-mod  { background: rgba(196,121,58,0.1); color: var(--gold); }
.result-low  { background: rgba(0,90,110,0.1);  color: var(--teal-mid); }
.result-explore { background: rgba(122,154,165,0.14); color: var(--text-mid); }

/* ── PANEL 4: THE PROCESS ── */
.process-section {
  background: var(--teal);
  padding: 90px 0;
}
.process-section .section-header { text-align: center; margin-bottom: 56px; }
.process-section .section-header h2 { color: white; }
.process-section .section-header p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 12px auto 0; }
.process-section .eyebrow { color: var(--peach); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px;
  background: rgba(255,255,255,0.2);
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif); font-size: 1.5rem;
  color: white; position: relative; z-index: 1;
  transition: background 0.3s;
}
.process-step:hover .process-num { background: rgba(255,255,255,0.2); }
.process-step h3 { color: white; font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.72); font-size: 0.86rem; line-height: 1.6; }

/* ── PANEL 5: PATIENT STORIES ── */
.stories-section {
  background: var(--peach-light);
  padding: 90px 0;
}
.stories-section .section-header { text-align: center; margin-bottom: 52px; }
.stories-section .section-header h2 { color: var(--teal); }
.stories-section .section-header p { color: var(--text-mid); max-width: 520px; margin: 12px auto 0; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,57,74,0.08);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.story-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--peach);
  line-height: 1;
  margin-bottom: -8px;
}
.story-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}
.story-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,57,74,0.08);
}
.story-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--peach) 0%, var(--teal-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--teal); font-weight: 600;
  flex-shrink: 0;
}
.story-author-name { font-weight: 600; font-size: 0.88rem; color: var(--teal); }
.story-author-detail { font-size: 0.78rem; color: var(--text-soft); margin-top: 2px; }
.story-outcome {
  display: inline-block;
  background: rgba(0,57,74,0.08);
  color: var(--teal);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-top: 8px;
}

/* ── PANEL 6: FAQs ── */
.faq-section {
  background: var(--warm-white);
  padding: 90px 0;
}
.faq-section .section-header { text-align: center; margin-bottom: 52px; }
.faq-section .section-header h2 { color: var(--teal); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,57,74,0.10);
}
.faq-item:first-child { border-top: 1px solid rgba(0,57,74,0.10); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-sans); font-size: 0.98rem;
  font-weight: 500; color: var(--teal);
  cursor: pointer; text-align: left; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal-mid); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-xlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--teal);
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--teal); color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ── PANEL 7: START YOUR JOURNEY ── */
.journey-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.journey-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}
.journey-content { position: relative; z-index: 1; }
.journey-content h2 { color: white; margin-bottom: 16px; }
.journey-content p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 36px; font-size: 1.03rem; }
.journey-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--teal);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--font-serif); font-size: 1.4rem; color: white; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-contact { margin-top: 1rem; font-size: 0.85rem; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact a:hover { color: white; text-decoration: underline; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-bottom-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: min(100%, 520px);
}
.footer-do-not-sell { font-size: 0.76rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.8rem; transition: background 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.2); color: white; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 20px 0 32px; }
  .hero-image {
    justify-content: center;
    overflow: visible;
    max-height: none;
  }
  .hero-image img { max-width: 80%; transform: translateY(-20px); }
  .conditions-layout { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .condition-item { padding: 16px 8px; }
  .irma-preview-header,
  .irma-preview-body,
  .irma-preview-footer { padding-left: 16px; padding-right: 16px; }
  .irma-preview-header { flex-wrap: wrap; gap: 8px; }
  .irma-score-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .irma-preview-footer {
    flex-wrap: wrap;
    gap: 8px;
  }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-inner { flex-wrap: wrap; }
  .nav-logo { order: 1; }
  .nav-end { order: 2; margin-left: auto; }
  .nav-menu-toggle { display: inline-flex; }
  .nav-links {
    order: 3;
    flex: 0 0 100%;
    margin: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 18px;
    border-top: 1px solid rgba(255,255,255,0.22);
  }
  .nav.nav--open .nav-links { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 0.95rem;
  }
  .nav-links .nav-cta a {
    margin-top: 8px;
    text-align: center;
    padding: 12px 20px;
  }
}

/* ── FOOTER heading links ── */
.footer-col h4 a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-col h4 a:hover { color: white; }

/* ── Footer grid 5-col for Science column ── */
.footer-grid-5 {
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 900px) {
  .footer-grid-5 { grid-template-columns: 1fr 1fr; }
}

/* ── Disclaimer popup ── */
.disclaimer-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.55);
  align-items: center; justify-content: center;
}
.disclaimer-overlay.open { display: flex; }
.disclaimer-box {
  background: #fff; color: #1a2e35;
  border-radius: 12px; padding: 2rem;
  max-width: 640px; width: 90%;
  max-height: 80vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.disclaimer-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; margin-bottom: 1rem; color: #00394a;
}
.disclaimer-box p { font-size: 0.9rem; line-height: 1.75; color: #3d5a64; }
.disclaimer-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: #7a9aa5; line-height: 1;
}
.disclaimer-close:hover { color: #00394a; }

/* ── SAMPLE REPORT MODAL ── */
.sample-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.55); align-items: center; justify-content: center;
}
.sample-modal-overlay.open { display: flex; }
.sample-modal {
  background: white; border-radius: 16px; padding: 40px 36px;
  max-width: 460px; width: 90%; position: relative;
  box-shadow: 0 24px 64px rgba(0,57,74,0.20);
}
.sample-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.4rem;
  cursor: pointer; color: var(--text-soft); line-height: 1;
}
.sample-modal-close:hover { color: var(--teal); }
.sample-modal h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--teal); margin-bottom: 6px;
}
.sample-modal p {
  font-size: 0.88rem; color: var(--text-mid);
  margin-bottom: 24px; line-height: 1.6;
}
.sample-form-group { margin-bottom: 16px; }
.sample-form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 6px;
}
.sample-form-group input {
  width: 100%; padding: 11px 14px; border: 1.5px solid rgba(0,57,74,0.18);
  border-radius: 8px; font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--text); outline: none; transition: border-color 0.2s;
}
.sample-form-group input:focus { border-color: var(--teal); }
.sample-form-submit {
  width: 100%; padding: 13px; background: var(--teal); color: white;
  border: none; border-radius: 8px; font-family: var(--font-sans);
  font-size: 0.92rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s; margin-top: 8px;
}
.sample-form-submit:hover { background: var(--teal-mid); }
.sample-form-disclaimer {
  font-size: 0.72rem; color: var(--text-soft); line-height: 1.6;
  margin-top: 16px; text-align: center;
}
.sample-form-disclaimer a { color: var(--teal-mid); text-decoration: underline; }
.sample-form-success {
  display: none; text-align: center; padding: 20px 0;
}
.sample-form-success .success-icon {
  font-size: 2.5rem; margin-bottom: 12px;
}
.sample-form-success h4 {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--teal); margin-bottom: 8px;
}
.sample-form-success p {
  font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0;
}
