/* ==========================================================================
   Ayurvedic Hormone Reset™ — Stylesheet
   Modern Women's Healthcare × Premium Ayurveda × Doctor-Led Clinical Trust
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --plum-900: #3b1424;
  --plum-800: #4f1d32;
  --plum-700: #682e46; /* Primary Deep Burgundy / Plum */
  --plum-600: #803957;
  --plum-100: #f6eaf0;
  --plum-50: #fbf5f8;

  --coral-600: #d44d41;
  --coral-500: #e9655a; /* Primary CTA / Warm Coral */
  --coral-400: #f07f76;
  --coral-100: #fdeae8;
  --coral-50: #fff5f4;

  --sage-700: #4f6156;
  --sage-600: #73877b; /* Muted Sage Accent */
  --sage-100: #e8eee9;
  --sage-50: #f4f7f4;

  --blush-100: #fcedea;
  --blush-50: #fff5f3;  /* Soft Blush Background */

  --sand-50: #fffcf9;   /* Warm Off-White Main Background */
  --sand-100: #f8f4ef;
  --sand-200: #ede6dc;

  --charcoal-900: #1b1b1b;
  --charcoal-800: #252525; /* Body Text Charcoal */
  --charcoal-600: #4a4a4a;
  --charcoal-500: #666666;
  --charcoal-300: #999999;
  --charcoal-100: #e5e5e5;

  --white: #ffffff;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-narrow: 840px;
  --section-padding-y: clamp(4rem, 8vw, 7rem);
  --section-padding-x: clamp(1.25rem, 5vw, 2.5rem);

  /* Borders & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --border-subtle: 1px solid rgba(104, 46, 70, 0.08);
  --border-card: 1px solid rgba(104, 46, 70, 0.12);
  --border-plum: 1px solid rgba(104, 46, 70, 0.2);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(37, 37, 37, 0.04);
  --shadow-md: 0 8px 24px rgba(104, 46, 70, 0.08);
  --shadow-lg: 0 16px 40px rgba(104, 46, 70, 0.12);
  --shadow-coral: 0 8px 24px rgba(233, 101, 90, 0.35);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--sand-50);
  color: var(--charcoal-800);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  position: relative;
}

/* Section Background Variations */
.bg-sand { background-color: var(--sand-50); }
.bg-blush { background-color: var(--blush-50); }
.bg-white { background-color: var(--white); }
.bg-plum { background-color: var(--plum-700); color: var(--white); }
.bg-plum-dark { background-color: var(--plum-900); color: var(--white); }

/* --- Typography System --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--plum-700);
}

.bg-plum h1, .bg-plum h2, .bg-plum h3, .bg-plum h4,
.bg-plum-dark h1, .bg-plum-dark h2, .bg-plum-dark h3, .bg-plum-dark h4 {
  color: var(--white);
}

.heading-hero {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.heading-section {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.heading-sub {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.4;
  color: var(--plum-700);
}

.bg-plum .heading-sub,
.bg-plum-dark .heading-sub {
  color: rgba(255, 255, 255, 0.95);
}

.subheadline-text {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--charcoal-600);
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--charcoal-600);
  max-width: 680px;
  margin: 0.75rem auto 0;
}

/* Eyebrows & Badges */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background-color: var(--plum-100);
  color: var(--plum-700);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(104, 46, 70, 0.15);
}

.eyebrow-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--coral-500);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(233, 101, 90, 0.6); }
  70% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 6px rgba(233, 101, 90, 0); }
  100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(233, 101, 90, 0); }
}

.bg-plum .eyebrow-badge {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffd8d3;
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- Primary Call to Action Buttons --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--coral-500);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 1.1rem 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-coral);
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-align: center;
}

.btn-cta:hover {
  background-color: var(--coral-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 101, 90, 0.45);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta-lg {
  font-size: 1.1875rem;
  padding: 1.25rem 2.75rem;
  width: 100%;
  max-width: 480px;
}

.btn-cta-sm {
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(233, 101, 90, 0.25);
}

.cta-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--charcoal-500);
  margin-top: 0.85rem;
}

.cta-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.bg-plum .cta-microcopy {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Navigation Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: rgba(255, 252, 249, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--border-subtle);
  transition: background-color var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--plum-700), var(--plum-900));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-50);
}

.brand-text h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--plum-700);
  letter-spacing: -0.01em;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--charcoal-500);
  font-weight: 500;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--plum-700);
  background-color: var(--blush-100);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(104, 46, 70, 0.1);
}

