/* =============================================
   NurtureMind — Modern Therapy Website Styles
   Palette: Sage, Warm Cream, Dusty Rose, Sky
   ============================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --sage-50:  #f4f7f4;
  --sage-100: #e3ece3;
  --sage-200: #c4d9c4;
  --sage-300: #96bc96;
  --sage-400: #6a9e6a;
  --sage-500: #4a8050;
  --sage-600: #3a6840;

  --rose-100: #fce9e9;
  --rose-300: #e8a0a0;
  --rose-500: #c96060;

  --sky-100:  #e6f4fb;
  --sky-300:  #8fcee8;
  --sky-500:  #3a9dc4;

  --amber-100: #fef3e2;
  --amber-300: #f5c57a;

  --violet-100: #f0edfa;
  --violet-300: #b8a8e8;

  --green-100: #e8f5e9;

  /* Neutrals */
  --cream-50:  #fdfcf8;
  --cream-100: #f7f4ee;
  --cream-200: #ede9de;
  --cream-300: #d6d0c0;

  --stone-400: #a09880;
  --stone-600: #6b6455;
  --stone-800: #3a3630;
  --stone-900: #1e1c18;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Lora', Georgia, serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(60,55,40,.06), 0 2px 8px rgba(60,55,40,.04);
  --shadow-md: 0 4px 16px rgba(60,55,40,.08), 0 1px 4px rgba(60,55,40,.04);
  --shadow-lg: 0 8px 40px rgba(60,55,40,.12), 0 2px 8px rgba(60,55,40,.06);
  --shadow-xl: 0 20px 60px rgba(60,55,40,.14);

  /* Transitions */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur-fast: 160ms;
  --dur-med:  300ms;
  --dur-slow: 500ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--stone-800);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-2xl);
}

.section--tinted {
  background: var(--cream-100);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--stone-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--stone-900); }
h5 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone-600); }

p { color: var(--stone-600); }

em { font-style: italic; color: var(--sage-500); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--dur-med) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage-500);
  color: white;
  box-shadow: 0 2px 12px rgba(74,128,80,.35);
}
.btn-primary:hover {
  background: var(--sage-600);
  box-shadow: 0 4px 20px rgba(74,128,80,.45);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--sage-300);
  color: var(--sage-600);
  background: transparent;
}
.btn-outline:hover {
  background: var(--sage-100);
  border-color: var(--sage-400);
}

.btn-ghost {
  color: var(--stone-700);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--cream-200);
}

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.play-icon {
  font-size: 0.7em;
  background: var(--cream-200);
  border-radius: 50%;
  padding: 4px 6px;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--sage-100);
  color: var(--sage-600);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--stone-600);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,252,248,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.nav.scrolled {
  border-bottom-color: var(--cream-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--stone-900);
  flex-shrink: 0;
}

.logo-icon {
  color: var(--sage-500);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--stone-600);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.nav-links a:hover {
  color: var(--stone-900);
  background: var(--cream-200);
}

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--stone-800);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--cream-200);
}

.mobile-menu a {
  padding: 0.6rem 0.5rem;
  color: var(--stone-700);
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.blob-1 {
  width: 600px; height: 600px;
  background: var(--sage-100);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--rose-100);
  bottom: 0; left: -80px;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--sky-100);
  top: 40%; left: 40%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: white;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--stone-600);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--sage-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--stone-900);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--cream-300);
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 1;
}

.hero-illustration {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.illustration-circle {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--sage-200), var(--sage-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.illustration-inner {
  font-size: 4rem;
}

.illustration-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse var(--dur) ease-out infinite;
}

.ring-1 { width: 240px; height: 240px; border-color: var(--sage-200); --dur: 3s; animation-delay: 0s; }
.ring-2 { width: 320px; height: 320px; border-color: var(--sage-100); --dur: 3s; animation-delay: 0.5s; }
.ring-3 { width: 400px; height: 400px; border-color: var(--cream-200); --dur: 3s; animation-delay: 1s; }

@keyframes ringPulse {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.02); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.95); }
}

