
:root {
  --primary: #ff2d7b;
  --secondary: #7b2dff;
  --accent: #00c8ff;
  --dark: #0a0e17;
  --darker: #05080f;
  --light: #f0f5ff;
  --soft-gray: #8a9bb8;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --membrane-medium: rgba(255, 45, 123, 0.3);
  --glow: 0 0 20px rgba(255, 45, 123, 0.3);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #ff2d7b 0%, #7b2dff 100%);
  --gradient-dark: linear-gradient(135deg, #05080f 0%, #0a0e17 100%);
  --gradient-hormonal: linear-gradient(135deg, #7b2dff 0%, #00c8ff 100%);
}

/* Calming Background Layers */
.particle-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 45, 123, 0.08) 0%, transparent 65%),
    radial-gradient(circle at 80% 20%, rgba(123, 45, 255, 0.08) 0%, transparent 65%),
    radial-gradient(circle at 40% 40%, rgba(0, 200, 255, 0.05) 0%, transparent 65%);
  opacity: 0.98;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 45, 123, 0.08) 0%, transparent 85%),
    radial-gradient(circle at 80% 20%, rgba(123, 45, 255, 0.08) 0%, transparent 85%),
    radial-gradient(circle at 40% 40%, rgba(0, 200, 255, 0.05) 0%, transparent 85%);
}

/* Subtle Glow Elements */
.glow-element {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.glow-center {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: gentle-pulse 20s ease-in-out infinite;
}

.glow-corner-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: -100px;
  left: -100px;
  animation: gentle-float 25s ease-in-out infinite;
}

.glow-corner-2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: -80px;
  right: -80px;
  animation: gentle-float 30s ease-in-out infinite reverse;
}

@keyframes gentle-pulse {
  0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes gentle-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, 20px) rotate(120deg); }
  66% { transform: translate(-15px, 15px) rotate(240deg); }
}
    /* Main Content Container */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

/* Delightful Divider */
.content-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 45, 123, 0.3) 25%, 
    rgba(123, 45, 255, 0.3) 50%, 
    rgba(255, 45, 123, 0.3) 75%, 
    transparent 100%);
  margin: 3rem auto;
  width: 80%;
  position: relative;
}

.content-divider::before,
.content-divider::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  animation: subtle-sparkle 4s infinite;
}

.content-divider::before {
  left: 25%;
  animation-delay: 0.5s;
}

.content-divider::after {
  right: 25%;
  animation-delay: 1.5s;
}

/* Hero Container Styles */
.hero-container {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem;
}

.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(5, 8, 15, 0.92) 0%, 
    rgba(10, 14, 23, 0.88) 30%, 
    rgba(5, 8, 15, 0.85) 100%);
  z-index: 1;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 0;
}

.video-icon {
  font-size: 6rem;
  margin-bottom: 2rem;
  opacity: 0.6;
  animation: gentle-pulse 3s ease-in-out infinite;
}

.video-message {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light);
  text-align: center;
}

.video-submessage {
  font-size: 1.2rem;
  color: var(--soft-gray);
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-content {
  padding-right: 2rem;
}

.healing-badge {
  display: inline-block;
  background: linear-gradient(90deg, 
    rgba(255, 45, 123, 0.2), 
    rgba(123, 45, 255, 0.2));
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 45, 123, 0.3);
  backdrop-filter: blur(10px);
  animation: gentle-pulse 4s infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, 
    var(--primary) 0%, 
    var(--secondary) 50%, 
    var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.healing-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.pillar-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

.pillar-content h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pillar-content p {
  color: var(--soft-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-image-side {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-image-container {
  position: relative;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 45, 123, 0.2);
}

.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(255, 45, 123, 0.1), 
    rgba(123, 45, 255, 0.1));
  color: var(--primary);
}

.image-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.image-message {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light);
  text-align: center;
  margin-bottom: 1rem;
}

.image-submessage {
  font-size: 1rem;
  color: var(--soft-gray);
  text-align: center;
  max-width: 300px;
}

