/* ================================================
   ABUNDANT WELLNESS - COMPLETE REDESIGN
   Dark theme with emerald/coral accents
   ================================================ */

/* CSS Variables - Light Theme */
:root {
  --bg-main: #f8faf9;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f5f3;
  --bg-elevated: #ffffff;
  --bg-dark: #1a2e28;
  --bg-hero: linear-gradient(135deg, #e8f5f0 0%, #f0faf6 50%, #fafcfb 100%);
  
  --text-primary: #1a2e28;
  --text-secondary: #4a635a;
  --text-muted: #7a948a;
  
  --accent-primary: #10b981;
  --accent-secondary: #059669;
  --accent-light: #d1fae5;
  --accent-glow: rgba(16, 185, 129, 0.25);
  
  --coral: #f97316;
  --coral-light: #ffedd5;
  
  --gold: #eab308;
  --gold-light: #fef9c3;
  
  --border-color: rgba(26, 46, 40, 0.08);
  --border-light: rgba(26, 46, 40, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(26, 46, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 46, 40, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 46, 40, 0.12);
  --shadow-glow: 0 0 40px var(--accent-glow);
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

em {
  font-style: normal;
  color: var(--accent-primary);
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: var(--transition-base);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 249, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  opacity: 0;
  transition: var(--transition-base);
}

.header.scrolled::before {
  opacity: 1;
}

.header-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 20px;
}

.logo svg {
  width: 40px;
  height: 40px;
  color: var(--accent-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.phone-link:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent-primary);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.btn-primary:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  min-height: 100vh;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg-hero);
  display: flex;
  flex-direction: column;
}

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

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-light);
  top: -200px;
  right: 5%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--coral-light);
  bottom: -100px;
  left: -100px;
}

.hero .container {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge b {
  color: var(--accent-primary);
  font-weight: 700;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: relative;
}

.pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--accent-primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hero-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

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

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.feature-item svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  width: fit-content;
  transition: var(--transition-base);
}

.btn-hero:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.hero-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero Trust Section */
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.hero-trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-primary);
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
}

.hero-trust-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-trust-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero Visual - Image Grid */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  position: relative;
  height: 100%;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.hero-img-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.hero-img-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.hero-stats-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  gap: 32px;
  box-shadow: var(--shadow-lg);
}

.hsc-item {
  text-align: center;
}

.hsc-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}

.hsc-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

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



/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card);
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.trust-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 48px;
}

.trust-logos img {
  height: 24px;
  opacity: 0.4;
  transition: var(--transition-base);
}

.trust-logos img:hover {
  opacity: 0.7;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-md);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-primary);
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stat-value span {
  color: var(--accent-primary);
}

.stat-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header.light {
  color: var(--text-primary);
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-secondary);
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-main);
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--coral));
  opacity: 0;
  transition: var(--transition-base);
}

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

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent-light);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.step-visual {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

.steps-cta {
  text-align: center;
  margin-top: 64px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ================================================
   TREATMENTS
   ================================================ */
.treatments {
  padding: 80px 0;
  background: linear-gradient(180deg, #eef7f3 0%, var(--bg-main) 100%);
}

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

.treatment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.treatment-card.featured {
  border: 2px solid var(--accent-primary);
  background: linear-gradient(135deg, #ffffff, var(--accent-light));
}

.card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 14px;
  background: var(--accent-primary);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.treatment-card.featured .card-badge {
  background: var(--coral);
}

.treatment-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.treatment-info {
  text-align: center;
}

.price-tag {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

.treatment-name {
  font-size: 24px;
  margin-bottom: 16px;
}

.treatment-info > p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.treatment-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.treatment-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

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

.treatment-features svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.btn-card {
  display: block;
  padding: 16px 32px;
  background: var(--accent-primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  text-align: center;
  transition: var(--transition-base);
}

.btn-card:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ================================================
   CALCULATOR
   ================================================ */
.calculator-section {
  padding: 80px 0;
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calculator-content h2 {
  margin-bottom: 20px;
}

.calculator-content p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 32px;
}

.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calc-label {
  color: var(--text-secondary);
  font-size: 16px;
}

.calc-value {
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
}

.calc-value.highlight {
  color: var(--accent-primary);
}

.weight-slider {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin-bottom: 32px;
  cursor: pointer;
}

.weight-slider::-webkit-slider-runnable-track {
  height: 8px;
  background: var(--border-color);
  border-radius: var(--radius-full);
}

.weight-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--accent-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px var(--accent-glow);
  margin-top: -10px;
  transition: var(--transition-base);
}

.weight-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.weight-slider::-moz-range-track {
  height: 8px;
  background: var(--border-color);
  border-radius: var(--radius-full);
}

.weight-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--accent-primary);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px var(--accent-glow);
}

.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.calc-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ================================================
   TRANSFORMATIONS
   ================================================ */
.transformations {
  padding: 80px 0;
  background: var(--bg-main);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--bg-card), rgba(45, 212, 168, 0.08));
  border-color: var(--accent-primary);
  grid-row: span 1;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.verified-badge {
  font-size: 11px;
  color: var(--accent-primary);
  font-weight: 600;
  background: rgba(45, 212, 168, 0.15);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.result-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-primary);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.testimonials-cta {
  text-align: center;
}

/* ================================================
   SCIENCE SECTION
   ================================================ */
.science-section {
  padding: 80px 0;
  background: var(--bg-card);
}

.science-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.science-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.science-image img {
  width: 100%;
}

.science-content h2 {
  margin-bottom: 24px;
}

.science-content > p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 20px;
}

.science-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.feature svg {
  color: var(--accent-primary);
}

/* ================================================
   DOCTORS
   ================================================ */
.doctors-section {
  padding: 80px 0;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.doctor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
}

.doctor-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.doctor-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info {
  padding: 24px;
  text-align: center;
}

.doctor-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.doctor-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ================================================
   FAQ
   ================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-card);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-base);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* ================================================
   GUARANTEE
   ================================================ */
