@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --teal:       #1a7a72;
  --teal-light: #e8f5f3;
  --teal-mid:   #2a9d8f;
  --cream:      #faf8f4;
  --warm:       #f2ede4;
  --dark:       #1c2b2a;
  --mid:        #4a5f5d;
  --accent:     #c8a96e;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 3rem;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,122,114,0.12);
  transition: padding 0.3s;
}
nav.scrolled { padding: 1rem 3rem; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.8rem !important;
}
.nav-cta:hover { background: var(--teal-mid) !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 6rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-right-logo {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  z-index: 2;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, #0d4f4a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-badge {
  position: absolute;
  top: 2.5rem; right: 2.5rem;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 1rem;
  padding: 1rem 1.4rem;
  color: white;
  text-align: center;
}
.hero-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
}
.hero-badge span { font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; opacity: 0.75; }
.hero-quote {
  width: 100%;
  padding: 2rem 2.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: 1rem;
  max-width: 90%;
  color: white;
  z-index: 2;
}
.hero-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.7rem;
}
.hero-quote cite { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 6rem 5rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  max-width: 580px;
}
.divider {
  width: 44px; height: 2px;
  background: var(--accent);
  margin: 1.4rem 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: white;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--mid);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--teal); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-light {
  display: inline-block;
  background: white;
  color: var(--teal);
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 3rem;
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

/* ── SERVICES ── */
#services { background: var(--cream); }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 3.5rem;
}
.card {
  background: white;
  border-radius: 1.2rem;
  padding: 2.2rem;
  border: 1px solid rgba(26,122,114,0.09);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(26,122,114,0.1); }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.card-tag {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.card p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 1.1rem;
}
.card-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.card-list li {
  font-size: 0.83rem;
  color: var(--mid);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.card-list li::before { content: '—'; position: absolute; left: 0; color: var(--teal); }

/* ── APPROACH ── */
#approach {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
#approach .section-title { color: white; }
#approach .section-body { color: rgba(255,255,255,0.6); max-width: 100%; }
.pillars { display: flex; flex-direction: column; gap: 1.6rem; }
.pillar { display: flex; gap: 1.2rem; align-items: flex-start; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  min-width: 2.5rem;
}
.pillar-text h4 { font-size: 0.92rem; font-weight: 500; color: white; margin-bottom: 0.25rem; }
.pillar-text p { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── THERAPISTS ── */
#therapists { background: var(--warm); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.therapist-card {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.3s;
}
.therapist-card:hover { transform: translateY(-4px); }
.therapist-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.therapist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.therapist-photo--banner {
  height: auto;
  background: var(--cream);
}
.therapist-photo--banner img {
  height: auto;
  object-fit: contain;
}
.therapist-info { padding: 1.5rem; }
.therapist-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.credentials {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.therapist-info p { font-size: 0.85rem; font-weight: 300; color: var(--mid); line-height: 1.6; }

/* ── CONTACT ── */
#contact {
  background: linear-gradient(135deg, var(--teal) 0%, #0d4f4a 100%);
  color: white;
  text-align: center;
  padding: 7rem 5rem;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
#contact .section-label { color: var(--accent); position: relative; z-index: 1; }
#contact .section-title { color: white; margin: 0 auto 1rem; max-width: 500px; position: relative; z-index: 1; }
#contact .section-body { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; text-align: center; position: relative; z-index: 1; }
.contact-options {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.3rem 1.8rem;
  color: white;
  text-decoration: none;
  text-align: center;
  min-width: 165px;
  display: block;
  transition: background 0.2s, transform 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); color: white; }
.contact-method { font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; opacity: 0.7; margin-bottom: 0.35rem; }
.contact-value { font-size: 0.97rem; font-weight: 500; }

/* ── QUIZ GAME ── */
.quiz-container {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(26,122,114,0.08);
  border: 1px solid rgba(26,122,114,0.09);
  position: relative;
  overflow: hidden;
}

/* Confetti canvas */
.quiz-confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

/* Start screen */
.quiz-start {
  text-align: center;
  padding: 1.5rem 0;
}
.quiz-start-icon {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  animation: quizBounce 2s ease-in-out infinite;
}
.quiz-start-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.quiz-start-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 1.8rem;
}
.quiz-start-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.quiz-start-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.quiz-start-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
}
.quiz-start-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.quiz-start-btn {
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  animation: quizPulseBtn 2.5s ease-in-out infinite;
}

/* Progress bar */
.quiz-progress {
  width: 100%;
  height: 6px;
  background: var(--teal-light);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid), var(--accent));
  background-size: 200% 100%;
  border-radius: 3px;
  width: 12.5%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: quizProgressShimmer 2s linear infinite;
}

/* Step indicators */
.quiz-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.quiz-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--teal-light);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--mid);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-step.active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 2px 10px rgba(26,122,114,0.3);
}
.quiz-step.correct {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal);
}
.quiz-step.incorrect {
  border-color: #c0392b;
  background: #fdf0ee;
  color: #c0392b;
}

