/* ============================================================
   ZenCortex Official Site — main.css
   Shared stylesheet for all pages
   ============================================================ */

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

:root {
  --primary: #1aa39c;
  --primary-dark: #0d7973;
  --primary-light: #e6f6f5;
  --accent: #ff6a00;
  --accent-dark: #ee0979;
  --text-dark: #0a2540;
  --text-mid: #2c3e50;
  --text-light: #4a5568;
  --text-muted: #718096;
  --bg-light: #f9fbfd;
  --bg-soft: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --gold: #ffb400;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow-sm: 0 4px 12px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 18px 45px rgba(10, 37, 64, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-body: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
  --font-head: 'Jost', 'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== Top Promo Bar ===== */
.promo-bar {
  background: linear-gradient(90deg, #0d7973 0%, #1aa39c 100%);
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.promo-bar strong { color: #ffd166; }

/* ===== Header / Nav ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--primary-dark);
}
.brand img { width: 38px; height: 38px; border-radius: 8px; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff !important;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 18px rgba(238, 9, 121, 0.28);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(238, 9, 121, 0.38); color: #fff !important; }
.btn-large { padding: 18px 42px; font-size: 1.12rem; }

/* ===== Hero ===== */
.hero {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #f3fbfa 0%, #ffffff 100%);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 969px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    grid-template-areas: "headline image" "body image";
    column-gap: 50px;
    row-gap: 24px;
    align-items: center;
  }
  .hero-headline { grid-area: headline; align-self: end; }
  .hero-img-wrap { grid-area: image; align-self: center; }
  .hero-body { grid-area: body; align-self: start; }
}
.hero-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 .accent { color: var(--primary-dark); }
.hero .lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-bullets {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.hero-bullets li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-weight: 600;
  color: var(--text-mid);
  font-size: 1.02rem;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 0.85rem;
  line-height: 22px;
  font-weight: 700;
}
.hero-img-wrap { text-align: center; }
.hero-img-wrap img { max-width: 460px; margin: 0 auto; }
.hero-rating {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-rating .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.hero-rating .rating-text { font-weight: 600; color: var(--text-light); font-size: 0.95rem; }

/* ===== Marquee Strip ===== */
.marquee {
  background: var(--accent);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.marquee-track {
  display: inline-block;
  animation: scroll 30s linear infinite;
}
.marquee span { padding: 0 24px; font-size: 1rem; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Section Heads ===== */
.section { padding: 70px 0; }
.section.alt { background: var(--bg-light); }
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-head p {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== Why Choose / Feature Cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 10px;
}
.feature-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feature-card p { color: var(--text-light); font-size: 0.97rem; line-height: 1.6; }

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-item .badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.trust-item strong { font-size: 0.92rem; color: var(--text-dark); }

/* ===== What Is / Two-Col ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col h2 { font-size: 2.1rem; margin-bottom: 16px; }
.two-col p { color: var(--text-light); margin-bottom: 14px; font-size: 1.02rem; }
.two-col .answer-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== How It Works Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  padding-top: 50px;
}
.step-card .step-num {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(26, 163, 156, 0.35);
}
.step-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.step-card p { color: var(--text-light); font-size: 0.96rem; line-height: 1.6; }

/* ===== Ingredients Grid ===== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.ingredient-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ingredient-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ingredient-card h3 .leaf { color: var(--primary); }
.ingredient-card p { color: var(--text-light); font-size: 0.94rem; line-height: 1.55; }

/* ===== Benefits Section ===== */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.benefit-item .check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.benefit-item strong { color: var(--text-dark); font-size: 1.02rem; display: block; margin-bottom: 4px; }
.benefit-item p { color: var(--text-light); font-size: 0.92rem; line-height: 1.5; }

/* ===== Reviews Section ===== */
.reviews-section {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  margin-bottom: 16px;
}
.review-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.review-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; color: var(--text-dark); font-size: 0.98rem; margin-bottom: 4px; }
.review-location { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e6f7ef;
  color: var(--success);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== Pricing Section ===== */
.pricing-section { padding: 70px 0; background: var(--bg-light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.price-card.featured {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.price-card .pack { font-weight: 700; color: var(--primary-dark); font-size: 1.05rem; margin-bottom: 4px; letter-spacing: 0.5px; }
.price-card .duration { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; }
.price-card img { max-width: 220px; margin: 0 auto 18px; }
.price-card .per-bottle { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.price-card .per-bottle span { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.price-card .total { color: var(--text-light); font-size: 0.95rem; margin: 6px 0 4px; }
.price-card .strike { color: var(--text-muted); text-decoration: line-through; font-size: 0.95rem; margin-bottom: 16px; }
.price-card .shipping {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.price-card .shipping.paid { background: #fff4e6; color: #c2410c; }

/* ===== Bonuses Section ===== */
.bonus-section { padding: 70px 0; background: linear-gradient(135deg, #f3fbfa 0%, #ffffff 100%); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}
.bonus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}
.bonus-card .bonus-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.bonus-card img { max-width: 230px; margin: 0 auto 18px; border-radius: 10px; }
.bonus-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--text-dark); }
.bonus-card p { color: var(--text-light); font-size: 0.96rem; line-height: 1.6; }
.bonus-card .free-tag { color: var(--success); font-weight: 700; font-size: 1.05rem; margin-top: 14px; display: block; }
.bonus-card .strike-price { color: var(--text-muted); text-decoration: line-through; font-size: 0.9rem; }

/* ===== How to Use ===== */
.routine-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 850px;
  margin: 0 auto;
}
.routine-box ol { padding-left: 22px; }
.routine-box ol li {
  padding: 10px 0;
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.6;
}
.routine-box ol li strong { color: var(--text-dark); }

/* ===== Who Should Not Use ===== */
.caution-box {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  padding: 24px 28px;
  border-radius: 10px;
  max-width: 850px;
  margin: 0 auto;
}
.caution-box ul { padding-left: 22px; }
.caution-box ul li { padding: 6px 0; color: var(--text-mid); }

/* ===== Guarantee Section ===== */
.guarantee-section {
  background: linear-gradient(135deg, #0d7973 0%, #1aa39c 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.guarantee-section h2 { color: #fff; font-size: 2.2rem; margin-bottom: 18px; }
.guarantee-section p { font-size: 1.08rem; max-width: 760px; margin: 0 auto 18px; opacity: 0.95; line-height: 1.7; }
.guarantee-badge {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 900;
  margin-bottom: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  border: 5px solid #ffd166;
}
.guarantee-badge .num { font-size: 2.6rem; }
.guarantee-badge .label { font-size: 0.9rem; letter-spacing: 0.5px; }

/* ===== FAQ ===== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 28px 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 600;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 24px 22px; color: var(--text-light); line-height: 1.7; font-size: 1rem; }

/* ===== Final CTA ===== */
.final-cta { padding: 70px 0; background: var(--bg-light); text-align: center; }
.final-cta h2 { font-size: 2.2rem; margin-bottom: 16px; }
.final-cta p { color: var(--text-light); font-size: 1.08rem; max-width: 720px; margin: 0 auto 32px; }

/* ===== References ===== */
.references-section { padding: 70px 0; background: #fff; }
.refs-list {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  counter-reset: refnum;
}
.refs-list li {
  counter-increment: refnum;
  padding: 16px 18px 16px 56px;
  border-radius: 10px;
  background: var(--bg-light);
  margin-bottom: 10px;
  position: relative;
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.55;
  border-left: 3px solid var(--primary);
}
.refs-list li::before {
  content: counter(refnum);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.refs-list li a { color: var(--primary-dark); font-weight: 600; word-break: break-word; }
.refs-list li a:hover { text-decoration: underline; }

/* ===== Author Byline ===== */
.author-byline {
  background: var(--bg-light);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  max-width: 880px;
  margin: 40px auto 0;
  display: flex;
  gap: 22px;
  align-items: center;
}
.author-byline .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.author-byline .author-info { flex: 1; }
.author-byline h4 { font-size: 1.08rem; margin-bottom: 4px; color: var(--text-dark); }
.author-byline .role { color: var(--primary-dark); font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
.author-byline p { color: var(--text-light); font-size: 0.92rem; line-height: 1.5; margin: 0; }

/* ===== Footer ===== */
.site-footer {
  background: #0a2540;
  color: #cbd5e1;
  padding: 50px 0 24px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.footer-grid p { line-height: 1.6; margin-bottom: 10px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #cbd5e1; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact a { color: #cbd5e1; }
.footer-disclaimer {
  border-top: 1px solid #1e3a5f;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}
.footer-disclaimer p { margin-bottom: 10px; }
.footer-bottom { text-align: center; margin-top: 18px; font-size: 0.86rem; color: #94a3b8; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.cta-wrap { text-align: center; margin-top: 36px; }

/* ===== Article / Blog Post ===== */
.article-hero {
  background: linear-gradient(180deg, #f3fbfa 0%, #ffffff 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.article-hero .breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.article-hero .breadcrumb a { color: var(--primary-dark); font-weight: 600; }
.article-hero .breadcrumb a:hover { text-decoration: underline; }
.article-hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  max-width: 850px;
  margin: 0 auto 18px;
  text-align: center;
}
.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.article-meta strong { color: var(--text-dark); }
.article-meta .pipe { color: var(--border); }

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 70px;
  color: var(--text-mid);
  font-size: 1.06rem;
  line-height: 1.8;
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  font-size: 1.6rem;
  margin: 44px 0 16px;
  color: var(--text-dark);
  line-height: 1.3;
}
.article-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--text-dark);
  line-height: 1.35;
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 22px;
  padding: 0;
}
.article-body li {
  padding: 6px 0;
  line-height: 1.7;
}
.article-body a { color: var(--primary-dark); font-weight: 600; }
.article-body a:hover { text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 18px 24px;
  margin: 28px 0;
  border-radius: 8px;
  font-style: italic;
  color: var(--text-dark);
}
.article-body .key-takeaway {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 28px 0;
  font-weight: 500;
}
.article-body .key-takeaway strong { display: block; color: var(--primary-dark); margin-bottom: 6px; font-size: 0.95rem; letter-spacing: 0.5px; text-transform: uppercase; }

.article-cta {
  background: linear-gradient(135deg, #0d7973 0%, #1aa39c 100%);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 40px 0;
}
.article-cta h3 { color: #fff; margin-bottom: 12px; font-size: 1.4rem; }
.article-cta p { color: rgba(255,255,255,0.93); margin-bottom: 22px; }

.article-refs {
  background: var(--bg-light);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  margin-top: 36px;
  font-size: 0.92rem;
}
.article-refs h3 { font-size: 1.15rem; margin-bottom: 16px; }
.article-refs ol { margin-left: 22px; }
.article-refs li { padding: 6px 0; color: var(--text-light); line-height: 1.55; }
.article-refs a { color: var(--primary-dark); word-break: break-word; }

.related-posts {
  background: var(--bg-light);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.related-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card h4 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.related-card h4 a { color: var(--text-dark); }
.related-card h4 a:hover { color: var(--primary); }
.related-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.55; }

/* ===== Info / Legal Pages ===== */
.info-hero {
  background: linear-gradient(180deg, #f3fbfa 0%, #ffffff 100%);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.info-hero h1 { font-size: 2.4rem; margin-bottom: 12px; }
.info-hero p { color: var(--text-light); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

.info-body {
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 20px 70px;
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.75;
}
.info-body h2 {
  font-size: 1.45rem;
  margin: 36px 0 14px;
  color: var(--text-dark);
}
.info-body h2:first-child { margin-top: 0; }
.info-body p { margin-bottom: 18px; }
.info-body ul, .info-body ol { margin: 0 0 20px 22px; }
.info-body li { padding: 5px 0; }
.info-body a { color: var(--primary-dark); font-weight: 600; }
.info-body a:hover { text-decoration: underline; }
.info-body strong { color: var(--text-dark); }
.contact-block {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 22px 26px;
  border-radius: 8px;
  margin: 24px 0;
}
.contact-block p { margin-bottom: 8px; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .hero { padding: 50px 0 50px; text-align: center; }
  .hero h1 { font-size: 2.05rem; }
  .hero-bullets { display: inline-block; text-align: left; }
  .hero-rating { justify-content: center; }
  .hero-img-wrap img { max-width: 360px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col img { max-width: 360px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .bonus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .section-head h2 { font-size: 1.85rem; }
  .nav-links { display: none; }
  .nav-wrap .btn-cta { padding: 10px 20px; font-size: 0.88rem; }
  .author-byline { flex-direction: column; text-align: center; }
  .article-hero h1 { font-size: 1.8rem; }
  .article-body { padding: 40px 18px 50px; font-size: 1rem; }
  .article-body h2 { font-size: 1.4rem; }
  .info-hero h1 { font-size: 1.8rem; }
  .info-body { padding: 40px 18px 50px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 1.7rem; }
  .section { padding: 50px 0; }
  .section-head h2 { font-size: 1.55rem; }
  .section-head p { font-size: 1rem; }
  .feature-card, .ingredient-card, .step-card { padding: 22px 18px; }
  .price-card { padding: 28px 20px; }
  .price-card .per-bottle { font-size: 2.1rem; }
  .guarantee-section h2 { font-size: 1.6rem; }
  .final-cta h2 { font-size: 1.6rem; }
  .container { padding: 0 16px; }
  .brand { font-size: 1.2rem; }
  .brand img { width: 32px; height: 32px; }
  .faq-item summary { padding: 16px 46px 16px 18px; font-size: 0.98rem; }
}
