/* Reset Rituals - Landing Page CSS */

/* ========================================
   BASE STYLES & VARIABLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-primary: #14b8a6;
  --teal-dark: #0d9488;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --bg-light: #f8faf9;
  --bg-white: #ffffff;
  --border-subtle: rgba(0, 0, 0, 0.06);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--bg-white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

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

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

/* ========================================
   NAVIGATION
   ======================================== */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-image {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--teal-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  padding: 8rem 2rem 5rem;
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

.trust-indicators {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal-primary);
}

/* Calendar Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.calendar-mockup {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-subtle);
  max-width: 500px;
  width: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.calendar-month {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.calendar-nav-dots {
  display: flex;
  gap: 4px;
}

.calendar-nav-dots span {
  width: 8px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 50%;
}

.calendar-days {
  display: flex;
  gap: 0.75rem;
}

.calendar-day {
  flex: 1;
  min-width: 0;
}

.day-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.day-events {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event {
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event.meeting {
  background: #f1f5f9;
  color: var(--text-secondary);
}

.event.reset {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(20, 184, 166, 0.05));
  color: var(--teal-dark);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

/* ========================================
   JOURNEY MAP SECTION
   ======================================== */

.journey-map-section {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8faf9 100%);
  padding: 6rem 2rem;
}

.journey-map-container {
  max-width: 1400px;
  margin: 0 auto;
}

.journey-map-header {
  text-align: center;
  margin-bottom: 4rem;
}

.journey-map-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.journey-map-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--text-secondary);
  font-style: italic;
}

.journey-timeline-v2 {
  position: relative;
  padding: 2rem 0;
  margin: 2rem 0;
}

.timeline-track {
  position: absolute;
  top: 160px;
  left: 10%;
  right: 10%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, #94a3b8 0%, var(--teal-primary) 30%, var(--teal-dark) 40%, #64748b 55%, var(--teal-primary) 70%, var(--teal-dark) 85%, #94a3b8 100%);
  border-radius: 3px;
}

.journey-scenes {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.journey-scenes.four-items {
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-around;
}

.journey-scene {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 220px;
}

.journey-scene.is-reset {
  z-index: 20;
}

.reset-glow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.3) 0%, rgba(20, 184, 166, 0.1) 40%, transparent 70%);
  border-radius: 24px;
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

.scene-illustration {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 4px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.scene-illustration.square {
  border-radius: 16px;
  width: 180px;
  height: 180px;
}

.journey-scene:hover .scene-illustration {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.journey-scene.is-reset .scene-illustration {
  border-color: var(--teal-primary);
  border-width: 5px;
  box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.15), 0 8px 30px rgba(20, 184, 166, 0.2);
}

.scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.journey-scene:hover .scene-image {
  transform: scale(1.1);
}

.calendar-notif {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid var(--teal-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
  animation: notif-bounce 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes notif-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
}

.timeline-marker {
  width: 18px;
  height: 18px;
  background: #cbd5e1;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 1rem 0;
  position: relative;
  z-index: 10;
}

.timeline-marker.reset {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.2), 0 4px 12px rgba(20, 184, 166, 0.3);
}

.scene-info {
  text-align: center;
  padding: 0 0.5rem;
}

.reset-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.reset-badge svg {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
  color: #fbbf24;
}

.scene-time {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.scene-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}

.scene-label.reset {
  color: var(--teal-dark);
  font-weight: 700;
}

.scene-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.scene-desc.highlight {
  color: var(--teal-dark);
  font-weight: 600;
}

.energy-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
}

.energy-badge svg {
  width: 12px;
  height: 12px;
}

.energy-badge.medium {
  background: #fef3c7;
  color: #92400e;
}

.energy-badge.high {
  background: #dcfce7;
  color: #166534;
}