.hero-cta {
  margin-top: 4rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1.4rem 3.5rem;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 45, 123, 0.4);
}

/* Main Container Styles */
.main-container {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.integrative-approach {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 5rem 4rem;
  border: 1px solid rgba(255, 45, 123, 0.1);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.approach-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
}

.approach-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(255, 45, 123, 0.08), 
    rgba(123, 45, 255, 0.08));
  color: var(--primary);
}

.approach-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach-text {
  padding-right: 2rem;
}

.section-title {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.approach-description {
  font-size: 1.1rem;
  color: var(--soft-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.approach-features {
  margin-top: 3rem;
}

.feature {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.4rem;
  color: var(--text-light);
  font-weight: 600;
}

.feature-description {
  font-size: 1rem;
  color: var(--soft-gray);
  line-height: 1.7;
  padding-left: 3rem;
}

.approach-image-side {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.approach-image-container {
  position: relative;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 45, 123, 0.2);
}

.approach-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(255, 45, 123, 0.1), 
    rgba(123, 45, 255, 0.1));
  color: var(--primary);
}

/* NEW: Treatment Protocol Section - Four Pillars */
.treatment-protocol-section {
  margin: 6rem 0;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, 
    rgba(5, 8, 15, 0.95), 
    rgba(10, 14, 23, 0.92));
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.protocol-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 45, 123, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(123, 45, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.protocol-content {
  position: relative;
  z-index: 1;
}

.protocol-header {
  text-align: center;
  margin-bottom: 4rem;
}

.protocol-badge {
  display: inline-block;
  background: var(--gradient-hormonal);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: none;
}

.protocol-title {
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.protocol-subtitle {
  font-size: 1.3rem;
  color: var(--soft-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.protocol-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.protocol-pillar {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.protocol-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.protocol-pillar:hover::before {
  opacity: 1;
}

.protocol-pillar:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 45, 123, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.protocol-pillar.hormone-pillar .pillar-number {
  background: var(--gradient-hormonal);
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.protocol-pillar.hormone-pillar .pillar-icon {
  color: var(--secondary);
}

.pillar-title {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.protocol-pillar.hormone-pillar .pillar-title {
  color: var(--accent);
}

.pillar-description {
  color: var(--soft-gray);
  line-height: 1.7;
  font-size: 1rem;
}

.pillar-features {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

.pillar-features li {
  color: var(--soft-gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.pillar-features li:last-child {
  border-bottom: none;
}

.pillar-features li i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.protocol-pillar.hormone-pillar .pillar-features li i {
  color: var(--secondary);
}

/* NEW: Hormonal Pathway Section */
.hormonal-pathway-section {
  margin: 6rem 0;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, 
    rgba(123, 45, 255, 0.08), 
    rgba(0, 200, 255, 0.05));
  border-radius: var(--border-radius);
  border: 1px solid rgba(123, 45, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.pathway-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle at center, 
    rgba(123, 45, 255, 0.1) 0%, 
    transparent 70%);
  z-index: 0;
}

.pathway-content {
  position: relative;
  z-index: 1;
}

.pathway-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pathway-badge {
  display: inline-block;
  background: rgba(123, 45, 255, 0.15);
  color: var(--secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(123, 45, 255, 0.3);
}

.pathway-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.pathway-subtitle {
  font-size: 1.2rem;
  color: var(--soft-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.pathway-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pathway-step {
  background: rgba(5, 8, 15, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-sm);
  padding: 2rem;
  border: 1px solid rgba(123, 45, 255, 0.1);
  transition: var(--transition);
  text-align: center;
}

.pathway-step:hover {
  border-color: rgba(123, 45, 255, 0.3);
  transform: translateY(-5px);
}

.hormone-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.pathway-step h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.pathway-step p {
  color: var(--soft-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.pathway-connection {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  color: var(--secondary);
  opacity: 0.7;
}

.pathway-connection i {
  font-size: 1.5rem;
  animation: gentle-pulse 2s infinite;
}

/* NEW: Download Guide Section - Strategic Placement */
.science-guide-section {
  margin: 6rem 0;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, 
    rgba(255, 45, 123, 0.08), 
    rgba(123, 45, 255, 0.08));
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 45, 123, 0.2);
  position: relative;
  overflow: hidden;
}

.guide-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle at center, 
    rgba(255, 45, 123, 0.1) 0%, 
    transparent 70%);
  z-index: 0;
}

.guide-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.guide-text {
  padding-right: 2rem;
}

.guide-badge {
  display: inline-block;
  background: rgba(255, 45, 123, 0.15);
  color: var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 45, 123, 0.3);
}

.guide-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.guide-subtitle {
  font-size: 1.2rem;
  color: var(--soft-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.guide-features {
  margin-bottom: 3rem;
}

.guide-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guide-feature-icon {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.guide-feature-text {
  color: var(--text-light);
  font-size: 1.1rem;
}

.assessment-criteria {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-sm);
  padding: 2rem;
  margin-top: 2rem;
  border-left: 4px solid var(--secondary);
}

.assessment-criteria h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.biomarker-list {
  list-style: none;
  padding: 0;
}

.biomarker-list li {
  color: var(--soft-gray);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.biomarker-list li:last-child {
  border-bottom: none;
}

.biomarker-list li i {
  color: var(--secondary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.guide-form-container {
  background: rgba(5, 8, 15, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 3rem;
  border: 1px solid rgba(255, 45, 123, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.guide-form-title {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.guide-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: var(--soft-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.2rem;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 45, 123, 0.2);
}

.download-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: var(--border-radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 45, 123, 0.3);
}

.guide-note {
  text-align: center;
  color: var(--soft-gray);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.guide-note a {
  color: var(--primary);
  text-decoration: none;
}

.guide-note a:hover {
  text-decoration: underline;
}

.treatment-journey {
  text-align: center;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, 
    rgba(5, 8, 15, 0.95), 
    rgba(10, 14, 23, 0.92));
  border-radius: var(--border-radius);
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.journey-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, 
    rgba(255, 45, 123, 0.05) 0%, 
    transparent 70%);
  z-index: 0;
}

.journey-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.journey-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.journey-statement {
  font-size: 1.5rem;
  color: var(--primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.healing-journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.journey-step {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--border-radius-sm);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-hormonal);
  opacity: 0;
  transition: var(--transition);
}

.journey-step:hover::before {
  opacity: 1;
}

.journey-step:hover {
  border-color: rgba(123, 45, 255, 0.3);
  transform: translateY(-5px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.journey-step.hormonal-step .step-number {
  background: var(--gradient-hormonal);
}

.step-title {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 600;
}

.journey-step p {
  color: var(--soft-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-wrapper,
  .approach-content,
  .guide-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text-content,
  .approach-text,
  .guide-text {
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .protocol-title,
  .pathway-title,
  .guide-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 4rem 1.5rem;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .healing-pillars {
    gap: 1.5rem;
  }
  
  .pillar {
    padding: 1.2rem;
  }
  
  .healing-journey {
    grid-template-columns: 1fr;
  }
  
  .integrative-approach,
  .treatment-protocol-section,
  .hormonal-pathway-section,
  .treatment-journey,
  .science-guide-section {
    padding: 3rem 2rem;
  }
  
  .approach-background {
    display: none;
  }
  
  .protocol-pillars,
  .pathway-steps {
    grid-template-columns: 1fr;
  }
  
  .guide-form-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .protocol-title,
  .pathway-title,
  .guide-title,
  .journey-title {
    font-size: 1.8rem;
  }
  
  .cta-button,
  .download-button {
    width: 100%;
    justify-content: center;
  }
  
  .protocol-pillar,
  .pathway-step,
  .journey-step {
    padding: 1.5rem;
  }
}
