/* ============================================
   MEDSPA LANDING PAGE SPECIFIC STYLES
   ============================================ */

/* === HERO SPECIFIC === */
.hero-gradient {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === PAIN AGITATION (DARK) === */
.section-dark {
  background-color: #111827;
  color: #fff;
}
.section-dark .section-title {
  color: #fff;
}
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.pain-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pain-card-dark {
  background: #1C1E21;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.pain-card-dark:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.1);
}

.pain-card-emoji {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.pain-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.pain-card-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pain-card-cost {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #EF4444; /* Red for pain */
  background: rgba(239, 68, 68, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

/* === SOLUTION SECTION === */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: #F3F4F6;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

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

.solution-badge {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 20px;
}

.solution-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.solution-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}

.solution-list li::before {
  content: '✓';
  color: #22C55E;
  font-weight: 700;
}

/* === TREATMENTS SECTION === */
.treatments-gradient {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
}

.treatment-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.treatment-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.treatment-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.treatment-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.treatment-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

.treatment-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-orange);
}

/* === THE MATH (CALCULATOR) === */
.calculator-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #1C1E21;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.calc-row:nth-last-child(3) {
  border-bottom: none;
}

.calc-value {
  font-weight: 600;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
}

.calc-divider {
  height: 2px;
  background: var(--accent-orange);
  margin: 24px 0;
  opacity: 0.8;
}

.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-total-label {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.calc-total-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-orange);
  font-family: var(--font-display);
}

.calc-conclusion {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.calc-conclusion span {
  color: #22C55E;
  font-weight: 700;
}

.calc-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* === CASE STUDY PREVIEW === */
.case-featured {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.case-featured-content {
  flex: 3;
  padding: 48px;
}

.case-featured-stats {
  flex: 1;
  background: var(--bg-secondary);
  padding: 48px 32px;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.case-featured-text {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.7;
}

.case-featured-text p {
  margin-bottom: 24px;
}

.case-featured-text p:last-child {
  margin-bottom: 0;
}

.case-stat-box {
  text-align: center;
}

.case-stat-val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.val-green {
  color: #22C55E;
}

.val-orange {
  color: var(--accent-orange);
}

.case-stat-lab {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-link-wrapper {
  text-align: center;
  margin-top: 40px;
}

.case-read-more {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-orange);
  transition: all 0.2s ease;
}

.case-read-more:hover {
  text-decoration: underline;
  color: var(--accent-orange-hover);
}

/* === FINAL CTA === */
.final-cta-gradient {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  text-align: center;
  padding: 100px 0;
}

.final-cta-gradient .section-title {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 16px;
}

.final-cta-gradient .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta-gradient .btn {
  background: #fff;
  color: var(--accent-orange);
}

.final-cta-gradient .btn:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.final-cta-link {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.final-cta-link:hover {
  color: #fff;
  text-decoration: underline;
}

.trust-line {
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === RESPONSIVE UTILITIES === */
@media(max-width:1024px) {
  .pain-grid-2x2, .solution-grid, .treatment-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {
  .hero-gradient {
     padding: 120px 0 60px;
     min-height: auto;
  }
  .hero-stats-row {
    gap: 24px;
  }
  .pain-grid-2x2, .solution-grid, .treatment-grid-3x2 {
    grid-template-columns: 1fr;
  }
  
  .case-featured {
    flex-direction: column;
  }
  
  .case-featured-stats {
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .calc-total {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  
  .calc-total-value {
    font-size: 36px;
  }
}