.energy-badge.boosted,
.energy-badge.recharged {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: #0f766e;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
  background: var(--bg-white);
  padding: 6rem 2rem;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-primary);
  background: rgba(20, 184, 166, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.how-it-works-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.how-it-works-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.trust-signals {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-signal svg {
  width: 18px;
  height: 18px;
  color: var(--teal-primary);
}

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

.step-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   RITUALS SECTION
   ======================================== */

.rituals-section {
  background: var(--bg-light);
  padding: 6rem 2rem;
}

.rituals-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rituals-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rituals-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.rituals-tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ritual-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.ritual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ritual-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--teal-primary);
}

.ritual-icon svg {
  width: 28px;
  height: 28px;
}

.ritual-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.ritual-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ========================================
   WORKSHOPS SECTION
   ======================================== */

.workshops-section {
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 50%, #faf8f6 100%);
  padding: 6rem 2rem;
}

.workshops-container {
  max-width: 1300px;
  margin: 0 auto;
}

.workshops-header {
  text-align: center;
  margin-bottom: 4rem;
}

.workshops-overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-primary);
  background: rgba(20, 184, 166, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.workshops-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.workshops-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
}

.workshops-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.workshop-visual-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
}

.workshop-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.workshop-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.workshop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.workshop-visual-card:hover .workshop-image {
  transform: scale(1.08);
}

.workshop-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.workshop-badge.energy {
  background: rgba(249, 115, 22, 0.9);
  color: white;
}

.workshop-badge.nourish {
  background: rgba(34, 197, 94, 0.9);
  color: white;
}

.workshop-badge.connect {
  background: rgba(139, 92, 246, 0.9);
  color: white;
}

.workshop-content {
  padding: 1.75rem;
  text-align: center;
}

.workshop-category {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.workshop-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.workshop-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-align: center;
}

.workshop-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.workshop-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 8px;
}

.workshop-feature svg {
  width: 14px;
  height: 14px;
  color: var(--teal-primary);
}

/* Power of Both */
.power-of-both-section {
  background: #f8fafc;
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
}

.power-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.power-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.power-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  flex: 1;
  max-width: 360px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.power-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.power-card.daily {
  border-top: 5px solid var(--teal-primary);
}

.power-card.quarterly {
  border-top: 5px solid #8b5cf6;
}

.power-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.power-card.daily .power-icon {
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal-dark);
}

.power-card.quarterly .power-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.power-icon svg {
  width: 36px;
  height: 36px;
}

.power-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.power-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.power-plus {
  font-size: 48px;
  font-weight: 300;
  color: #cbd5e1;
  display: flex;
  align-items: center;
}

.power-synthesis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  max-width: 650px;
  margin: 0 auto;
}

.synthesis-equals {
  font-size: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.synthesis-text {
  font-size: 17px;
  font-weight: 600;
  color: white;
}

/* ========================================
   IMPACT SECTION
   ======================================== */

.impact-section {
  background: var(--bg-white);
  padding: 6rem 2rem;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.impact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.impact-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-subtle);
  border-top: 4px solid var(--card-color);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-color) 15%, transparent), color-mix(in srgb, var(--card-color) 5%, transparent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--card-color);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

/* ========================================
   ROI SECTION
   ======================================== */

.roi-section {
  background: var(--bg-light);
  padding: 4rem 2rem;
}

.roi-container {
  max-width: 900px;
  margin: 0 auto;
}

.roi-quote {
  background: white;
  border-left: 6px solid var(--teal-primary);
  border-radius: 12px;
  padding: 3rem;
}

.roi-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.roi-quote-source {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ========================================
   THOUGHT LINE
   ======================================== */

.thought-line {
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  padding: 4rem 2rem;
  text-align: center;
}

.thought-line-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: white;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.6;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
  padding: 6rem 2rem;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-form-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-subtle);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  transition: all 0.2s ease;
  background: #fafafa;
}

