/* ── MITOLYN PRESSEL — style.css ── */

:root {
  --purple-deep: #2d1b4e;
  --purple-mid: #6a3093;
  --purple-light: #a855f7;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --cream: #fdf8f0;
  --white: #ffffff;
  --red-alert: #c0392b;
  --green-cta: #27ae60;
  --green-cta-dark: #1e8449;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --berry: #8b2252;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--purple-deep);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #1a0d33 40%, #3d1066 100%);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(168,85,247,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .badge,
.hero h1,
.hero .subtitle,
.hero-product,
.hero .cta-btn,
.hero .cta-sub {
  position: relative;
  z-index: 2;
}
.hero .badge {
  display: inline-block;
  background: var(--red-alert);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(192,57,43,0); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 54px);
  color: var(--white);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 20px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero .subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-product {
  max-width: 320px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 20px 50px rgba(168,85,247,0.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-product img { width: 100%; }

/* ── CTA BUTTON ── */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-cta) 0%, var(--green-cta-dark) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(39,174,96,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(39,174,96,0.55); }
.cta-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 12px; }

/* ── SECTIONS ── */
section { padding: 70px 20px; }
.container { max-width: 860px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-mid);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25;
  color: var(--purple-deep);
  margin-bottom: 20px;
}
.section-title em { color: var(--berry); font-style: italic; }

/* ── DISCOVERY ── */
.discovery { background: #fff; border-top: 4px solid var(--gold); }
.discovery p { font-size: 17px; line-height: 1.85; color: var(--text-mid); margin-bottom: 18px; }
.discovery strong { color: var(--purple-deep); }
.highlight-box {
  background: linear-gradient(135deg, #f5eeff 0%, #ede0ff 100%);
  border-left: 5px solid var(--purple-mid);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}
.highlight-box p { font-size: 18px; font-weight: 700; color: var(--purple-deep); margin: 0; }
.mito-img {
  display: block; max-width: 240px; margin: 30px auto;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(168,85,247,0.15), 0 0 0 16px rgba(168,85,247,0.07);
}

/* ── SOLUTION ── */
.solution { background: linear-gradient(180deg, #1a0d33 0%, var(--purple-deep) 100%); text-align: center; }
.solution .section-title { color: var(--white); }
.solution .section-label { color: var(--gold-light); border-color: var(--gold-light); }
.solution p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.8; max-width: 680px; margin: 0 auto 30px; }
.logo-white { max-width: 200px; margin: 30px auto; filter: brightness(0) invert(1); display: block; }
.product-big { max-width: 280px; margin: 0 auto 40px; display: block; filter: drop-shadow(0 20px 40px rgba(168,85,247,0.6)); }
.badges-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 30px auto 0; max-width: 640px; }
.badge-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 10px 18px; color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.badge-item .dot { width: 8px; height: 8px; background: var(--green-cta); border-radius: 50%; }

/* ── INGREDIENTS ── */
.ingredients { background: var(--cream); }
.ing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.ing-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(45,27,78,0.08); transition: transform 0.25s; }
.ing-card:hover { transform: translateY(-5px); }
.ing-card img { width: 100%; height: 160px; object-fit: cover; }
.ing-card-body { padding: 20px; }
.ing-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--purple-deep); margin-bottom: 8px; }
.ing-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.ing-tick { color: var(--green-cta); font-weight: 700; font-size: 13px; margin-top: 10px; }
.ing-tick span { display: block; margin-bottom: 4px; }

/* ── TESTIMONIALS ── */
.testimonials { background: #fff; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 40px; }
.test-card {
  border: 1px solid rgba(168,85,247,0.15); border-radius: 16px;
  padding: 28px; position: relative; background: #fafafe;
}
.test-card::before {
  content: '"'; position: absolute; top: 10px; left: 20px;
  font-family: 'Playfair Display', serif; font-size: 80px;
  color: rgba(168,85,247,0.12); line-height: 1;
}
.test-card img.avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin-bottom: 14px; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 10px; }
.test-card p { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; }
.test-card .name { font-weight: 700; color: var(--purple-deep); font-size: 14px; }
.result-badge { display: inline-block; background: var(--green-cta); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }

/* ── PRICING ── */
.pricing { background: linear-gradient(135deg, #1a0d33, var(--purple-deep)); text-align: center; }
.pricing .section-title { color: #fff; }
.pricing .section-label { color: var(--gold-light); border-color: var(--gold-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.price-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 30px 20px; position: relative; transition: transform 0.25s; }
.price-card:hover { transform: translateY(-5px); }
.price-card.featured { background: rgba(212,160,23,0.12); border: 2px solid var(--gold); transform: scale(1.04); }
.price-card.featured:hover { transform: scale(1.04) translateY(-5px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--purple-deep); font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; white-space: nowrap; }
.price-card h3 { color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.price-card .bottles { color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 4px; }
.price-card .supply { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 16px; }
.price-card img.product-img { max-width: 120px; margin: 0 auto 16px; display: block; }
.price-card .price { color: #fff; font-size: 38px; font-weight: 900; margin-bottom: 6px; }
.price-card .per { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 20px; }
.price-card .bonus { color: var(--gold-light); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.price-card .cta-btn { font-size: 15px; padding: 14px 30px; width: 100%; text-align: center; display: block; }

/* ── BONUSES ── */
.bonuses { background: #fff; text-align: center; }
.bonus-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.bonus-item { max-width: 280px; text-align: center; }
.bonus-item img { width: 180px; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); margin-bottom: 16px; display: block; margin-left: auto; margin-right: auto; }
.bonus-tag { background: var(--green-cta); color: #fff; display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.bonus-item h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--purple-deep); margin-bottom: 8px; }
.bonus-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── GUARANTEE ── */
.guarantee { background: #fff; }
.guarantee-inner { display: flex; align-items: center; gap: 40px; max-width: 760px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.guarantee-inner img { max-width: 160px; }
.guarantee-text { flex: 1; min-width: 260px; text-align: left; }
.guarantee-text h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--purple-deep); margin-bottom: 14px; }
.guarantee-text p { font-size: 16px; line-height: 1.8; color: var(--text-mid); }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(45,27,78,0.06); }
.faq-q { padding: 20px 24px; font-weight: 700; font-size: 16px; color: var(--purple-deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; user-select: none; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--purple-mid); transition: transform 0.3s; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; font-size: 15px; line-height: 1.8; color: var(--text-mid); }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, var(--purple-deep), #0d0621); text-align: center; padding: 80px 20px; }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,42px); color: #fff; margin-bottom: 16px; }
.final-cta h2 em { color: var(--gold-light); }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer { background: #0a0618; color: rgba(255,255,255,0.4); text-align: center; padding: 30px 20px; font-size: 12px; line-height: 1.8; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 8px; }
footer a:hover { color: var(--gold-light); }

@media(max-width:600px) {
  .price-card.featured { transform: none; }
}