.hero-card {
  position: absolute;
  z-index: 3;
}

.card-float-1 { top: 15%; left: 5%; animation: float 4s ease-in-out infinite; }
.card-float-2 { bottom: 20%; right: 5%; animation: float 4s ease-in-out infinite reverse; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.mini-icon { font-size: 1.5rem; }
.mini-card strong { display: block; font-size: 0.85rem; color: var(--stone-900); }
.mini-card p { font-size: 0.75rem; color: var(--stone-400); margin: 0; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--sage-600);
  color: white;
  padding-block: 0.85rem;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.8rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.service-card--featured {
  background: linear-gradient(135deg, var(--sage-50), white);
  border-color: var(--sage-200);
  grid-column: span 1;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--stone-600);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(33.333% / 2);
  right: calc(33.333% / 2);
  height: 2px;
  background: linear-gradient(90deg, var(--sage-200), var(--sage-300), var(--sage-200));
  z-index: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--sage-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sage-500);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.step-arrow {
  display: none;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.steps-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================================
   THERAPISTS
   ============================================================ */
.therapists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.therapist-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}

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

.therapist-photo {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: white;
  letter-spacing: -0.02em;
}

.tp-1 { background: linear-gradient(135deg, #6a9e6a, #4a8050); }
.tp-2 { background: linear-gradient(135deg, #8fcee8, #3a9dc4); }
.tp-3 { background: linear-gradient(135deg, #e8a0a0, #c96060); }
.tp-4 { background: linear-gradient(135deg, #b8a8e8, #8070c8); }

.therapist-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.therapist-role {
  font-size: 0.78rem;
  color: var(--sage-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.therapist-info p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.therapist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.therapist-tags span {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: var(--sage-100);
  color: var(--sage-600);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.therapists-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--cream-200);
  flex-wrap: wrap;
  gap: 1rem;
}

.therapists-footer p {
  font-size: 0.9rem;
  color: var(--stone-400);
}

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.slider-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.slider-viewport {
  flex: 1;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  max-width: 680px;
  margin: 0 auto;
}

.testimonial-stars {
  font-size: 0.9rem;
  color: var(--amber-300);
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--stone-800);
  font-family: var(--font-accent);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.av-1 { background: var(--sage-400); }
.av-2 { background: var(--rose-300); }
.av-3 { background: var(--sky-300); }
.av-4 { background: var(--amber-300); color: var(--stone-800); }
.av-5 { background: var(--violet-300); }
.av-6 { background: #7bbf7b; }

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--stone-900);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--stone-400);
}


/* Slider arrows */
.slider-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cream-200);
  background: white;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--stone-600);
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--sage-500);
  color: white;
  border-color: var(--sage-500);
  box-shadow: var(--shadow-md);
}

/* Dots */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  background: var(--cream-300);
  cursor: pointer;
  padding: 0;
  transition: width var(--transition-medium), background var(--transition-medium);
}

.slider-dot.active {
  width: 24px;
  background: var(--sage-500);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.pricing-card--popular {
  border-color: var(--sage-400);
  box-shadow: 0 0 0 2px var(--sage-200), var(--shadow-xl);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-500);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--stone-600);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--stone-900);
}

.price-period {
  font-size: 0.85rem;
  color: var(--stone-400);
}

.pricing-desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--stone-600);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--cream-200);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-note {
  font-size: 0.78rem;
  color: var(--stone-400);
  text-align: center;
}

.pricing-footer {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.9rem;
}

