/* styles.css */
:root {
  /* Premium Natural Health Palette */
  --bg-primary: #FAF7F0; /* Soft warm off-white */
  --bg-secondary: #EEF7F1; /* Light herbal green */
  --bg-mint: #E8F6EF; /* Very soft mint */
  --bg-beige: #FFF8EA;
  --bg-white: #FFFFFF;
  
  --text-dark: #12372A; /* Deep forest green */
  --text-charcoal: #1E2E27; /* Charcoal green */
  --text-muted: #5A7165; /* Softened green-grey */
  
  --primary: #1FA463; /* Herbal green */
  --primary-hover: #188650;
  --primary-glow: rgba(31, 164, 99, 0.25);
  
  --accent-mint: #2ECC71; /* Fresh mint green */
  --accent-beige: #F3E7D3; /* Warm beige */
  --accent-gold: #D89B2B; /* Soft gold */
  
  --red-muted: #C25B4E; /* Muted earthy red/brown */
  
  --card-shadow: 0 10px 30px rgba(18, 55, 42, 0.05);
  --card-border: rgba(18, 55, 42, 0.08);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); line-height: 1.6; color: var(--text-dark); background-color: var(--bg-primary); -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; position: relative; }

/* Colors & Backgrounds */
.bg-offwhite { background-color: var(--bg-primary); }
.bg-herbal { background-color: var(--bg-secondary); }
.bg-mint { background-color: var(--bg-mint); }
.bg-beige { background-color: var(--bg-beige); }
.bg-white { background-color: var(--bg-white); }
.text-dark { color: var(--text-dark); }
.text-charcoal { color: var(--text-charcoal); }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-red { color: var(--red-muted); }
.text-gold { color: var(--accent-gold); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.25; letter-spacing: -0.01em; color: var(--text-dark); }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 60px 0; overflow: hidden; }
.section-heading { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.section-subheading { font-size: 1.125rem; color: var(--text-muted); max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.text-center { text-align: center; }

/* Spacing Utils */
.mt-4 { margin-top: 0.25rem; }
.mt-8 { margin-top: 0.5rem; }
.mt-12 { margin-top: 0.75rem; }
.mt-16 { margin-top: 1rem; }
.mt-24 { margin-top: 1.5rem; }
.mt-32 { margin-top: 2rem; }
.pt-16 { padding-top: 1rem; }
.pt-32 { padding-top: 2rem; }
.text-sm { font-size: 0.9rem; line-height: 1.4;}
.text-xs { font-size: 0.8rem; }
.strike { text-decoration: line-through; }
.mx-auto { margin-left: auto; margin-right: auto; }
.font-bold { font-weight: 700; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-weight: 700; border-radius: 12px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background-color: var(--text-dark); color: white; padding: 18px 36px; font-size: 1.125rem; border: 2px solid var(--text-dark); box-shadow: 0 6px 20px rgba(18, 55, 42, 0.25); }
.btn-primary:hover { background-color: #0E291F; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(18, 55, 42, 0.35); }
.btn-glow { box-shadow: 0 6px 20px rgba(18, 55, 42, 0.25); }
.btn-large { padding: 22px 48px; font-size: 1.25rem; }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 24px; font-size: 1rem; }

.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(18, 55, 42, 0.2); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(18, 55, 42, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(18, 55, 42, 0); }
}

/* Floating WhatsApp & Sticky CTA */
.floating-whatsapp { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background-color: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 100; transition: transform 0.3s; }
.floating-whatsapp:hover { transform: scale(1.1); }

/* --- Premium Sticky CTA Bar --- */
.sticky-cta-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(250, 247, 240, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(31, 164, 99, 0.18); box-shadow: 0 -10px 30px rgba(18, 55, 42, 0.10); z-index: 100; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); padding: 16px 24px; }
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-container { display: flex; align-items: center; justify-content: space-between; min-height: 56px; gap: 20px; max-width: 1100px; margin: 0 auto; }

/* Left */
.sticky-cta-left h4 { font-size: 1.05rem; margin: 0; color: var(--text-dark); line-height: 1.2; }
.sticky-cta-left p { font-size: 0.8rem; color: var(--text-charcoal); margin: 4px 0 0; font-weight: 500; }

