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

:root {
  --bg: #faf7ff;
  --bg-alt: #f3eeff;
  --bg-dark: #1e1b4b;
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --purple-light: #ede9fe;
  --purple-xlight: #f5f3ff;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --green: #059669;
  --green-light: #d1fae5;
  --red: #dc2626;
  --text: #1e1b4b;
  --muted: #6b7280;
  --border: #ddd6fe;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 680px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 520px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn-primary {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--purple);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--purple-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-secondary {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--purple);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--purple);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--purple-light); }

/* Coupon banner */
.coupon-banner {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.coupon-banner code {
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 15px;
}

/* Section styles */
.section { padding: 48px 20px; }
.section-alt { padding: 48px 20px; background: var(--bg-alt); }
.section-dark { padding: 48px 20px; background: var(--bg-dark); color: white; }
.section-white { padding: 48px 20px; background: var(--white); }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

h2.section-title {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Stat callout */
.stat-callout {
  background: var(--white);
  border: 2px solid var(--purple-light);
  border-left: 5px solid var(--purple);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-text { font-size: 15px; color: var(--muted); }

/* Pull quote */
.pull-quote {
  background: var(--purple-xlight);
  border-left: 4px solid var(--purple);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-size: 64px;
  color: var(--purple-light);
  position: absolute;
  top: -8px;
  left: 12px;
  line-height: 1;
  font-style: normal;
}
.pull-quote p { padding-left: 24px; }
.pull-quote .cite { font-size: 13px; font-style: normal; color: var(--muted); margin-top: 8px; padding-left: 24px; }

/* Testimonial card */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 16px;
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}
.testimonial-stars { color: #f59e0b; font-size: 15px; margin-bottom: 8px; }
.testimonial-text { font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.testimonial-meta { font-size: 13px; color: var(--muted); font-weight: 600; }
.testimonial-orchid { font-size: 12px; color: var(--purple); font-weight: 600; margin-top: 2px; }
.testimonial-disclaimer { font-size: 11px; color: var(--muted); margin-top: 8px; font-style: italic; }

/* Before/After */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.ba-panel {
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ba-panel.before { background: #f3f4f6; }
.ba-panel.after { background: linear-gradient(135deg, var(--purple-light), var(--bg-alt)); }
.ba-icon { font-size: 48px; }
.ba-week { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.ba-label { font-size: 15px; font-weight: 700; color: var(--text); }

/* Timeline bars */
.timeline-wrap { margin: 24px 0; }
.timeline-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.timeline-week { font-size: 12px; font-weight: 700; color: var(--muted); width: 80px; flex-shrink: 0; }
.timeline-track { flex: 1; background: var(--border); border-radius: 20px; height: 10px; overflow: hidden; }
.timeline-fill { height: 100%; border-radius: 20px; transition: width 0s; }
.timeline-fill.dormant { background: #d1d5db; }
.timeline-fill.growing { background: linear-gradient(90deg, #34d399, #059669); }
.timeline-fill.blooming { background: linear-gradient(90deg, var(--purple-light), var(--purple)); }
.timeline-event { font-size: 13px; color: var(--text); width: 120px; flex-shrink: 0; }

/* Comparison bars */
.compare-wrap { margin: 20px 0; }
.compare-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.compare-label { font-size: 13px; font-weight: 600; width: 140px; flex-shrink: 0; color: var(--text); }
.compare-track { flex: 1; background: var(--border); border-radius: 20px; height: 14px; overflow: hidden; }
.compare-fill { height: 100%; border-radius: 20px; }
.compare-fill.ultrabloom { background: var(--purple); }
.compare-fill.generic { background: #9ca3af; }
.compare-fill.water { background: #d1d5db; }
.compare-pct { font-size: 13px; font-weight: 700; width: 36px; flex-shrink: 0; }

/* Mineral cards */
.mineral-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.mineral-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.mineral-symbol { font-size: 28px; font-weight: 900; color: var(--purple); font-family: monospace; }
.mineral-name { font-size: 12px; font-weight: 700; color: var(--text); margin: 4px 0; }
.mineral-amount { font-size: 11px; background: var(--purple-light); color: var(--purple-dark); padding: 2px 8px; border-radius: 20px; display: inline-block; margin-bottom: 6px; }
.mineral-role { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 12px;
  margin: 24px 0;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(124,58,237,0.15);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-qty { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.pricing-bottles { font-size: 28px; margin-bottom: 8px; }
.pricing-price { font-size: 32px; font-weight: 900; color: var(--text); line-height: 1; }
.pricing-price .each { font-size: 14px; font-weight: 400; color: var(--muted); }
.pricing-mrp { font-size: 13px; color: var(--muted); text-decoration: line-through; margin: 4px 0; }
.pricing-total { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.pricing-shipping { font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 16px; font-size: 13px; }
.pricing-features li { padding: 3px 0; display: flex; gap: 6px; }
.pricing-pct { display: inline-block; background: var(--purple-light); color: var(--purple-dark); font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-bottom: 12px; }

/* Trust badges */
.badge-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.trust-badge-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #92400e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 12px rgba(217,119,6,0.3);
}
.trust-badge-label { font-size: 11px; font-weight: 700; color: var(--muted); text-align: center; max-width: 72px; }

/* Guarantee section */
.guarantee-box {
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.guarantee-icon { font-size: 52px; margin-bottom: 12px; }
.guarantee-title { font-size: 22px; font-weight: 800; color: #065f46; margin-bottom: 10px; }
.guarantee-text { font-size: 15px; color: #047857; line-height: 1.6; }

/* Sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-product { font-size: 13px; font-weight: 700; flex: 1; }
.sticky-bar-stars { font-size: 12px; color: #f59e0b; }
.sticky-bar-price { font-size: 14px; font-weight: 700; flex-shrink: 0; }
.sticky-bar-btn {
  background: var(--purple);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-bar-btn:hover { background: var(--purple-dark); }

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--purple); }

/* Coupon field */
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; }
.coupon-apply-btn {
  padding: 12px 16px;
  background: var(--purple-light);
  color: var(--purple-dark);
  border: 1.5px solid var(--purple-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.coupon-apply-btn:hover { background: var(--purple); color: white; }
.coupon-success { color: var(--green); font-size: 13px; font-weight: 600; margin-top: 6px; }
.coupon-error { color: var(--red); font-size: 13px; margin-top: 6px; }

/* Misc */
.badge { display: inline-block; padding: 4px 10px; background: var(--purple-light); color: var(--purple-dark); font-size: 12px; font-weight: 700; border-radius: 20px; }
.badge-green { background: var(--green-light); color: #065f46; }
.badge-gold { background: var(--gold-light); color: #92400e; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.fine-print { font-size: 11px; color: var(--muted); line-height: 1.6; }
sup { font-size: 10px; }

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .mineral-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after { grid-template-columns: 1fr; }
  .timeline-week { width: 60px; font-size: 11px; }
  .timeline-event { width: 90px; font-size: 12px; }
  .compare-label { width: 100px; font-size: 12px; }
  .sticky-bar-product span { display: none; }
}