/* Timer bar */
.quiz-timer-track {
  width: 100%;
  height: 3px;
  background: var(--teal-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.quiz-timer-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 100%;
  transition: width 0.1s linear, background-color 0.3s;
}
.quiz-timer-bar.warning {
  background: #e67e22;
}
.quiz-timer-bar.danger {
  background: #c0392b;
  animation: quizTimerPulse 0.5s ease-in-out infinite;
}

/* Streak display */
.quiz-streak {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  animation: quizStreakAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.quiz-streak-fire {
  font-size: 1.3rem;
  animation: quizFireFlicker 0.6s ease-in-out infinite alternate;
}
.quiz-streak-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Emoji reaction overlay */
.quiz-emoji-reaction {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
}
.quiz-emoji-reaction.animate {
  animation: quizEmojiPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Question area with transitions */
.quiz-question-area {
  transition: opacity 0.3s, transform 0.3s;
}
.quiz-question-area.slide-out {
  opacity: 0;
  transform: translateX(-20px);
}
.quiz-question-area.slide-in {
  opacity: 0;
  transform: translateX(20px);
}

.quiz-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quiz-option {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 0.8rem;
  padding: 1rem 1.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: left;
  width: 100%;
  line-height: 1.5;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  animation: quizOptionAppear 0.35s ease forwards;
}
.quiz-option:nth-child(1) { animation-delay: 0.05s; }
.quiz-option:nth-child(2) { animation-delay: 0.1s; }
.quiz-option:nth-child(3) { animation-delay: 0.15s; }
.quiz-option:nth-child(4) { animation-delay: 0.2s; }
.quiz-option:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(26,122,114,0.1);
}
.quiz-option.correct {
  border-color: var(--teal);
  background: var(--teal-light);
  animation: quizCorrectPulse 0.5s ease;
  box-shadow: 0 0 0 3px rgba(26,122,114,0.15);
}
.quiz-option.incorrect {
  border-color: #c0392b;
  background: #fdf0ee;
  animation: quizShake 0.5s ease;
}
.quiz-option.disabled {
  pointer-events: none;
  opacity: 0.55;
}
.quiz-option.disabled.correct,
.quiz-option.disabled.incorrect {
  opacity: 1;
}

/* Feedback area */
.quiz-feedback {
  text-align: center;
  padding: 1.5rem 0 0;
  animation: quizFadeUp 0.4s ease;
}
.quiz-feedback-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.quiz-feedback-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.quiz-next-btn {
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* Results */
.quiz-results {
  text-align: center;
  padding: 1rem 0;
  animation: quizFadeUp 0.5s ease;
}
.quiz-score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  animation: quizScoreReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(26,122,114,0.25);
}
.quiz-score-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.quiz-score-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.quiz-results-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.quiz-results-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.quiz-results-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 1.2rem;
}
.quiz-results-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.quiz-results-stat-item {
  background: var(--teal-light);
  border-radius: 0.8rem;
  padding: 0.8rem 1.2rem;
  text-align: center;
  min-width: 100px;
  animation: quizFadeUp 0.4s ease backwards;
}
.quiz-results-stat-item:nth-child(1) { animation-delay: 0.3s; }
.quiz-results-stat-item:nth-child(2) { animation-delay: 0.4s; }
.quiz-results-stat-item:nth-child(3) { animation-delay: 0.5s; }
.quiz-results-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.quiz-results-stat-lbl {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-top: 0.2rem;
}
.quiz-results-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.quiz-results-actions .btn-primary {
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* ── Quiz Animations ── */
@keyframes quizBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes quizPulseBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,122,114,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(26,122,114,0); }
}
@keyframes quizProgressShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
@keyframes quizOptionAppear {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes quizCorrectPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
@keyframes quizShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
@keyframes quizFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes quizScoreReveal {
  from { opacity: 0; transform: scale(0.3) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes quizEmojiPop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  40% { opacity: 1; transform: translate(-50%, -50%) scale(1.4); }
  70% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -70%) scale(1.1); }
}
@keyframes quizStreakAppear {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes quizFireFlicker {
  from { transform: scale(1) rotate(-3deg); }
  to { transform: scale(1.15) rotate(3deg); }
}
@keyframes quizTimerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (max-width: 860px) {
  .quiz-container {
    padding: 1.5rem;
  }
  .quiz-start-stats {
    gap: 1.2rem;
  }
  .quiz-steps {
    gap: 0.3rem;
  }
  .quiz-step {
    width: 24px;
    height: 24px;
    font-size: 0.55rem;
  }
}

/* ── SCHEDULING ── */
.scheduling-calendar {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(26,122,114,0.08);
  border: 1px solid rgba(26,122,114,0.09);
}
.scheduling-calendar iframe {
  width: 100%;
  height: 600px;
  border-radius: 0.8rem;
}
.btn-schedule {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  padding: 0.7rem 1.5rem;
  display: inline-block;
}
.nav-cta-schedule {
  background: var(--accent) !important;
}
.nav-cta-schedule:hover {
  background: #b89a5e !important;
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-transform: uppercase;
}
.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dark);
  background: white;
  border: 1px solid rgba(26,122,114,0.2);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,114,0.1);
}
.form-input::placeholder { color: #aab8b6; }
select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5f5d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
@media (max-width: 768px) {
  #intake-form .form-grid { grid-template-columns: 1fr !important; }
}


footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 2.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: white; font-weight: 400; display: flex; align-items: center; gap: 0.5rem; }
.footer-logo-img { height: 32px; width: auto; border-radius: 4px; }
.footer-logo span { color: var(--accent); }
footer p { font-size: 0.78rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .hero-right { height: 300px; }
  .section { padding: 4rem 1.8rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  #approach { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .trust-bar { padding: 1rem 2rem; gap: 1.2rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem; }
  #contact { padding: 5rem 2rem; }
  .scheduling-calendar { padding: 1rem; }
  .scheduling-calendar iframe { height: 450px; }
}