/* Middle */
.sticky-cta-middle { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.s-price-anchor { display: flex; align-items: center; gap: 8px; }
.s-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.s-original-price { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.s-price-subtext { font-size: 0.75rem; font-weight: 600; color: var(--text-charcoal); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Right */
.sticky-cta-right { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sticky-cta-right .btn { padding: 14px 32px; font-size: 1.05rem; white-space: nowrap; margin: 0; }
.s-microcopy { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin: 0; }

@media (max-width: 1024px) {
    .sticky-cta-left { display: none; }
    .sticky-cta-middle { flex: 1; align-items: flex-start; text-align: left; }
    .sticky-cta-right { flex: 1; align-items: flex-end; }
    .s-microcopy { display: none; }
}

@media (min-width: 769px) {
    body { padding-bottom: 110px; }
}

@media (max-width: 768px) {
    body { padding-bottom: 90px; }
    .sticky-cta-bar { padding: 16px 20px; }
    .sticky-cta-container { height: auto; flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; }
    
    .sticky-cta-middle { display: flex; flex-direction: column; align-items: flex-start; text-align: left; flex: 0 0 auto; gap: 0; }
    .s-price-anchor { flex-direction: row; align-items: baseline; gap: 8px; }
    .s-price { font-size: 1.5rem; font-weight: 900; color: #12372A; line-height: 1; }
    .s-original-price { font-size: 0.85rem; color: var(--text-muted); opacity: 0.6; font-weight: 600; }
    .s-price-subtext { display: block; font-size: 0.65rem; font-weight: 700; color: var(--text-charcoal); margin-top: 4px; opacity: 0.8; letter-spacing: 0.5px; }
    
    .sticky-cta-right { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; }
    .sticky-cta-right .btn { padding: 12px 16px; width: auto; max-width: 100%; text-align: center; font-size: 0.9rem; line-height: 1.2; white-space: normal; }
    .floating-whatsapp { bottom: 90px; }
}

/* Label */
.label-premium { display: inline-block; background: rgba(31, 164, 99, 0.1); color: var(--text-dark); padding: 6px 16px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }

/* Divider Curves */
.divider-curve-bottom { line-height: 0; transform: translateY(1px); }
.divider-curve-top { line-height: 0; transform: rotate(180deg) translateY(1px); }
.divider-curve-bottom svg, .divider-curve-top svg { width: 100%; height: 40px; }
.organic-blob { position: absolute; z-index: 0; pointer-events: none; opacity: 0.4; }

/* 1. Hero Section */
.top-announcement-strip { background: var(--text-dark); color: var(--bg-primary); padding: 8px 0; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.top-announcement-strip p { margin: 0; }

.hero-section { position: relative; padding: 100px 0 80px; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); overflow: hidden; }

.hero-section .container { position: relative; z-index: 1; }
.hero-grid-60-40 { display: grid; grid-template-columns: 6.2fr 3.8fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; }
.pattern-interrupt { color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 0.75rem; }
.hero-title { font-size: 2.25rem; margin-bottom: 1rem; color: var(--text-dark); line-height: 1.25; }
.highlight-red { color: #D32F2F; font-weight: 700; }
.hero-subtitle { font-size: 1.125rem; color: var(--text-charcoal); line-height: 1.5; font-weight: 500; margin-bottom: 1.5rem;}
.highlight-green { color: #12372A; font-weight: 700; background: linear-gradient(120deg, rgba(46, 204, 113, 0.15) 0%, rgba(31, 164, 99, 0.05) 100%); padding: 0 4px; border-radius: 4px; border-bottom: 2px solid var(--primary); }

.hero-action-group { max-width: 540px; margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.h-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(31, 164, 99, 0.08); color: var(--text-dark); padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(31, 164, 99, 0.15); }
.h-badge-outline { background: var(--bg-white); border: 1px solid rgba(31, 164, 99, 0.3); }
.h-badge-gold { background: rgba(216, 155, 43, 0.1); border: 1px solid rgba(216, 155, 43, 0.2); }

.hero-date-time-strip { display: flex; align-items: center; gap: 16px; background: var(--bg-white); border: 1px solid rgba(31, 164, 99, 0.15); border-radius: 12px; padding: 16px 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.dt-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-charcoal); }
.dt-item strong { color: var(--text-dark); }
.dt-divider { width: 1px; height: 24px; background: rgba(18, 55, 42, 0.1); }

.btn-xl { padding: 18px 48px; font-size: 1.15rem; width: 100%; box-shadow: 0 10px 25px rgba(31, 164, 99, 0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.btn-xl:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(31, 164, 99, 0.4); }

.cta-microcopy { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; justify-content: center; }
.cta-microcopy .divider { opacity: 0.4; }

.hero-trust-line { font-size: 0.85rem; font-weight: 600; color: var(--text-charcoal); display: flex; align-items: flex-start; gap: 10px; background: rgba(31, 164, 99, 0.05); padding: 12px 16px; border-radius: 8px; }
.hero-trust-line i { font-size: 1.2rem; margin-top: 2px; }

/* Premium Coach Profile Frame */
.coach-profile-premium { position: relative; width: 100%; max-width: 620px; margin-left: auto; transform: translate(15px, -30px); }
.coach-halo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, rgba(232, 246, 239, 0.8) 0%, rgba(232, 246, 239, 0) 70%); z-index: -1; }
.coach-frame { background: var(--bg-white); border-radius: 24px; padding: 20px; box-shadow: 0 20px 50px rgba(18, 55, 42, 0.08); border: 1px solid rgba(31, 164, 99, 0.1); position: relative; }
.coach-frame-inner { position: relative; border-radius: 16px; overflow: hidden; background: #EEF7F1; display: flex; justify-content: center; align-items: flex-end; padding-top: 20px; }
.blob-shape-premium { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 130%; z-index: 0; opacity: 0.6; }
.coach-img-xl { position: relative; width: 130%; max-width: 480px; height: auto; z-index: 1; margin-bottom: -10px; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
.coach-info-panel { background: rgba(250, 247, 240, 0.95); border-radius: 16px; padding: 20px; text-align: center; margin-top: 12px; border: 1px solid var(--card-border); }
.coach-info-panel h3 { font-size: 1.4rem; color: var(--text-dark); margin: 0; }
.coach-title { color: var(--primary); font-weight: 700; font-size: 1rem; margin: 4px 0 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.coach-divider { width: 40px; height: 3px; background: var(--primary); margin: 0 auto 12px; border-radius: 2px; }
.coach-desc { color: var(--text-charcoal); font-size: 0.9rem; font-weight: 500; margin: 0; }

@media (max-width: 1024px) {
  .hero-grid-60-40 { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-action-group { align-items: center; text-align: center; }
  .hero-badges { justify-content: center; }
  .cta-microcopy { justify-content: center; }
  .hero-trust-line { justify-content: center; }
  .coach-profile-premium { max-width: 500px; margin: 0 auto; transform: none; }
}

@media (max-width: 768px) {
  .hero-section { padding: 40px 16px 32px; }
  .hero-left { text-align: left; align-items: flex-start; }
  .hero-action-group { align-items: flex-start; text-align: left; margin-top: 16px; width: 100%; gap: 16px; }
  .hero-title { font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
  .hero-subtitle { font-size: 17px; line-height: 1.55; margin-bottom: 8px; }
  .hero-badges { display: flex; flex-direction: column; gap: 10px; width: 100%; margin: 0; }
  .h-badge { font-size: 14px; padding: 12px; width: 100%; justify-content: center; }
  .hero-date-time-strip { display: none; }
  .hero-cta-area { width: 100%; margin-top: 8px; display: flex; flex-direction: column; align-items: stretch; }
  .btn-xl { padding: 16px; font-size: 1.1rem; width: 100%; }
  .cta-microcopy { justify-content: flex-start; margin-top: 12px; }
  .hero-trust-line { justify-content: flex-start; text-align: left; width: 100%; }
  .top-announcement-strip { font-size: 0.75rem; padding: 8px; }
  .coach-img-xl { width: 100%; margin-bottom: 0; }
  .blob-shape-premium { width: 110%; }
  .coach-frame { padding: 16px; }
  section { padding: 40px 0; }
  .section-heading { font-size: 1.75rem; }
}

/* 2. Problem Agitation */
.agitation-section { background-color: var(--bg-mint); padding: 60px 0; position: relative;}
.agitation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.agitation-card { background: var(--bg-white); padding: 24px; border-radius: 16px; border: 1px solid var(--card-border); box-shadow: var(--card-shadow); transition: transform 0.3s; }
.agitation-card:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(18,55,42,0.08); }
.agitation-card-icon { width: 48px; height: 48px; background: var(--bg-beige); color: var(--accent-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.a-icon-green { background: var(--bg-secondary); color: var(--primary); }
.a-icon-brown { background: rgba(194, 91, 78, 0.1); color: var(--red-muted); }
.agitation-card h4 { font-size: 1.125rem; color: var(--text-dark); margin-bottom: 8px; font-family: var(--font-display); }
.agitation-card p { font-size: 0.95rem; color: var(--text-charcoal); line-height: 1.5; }

@media (max-width: 1024px) { .agitation-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { 
  .agitation-grid { grid-template-columns: 1fr; } 
  .agitation-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
}

/* 3. Is This For You? */
.qualification-section { background-color: var(--bg-primary); padding: 60px 0;}
.qualify-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto;}
.qualify-card { background: var(--bg-white); padding: 20px; border-radius: 16px; text-align: center; border: 1px solid var(--card-border); box-shadow: var(--card-shadow); transition: all 0.3s; }
.qualify-card:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(18,55,42,0.06); }
.q-icon { width: 48px; height: 48px; background: var(--bg-secondary); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 12px; }
.qualify-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text-dark); }
.qualify-card p { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 1024px) { .qualify-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { 
  .qualify-grid { grid-template-columns: 1fr; } 
  .qualify-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
}

/* 4. Transformation Split */
.transformation-section { background-color: var(--bg-mint); padding: 60px 0; }
.split-comparison { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; max-width: 1000px; margin: 0 auto;}
.compare-side { background: var(--bg-white); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px; box-shadow: var(--card-shadow); position: relative; z-index: 1; }
.side-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; display: inline-block; background: var(--bg-primary); padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;}
.compare-title { font-size: 1.5rem; margin-bottom: 24px; color: var(--text-dark); }
.premium-list { list-style: none; }
.premium-list li { padding: 12px 0; border-bottom: 1px solid rgba(18,55,42,0.05); font-size: 1rem; display: flex; align-items: flex-start; color: var(--text-charcoal); }
.premium-list li:last-child { border-bottom: none; }
.premium-list li::before { content: ''; display: inline-block; width: 20px; height: 20px; margin-right: 12px; background-size: contain; background-repeat: no-repeat; flex-shrink: 0; margin-top: 2px; }
.cross-list li::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="%23C25B4E" d="M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"/></svg>'); }
.check-list li::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="%231FA463" d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"/></svg>'); }
.compare-vs.shift-arrow { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--bg-white); border-radius: 50%; color: var(--text-muted); font-size: 1.25rem; z-index: 2; box-shadow: 0 5px 15px rgba(18,55,42,0.05); border: 1px solid var(--card-border); align-self: center;}

@media (max-width: 1024px) {
  .split-comparison { grid-template-columns: 1fr; gap: 24px;}
  .compare-vs { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(90deg); }
}
@media (max-width: 768px) { .compare-vs { display: none; } .compare-side{padding: 24px 16px;} .split-comparison { gap: 16px; } }

/* 5. Curriculum Timeline */
.curriculum-section { background-color: var(--bg-primary); padding: 60px 0;}
.timeline-container { position: relative; max-width: 750px; margin: 40px auto 0; }
.timeline-line { position: absolute; top: 0; bottom: 0; left: 24px; width: 2px; background: rgba(18,55,42,0.1); }
.timeline-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--primary); transition: height 0.3s; }
.timeline-container.scrolled .timeline-line::after { height: var(--scroll-progress, 0%); }

.timeline-block { display: flex; gap: 24px; margin-bottom: 40px; position: relative; z-index: 1; }
.timeline-dot { width: 50px; height: 50px; background: var(--bg-white); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--primary); flex-shrink: 0; box-shadow: 0 4px 10px rgba(31, 164, 99, 0.1); }
.timeline-content { background: var(--bg-white); padding: 24px; border-radius: 16px; border: 1px solid var(--card-border); box-shadow: var(--card-shadow); width: 100%;}
.timeline-content h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text-dark); }
.clean-bullets { list-style: none; color: var(--text-charcoal); }
.clean-bullets li { margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; font-size: 0.95rem; line-height: 1.4;}
.clean-bullets i { color: var(--primary); margin-top: 4px; font-size: 1rem;}

@media (max-width: 768px) {
  .timeline-container { margin-left: 0; }
  .timeline-block { gap: 16px; flex-direction: column;}
  .timeline-dot { margin-bottom: -32px; margin-left: 24px; position: relative; z-index: 2;}
  .timeline-line { display: none;}
  .timeline-content { padding-top: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; }
}

/* 6. Framework 5 Pillars */
.framework-section { background-color: var(--bg-mint); padding: 60px 0; }
.framework-visual { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; max-width: 900px; margin: 0 auto; }
.f-pillar { background: var(--bg-white); border: 1px solid var(--card-border); padding: 16px 24px; border-radius: 16px; display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; transition: all 0.3s; cursor: default; box-shadow: var(--card-shadow); color: var(--text-dark); }
.f-pillar:hover { background: var(--bg-primary); border-color: rgba(31, 164, 99, 0.2); transform: translateY(-3px); }
.f-pillar i { color: var(--primary); font-size: 1.5rem; }

@media (max-width: 768px) {
  .framework-visual { flex-direction: column; width: 100%; gap: 12px; }
  .f-pillar { width: 100%; justify-content: flex-start; }
}

/* 7. Outcomes Grid */
.outcomes-section { background-color: var(--bg-primary); padding: 60px 0;}
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.outcome-card { background: var(--bg-white); padding: 24px; border-radius: 16px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--card-border); box-shadow: var(--card-shadow); }
.outcome-card i { font-size: 1.5rem; margin-top: 2px; flex-shrink: 0; }
.outcome-card p { font-size: 1rem; color: var(--text-charcoal); }
.outcome-card strong { color: var(--text-dark); display: block; margin-bottom: 4px; font-weight: 700; }

@media (max-width: 768px) { 
  .outcomes-grid { grid-template-columns: 1fr; } 
  .outcome-card { flex-direction: column; align-items: center; text-align: center; }
}

/* 8. Bonuses Value Stack */
.bonus-section { background-color: var(--bg-beige); padding: 60px 0;}
.bonus-mockup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto;}
.mockup-card { background: var(--bg-white); border-radius: 20px; padding: 24px; border: 1px solid var(--card-border); text-align: center; box-shadow: var(--card-shadow); }
.mockup-img { width: 100%; height: 160px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-dark); font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; letter-spacing: 1px; margin-bottom: 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.02); }
.b-1 { background: linear-gradient(135deg, var(--bg-mint), var(--bg-secondary)); border: 1px solid rgba(31,164,99,0.1); }
.b-2 { background: linear-gradient(135deg, var(--accent-beige), var(--bg-beige)); border: 1px solid rgba(216,155,43,0.1); }
.b-3 { background: linear-gradient(135deg, var(--bg-primary), var(--bg-mint)); border: 1px solid rgba(31,164,99,0.1); }
.stack-box { background: var(--bg-white); border: 2px dashed rgba(31, 164, 99, 0.3); padding: 16px 32px; border-radius: 16px; display: inline-block; box-shadow: var(--card-shadow); }