.pricing-footer a {
  color: var(--sage-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.why-item h4 { font-size: 1rem; }
.why-item p  { font-size: 0.88rem; }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta {
  background: var(--cream-50);
  overflow: hidden;
  position: relative;
}

.booking-cta-inner {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl);
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin-inline: auto;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-blob-1 {
  width: 300px; height: 300px;
  background: var(--sage-100);
  top: -80px; right: -80px;
  opacity: 0.6;
}

.cta-blob-2 {
  width: 200px; height: 200px;
  background: var(--rose-100);
  bottom: -50px; left: -50px;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content .section-tag { margin-bottom: 1rem; }
.cta-content h2 { margin-bottom: 0.75rem; }
.cta-content > p { margin-bottom: 2rem; }

/* Booking Form */
.booking-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--stone-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--cream-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--stone-800);
  transition: border-color var(--dur-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-400);
  background: white;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236b6455' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--stone-400);
  margin-top: 0.75rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--stone-900);
  gap: 1rem;
  transition: background var(--dur-fast);
}

.faq-question:hover { background: var(--cream-50); }

.faq-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--sage-500);
  transition: transform var(--dur-med) var(--ease);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer a { color: var(--sage-500); text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 1rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--stone-700);
}

.contact-icon { font-size: 1.2rem; }

.contact-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--cream-300);
  color: var(--stone-600);
  transition: all var(--dur-med) var(--ease);
}

.social-link:hover {
  background: var(--sage-100);
  border-color: var(--sage-300);
  color: var(--sage-600);
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-md);
}

.contact-form .form-group { margin-bottom: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--stone-900);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo--light { color: white; }

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.7;
}

.footer-crisis {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-crisis a {
  color: var(--sage-300);
  margin-left: 0.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h5 {
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}

.footer-col li a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .therapists-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl:  2.5rem;
  }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .slider-arrow { width: 34px; height: 34px; }
  .testimonial-card { padding: 1.75rem; }
  .testimonial-text { font-size: 0.95rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--popular { transform: scale(1); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .therapists-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .steps-grid::before { display: none; }

  .step {
    flex-direction: row;
    text-align: left;
    padding: 0;
    gap: 1.5rem;
  }

  .step-number {
    width: 3.5rem; height: 3.5rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .form-row { grid-template-columns: 1fr; }

  .booking-cta-inner { padding: var(--space-lg) var(--space-sm); }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .therapists-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   ABOUT RUCHI
   ============================================================ */
.about-ruchi {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.ruchi-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ruchi-photo {
  width: 260px;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage-300), var(--sage-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: white;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-xl);
}

.ruchi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ruchi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: white;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage-600);
  box-shadow: var(--shadow-sm);
}

.ruchi-bio h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.ruchi-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--stone-700);
  margin-bottom: 1rem;
  font-family: var(--font-accent);
  font-style: italic;
}

.ruchi-bio > p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.ruchi-specialisms,
.ruchi-approach {
  margin-top: 1.5rem;
}

.ruchi-specialisms h5,
.ruchi-approach h5 {
  margin-bottom: 0.75rem;
}