.form-input:focus {
  outline: none;
  border-color: var(--teal-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.form-submit-btn svg {
  width: 18px;
  height: 18px;
}

.contact-alternatives {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.contact-alternatives p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-direct {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--teal-dark);
}

.contact-link svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
  background: var(--bg-light);
  padding: 5rem 2rem;
  text-align: center;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-outline {
  background: white;
  color: var(--text-primary);
  border: 2px solid #e2e8f0;
}

.btn-outline:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--text-primary);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subheadline {
    margin: 0 auto 2rem;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .rituals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workshops-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .power-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .power-card {
    max-width: 100%;
    width: 100%;
  }
  
  .power-plus {
    transform: rotate(90deg);
    font-size: 40px;
    margin: 1rem 0;
  }
  
  .journey-scenes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .journey-scenes.four-items {
    justify-content: center;
  }
  
  .journey-scene {
    flex: 0 0 calc(50% - 2rem);
    max-width: 250px;
  }
  
  .timeline-track {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-section {
    padding: 6rem 1.5rem 4rem;
    min-height: auto;
  }
  
  .journey-map-section,
  .how-it-works-section,
  .rituals-section,
  .workshops-section,
  .impact-section {
    padding: 4rem 1.5rem;
  }
  
  .journey-scenes {
    flex-direction: column;
    align-items: center;
  }
  
  .journey-scene {
    flex: 1;
    width: 100%;
    max-width: 280px;
  }
  
  .scene-illustration.square {
    width: 160px;
    height: 160px;
  }
  
  .timeline-marker {
    display: none;
  }
  
  .rituals-grid {
    grid-template-columns: 1fr;
  }
  
  .workshops-visual-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .workshop-image-wrapper {
    height: 180px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .power-of-both-section {
    padding: 2.5rem 1.5rem;
  }
  
  .power-synthesis {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}


/* ========================================
   INFOGRAPHIC SECTION - Impact Metrics
   ======================================== */

.infographic-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.infographic-container {
  max-width: 1200px;
  margin: 0 auto;
}

.infographic-header {
  text-align: center;
  margin-bottom: 4rem;
}

.infographic-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.infographic-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Infographic Cards Grid */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual Card Styling */
.infographic-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.infographic-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Featured Card (Teal - middle) */
.infographic-card.featured {
  transform: scale(1.05);
  border-bottom: 4px solid #0d9488;
  z-index: 10;
}

.infographic-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

/* Icon Wrapper */
.infographic-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.infographic-card:hover .infographic-icon-wrapper {
  transform: scale(1.1);
}

/* Color Variants - Icon Wrappers */
.infographic-icon-wrapper.indigo {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  color: #4f46e5;
}

.infographic-icon-wrapper.teal {
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #0d9488;
}

.infographic-icon-wrapper.purple {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  color: #9333ea;
}

/* Large Stat Number - Oswald Font */
.infographic-stat {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.infographic-stat.indigo {
  color: #4f46e5;
}

.infographic-stat.teal {
  color: #0d9488;
}

.infographic-stat.purple {
  color: #9333ea;
}

/* Decorative Bar Under Stat */
.infographic-stat-bar {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.infographic-stat-bar.indigo {
  background: #4f46e5;
}

.infographic-stat-bar.teal {
  background: #0d9488;
}

.infographic-stat-bar.purple {
  background: #9333ea;
}

/* Card Title */
.infographic-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

/* Card Description */
.infographic-card-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Source Citation */
.infographic-source {
  font-size: 12px;
  color: #94a3b8;
  font-style: italic;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.infographic-card:nth-child(1) {
  animation-delay: 0.1s;
}

.infographic-card:nth-child(2) {
  animation-delay: 0.2s;


/* Contact Info in Final CTA */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-item i {
  color: var(--olive-primary);
  width: 18px;
  height: 18px;
}

.contact-link-text {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link-text:hover {
  color: var(--olive-primary);
}
}

.infographic-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .infographic-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }
  
  .infographic-card.featured {
    transform: scale(1);
  }
  
  .infographic-card.featured:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 640px) {
  .infographic-section {
    padding: 4rem 1.5rem;
  }
  
  .infographic-card {
    padding: 2rem;
  }
  
  .infographic-stat {
    font-size: 56px;
  }
  
  .infographic-icon-wrapper {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }
}


/* ========================================
   PROBLEM SECTION - Stats & Challenges
   ======================================== */

/* Section Containers */
.section {
  padding: 6rem 3rem;
}

.section-alt {
  background: var(--bg-cream);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Problem Section - Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: #f0f4e8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7b3a;
  margin-bottom: 1.5rem;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #6b7b3a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.stat-source {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 0.75rem;
  font-style: italic;
}

/* India Stats - 6 column grid */
.india-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.india-stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e5;
}

.india-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d4a5a5;
  margin-bottom: 0.5rem;
}

/* Challenges Section - Two Column Comparison */
.challenges-section {
  background: white;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  border-radius: 24px;
}

.challenges-container {
  max-width: 1280px;
  margin: 0 auto;
}

.challenges-header {
  text-align: center;
  margin-bottom: 40px;
}

.challenges-overline {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 500;
}

.challenges-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 3rem;
  align-items: start;
}

/* Employee Barriers - Left Column */
.employee-barriers {
  display: flex;
  flex-direction: column;
  gap: 35px;
  height: 100%;
}

.organizational-hurdles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.column-header.blue {
  border-bottom: 3px solid #2563eb;
}

.column-header.teal {
  border-bottom: 3px solid #0d9488;
}

.column-header-icon {
  width: 24px;
  height: 24px;
}

.column-header-icon.blue {
  color: #2563eb;
}

.column-header-icon.teal {
  color: #0d9488;
}

.column-header-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.column-header-title.blue {
  color: #2563eb;
}

.column-header-title.teal {
  color: #0d9488;
}

.barrier-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.barrier-percentage {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
  min-width: 140px;
  flex-shrink: 0;
}

.barrier-content {
  flex: 1;
  padding-top: 8px;
}

.barrier-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.barrier-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Organizational Hurdles - Right Column */
.hurdle-card {
  background: #f0fdfa;
  border-left: 6px solid #0d9488;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hurdle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hurdle-icon-badge {
  width: 48px;
  height: 48px;
  background: #ccfbf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  margin-bottom: 16px;
}

.hurdle-icon-badge svg {
  width: 24px;
  height: 24px;
}

.hurdle-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;


/* ========================================
   HERO CALENDAR - Updated Style
   ======================================== */

.hero-calendar-mockup {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  border: 1px solid #e5e5e5;
  max-width: 500px;
}

.hero-calendar-mockup .calendar-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.hero-calendar-mockup .calendar-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a1a1a;
}

.hero-calendar-mockup .calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.calendar-day-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  padding: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.calendar-day-content {
  min-height: 80px;
}

.session-card {
  background: linear-gradient(135deg, #f0f4e8 0%, #e8ede0 100%);
  border-radius: 8px;
  padding: 0.75rem;
  border-left: 3px solid #6b7b3a;
  transition: all 0.2s ease;
}

.session-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.session-card.breathwork {
  background: linear-gradient(135deg, #fef3e8 0%, #fdecd8 100%);
  border-left-color: #f59e0b;
}

.session-card.movement {
  background: linear-gradient(135deg, #e8f4f0 0%, #d8ede8 100%);
  border-left-color: #0d9488;
}

.session-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
}

.session-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 0.25rem;
}

.up-next-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e5e5;
}

.up-next-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7b3a;
  margin-bottom: 0.5rem;
}

.up-next-title {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.play-button {
  width: 40px;
  height: 40px;
  background: #6b7b3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #1a1a1a;
  transform: scale(1.1);
}

.play-button svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* Hero Visual Layout */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-calendar-mockup {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .hero-calendar-mockup .calendar-grid {
    gap: 0.5rem;
  }
  
  .session-card {
    padding: 0.5rem;
  }
  
  .session-title {
    font-size: 0.7rem;
  }
}
  color: #115e59;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hurdle-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.challenges-citation {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 40px;
  text-align: left;
}

/* Responsive Design for Challenges */
@media (max-width: 1024px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .challenges-title {
    font-size: 32px;
  }
  
  .barrier-percentage {
    font-size: 48px;
    min-width: 100px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .india-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .challenges-section {
    padding: 30px 20px;
  }
  
  .barrier-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .barrier-percentage {
    font-size: 40px;
    min-width: auto;
  }
}