@media (max-width: 1024px) { .bonus-mockup-grid { grid-template-columns: 1fr; } }

/* 9. Video Testimonials */
.testimonial-section { background-color: var(--bg-mint); padding: 60px 0; }
.video-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto;}
.video-placeholder { text-align: center; background: var(--bg-white); padding: 16px; border-radius: 20px; border: 1px solid var(--card-border); box-shadow: var(--card-shadow);}
.vid-thumb { width: 100%; height: 200px; background: var(--bg-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--text-muted); cursor: pointer; border: 1px solid var(--card-border); transition: all 0.3s; position: relative; overflow: hidden; opacity: 0.8;}
.vid-thumb:hover { color: var(--primary); border-color: rgba(31, 164, 99, 0.3); transform: scale(1.02); opacity: 1;}
.vid-thumb i { position: relative; z-index: 2; }
.vid-tag { font-size: 0.85rem; font-weight: 500; margin-top: 4px; }

@media (max-width: 1024px) { .video-test-grid { grid-template-columns: 1fr; } }

/* 10. Coach Authority */
.coach-section { background-color: var(--bg-primary); padding: 60px 0; }
.magazine-coach { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1000px; margin: 0 auto;}
.mission-quote { font-size: 1.5rem; font-family: var(--font-display); font-weight: 400; line-height: 1.5; color: var(--text-dark); border-left: 3px solid var(--primary); padding-left: 20px; }
.trust-logos { display: flex; gap: 12px; flex-wrap: wrap; }
.logo-ph { border: 1px solid var(--card-border); background: var(--bg-white); padding: 8px 16px; border-radius: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; color: var(--text-charcoal); display: flex; align-items: center; gap: 8px; box-shadow: 0 2px 5px rgba(18,55,42,0.02); }
.logo-ph i { color: var(--primary); font-size: 1.125rem; }