.ruchi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ruchi-tags span {
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
  background: var(--sage-100);
  color: var(--sage-600);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.ruchi-approach .ruchi-tags span {
  background: var(--sky-100);
  color: var(--sky-500);
}

@media (max-width: 900px) {
  .about-ruchi {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ruchi-photo-wrap {
    flex-direction: row;
    align-items: flex-end;
  }
  .ruchi-photo {
    width: 140px;
    height: 160px;
    font-size: 2rem;
    border-radius: var(--radius-lg);
  }
}

/* ============================================================
   SCROLL ANIMATIONS (reduced motion aware)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.form-success {
  text-align: center;
  padding: 2rem;
  display: none;
}

.form-success.show { display: block; }

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ── Share bar (blog posts & games) ── */
.share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem var(--space-sm);
  margin: 2rem auto 0;
  max-width: 720px;
  border-top: 1px solid var(--cream-200);
}
.share-bar-label {
  font-size: 0.82rem;
  color: var(--stone-400);
  font-weight: 500;
  white-space: nowrap;
}
.share-bar-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--cream-200);
  background: white;
  color: var(--stone-700);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: var(--font-body);
}
.share-btn:hover  { background: var(--cream-50); border-color: var(--sage-300); }
.share-wa  { border-color: #c8e8c8; color: #1a7a30; }
.share-wa:hover  { background: #f0faf0; }
.share-x   { border-color: #c8d4e8; color: #1a2a4a; }
.share-x:hover   { background: #f0f4f8; }
.share-copy      { font-family: var(--font-body); }

/* ── Share strip (game pages, standalone) ── */
.share-strip {
  max-width: 580px;
  margin: 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem var(--space-sm);
}
.share-strip-label {
  font-size: 0.82rem;
  color: var(--stone-400);
  font-weight: 500;
}
.share-strip-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--cream-200);
  background: white;
  color: var(--stone-700);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--font-body);
}
.ss-btn:hover  { background: var(--cream-50); border-color: var(--sage-300); }
.ss-wa { border-color: #d0f0d0; color: #1a7a30; }
.ss-wa:hover { background: #f0faf0; }
.ss-x  { border-color: #d0d8e8; color: #1a2a4a; }
.ss-x:hover  { background: #f0f4f8; }

/* ============================================================
   QUIZ / ASSESSMENT PAGES
============================================================ */
.assessment-page { min-height: 100vh; padding-top: 80px; }
.view { display: none; }
.view.active { display: block; }

/* Brief */
.brief-wrap { max-width: 600px; margin: 0 auto; padding: var(--space-lg) var(--space-sm) var(--space-2xl); }
.brief-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.brief-hero { text-align: center; margin-bottom: 1.75rem; }
.brief-hero-icon { font-size: 3.25rem; line-height: 1; margin-bottom: 0.875rem; }
.brief-hero h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--stone-900); margin-bottom: 0.35rem; }
.brief-hero-source { font-size: 0.78rem; font-weight: 600; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.05em; }
.brief-card { background: white; border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; }
.brief-what { font-size: 1rem; line-height: 1.75; color: var(--stone-700); margin-bottom: 1.25rem; }
.brief-instruction { background: var(--sage-50); border-left: 3px solid var(--sage-300); padding: 0.875rem 1rem; border-radius: 0 var(--radius-md) var(--radius-md) 0; font-size: 0.9rem; color: var(--stone-700); line-height: 1.6; }
.brief-instruction strong { color: var(--stone-500); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.brief-instruction ol { margin: 0 0 0.75rem; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.brief-instruction ol li { padding-left: 0.25rem; }
.brief-timeframe { display: block; margin-top: 0.5rem; font-style: italic; color: var(--stone-500); font-size: 0.85rem; }
.brief-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.brief-meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--stone-500); }
.brief-disclaimer { font-size: 0.75rem; color: var(--stone-400); text-align: center; line-height: 1.6; margin-bottom: 1.5rem; }
.brief-share { background: white; border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.brief-share .share-bar-label { margin-bottom: 0.75rem; }

/* Quiz */
.quiz-wrap { max-width: 640px; margin: 0 auto; padding: var(--space-lg) var(--space-sm) var(--space-2xl); }
.quiz-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.btn-back { display: flex; align-items: center; gap: 0.4rem; background: none; border: none; cursor: pointer; font-size: 0.875rem; color: var(--stone-500); padding: 0.4rem 0; transition: color var(--transition-fast); }
.btn-back:hover { color: var(--stone-900); }
.quiz-name { font-size: 0.875rem; font-weight: 600; color: var(--stone-700); }
.q-counter { font-size: 0.8rem; color: var(--stone-400); }
.progress-track { height: 4px; background: var(--cream-200); border-radius: 999px; margin-bottom: 2.5rem; overflow: hidden; }
.progress-fill { height: 100%; background: var(--sage-500); border-radius: 999px; transition: width 0.35s ease; }
.question-card { background: white; border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.q-timeframe { font-size: 0.8rem; font-weight: 600; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.q-text { font-family: var(--font-display); font-size: clamp(1.15rem, 3vw, 1.4rem); color: var(--stone-900); line-height: 1.4; margin-bottom: 1.75rem; }
.answer-list { display: flex; flex-direction: column; gap: 0.65rem; }
.answer-btn { width: 100%; text-align: left; padding: 0.875rem 1.1rem; border: 1.5px solid var(--cream-200); border-radius: var(--radius-md); background: white; cursor: pointer; font-size: 0.925rem; color: var(--stone-700); transition: all var(--transition-fast); display: flex; align-items: center; gap: 0.75rem; }
.answer-btn:hover { border-color: var(--sage-300); background: var(--sage-50); color: var(--stone-900); }
.answer-btn.selected { border-color: var(--sage-500); background: var(--sage-50); color: var(--sage-700); font-weight: 500; }
.answer-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--cream-300); flex-shrink: 0; transition: all var(--transition-fast); }
.answer-btn.selected .answer-dot { border-color: var(--sage-500); background: var(--sage-500); }

/* Result */
.result-wrap { max-width: 620px; margin: 0 auto; padding: var(--space-lg) var(--space-sm) var(--space-2xl); }
.result-hero { text-align: center; margin-bottom: 2rem; }
.result-circle { width: 110px; height: 110px; border-radius: 50%; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.result-circle .score-num { font-family: var(--font-display); font-size: 2rem; line-height: 1; font-weight: 700; }
.result-circle .score-max { font-size: 0.75rem; opacity: 0.7; margin-top: 0.1rem; }
.result-band-label { font-family: var(--font-display); font-size: 1.6rem; color: var(--stone-900); margin-bottom: 0.5rem; }
.result-assessment-name { font-size: 0.8rem; font-weight: 600; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.05em; }
.result-body { background: white; border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; }
.result-description { font-size: 0.975rem; line-height: 1.75; color: var(--stone-700); margin-bottom: 1.25rem; }
.result-ruchi { border-left: 3px solid var(--sage-300); padding-left: 1rem; font-family: var(--font-accent); font-style: italic; font-size: 0.925rem; color: var(--stone-600); line-height: 1.65; }
.result-ruchi cite { display: block; font-style: normal; font-size: 0.78rem; font-weight: 600; color: var(--sage-600); margin-top: 0.5rem; font-family: var(--font-body); }
.result-disclaimer { font-size: 0.75rem; color: var(--stone-400); text-align: center; margin-bottom: 2rem; line-height: 1.6; }
.optin-card { background: var(--sage-50); border: 1px solid var(--sage-100); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.optin-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--stone-900); margin-bottom: 0.4rem; }
.optin-card > p { font-size: 0.875rem; color: var(--stone-600); margin-bottom: 1.25rem; line-height: 1.6; }
.optin-form { display: flex; flex-direction: column; gap: 0.875rem; }
.result-footer-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }

/* Share */
.share-bar { background: white; border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
.share-bar-label { font-size: 0.78rem; font-weight: 600; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.875rem; }
.share-buttons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 1rem; border-radius: 999px; border: none; font-size: 0.825rem; font-weight: 600; cursor: pointer; transition: opacity var(--transition-fast), transform var(--transition-fast); text-decoration: none; white-space: nowrap; }
.share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.share-btn-whatsapp  { background: #25D366; color: white; }
.share-btn-linkedin  { background: #0A66C2; color: white; }
.share-btn-instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.share-btn-twitter   { background: #000; color: white; }
.share-btn-copy      { background: var(--cream-100); color: var(--stone-700); border: 1px solid var(--cream-200); }

/* Band colors */
.band-minimal  { background: var(--green-100); color: var(--sage-600); }
.band-mild     { background: var(--amber-100); color: #92610a; }
.band-moderate { background: #fde8d8; color: #b85c1a; }
.band-high     { background: var(--rose-100); color: var(--rose-500); }
