/* ============================================
   NATURE'S GOLD MILK — HIGH-CONVERSION LP CSS
   ============================================ */

:root {
    --emerald: #0F3823;
    --cream: #FFFDF6;
    --gold: #C5A059;
    --gold-bright: #F2B822;
    --charcoal: #2D3748;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--charcoal); font-family: 'Inter', sans-serif; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.hidden { display: none !important; }
.gold { color: var(--gold); }
.emerald { color: var(--emerald); }

/* UTILITIES */
.label { display: inline-block; text-transform: uppercase; letter-spacing: 3px; font-size: 0.7rem; font-weight: 700; color: var(--emerald); margin-bottom: 12px; }
.gold-label { color: var(--gold); }
.section-sub { color: #6b7280; max-width: 560px; margin: 0 auto 40px; text-align: center; }
.section-sub.light { color: rgba(255,253,246,0.7); }

h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; color: var(--emerald); line-height: 1.25; margin-bottom: 20px; text-align: center; }

/* ANIMATIONS */
@keyframes pulse-cta { 0%,100%{transform:scale(1);box-shadow:0 4px 15px rgba(197,160,89,0.4)} 50%{transform:scale(1.03);box-shadow:0 10px 30px rgba(197,160,89,0.6)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.pulse { animation: pulse-cta 2s infinite ease-in-out; }

/* STICKY CTA */
.sticky-cta { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--emerald); padding: 8px 16px; border-bottom: 2px solid var(--gold); transition: transform 0.3s; }
.sticky-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sticky-text { color: rgba(255,253,246,0.9); font-size: 0.78rem; }
.sticky-text i { color: #ef4444; margin-right: 4px; }
.sticky-btn { background: var(--gold); color: var(--emerald); padding: 6px 18px; border-radius: 6px; font-size: 0.78rem; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.sticky-btn:hover { background: #b58f45; }

/* TRUST BAR */
.trust-bar { background: var(--emerald); color: var(--cream); text-align: center; padding: 10px 16px; font-size: 0.78rem; letter-spacing: 0.5px; border-bottom: 1px solid rgba(197,160,89,0.2); }
.trust-bar .gold { margin-right: 6px; }

/* HERO */
.hero { max-width: 960px; margin: 0 auto; padding: 48px 20px 32px; text-align: center; }
.pre-hook { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.72rem; font-weight: 700; margin-bottom: 16px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 5vw, 3rem); font-weight: 700; color: var(--emerald); line-height: 1.2; max-width: 800px; margin: 0 auto 20px; }
.sub-hook { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--gold); max-width: 640px; margin: 0 auto 24px; line-height: 1.5; }
.hero-urgency { display: inline-flex; align-items: center; gap: 8px; background: rgba(15,56,35,0.06); border: 1px solid rgba(15,56,35,0.1); padding: 8px 20px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; color: var(--emerald); }

/* VSL */
.vsl-section { max-width: 800px; margin: 0 auto; padding: 0 20px 40px; }
.vsl-container { position: relative; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); border: 3px solid var(--emerald); aspect-ratio: 16/9; }
.vsl-video-embed { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 20; }
.vsl-video-embed iframe, .vsl-video-embed video { width: 100%; height: 100%; border: none; }
.vsl-thumb-overlay { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; z-index: 30; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vsl-thumb-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vsl-thumb-overlay:hover .vsl-thumb-img { transform: scale(1.02); }
.vsl-play-button-wrapper { position: absolute; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.vsl-play-btn { width: 84px; height: 84px; border-radius: 50%; background: var(--gold); border: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(197,160,89,0.8); animation: pulse-cta 2s infinite ease-in-out; transition: transform 0.2s ease, background-color 0.2s ease; }
.vsl-thumb-overlay:hover .vsl-play-btn { transform: scale(1.1); background: var(--gold-bright); }
.vsl-play-btn i { color: var(--emerald); font-size: 2rem; margin-left: 6px; }
.vsl-note { text-align: center; font-size: 0.78rem; color: #999; margin-top: 12px; }

/* CTA BLOCK */
.cta-block { text-align: center; max-width: 560px; margin: 0 auto; padding: 0 20px 56px; }
.main-cta { display: inline-block; background: var(--gold); color: var(--emerald); font-size: 1.1rem; font-weight: 700; padding: 16px 40px; border-radius: 10px; text-decoration: none; box-shadow: 0 4px 20px rgba(197,160,89,0.4); transition: background 0.2s; }
.main-cta:hover { background: #b58f45; }
.main-cta.full-width { width: 100%; display: block; }
.cta-badges { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; font-size: 0.72rem; color: #999; flex-wrap: wrap; }

/* PAIN SECTION */
.pain-section { background: var(--white); border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; padding: 64px 0; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; padding: 0 20px; }
.pain-card { background: var(--cream); padding: 28px 24px; border-radius: 12px; border: 1px solid #f0eee7; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.pain-icon { width: 48px; height: 48px; background: rgba(15,56,35,0.08); color: var(--emerald); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.1rem; }
.pain-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--emerald); margin-bottom: 8px; }
.pain-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; }

/* PROBLEM SECTION */
.problem-section { padding: 64px 0; text-align: center; }
.problem-section p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.problem-callout { display: flex; align-items: flex-start; gap: 16px; background: #fef3c7; border-left: 4px solid var(--gold-bright); padding: 20px 24px; border-radius: 0 10px 10px 0; text-align: left; margin: 28px 0; }
.problem-callout i { color: var(--gold-bright); font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.problem-callout div { font-size: 0.9rem; line-height: 1.6; }

/* SOLUTION / MECHANISM */
.solution-section { background: var(--emerald); color: var(--cream); padding: 64px 0; }
.solution-section h2 { color: var(--cream); }
.solution-section p { font-size: 0.92rem; text-align: center; max-width: 600px; margin: 0 auto 28px; opacity: 0.9; }
.mechanism-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 32px 0; }
.mech-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); padding: 24px; border-radius: 12px; }
.mech-number { width: 36px; height: 36px; background: var(--gold); color: var(--emerald); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; }
.mech-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); margin-bottom: 8px; }
.mech-card p { font-size: 0.82rem; opacity: 0.85; line-height: 1.6; }
.solution-result { font-size: 1rem !important; font-weight: 600; opacity: 1 !important; margin-top: 32px !important; }
.solution-result i { margin-right: 6px; }

/* INSIDE SECTION */
.inside-section { padding: 64px 0; }
.inside-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; max-width: 960px; margin: 0 auto; padding: 0 20px; }
.book-display { display: flex; align-items: center; justify-content: center; width: 100%; }
.book-img { width: 100%; max-width: 440px; border-radius: 12px; box-shadow: 0 16px 36px rgba(0,0,0,0.12); transform: rotate(-2deg); transition: transform 0.5s; animation: float 4s ease-in-out infinite; }
.book-display:hover .book-img { transform: rotate(0deg) scale(1.02); }
.inside-list { display: flex; flex-direction: column; gap: 20px; }
.inside-item { display: flex; gap: 14px; align-items: flex-start; }
.inside-item i { font-size: 1.2rem; margin-top: 4px; flex-shrink: 0; }
.inside-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--emerald); margin-bottom: 2px; }
.inside-item p { font-size: 0.82rem; color: #6b7280; line-height: 1.5; }
.inside-item.bonus { background: linear-gradient(135deg, rgba(197,160,89,0.08), rgba(242,184,34,0.08)); padding: 16px; border-radius: 10px; border: 1px dashed var(--gold); }

/* TESTIMONIALS */
.testimonials-section { background: var(--emerald); color: var(--cream); padding: 64px 0; }
.testimonials-section h2 { color: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; padding: 0 20px; }
.testimonial-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); padding: 24px; border-radius: 12px; }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; display: flex; gap: 2px; }
.testimonial-card p { font-size: 0.85rem; font-style: italic; color: rgba(255,253,246,0.85); line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--emerald); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem; flex-shrink: 0; }
.testimonial-author strong { font-size: 0.85rem; display: block; }
.testimonial-author span { font-size: 0.72rem; color: rgba(255,253,246,0.5); }