.coach-profile-card { position: relative; background: var(--bg-beige); border: 1px solid var(--accent-beige); border-radius: 24px; padding: 16px; overflow: hidden; box-shadow: var(--card-shadow); display: flex; flex-direction: column; align-items: center; text-align: center;}
.profile-img { width: 100%; height: auto; border-radius: 16px; object-fit: contain; max-height: 400px; background: radial-gradient(circle, var(--bg-white) 0%, transparent 80%);}
.profile-info { padding: 24px 16px 8px; width: 100%; }
.profile-info h3 { font-size: 1.5rem; margin-bottom: 4px; color: var(--text-dark); }

@media (max-width: 1024px) {
  .magazine-coach { grid-template-columns: 1fr; text-align: center; }
  .trust-logos { justify-content: center; }
  .mission-quote { border-left: none; border-top: 3px solid var(--primary); padding-left: 0; padding-top: 20px; }
}

/* 11. FAQ Section */
.faq-section { background-color: var(--bg-mint); padding: 60px 0;}
.faq-wrapper { max-width: 800px; margin: 0 auto; background: var(--bg-white); padding: 32px; border-radius: 20px; box-shadow: var(--card-shadow); border: 1px solid var(--card-border); }
.faq-row { border-bottom: 1px solid var(--card-border); }
.faq-row:last-child { border-bottom: none; }
.faq-q { padding: 20px 0; font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); }
.faq-q i { transition: transform 0.3s; color: var(--text-muted); }
.faq-a { height: 0; overflow: hidden; transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-inner { padding-bottom: 20px; color: var(--text-charcoal); font-size: 0.95rem; line-height: 1.5;}
.faq-row.active .faq-q i { transform: rotate(45deg); color: var(--primary); }

/* 12. Final CTA */
.final-cta { background-color: var(--bg-primary); padding: 80px 0; }
.checkout-card { background: var(--bg-white); border: 1px solid rgba(31, 164, 99, 0.2); padding: 40px; border-radius: 24px; max-width: 500px; margin: 0 auto; box-shadow: var(--card-shadow); }
.checkout-stack { display: flex; flex-direction: column; gap: 12px; font-size: 1rem; }
.c-item { display: flex; justify-content: space-between; color: var(--text-charcoal); }
.c-val.strike { text-decoration: line-through; color: var(--text-muted); }
.divider-line { height: 1px; background: rgba(18,55,42,0.1); margin: 8px 0; }
.c-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.125rem; font-weight: 600; color: var(--text-dark); }
.c-total strong { font-size: 2.5rem; line-height: 1; color: var(--text-dark); }
.security-badges { display: flex; justify-content: center; gap: 16px; font-size: 0.85rem; color: var(--text-muted); }
.security-badges i { color: var(--text-dark); }

.progress-bar { width: 100%; height: 6px; background: rgba(18,55,42,0.05); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--red-muted); }
.medical-disclaimer { background: var(--bg-primary); border: 1px solid var(--card-border); padding: 16px; border-radius: 12px; font-size: 0.85rem; color: var(--text-muted); text-align: left; line-height: 1.4; display: flex; gap: 12px; align-items: flex-start;}
.medical-disclaimer i { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; color: var(--text-dark);}

@media (max-width: 768px) {
  .checkout-card { padding: 32px 24px; }
  .c-total strong { font-size: 2rem; }
}

footer { padding: 40px 0; background-color: var(--bg-mint); color: var(--text-muted); border-top: 1px solid var(--card-border); font-size: 0.85rem;}

/* Animations & Reveal Classes */
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-slide-left { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-slide-right { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-fade { opacity: 0; transition: opacity 1s ease; }

.reveal-up.active, .reveal-slide-left.active, .reveal-slide-right.active, .reveal-fade.active { opacity: 1; transform: translate(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
