:root {
  --navy: #0a1628;
  --deep: #0f2044;
  --blue: #1a3a6b;
  --gold: #c8a84b;
  --gold-light: #e8c96b;
  --cream: #fff;
  --white: #ffffff;
  --text: #2c3e50;
  --muted: #6b7a8d;
  --danger: #e74c3c;
  --success: #27ae60;
  --border: #e2ddd4;
  --shadow: rgba(10,22,40,0.12);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family:  "Google Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family:  "Google Sans", sans-serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: var(--navy);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { display:block; width:24px; height:2px; background: var(--gold); border-radius:2px; transition:0.3s; }
.mobile-menu { display:none; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 40%, var(--blue) 100%);
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,168,75,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; margin-bottom: 28px;
}
.hero-price {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 10px; padding: 18px 22px; margin-bottom: 28px;
  display: inline-block;
}
.hero-price .old { color: rgba(255,255,255,0.5); text-decoration: line-through; font-size:0.95rem; }
.hero-price .new { color: var(--gold); font-size: 1.6rem; font-weight: 700; display:block; margin-top:4px; }
.hero-price .new span { font-size:1rem; font-weight:400; color: rgba(255,255,255,0.7); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700; font-size: 1rem; padding: 16px 36px;
  border-radius: 8px; border: none; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(200,168,75,0.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,75,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600; font-size: 0.95rem; padding: 14px 28px;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.25s; margin-left: 12px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.rating-line { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 8px; }
.hero-img-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-img-wrap::before {
  content:'';
  position: absolute; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,168,75,0.15) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}
.hero-img-wrap img {
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  max-height: 420px; width: auto;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px;
}
.trust-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.trust-item h5 { font-size: 0.95rem; color: var(--navy); }
.trust-item p { font-size: 0.82rem; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(200,168,75,0.12);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy); margin-bottom: 16px;
}
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 660px; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0; border-radius: 2px;
}

/* ── WHAT IS ── */
.what-is { background: var(--cream); }
.what-is-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
.what-is-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,22,40,0.15);
  position: relative;
}
.what-is-img img { width: 100%; display: block; }
.what-is-content p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }

/* ── HOW WORKS ── */
.how-works { background: var(--navy); }
.how-works .section-title { color: var(--white); }
.how-works .section-lead { color: rgba(255,255,255,0.7); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px; margin-top: 48px;
}
.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 14px; padding: 32px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 800;
  color: rgba(200,168,75,0.2); position: absolute; top: 16px; right: 20px;
}
.step-card h4 { color: var(--gold); font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ── BENEFITS ── */
.benefits { background: var(--white); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(200,168,75,0.12);
  transform: translateY(-3px);
}
.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: 0.88rem; }

/* ── INGREDIENTS ── */
.ingredients { background: var(--cream); }
.ing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 48px;
}
.ing-card {
  background: var(--white);
  border-radius: 12px; padding: 24px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.2s;
}
.ing-card:hover { transform: translateX(4px); }
.ing-card h4 { color: var(--navy); font-size: 0.98rem; margin-bottom: 8px; }
.ing-card p { color: var(--muted); font-size: 0.875rem; }

/* ── REVIEWS ── */
.reviews { background: var(--navy); }
.reviews .section-title { color: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 14px; padding: 28px 24px;
}
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.reviewer-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.reviewer-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.reviewer-loc { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 4px; }
.review-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; }
.verified { color: var(--success); font-size: 0.8rem; margin-top: 12px; font-weight: 500; }

/* ── PRICING ── */
.pricing {
    background: #efefef;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: 16px; padding: 36px 28px;
  text-align: center; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
.price-card.popular {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200,168,75,0.2);
}
.popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 700;
  padding: 6px 18px; border-bottom-left-radius: 10px;
}
.price-bottles { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.price-supply { color: var(--muted); font-size: 0.85rem; margin-bottom: 20px; }
.price-per { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.price-per span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: 0.9rem; margin: 6px 0; }
.price-total { font-weight: 600; color: var(--navy); margin: 12px 0; }
.price-perks {
  list-style: none; text-align: left; margin: 20px 0;
}
.price-perks li {
  color: var(--muted); font-size: 0.87rem; padding: 5px 0;
  display: flex; gap: 8px; align-items: flex-start;
}
.price-perks li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.btn-order {
  display: block; width: 100%;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 0.95rem;
  padding: 14px; border-radius: 8px; border: none;
  cursor: pointer; transition: all 0.25s;
}
.btn-order:hover { background: var(--blue); }
.price-card.popular .btn-order {
  background: var(--gold); color: var(--navy);
}
.price-card.popular .btn-order:hover { background: var(--gold-light); }

/* ── GUARANTEE ── */
.guarantee { background: var(--cream); }
.guarantee-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
  background: var(--white); border-radius: 20px;
  padding: 48px; border: 1px solid var(--border);
  box-shadow: 0 8px 32px var(--shadow);
}
.guarantee-badge {
  width: 140px; height: 140px;
  background: var(--navy);
  border-radius: 50%; border: 4px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gold); text-align: center; flex-shrink: 0;
}
.guarantee-badge .days { font-size: 2.4rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.guarantee-badge .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; }
.guarantee-text h3 { color: var(--navy); margin-bottom: 14px; font-size: 1.5rem; }
.guarantee-text p { color: var(--muted); }

/* ── BONUSES ── */
.bonuses { background: var(--white); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.bonus-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--cream); border-radius: 14px; padding: 28px;
  border: 1px solid var(--border);
}
.bonus-num {
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 1.1rem; font-family: 'Playfair Display', serif;
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bonus-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.bonus-card p { color: var(--muted); font-size: 0.87rem; }
.bonus-free { color: var(--success); font-weight: 600; font-size: 0.85rem; margin-top: 6px; }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.98rem; color: var(--navy);
}
.faq-q .arrow { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-a.open { max-height: 400px; padding: 0 24px 20px; }
.faq-a p { color: var(--muted); font-size: 0.92rem; }

/* ── HOW TO USE ── */
.how-to { background: var(--navy); }
.how-to .section-title { color: var(--white); }
.usage-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.usage-step { text-align: center; }
.usage-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,168,75,0.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800; color: var(--gold);
  margin: 0 auto 16px;
}
.usage-step p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center; padding: 100px 24px;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.final-cta .price-box {
  display: inline-block; margin: 24px 0 32px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(200,168,75,0.4);
  padding: 18px 36px; border-radius: 12px;
}
.final-cta .price-box .old { color: rgba(255,255,255,0.5); text-decoration: line-through; }
.final-cta .price-box .new { font-size: 2rem; font-weight: 800; color: var(--gold); }
.secure-note { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-top: 18px; }

/* ── FOOTER ── */
footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 24px 28px;
  color: rgba(255,255,255,0.55);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; margin-bottom: 36px; flex-wrap: wrap;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.footer-desc { font-size: 0.83rem; max-width: 280px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; font-size: 0.78rem; text-align: center;
}
.fda-disclaimer { font-size: 0.78rem; margin-bottom: 16px; max-width: 900px; margin-left: auto; margin-right: auto; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--gold); color: var(--navy);
  text-align: center; padding: 10px 24px;
  font-weight: 600; font-size: 0.87rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap { order: -1; }
  .hero-price { display: block; }
  .what-is-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-badge { margin: 0 auto; }
  .bonus-grid { grid-template-columns: 1fr; }
  .usage-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.active {
    display: flex; flex-direction: column;
    background: var(--navy); padding: 20px 24px; gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu a { color: rgba(255,255,255,0.85); font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 600px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .usage-steps { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

.cta-image {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}