/* Coral Text Highlight Token for Hero Outcome */
.highlight-coral {
  color: var(--coral-500);
}

/* --- Hero Section --- */
.hero-section {
  padding-top: clamp(2.5rem, 4.5vw, 4rem);
  padding-bottom: clamp(2.5rem, 4.5vw, 4rem);
  background: radial-gradient(circle at 85% 20%, rgba(252, 237, 234, 0.7) 0%, rgba(255, 252, 249, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(235, 241, 238, 0.5) 0%, rgba(255, 252, 249, 0) 50%),
              var(--sand-50);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-content {
  max-width: 660px;
}

.heading-hero {
  font-size: clamp(1.95rem, 3.5vw, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--plum-700);
}

.hero-promise {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.45;
  color: var(--plum-800);
  margin-bottom: 0.75rem;
}

.hero-doctor-intro {
  font-size: clamp(0.925rem, 1.1vw, 1.05rem);
  line-height: 1.55;
  color: var(--charcoal-600);
  margin-bottom: 1.15rem;
}

.hero-spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--white);
  border: var(--border-subtle);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--charcoal-800);
  box-shadow: var(--shadow-sm);
}

.spec-chip.highlight {
  background-color: var(--plum-50);
  border-color: rgba(104, 46, 70, 0.2);
  color: var(--plum-700);
  font-weight: 700;
}

.hero-price-cta-block {
  background-color: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  box-shadow: var(--shadow-md);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.price-original {
  font-size: 1.25rem;
  color: var(--charcoal-300);
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 2.65rem;
  color: var(--plum-700);
  font-weight: 700;
  line-height: 1;
}

.price-discount-tag {
  background-color: #e6f4ea;
  color: #137333;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* Hero Media / Doctor Card (Shifted right for optimal balance) */
.hero-media-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.hero-coach-card {
  width: 100%;
  max-width: 415px;
  margin-left: auto;
  background: linear-gradient(180deg, #faf0f4 0%, #ffffff 100%);
  border: 2px solid rgba(104, 46, 70, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-coach-photo-wrap {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(246, 234, 240, 0.8) 0%, rgba(255, 255, 255, 0.2) 75%);
  padding-top: 1rem;
}

.hero-coach-photo-wrap img {
  width: auto;
  max-width: 90%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 24px rgba(104, 46, 70, 0.15));
}

.hero-coach-title-card {
  width: 100%;
  background-color: var(--white);
  border-top: 1px solid rgba(104, 46, 70, 0.1);
  padding: 1rem 1.25rem;
  text-align: center;
}

.hero-coach-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--plum-700);
  line-height: 1.2;
}

.hero-coach-role {
  font-size: 0.8125rem;
  color: var(--charcoal-600);
  margin-top: 0.2rem;
  font-weight: 500;
}

.hero-coach-experience {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--coral-600);
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}

/* --- Immediate Trust Strip --- */
.trust-strip-section {
  background-color: var(--white);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  position: relative;
  padding: 0 1rem;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--charcoal-100);
}

.trust-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 400;
  color: var(--plum-700);
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.trust-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-600);
  line-height: 1.35;
}

/* --- Webinar Details Section --- */
.webinar-details-card {
  background: linear-gradient(145deg, #ffffff, var(--blush-50));
  border: 2px solid rgba(104, 46, 70, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.webinar-details-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--plum-700), var(--coral-500), var(--sage-600));
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 2.75rem;
}

.detail-box {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.detail-box:hover {
  transform: translateY(-2px);
}

.detail-icon {
  width: 42px;
  height: 42px;
  background-color: var(--blush-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
  flex-shrink: 0;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal-500);
}

.detail-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum-700);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.webinar-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 1.5rem;
  border-top: var(--border-subtle);
}

/* --- Big Idea Section (5 Symptoms -> 1 Hormonal Pattern) --- */
.big-idea-flow {
  margin-top: 3.5rem;
}

.symptoms-convergence-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

.symptoms-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.symptom-card {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.symptom-card:hover {
  border-color: rgba(104, 46, 70, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.symptom-icon {
  width: 36px;
  height: 36px;
  background-color: var(--coral-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-500);
  flex-shrink: 0;
}

.symptom-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal-800);
}

.symptom-desc {
  font-size: 0.8125rem;
  color: var(--charcoal-500);
}

.convergence-nexus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.nexus-core {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--plum-700), var(--plum-900));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 1rem;
  box-shadow: 0 0 0 12px var(--plum-100), 0 12px 30px rgba(104, 46, 70, 0.25);
  animation: pulse-core 3s infinite ease-in-out;
}

