/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; line-height: 1.6; background: #fff; }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav { padding: 16px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: #fff; z-index: 100; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.3rem; font-weight: 700; }
.logo span { color: #d35400; }
.nav-cta { background: #d35400; color: #fff; padding: 8px 20px; border-radius: 6px; font-size: 0.9rem; font-weight: 600; }
.nav-cta:hover { background: #b94700; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: #d35400; color: #fff; }
.btn-primary:hover { background: #b94700; transform: translateY(-1px); }
.btn-outline { border: 2px solid #d35400; color: #d35400; background: transparent; }
.btn-outline:hover { background: #d35400; color: #fff; }

/* BADGES */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.badge-red { background: #fde8e8; color: #c0392b; }
.badge-green { background: #e8fde8; color: #27ae60; }
.badge-gold { background: #fef3e2; color: #d35400; }

/* HERO */
.hero { padding: 80px 0 60px; text-align: center; background: linear-gradient(180deg, #fff9f5 0%, #fff 100%); }
.hero h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; }
.hero em { color: #d35400; font-style: italic; }
.subtitle { font-size: 1.15rem; color: #555; max-width: 600px; margin: 0 auto 32px; }
.proof { margin-top: 20px; font-size: 0.9rem; color: #777; }

/* BEFORE/AFTER */
.before-after { padding: 60px 0; background: #fafafa; }
.before-after h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.card { padding: 24px; border-radius: 12px; border: 1px solid #e5e5e5; background: #fff; }
.card.before { background: #fef9f6; }
.card.after { background: #f6fef8; }
.card h3 { font-size: 1.05rem; margin: 12px 0 8px; }
.card p { color: #555; font-size: 0.95rem; }

/* STATS */
.stats { padding: 50px 0; background: #1a1a1a; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: #d35400; font-family: 'Playfair Display', serif; }
.stat-label { display: block; font-size: 0.95rem; margin-top: 4px; }
.stat-source { display: block; font-size: 0.75rem; color: #888; margin-top: 4px; }

/* HOW IT WORKS */
.how-it-works { padding: 60px 0; }
.how-it-works h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: #d35400; color: #fff; font-weight: 700; font-size: 1.2rem; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: #666; font-size: 0.9rem; }

/* PRICING */
.pricing { padding: 60px 0; background: #fafafa; }
.pricing h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto; }
.price-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 32px; text-align: center; position: relative; }
.price-card.featured { border: 2px solid #d35400; }
.price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.price { font-size: 2.5rem; font-weight: 700; color: #d35400; margin: 12px 0 20px; font-family: 'Playfair Display', serif; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card li { padding: 6px 0; font-size: 0.9rem; color: #444; }
.guarantee { text-align: center; margin-top: 24px; font-size: 0.9rem; color: #888; }

/* FREE SAMPLE */
.free-sample { padding: 60px 0; text-align: center; background: linear-gradient(180deg, #fff 0%, #fff9f5 100%); }
.free-sample h2 { font-size: 2rem; margin-bottom: 12px; }
.free-sample p { color: #555; max-width: 500px; margin: 0 auto 24px; }

/* FAQ */
.faq { padding: 60px 0; }
.faq h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { color: #666; font-size: 0.9rem; }

/* FOOTER */
footer { padding: 40px 0; text-align: center; background: #1a1a1a; color: #aaa; }
footer span { color: #d35400; }
footer a { color: #d35400; }
.small { font-size: 0.75rem; margin-top: 12px; }

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .comparison { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .steps { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}