/* WHO SECTION */
.who-section { padding: 64px 0; background: var(--white); border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.who-yes, .who-no { padding: 28px; border-radius: 12px; }
.who-yes { background: rgba(15,56,35,0.04); border: 1px solid rgba(15,56,35,0.1); }
.who-no { background: rgba(239,68,68,0.03); border: 1px solid rgba(239,68,68,0.1); }
.who-yes h3 { color: var(--emerald); font-size: 0.95rem; margin-bottom: 16px; }
.who-no h3 { color: #b91c1c; font-size: 0.95rem; margin-bottom: 16px; }
.who-yes h3 i { color: var(--emerald); margin-right: 6px; }
.who-no h3 i { color: #b91c1c; margin-right: 6px; }
.who-yes ul, .who-no ul { list-style: none; }
.who-yes li, .who-no li { font-size: 0.85rem; padding: 6px 0; padding-left: 20px; position: relative; color: #555; }
.who-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.who-no li::before { content: '✗'; position: absolute; left: 0; color: #b91c1c; font-weight: 700; }

/* PRICING */
.pricing-section { padding: 64px 0; background: var(--cream); }
.pricing-card { background: var(--white); border: 2px solid var(--emerald); border-radius: 16px; padding: 40px 32px; box-shadow: 0 16px 48px rgba(0,0,0,0.08); position: relative; max-width: 480px; margin: 24px auto 0; text-align: center; }
.pricing-banner { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--emerald); font-size: 0.78rem; font-weight: 700; padding: 6px 24px; border-radius: 20px; white-space: nowrap; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--charcoal); margin-top: 8px; }
.pricing-desc { font-size: 0.85rem; color: #888; margin-bottom: 24px; }
.pricing-price { margin: 20px 0 4px; }
.old-price { font-size: 1.1rem; color: #aaa; text-decoration: line-through; margin-right: 8px; }
.new-price { font-size: 3rem; font-weight: 700; color: var(--emerald); }
.new-price sup { font-size: 1.2rem; }
.pricing-note { font-size: 0.75rem; color: #999; margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; padding: 20px 0; margin-bottom: 24px; }
.pricing-features li { font-size: 0.85rem; padding: 6px 0; color: #555; }
.pricing-features li i { margin-right: 8px; }
.pricing-secure { display: flex; justify-content: center; gap: 20px; margin-top: 16px; font-size: 0.72rem; color: #999; }
.pricing-secure i { margin-right: 4px; }

/* GUARANTEE */
.guarantee-section { padding: 64px 0; background: var(--white); border-top: 1px solid #e5e7eb; }
.guarantee-flex { display: flex; align-items: center; gap: 32px; }
.guarantee-badge { width: 120px; height: 120px; flex-shrink: 0; background: rgba(15,56,35,0.04); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.guarantee-badge i { font-size: 3.5rem; color: var(--gold); }
.guarantee-section h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--emerald); margin-bottom: 12px; }
.guarantee-section p { font-size: 0.88rem; color: #555; line-height: 1.7; margin-bottom: 8px; }

/* FAQ */
.faq-section { padding: 64px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.faq-item { background: var(--white); border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.faq-item button { width: 100%; text-align: left; padding: 18px 20px; font-size: 0.92rem; font-weight: 600; color: var(--emerald); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item button i { transition: transform 0.3s; color: var(--gold); }
.faq-item button i.rotated { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 18px; font-size: 0.85rem; color: #666; line-height: 1.7; border-top: 1px solid #f0f0f0; padding-top: 14px; }

/* FINAL CTA */
.final-cta-section { background: linear-gradient(135deg, var(--cream), #f5f0e0); padding: 64px 0; border-top: 1px solid #e5e7eb; }
.final-cta-section h2 { margin-bottom: 24px; }
.final-cta-section p { font-size: 0.92rem; margin-bottom: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-note { font-size: 0.78rem; color: #999; margin-top: 16px !important; }

/* FOOTER */
.main-footer { background: var(--emerald); color: var(--cream); padding: 48px 20px; }
.main-footer h3 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 16px; }
.disclaimer { font-size: 0.7rem; color: rgba(255,253,246,0.45); max-width: 600px; margin: 0 auto 12px; line-height: 1.6; }
.copyright { font-size: 0.7rem; color: rgba(255,253,246,0.3); }

/* RESPONSIVE & MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    h2 { font-size: 1.8rem; }
    .hero { padding: 32px 16px 24px; }
    .hero h1 { font-size: 2.2rem; }
    .sub-hook { font-size: 1.1rem; }
    
    .pain-section, .problem-section, .solution-section, .inside-section, 
    .testimonials-section, .who-section, .pricing-section, .guarantee-section, 
    .faq-section, .final-cta-section { padding: 40px 0; }
    
    .vsl-section { padding: 0 10px 30px; }
    .vsl-container { border-width: 2px; }
    .vsl-play-btn { width: 68px; height: 68px; }
    .vsl-play-btn i { font-size: 1.6rem; }
    
    .inside-grid { grid-template-columns: 1fr; gap: 30px; }
    .book-display { order: -1; }
    .book-img { max-width: 280px; margin: 0 auto; }
    .who-grid { grid-template-columns: 1fr; gap: 20px; }
    .guarantee-flex { flex-direction: column; text-align: center; gap: 20px; }
    .guarantee-badge { width: 90px; height: 90px; }
    .guarantee-badge i { font-size: 2.8rem; }
    
    .sticky-text { display: none; }
    .sticky-inner { justify-content: center; }
    .main-cta { font-size: 1rem; padding: 14px 28px; width: 100%; text-align: center; }
    .pain-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .pain-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-card { padding: 30px 20px; }
    .new-price { font-size: 2.6rem; }
    .vsl-play-btn { width: 56px; height: 56px; }
    .vsl-play-btn i { font-size: 1.3rem; margin-left: 4px; }
    .faq-item button { padding: 14px 16px; font-size: 0.88rem; }
    .faq-answer { padding: 0 16px 14px; font-size: 0.8rem; }
}