@keyframes pulse-core {
  0% { box-shadow: 0 0 0 8px var(--plum-100), 0 12px 30px rgba(104, 46, 70, 0.25); }
  50% { box-shadow: 0 0 0 16px var(--plum-100), 0 16px 36px rgba(104, 46, 70, 0.35); }
  100% { box-shadow: 0 0 0 8px var(--plum-100), 0 12px 30px rgba(104, 46, 70, 0.25); }
}

.nexus-core span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f7d2cd;
}

.nexus-core strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.big-idea-explanation {
  background-color: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}

.big-idea-explanation p {
  font-size: 1.0625rem;
  color: var(--charcoal-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.big-idea-explanation strong {
  color: var(--plum-700);
}

/* --- What You Will Learn (8 Editorial Outcomes) --- */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.learn-item {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.learn-item:hover {
  transform: translateY(-3px);
  border-color: rgba(104, 46, 70, 0.3);
  box-shadow: var(--shadow-md);
}

.learn-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--coral-500);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.learn-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum-700);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.learn-body {
  font-size: 0.95rem;
  color: var(--charcoal-600);
  line-height: 1.65;
}

.learn-body p + p {
  margin-top: 0.5rem;
}

.learn-path-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.learn-path-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--plum-50);
  color: var(--plum-700);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.learn-footer-banner {
  background-color: var(--plum-50);
  border: 1px dashed rgba(104, 46, 70, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum-700);
  margin-bottom: 2.5rem;
}

/* --- 4-Part Proprietary Mechanism Section --- */
.mechanism-pathway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin: 3.5rem 0;
}

.mechanism-step {
  background-color: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.mechanism-step:hover {
  border-color: var(--plum-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mechanism-step.featured {
  border-color: rgba(104, 46, 70, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, var(--blush-50) 100%);
}

.step-badge {
  width: 44px;
  height: 44px;
  background-color: var(--plum-700);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.step-sanskrit {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 0.25rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--plum-700);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--charcoal-600);
  line-height: 1.6;
}

.step-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}

.step-pill {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--sand-100);
  color: var(--charcoal-800);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* --- Recognition Section ("Does Any Of This Feel Familiar?") --- */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 3rem 0;
}