.guarantee-section {
  padding: 80px 0;
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 80px;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.1), rgba(255, 107, 91, 0.05));
  border: 1px solid rgba(244, 197, 66, 0.3);
  border-radius: var(--radius-xl);
}

.guarantee-icon {
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 120px;
  height: 120px;
  color: var(--gold);
}

.guarantee-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(244, 197, 66, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.guarantee-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.guarantee-content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

.btn-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.btn-guarantee:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--gold-glow);
}

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  padding: 80px 0;
  background: var(--bg-card);
}

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

.cta-content h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-content > p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 48px;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.cta-option {
  display: block;
  cursor: pointer;
}

.cta-option input {
  display: none;
}

.cta-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-elevated);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-base);
}

.cta-option:hover span {
  border-color: var(--border-light);
}

.cta-option input:checked + span {
  border-color: var(--accent-primary);
  background: rgba(45, 212, 168, 0.1);
  color: var(--accent-primary);
}

.btn-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 400px;
  padding: 20px 40px;
  background: var(--accent-primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.btn-final:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-dark);
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
  color: var(--accent-primary);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
}

.footer-badges {
  margin-top: 8px;
}

.legit-badge img {
  height: 44px;
  opacity: 0.9;
  transition: var(--transition-base);
}

.legit-badge:hover img {
  opacity: 1;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  transition: var(--transition-base);
}

.footer-col a:hover {
  color: var(--accent-primary);
}

.footer-col svg {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-address {
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (min-width: 1400px) {
  .hero-visual {
    min-height: 580px;
  }
  
  .hero-image-grid {
    gap: 20px;
  }
  
  .hsc-value {
    font-size: 32px;
  }
}

@media (max-width: 1200px) {
  .hero .container {
    gap: 40px;
  }
  
  .hero-visual {
    min-height: 450px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-features {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-visual {
    display: none;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .treatment-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .calculator-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .calculator-content {
    text-align: center;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  
  .science-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .science-image {
    order: -1;
  }
  
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 48px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .header {
    padding: 12px 16px;
  }
  
  .logo span {
    display: none;
  }
  
  .hero {
    padding: 100px 0 40px;
    min-height: auto;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .btn-hero {
    width: 100%;
    padding: 18px 32px;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
  }
  
  .hero-trust-item {
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
  }
  
  .trust-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .trust-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    text-align: left;
  }
  
  .stat-icon {
    margin: 0;
  }
  
  .stat-value {
    font-size: 36px;
    margin-bottom: 4px;
  }
  
  .how-it-works,
  .treatments,
  .calculator-section,
  .transformations,
  .testimonials,
  .science-section,
  .doctors-section,
  .faq-section,
  .guarantee-section,
  .final-cta {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .step-card,
  .treatment-card {
    padding: 32px;
  }
  
  .step-number {
    font-size: 48px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
  }
  
  .gallery-overlay {
    padding: 16px;
  }
  
  .gallery-overlay p {
    font-size: 13px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card.featured {
    grid-row: span 1;
  }
  
  .hero-title {
    font-size: 26px;
  }
  
  .feature-item {
    font-size: 13px;
  }
  
  .doctors-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .guarantee-card {
    padding: 32px 24px;
  }
  
  .guarantee-icon svg {
    width: 80px;
    height: 80px;
  }
  
  .guarantee-content h2 {
    font-size: 24px;
  }
  
  .cta-options {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .footer {
    padding: 48px 0 24px;
  }
  
  .footer-main {
    gap: 40px;
  }
  
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  
  .footer-nav .footer-col:last-child {
    grid-column: span 2;
  }
  
  .footer-tagline {
    max-width: 100%;
  }
  
  .footer-links {
    gap: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .btn-primary span {
    display: none;
  }
  
  .btn-primary {
    padding: 12px;
  }
  
  .price {
    font-size: 40px;
  }
  
  .calc-value {
    font-size: 28px;
  }
}

/* ================================================
   SLICK SLIDER OVERRIDES
   ================================================ */
.slick-track {
  display: flex !important;
  gap: 24px;
}

.slick-slide {
  height: inherit !important;
}

.slick-slide > div {
  height: 100%;
}

.testimonials-slider .slick-list {
  overflow: visible;
}

.testimonials-slider .slick-track {
  gap: 24px;
}

.testimonials-slider .slick-slide {
  opacity: 0.5;
  transition: var(--transition-base);
}

.testimonials-slider .slick-slide.slick-active {
  opacity: 1;
}