.recognition-card {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.recognition-card:hover {
  transform: translateY(-2px);
  border-color: rgba(104, 46, 70, 0.25);
}

.check-icon-wrap {
  width: 26px;
  height: 26px;
  background-color: var(--coral-100);
  color: var(--coral-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.recognition-text {
  font-size: 0.9625rem;
  color: var(--charcoal-800);
  line-height: 1.5;
  font-weight: 500;
}

.recognition-reassurance {
  background-color: var(--white);
  border: 2px solid var(--plum-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.recognition-reassurance p {
  font-size: 1.0625rem;
  color: var(--plum-700);
  font-weight: 600;
  line-height: 1.6;
}

/* --- Who Should Attend Section --- */
.attend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 3rem;
}

.attend-item {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.attend-item .check-icon-wrap {
  background-color: var(--sage-100);
  color: var(--sage-700);
}

.attend-item span {
  font-size: 0.9375rem;
  color: var(--charcoal-800);
  font-weight: 500;
}

.bengaluru-exclusive-banner {
  background: linear-gradient(135deg, var(--plum-700), var(--plum-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
}

.bengaluru-exclusive-banner h3 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.bengaluru-exclusive-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

/* --- Differentiator Section (Not This vs Instead) --- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  margin: 3rem 0;
}

.diff-card {
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
}

.diff-card.not-this {
  background-color: #faf7f5;
  border: 1px solid #ebdcd7;
}

.diff-card.not-this h3 {
  color: #a3483b;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diff-card.instead {
  background: linear-gradient(145deg, #ffffff, var(--plum-50));
  border: 2px solid var(--plum-700);
  position: relative;
}

.diff-card.instead h3 {
  color: var(--plum-700);
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.diff-card.not-this .icon-cross {
  color: #c94a3b;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.diff-card.instead .icon-check {
  color: var(--plum-700);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- Social Proof Section --- */
.proof-stats-banner {
  background-color: var(--plum-50);
  border: var(--border-plum);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.proof-stats-banner h3 {
  font-size: 1.85rem;
  color: var(--plum-700);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
}

.featured-testimonial {
  background: linear-gradient(145deg, #ffffff, var(--blush-50));
  border: 2px solid rgba(104, 46, 70, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--coral-400);
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--charcoal-800);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: var(--border-subtle);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  background-color: var(--plum-100);
  color: var(--plum-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum-700);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--charcoal-500);
}

.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mini-testimonial {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.mini-testimonial:hover {
  transform: translateY(-2px);
  border-color: rgba(104, 46, 70, 0.2);
}

.mini-testimonial p {
  font-size: 0.9375rem;
  color: var(--charcoal-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mini-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.mini-author strong {
  color: var(--plum-700);
}

.mini-author span {
  color: var(--charcoal-500);
}

/* --- Why Ayurveda Section (12 Holistic Pillars) --- */
.holistic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 3rem 0;
}

.holistic-card {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.holistic-card:hover {
  border-color: var(--sage-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.holistic-icon {
  width: 44px;
  height: 44px;
  background-color: var(--sage-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-700);
  margin: 0 auto 0.85rem;
}

.holistic-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--plum-700);
  margin-bottom: 0.25rem;
}

.holistic-desc {
  font-size: 0.775rem;
  color: var(--charcoal-500);
  line-height: 1.4;
}

.closing-ayurveda-quote {
  background: linear-gradient(135deg, var(--plum-50), var(--blush-50));
  border: 2px solid rgba(104, 46, 70, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.closing-ayurveda-quote h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--plum-700);
  line-height: 1.35;
}

/* --- Why Bengaluru Section (Funnel Pathway) --- */
.funnel-pathway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 3.5rem 0 3rem;
  position: relative;
}

.funnel-step {
  background-color: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.35rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.funnel-step.active-step {
  border-color: var(--coral-500);
  background: linear-gradient(180deg, #ffffff 0%, var(--coral-50) 100%);
}

.funnel-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--coral-500);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.funnel-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--plum-700);
  margin-bottom: 0.5rem;
}

.funnel-step-desc {
  font-size: 0.8125rem;
  color: var(--charcoal-600);
  line-height: 1.5;
}

.bengaluru-clinic-banner {
  background-color: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-top: 3.5rem;
}

.clinic-banner-content {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.clinic-banner-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* --- Doctor Authority Section --- */
.doctor-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.doctor-media-col {
  position: relative;
}

.doctor-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(104, 46, 70, 0.15);
  background: linear-gradient(180deg, #faf0f4 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-photo-wrap {
  width: 100%;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(246, 234, 240, 0.85) 0%, rgba(255, 255, 255, 0.2) 75%);
  padding-top: 1.5rem;
}

.doctor-photo-wrap img {
  width: auto;
  max-width: 90%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 24px rgba(104, 46, 70, 0.15));
}

.doctor-credentials-card {
  width: 100%;
  background-color: var(--white);
  border-top: 1px solid rgba(104, 46, 70, 0.1);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.doctor-credentials-card .degrees {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--coral-500);
  letter-spacing: 0.01em;
}

.doctor-credentials-card .clinic-name {
  font-size: 0.8125rem;
  color: var(--plum-700);
  font-weight: 700;
  margin-top: 0.25rem;
}

.doctor-bio-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.doctor-title-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--coral-500);
  margin-bottom: 1.5rem;
}

.doctor-bio-paragraphs p {
  font-size: 1rem;
  color: var(--charcoal-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.doctor-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.proof-mini-item {
  background-color: var(--white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proof-mini-item strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--plum-700);
}

.proof-mini-item span {
  font-size: 0.775rem;
  color: var(--charcoal-600);
  line-height: 1.3;
}

/* Secondary Authority Media Strip */
.doctor-gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(37, 37, 37, 0.9) 100%);
  color: var(--white);
  padding: 1.5rem 1.25rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* --- Final Conversion Section (Deep Burgundy / Plum) --- */
.final-conversion-section {
  background: linear-gradient(160deg, var(--plum-900) 0%, var(--plum-700) 100%);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.final-offer-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 780px;
  margin: 3rem auto 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.final-offer-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.final-spec-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.final-price-wrapper {
  margin: 2rem 0 2.25rem;
}

.final-price-original {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.final-price-current {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.35rem;
}

/* --- Sticky CTA Bar (Desktop & Mobile) --- */
.sticky-cta-bar, .mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(104, 46, 70, 0.12);
  padding: 0.65rem var(--section-padding-x);
  box-shadow: 0 -6px 25px rgba(104, 46, 70, 0.12);
  transform: translateY(105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.sticky-cta-bar.visible, .mobile-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 1.5rem;
}

.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sticky-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum-800);
}

.sticky-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sticky-original {
  font-size: 0.8125rem;
  color: var(--charcoal-300);
  text-decoration: line-through;
  font-weight: 500;
}

.sticky-current {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum-700);
  line-height: 1;
}

.sticky-cta-bar .btn-cta, .mobile-sticky-bar .btn-cta {
  padding: 0.7rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(233, 101, 90, 0.35);
  white-space: nowrap;
}

/* Visibility Helper Classes */
.desktop-only { display: inline; }
.mobile-only { display: none; }

/* --- Registration Modal Flow --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(37, 37, 37, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: var(--border-card);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--sand-100);
  color: var(--charcoal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--plum-100);
  color: var(--plum-700);
}

.modal-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: var(--border-subtle);
  background: linear-gradient(180deg, var(--plum-50) 0%, #ffffff 100%);
}

.modal-header h3 {
  font-size: 1.65rem;
  color: var(--plum-700);
  margin-bottom: 0.25rem;
}

.modal-header p {
  font-size: 0.875rem;
  color: var(--charcoal-500);
}

.modal-body {
  padding: 1.75rem 2rem;
}

.order-summary-box {
  background-color: var(--blush-50);
  border: 1px solid rgba(104, 46, 70, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-summary-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--plum-700);
}

.order-summary-price {
  text-align: right;
}

.order-summary-price s {
  font-size: 0.75rem;
  color: var(--charcoal-300);
}

.order-summary-price strong {
  font-size: 1.35rem;
  color: var(--plum-700);
  font-family: var(--font-serif);
  margin-left: 0.35rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--charcoal-800);
  margin-bottom: 0.4rem;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--charcoal-100);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--charcoal-800);
  background-color: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--plum-600);
  box-shadow: 0 0 0 3px rgba(104, 46, 70, 0.12);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.payment-chip {
  border: 1px solid var(--charcoal-100);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal-600);
  cursor: pointer;
  background-color: var(--white);
  transition: all var(--transition-fast);
}

.payment-chip.active, .payment-chip:hover {
  border-color: var(--plum-700);
  background-color: var(--plum-50);
  color: var(--plum-700);
}

/* Confirmation View in Modal */
.confirmation-view {
  text-align: center;
  padding: 2rem 1.5rem;
  display: none;
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  background-color: #e6f4ea;
  color: #137333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.confirmation-view h3 {
  font-size: 1.85rem;
  color: var(--plum-700);
  margin-bottom: 0.5rem;
}

.confirmation-view p {
  font-size: 0.95rem;
  color: var(--charcoal-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calendar-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--sand-100);
  color: var(--plum-700);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  border: var(--border-subtle);
  margin: 0.35rem;
  transition: background-color var(--transition-fast);
}

.calendar-action-btn:hover {
  background-color: var(--plum-100);
}

/* --- Site Footer --- */
.site-footer {
  background-color: var(--sand-50);
  border-top: var(--border-subtle);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  font-size: 0.875rem;
  color: var(--charcoal-600);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h4 {
  font-size: 1.35rem;
  color: var(--plum-700);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-col h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--plum-700);
  margin-bottom: 1rem;
}

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

.footer-col a:hover {
  color: var(--coral-500);
}

.medical-disclaimer-box {
  background-color: var(--sand-100);
  border: 1px solid var(--charcoal-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  color: var(--charcoal-500);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  font-size: 0.775rem;
  color: var(--charcoal-500);
  padding-top: 1.5rem;
  border-top: var(--border-subtle);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid, .doctor-layout, .testimonials-layout, .bengaluru-clinic-banner, .diff-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image-frame img, .doctor-photo-frame img {
    height: 440px;
  }

  .symptoms-convergence-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .convergence-nexus {
    margin: 1.5rem 0;
  }

  .mechanism-pathway, .holistic-grid, .funnel-pathway {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* 1. Mobile Hero: 100svh Centered First Screen (Spacious, Zero-Leak) */
  .hero-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    background: radial-gradient(circle at 50% 15%, rgba(252, 237, 234, 0.8) 0%, rgba(255, 252, 249, 0) 70%),
                var(--sand-50);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .hero-content {
    min-height: 100svh;
    min-height: 100dvh;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(1.25rem, 3.5vh, 2.25rem) var(--section-padding-x);
    box-sizing: border-box;
  }

  /* Eyebrow: Spacious Qualifier */
  .eyebrow-badge {
    margin: 0 auto 0.75rem auto;
    padding: 0.28rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    line-height: 1.25;
    text-align: center;
    justify-content: center;
    max-width: fit-content;
  }

  .eyebrow-badge .pulse-dot {
    width: 6px;
    height: 6px;
  }

  /* Headline: Exact Same Font Style as Desktop (DM Serif Display, Weight 400, Crisp & Elegant) */
  .heading-hero {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.75rem, 6.2vw, 2.15rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: center;
    margin: 0 auto 0.75rem auto;
    max-width: 19ch;
    color: var(--plum-700);
  }

  /* Subheadline: Exact Same Font Style as Desktop (Plus Jakarta Sans, Weight 600) */
  .hero-promise {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: clamp(0.875rem, 3.2vw, 0.95rem);
    line-height: 1.45;
    color: var(--plum-800);
    text-align: center;
    margin: 0 auto 0.65rem auto;
    max-width: 32ch;
  }

  /* Supporting Line: Exact Same Font Style as Desktop */
  .hero-doctor-intro {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--charcoal-600);
    text-align: center;
    margin: 0 auto 0.85rem auto;
  }

  .hero-doctor-intro strong {
    font-weight: 700;
    color: var(--charcoal-800);
  }

  /* Badges: Spacious Horizontal Row */
  .hero-spec-strip {
    margin: 0 auto 1rem auto;
    gap: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .spec-chip {
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    gap: 0.3rem;
    border-radius: var(--radius-sm);
  }

  .spec-chip svg {
    width: 12px;
    height: 12px;
  }

  /* Flatter, Integrated Price + CTA Conversion Block */
  .hero-price-cta-block {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0.25rem auto 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price-row {
    justify-content: center;
    margin-bottom: 0.6rem;
    gap: 0.75rem;
  }

  .price-original {
    font-size: 1.05rem;
    color: var(--charcoal-300);
  }

  .price-current {
    font-size: 2.25rem;
    line-height: 1;
    color: var(--plum-700);
  }

  .hero-price-cta-block .btn-cta-lg {
    width: 95%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0.95rem 1.4rem;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    gap: 0.5rem;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(233, 101, 90, 0.35);
  }

  .hero-price-cta-block .btn-cta-lg svg {
    width: 18px;
    height: 18px;
  }

  .cta-microcopy {
    font-size: 0.7rem;
    color: var(--charcoal-500);
    margin-top: 0.65rem;
    gap: 0.5rem;
    justify-content: center;
  }

  /* 2. Doctor Authority Block on Mobile (100% on Next Scroll Section) */
  .hero-media-wrapper {
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--sand-50);
  }

  .hero-coach-card {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border-width: 1.5px;
    box-shadow: var(--shadow-md);
  }

  .hero-coach-photo-wrap {
    height: 280px;
    padding-top: 0.75rem;
  }

  .hero-coach-photo-wrap img {
    max-height: 100%;
    object-fit: contain;
    object-position: top center;
  }

  .hero-coach-title-card {
    padding: 0.85rem 1rem;
    text-align: center;
  }

  .hero-coach-name {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .hero-coach-role {
    font-size: 0.75rem;
    margin-top: 0.2rem;
  }

  .hero-coach-experience {
    font-size: 0.75rem;
    margin-top: 0.2rem;
  }

  .desktop-only { display: none !important; }
  .mobile-only { display: inline !important; }

  .sticky-cta-bar, .mobile-sticky-bar {
    padding: 0.55rem var(--section-padding-x);
  }

  .sticky-bar-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .sticky-title {
    font-size: 0.75rem;
    color: var(--charcoal-600);
    line-height: 1.1;
  }

  .sticky-pricing {
    gap: 0.35rem;
  }

  .sticky-current {
    font-size: 1.35rem;
  }

  .sticky-cta-bar .btn-cta, .mobile-sticky-bar .btn-cta {
    padding: 0.6rem 1.15rem;
    font-size: 0.8125rem;
  }

  body {
    padding-bottom: 64px; /* clearance for sticky bar */
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .trust-item:not(:last-child)::after {
    display: none;
  }

  .learn-grid, .recognition-grid, .attend-grid, .doctor-proof-grid, .doctor-gallery-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .mechanism-pathway, .holistic-grid, .funnel-pathway {
    grid-template-columns: 1fr;
  }

  .hero-image-frame img, .doctor-photo-frame img {
    height: 340px;
  }
}
