/* ============================
   VITALMAX PRO — SHARED STYLES
   Bahasa Indonesia | GEO: ID
   ============================ */

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

:root {
  --green:       #ee6b2c;  /* primary orange */
  --green-dark:  #d8551a;  /* deep orange (hover) */
  --green-mid:   #f58a4b;
  --green-light: #fbe7d7;  /* light orange tint */
  --green-xlight:#fef7ef;
  --gold:        #f59e36;
  --gold-light:  #fcebdb;
  --gold-border: #f4be92;
  --red:         #c0392b;
  --red-light:   #fdf0ef;
  --navy:        #22314f;
  --blue:        #5878cf;
  --text:        #1e2b44;
  --text-sec:    #47566e;
  --text-muted:  #7c8699;
  --border:      #efe1d1;
  --bg:          #faf1e5;
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 2px 16px rgba(90,45,10,.08);
  --shadow-md:   0 4px 30px rgba(90,45,10,.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── PROMO BAR ── */
.promo-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
}
.promo-bar strong { color: #ffd9a6; }

/* ── HEADER ── */
.site-header {
  background: var(--green);
  border-bottom: none;
  padding: 16px 28px;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 26px;
}
.logo {
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  font-family: 'Poppins', 'Inter', sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.logo span { color: #fff; }
.header-nav { display: contents; }
.header-nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.92); transition: color .2s; }
.header-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.header-trust { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.9); }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; display: inline-block; }
.btn-header {
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  transition: background .2s, color .2s;
  margin-left: auto;
}
.btn-header:hover { background: var(--navy); color: #fff; }
@media(max-width:820px) {
  .logo { position: static; transform: none; order: -1; margin-right: auto; }
  .header-nav a { display: none; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,.92);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media(max-width:480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.88); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; opacity: .95; }
.footer-disclaimer { font-size: 11px; opacity: .85; max-width: 680px; line-height: 1.6; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  transition: background .2s, transform .1s;
  text-align: center;
  letter-spacing: .3px;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-primary:active { transform: scale(.98); }
.btn-primary.full { display: block; width: 100%; }
.btn-primary.lg { font-size: 18px; padding: 18px 36px; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 999px;
  border: 2px solid var(--green);
  transition: all .2s;
  text-align: center;
}
.btn-outline:hover { background: var(--green-light); }
.btn-outline.full { display: block; width: 100%; }

/* ── SECTION UTILITY ── */
.section { padding: 64px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.section-tag.dark {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.section-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 640px;
}
@media(max-width:768px) {
  .section { padding: 48px 16px; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 15px; }
}

/* ── STARS ── */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ── BADGES ── */
.badge-new { background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: .5px; }
.badge-save { background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; }
.badge-green { background: var(--green); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: .5px; }

/* ── COUNTDOWN ── */
.countdown-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}
.countdown-bar .timer { font-weight: 800; font-size: 15px; letter-spacing: 1px; }

/* ── STICKY MOBILE CTA ── */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  align-items: center;
  gap: 12px;
}
@media(max-width:768px) { .sticky-mobile { display: flex; } }
.sticky-mobile .price-new { font-size: 20px; font-weight: 800; color: var(--green); }
.sticky-mobile .price-old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.sticky-mobile .btn-primary { padding: 13px 20px; font-size: 14px; flex-shrink: 0; }

/* ── TRUST ROW ── */
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-sec); }
.trust-item .icon { font-size: 18px; }

/* ── REVIEW CARD ── */
.review-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 22px;
  border: 1px solid var(--border);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-loc { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 13px; margin-bottom: 8px; }
.review-title { font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.review-body { font-size: 14px; color: var(--text-sec); line-height: 1.6; }
.review-verified { font-size: 11px; color: #27ae60; font-weight: 600; margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.review-date { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ── FAQ ── */
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 8px; overflow: hidden; }
.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  list-style: none;
}
.faq-question::after { content: '▾'; font-size: 14px; color: var(--text-muted); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-question::after { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--text-sec); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── ORDER FORM ── */
.order-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.order-title { font-family: 'Poppins', 'Inter', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.order-subtitle { font-size: 14px; color: var(--text-sec); margin-bottom: 24px; }
.order-price-box {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 22px;
  border: 1px solid #f3c6a3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-price-tag { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--green); letter-spacing: .5px; margin-bottom: 4px; }
.order-price-main { font-size: 28px; font-weight: 800; color: var(--green); line-height: 1; }
.order-price-unit { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.order-price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; text-align: right; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  background: var(--white);
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--green); }
.form-input::placeholder { color: var(--text-muted); }
.phone-row { display: flex; gap: 8px; }
.phone-prefix {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-sec);
  white-space: nowrap;
  flex-shrink: 0;
}
.guarantee-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 13px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.guarantee-row .icon { font-size: 22px; flex-shrink: 0; }
.guarantee-row .text { font-size: 13px; color: var(--text-sec); line-height: 1.4; }
.guarantee-row .text strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ── VARIANT SELECTOR ── */
.variants-wrap { display: flex; flex-direction: column; gap: 10px; margin: 12px 0; }
.variant {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.variant:hover { border-color: var(--green); }
.variant.active { border-color: var(--green); background: var(--green-light); }
.variant.popular::before {
  content: 'TERLARIS';
  position: absolute;
  top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: .5px;
}
.variant-left { display: flex; align-items: center; gap: 10px; }
.radio-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.variant.active .radio-dot { border-color: var(--green); background: var(--green); }
.variant.active .radio-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; display: block; }
.variant-name { font-weight: 600; font-size: 14px; }
.variant-desc { font-size: 11px; color: var(--text-muted); }
.variant-right { text-align: right; }
.variant-price { font-weight: 700; font-size: 16px; color: var(--green); }
.variant-old { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }
.variant-save { font-size: 10px; font-weight: 700; color: var(--red); background: var(--red-light); padding: 2px 6px; border-radius: 4px; }

/* ── SUBSCRIPTION TOGGLE ── */
.sub-box {
  margin-top: 12px;
  background: var(--gold-light);
  border-radius: var(--radius);
  padding: 13px 15px;
  border: 1px solid var(--gold-border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.sub-check {
  width: 18px; height: 18px;
  border-radius: 4px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sub-title { font-weight: 600; font-size: 13px; color: #a04a10; }
.sub-desc { font-size: 11px; color: #b45a17; margin-top: 2px; }

/* ── TRUST BADGES ── */
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.trust-badge {
  text-align: center;
  padding: 12px 6px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.trust-badge .icon { font-size: 20px; margin-bottom: 4px; }
.trust-badge .label { font-size: 10px; color: var(--text-sec); font-weight: 500; line-height: 1.3; }

/* ── BENEFITS BAR ── */
.benefits-bar { background: var(--green); color: #fff; padding: 28px 24px; }
.benefits-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media(max-width:768px) { .benefits-bar-inner { grid-template-columns: repeat(2,1fr); } }
.ben-item { text-align: center; }
.ben-icon { font-size: 28px; margin-bottom: 8px; }
.ben-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.ben-desc { font-size: 12px; opacity: .85; line-height: 1.4; }

/* ── SCIENCE/STATS ── */
.dark-section { background: var(--blue); color: #fff; padding: 64px 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media(max-width:600px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-box {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; opacity: .85; line-height: 1.5; }

/* ── INGREDIENT CARD ── */
.ing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
@media(max-width:600px) { .ing-grid { grid-template-columns: 1fr; } }
.ing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ing-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--green-light);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.ing-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--green); }
.ing-desc { font-size: 12px; color: var(--text-sec); line-height: 1.5; }
.ing-tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-top: 5px; }

/* ── DOSAGE CARDS ── */
.dosage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
@media(max-width:600px) { .dosage-grid { grid-template-columns: 1fr; } }
.dosage-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}
.dosage-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-light); }
.dosage-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
}
.dosage-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.dosage-num { font-size: 36px; font-weight: 800; color: var(--green); line-height: 1; }
.dosage-unit { font-size: 13px; color: var(--text-muted); }
.dosage-note { font-size: 12px; color: var(--text-sec); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); line-height: 1.5; }

/* ── BEFORE/AFTER ── */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
@media(max-width:600px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card { border-radius: 12px; padding: 24px; border: 1px solid; }
.ba-card.before { background: var(--red-light); border-color: #eec3b6; }
.ba-card.after  { background: var(--green-light); border-color: #f2be97; }
.ba-label { font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 14px; }
.ba-card.before .ba-label { color: var(--red); }
.ba-card.after  .ba-label { color: var(--green); }
.ba-list { list-style: none; }
.ba-list li { padding: 7px 0; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,.06); display: flex; gap: 10px; line-height: 1.4; }
.ba-list li:last-child { border-bottom: none; }
.ba-list li::before { flex-shrink: 0; font-size: 15px; margin-top: 1px; }
.ba-card.before .ba-list li::before { content: '✗'; color: var(--red); }
.ba-card.after  .ba-list li::before { content: '✓'; color: var(--green); }

/* ── REVIEWS RATING BAR ── */
.rating-summary { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; }
.big-score { text-align: center; }
.big-score .num { font-family: 'Poppins', 'Inter', sans-serif; font-size: 52px; font-weight: 700; color: var(--green); line-height: 1; }
.big-score .stars { font-size: 18px; margin: 4px 0; }
.big-score .count { font-size: 12px; color: var(--text-muted); }
.rating-bars { flex: 1; }
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.bar-lbl { font-size: 12px; color: var(--text-sec); width: 10px; text-align: right; }
.bar-track { flex: 1; height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.bar-pct { font-size: 11px; color: var(--text-muted); width: 28px; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media(max-width:600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--white); padding: 64px 24px; text-align: center; }
.guarantee-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 4px solid var(--green);
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  margin: 0 auto 22px;
}
.guarantee-title { font-family: 'Poppins', 'Inter', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.guarantee-text { font-size: 15px; color: var(--text-sec); line-height: 1.7; max-width: 620px; margin: 0 auto 24px; }

/* ── ORDER SECTION WRAP ── */
.order-section { background: var(--green-xlight); padding: 64px 24px; }
.order-inner { max-width: 640px; margin: 0 auto; }

/* ── COMPARISON TABLE ── */
.comp-table-wrap { overflow-x: auto; margin-top: 32px; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-table th, .comp-table td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--border); }
.comp-table th { font-weight: 700; background: var(--bg); }
.comp-table th:first-child, .comp-table td:first-child { text-align: left; }
.comp-table .us { background: var(--green-light); }
.comp-table .us th { background: var(--green); color: #fff; }
.comp-table .check { color: var(--green); font-size: 18px; font-weight: 700; }
.comp-table .cross { color: var(--text-muted); font-size: 18px; }

/* ── MYTH/FACT ── */
.myth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
@media(max-width:600px) { .myth-grid { grid-template-columns: 1fr; } }
.myth-card { background: var(--bg); border-radius: 12px; padding: 22px; border: 1px solid var(--border); }
.myth-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 8px; }
.myth-q { font-weight: 700; font-size: 15px; color: var(--red); margin-bottom: 10px; line-height: 1.4; }
.myth-divider { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--green); margin: 8px 0; letter-spacing: .5px; }
.myth-a { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ── ADVERTORIAL ── */
.adv-header { background: var(--bg); border-bottom: 2px solid var(--border); }
.adv-header-inner { max-width: 820px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.adv-logo { font-weight: 800; font-size: 20px; color: var(--green); font-family: 'Poppins', 'Inter', sans-serif; }
.adv-disclaimer-bar { background: var(--gold-light); border-bottom: 1px solid var(--gold-border); padding: 8px 24px; text-align: center; font-size: 12px; color: #a04a10; font-weight: 500; }
.adv-body { max-width: 820px; margin: 0 auto; padding: 32px 24px; }
.adv-category { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.adv-category a { color: var(--green); }
.adv-headline { font-family: 'Poppins', 'Inter', sans-serif; font-size: 32px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; color: var(--text); }
@media(max-width:600px) { .adv-headline { font-size: 24px; } }
.adv-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.adv-author-img { width: 44px; height: 44px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.adv-author-name { font-weight: 600; font-size: 14px; }
.adv-author-date { font-size: 12px; color: var(--text-muted); }
.adv-update { background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; }
.adv-body p { font-size: 16px; line-height: 1.8; color: var(--text-sec); margin-bottom: 18px; }
.adv-body h2 { font-family: 'Poppins', 'Inter', sans-serif; font-size: 24px; font-weight: 700; color: var(--text); margin: 32px 0 14px; line-height: 1.3; }
.adv-body h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.adv-body strong { color: var(--text); }
.adv-body .highlight { background: var(--green-light); border-left: 4px solid var(--green); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; }
.adv-body .highlight p { color: var(--green-dark); font-weight: 500; margin: 0; }
.adv-cta-box { background: var(--green-light); border: 2px solid var(--green); border-radius: 14px; padding: 28px; text-align: center; margin: 32px 0; }
.adv-cta-box .title { font-family: 'Poppins', 'Inter', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.adv-cta-box .sub { font-size: 14px; color: var(--text-sec); margin-bottom: 18px; }
.adv-img { border-radius: 12px; width: 100%; margin: 20px 0; object-fit: cover; background: var(--bg); min-height: 200px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.adv-refs { font-size: 12px; color: var(--text-muted); line-height: 1.6; border-top: 1px solid var(--border); margin-top: 40px; padding-top: 20px; }
.adv-refs p { margin-bottom: 6px; font-size: 12px; }

/* ── LONG FORM / BACK LEGS PAGE ── */
.longform-body { max-width: 720px; margin: 0 auto; padding: 32px 24px; }
.longform-body p { font-size: 17px; line-height: 1.85; color: var(--text-sec); margin-bottom: 20px; }
.longform-body h2 { font-family: 'Poppins', 'Inter', sans-serif; font-size: 26px; font-weight: 700; color: var(--text); margin: 36px 0 14px; line-height: 1.3; }
.longform-body h3 { font-size: 20px; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.longform-body ul { margin: 0 0 20px 20px; }
.longform-body ul li { font-size: 16px; line-height: 1.7; color: var(--text-sec); margin-bottom: 8px; }
.longform-body .callout { background: var(--green-light); border-left: 4px solid var(--green); padding: 18px 22px; border-radius: 0 10px 10px 0; margin: 24px 0; }
.longform-body .callout p { color: var(--green-dark); font-weight: 600; margin: 0; font-size: 16px; }
.longform-body .warning-box { background: var(--red-light); border: 1px solid #eec3b6; border-radius: 10px; padding: 18px 22px; margin: 24px 0; }
.longform-body .warning-box p { color: #8b2020; margin: 0; }
.testimonial-pull { background: var(--bg); border-radius: 10px; padding: 20px 24px; margin: 28px 0; border-left: 4px solid var(--gold); }
.testimonial-pull p { font-size: 16px; font-style: italic; color: var(--text); margin: 0 0 8px; }
.testimonial-pull cite { font-size: 13px; color: var(--text-muted); font-style: normal; font-weight: 600; }
.month-plan { counter-reset: month; margin: 24px 0; }
.month-item { display: flex; gap: 18px; margin-bottom: 20px; align-items: flex-start; }
.month-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.month-content h4 { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.month-content p { font-size: 14px; color: var(--text-sec); line-height: 1.6; margin: 0; }

/* ── QUIZ ── */
.quiz-wrap { max-width: 680px; margin: 0 auto; padding: 40px 24px; }
.quiz-progress { background: var(--border); height: 6px; border-radius: 3px; margin-bottom: 32px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--green); border-radius: 3px; transition: width .4s; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q { font-family: 'Poppins', 'Inter', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.quiz-sub { font-size: 15px; color: var(--text-sec); margin-bottom: 28px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
}
.quiz-option:hover { border-color: var(--green); background: var(--green-xlight); }
.quiz-option.selected { border-color: var(--green); background: var(--green-light); }
.quiz-option .opt-icon { font-size: 22px; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.btn-quiz-back { background: none; border: 2px solid var(--border); border-radius: 8px; padding: 11px 22px; font-size: 14px; font-weight: 600; color: var(--text-sec); transition: all .2s; }
.btn-quiz-back:hover { border-color: var(--green); color: var(--green); }
.quiz-step-count { font-size: 13px; color: var(--text-muted); }
.quiz-result { text-align: center; padding: 20px 0; }
.quiz-result-icon { font-size: 64px; margin-bottom: 16px; }
.quiz-result-title { font-family: 'Poppins', 'Inter', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.quiz-result-sub { font-size: 16px; color: var(--text-sec); margin-bottom: 28px; line-height: 1.6; }
.quiz-result-plan { background: var(--green-light); border: 2px solid var(--green); border-radius: 12px; padding: 22px; margin-bottom: 24px; text-align: left; }
.quiz-result-plan h4 { font-weight: 700; font-size: 16px; color: var(--green); margin-bottom: 10px; }
.quiz-result-plan ul { list-style: none; }
.quiz-result-plan ul li { font-size: 14px; color: var(--text-sec); margin-bottom: 6px; display: flex; gap: 8px; }
.quiz-result-plan ul li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── LEGAL PAGES ── */
.legal-body { max-width: 820px; margin: 0 auto; padding: 48px 24px; }
.legal-body h1 { font-family: 'Poppins', 'Inter', sans-serif; font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.legal-body .last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.legal-body h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.legal-body p, .legal-body li { font-size: 15px; line-height: 1.75; color: var(--text-sec); }
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 12px 0 16px 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-body table th, .legal-body table td { padding: 12px 16px; border: 1px solid var(--border); font-size: 14px; }
.legal-body table th { background: var(--bg); font-weight: 700; }
.legal-highlight { background: var(--green-light); border: 1px solid var(--green); border-radius: 10px; padding: 18px 22px; margin-bottom: 24px; }
.legal-highlight p { color: var(--green-dark); font-weight: 600; margin: 0; }


/* ── КНОПКИ НА КОЛЬОРОВИХ СЕКЦІЯХ ── */
.hero .btn-primary, .bottom-cta .btn-primary, .quiz-hero .btn-primary,
.dark-section .btn-primary, .timeline-section .btn-primary,
.reasons-hero .btn-primary, .testimonials-strip .btn-primary, .benefits-bar .btn-primary,
[style*="background:var(--green)"] .btn-primary,
[style*="background: var(--green)"] .btn-primary {
  background: #fff;
  color: var(--green);
}
.hero .btn-primary:hover, .bottom-cta .btn-primary:hover, .quiz-hero .btn-primary:hover,
.dark-section .btn-primary:hover, .timeline-section .btn-primary:hover,
.reasons-hero .btn-primary:hover, .testimonials-strip .btn-primary:hover, .benefits-bar .btn-primary:hover,
[style*="background:var(--green)"] .btn-primary:hover,
[style*="background: var(--green)"] .btn-primary:hover {
  background: var(--navy);
  color: #fff;
}
.hero .btn-outline, .bottom-cta .btn-outline, .dark-section .btn-outline,
[style*="background:var(--green)"] .btn-outline,
[style*="background: var(--green)"] .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.75);
}
.hero .btn-outline:hover, .bottom-cta .btn-outline:hover, .dark-section .btn-outline:hover,
[style*="background:var(--green)"] .btn-outline:hover,
[style*="background: var(--green)"] .btn-outline:hover {
  background: rgba(255,255,255,.15);
}

/* ═══════════ PAWPRINT LAYOUT COMPONENTS ═══════════ */

/* Photo hero */
.pp-hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--green); }
.pp-hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pp-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(35,25,15,.55) 0%, rgba(35,25,15,.28) 45%, rgba(35,25,15,0) 75%); }
.pp-hero-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 90px 32px; width: 100%; }
.pp-hero h1 { font-family:'Poppins','Inter',sans-serif; font-size: 46px; font-weight: 800; color:#fff; max-width: 560px; line-height: 1.15; margin-bottom: 18px; }
.pp-hero p { color: rgba(255,255,255,.95); max-width: 460px; font-size: 16px; line-height: 1.7; margin-bottom: 26px; }
@media(max-width:700px){ .pp-hero{min-height:440px} .pp-hero h1{font-size:32px} }

/* Orange band + white icon card */
.pp-band { background: var(--green); padding: 44px 24px; }
.pp-iconcard { max-width: 1080px; margin: 0 auto; background: #fff; border-radius: 18px; padding: 30px 34px 26px; text-align: center; }
.pp-iconcard h3 { color: var(--green); font-size: 17px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 26px; font-family:'Poppins','Inter',sans-serif; }
.pp-icons { display: flex; justify-content: center; gap: 12px 30px; flex-wrap: wrap; }
.pp-icon { width: 128px; }
.pp-icon .ic { width: 62px; height: 62px; border: 2px solid var(--green); border-radius: 50%; display:flex; align-items:center; justify-content:center; font-size: 25px; margin: 0 auto 10px; }
.pp-icon .lb { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.35; }

/* Split image/text rows */
.pp-section { padding: 72px 24px; }
.pp-section.cream { background: var(--bg); }
.pp-section.xlight { background: var(--green-xlight); }
.pp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1120px; margin: 0 auto; }
.pp-split + .pp-split { margin-top: 84px; }
.pp-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); background:#fff; }
.pp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-h2 { font-family:'Poppins','Inter',sans-serif; font-size: 34px; font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 16px; }
.pp-h2.orange { color: var(--green); }
.pp-h2.center { text-align: center; }
.pp-sub-center { text-align:center; max-width: 700px; margin: 0 auto 44px; color: var(--text-sec); font-size: 16px; }
.pp-body p { color: var(--text-sec); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
.pp-body strong { color: var(--text); }
.pp-check { list-style: none; margin: 18px 0 22px; }
.pp-check li { position: relative; padding-left: 30px; margin-bottom: 10px; font-size: 15px; color: var(--text-sec); }
.pp-check li::before { content:'✓'; position:absolute; left:0; top:0; width:20px; height:20px; background: var(--green); color:#fff; border-radius:50%; font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.pp-bullets { list-style:none; margin: 16px 0; }
.pp-bullets li { position:relative; padding-left: 20px; margin-bottom: 12px; font-size: 15px; color: var(--text-sec); }
.pp-bullets li::before { content:''; position:absolute; left:0; top:9px; width:7px; height:7px; border-radius:50%; background: var(--green-mid); }
.pp-bullets li strong { display:block; color: var(--text); }
.pp-link { color: var(--text); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; font-size: 14px; }
.pp-inline-cta { display:flex; align-items:center; gap: 22px; flex-wrap: wrap; }
@media(max-width:860px){ .pp-split{grid-template-columns:1fr; gap:28px} .pp-split.rev .pp-photo{order:-1} .pp-h2{font-size:26px} .pp-section{padding:52px 18px} }

/* Product cards */
.pp-cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; }
@media(max-width:900px){ .pp-cards{grid-template-columns:1fr 1fr} }
@media(max-width:600px){ .pp-cards{grid-template-columns:1fr} }
.pp-card { background:#fff; border:1px solid var(--border); border-radius: 16px; overflow:hidden; display:flex; flex-direction:column; box-shadow: var(--shadow); }
.pp-card .ph { background: var(--green-xlight); position:relative; }
.pp-card .ph img { width:100%; display:block; }
.pp-card .ph .bdg { position:absolute; top:12px; left:12px; background: var(--navy); color:#fff; font-size:10px; font-weight:800; letter-spacing:.5px; padding:4px 10px; border-radius: 6px; text-transform:uppercase; }
.pp-card .bd { padding: 18px 20px 22px; display:flex; flex-direction:column; flex:1; }
.pp-card h3 { font-family:'Poppins','Inter',sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.pp-card p { font-size: 13.5px; color: var(--text-sec); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.pp-card .btn-primary { font-size: 14px; padding: 12px 22px; }
.pp-card .btn-outline { font-size: 14px; padding: 11px 22px; }

/* Testimonial cards */
.pp-quotes { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1160px; margin: 0 auto; }
@media(max-width:1000px){ .pp-quotes{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .pp-quotes{grid-template-columns:1fr} }
.pp-quote { background:#fff; border:1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); display:flex; flex-direction:column; }
.pp-quote .st { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.pp-quote .tx { font-size: 13.5px; color: var(--text-sec); font-style: italic; line-height: 1.65; flex:1; margin-bottom: 16px; }
.pp-quote .who { display:flex; align-items:center; gap: 10px; }
.pp-quote .av { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color:#fff; font-size: 13px; font-weight: 800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pp-quote .nm { font-size: 13px; font-weight: 700; color: var(--text); }
.pp-quote .vf { font-size: 11px; color: var(--text-muted); }

/* Blue science section + accordion */
.pp-blue { background: var(--blue); color:#fff; padding: 72px 24px; }
.pp-blue-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap: 60px; max-width: 1120px; margin: 0 auto; align-items: start; }
@media(max-width:860px){ .pp-blue-grid{grid-template-columns:1fr} }
.pp-blue h2 { font-family:'Poppins','Inter',sans-serif; font-size: 32px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.pp-blue p { color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.7; }
.pp-acc details { border-bottom: 1px solid rgba(255,255,255,.35); }
.pp-acc summary { cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; padding: 16px 4px; font-weight: 700; font-size: 15px; font-family:'Poppins','Inter',sans-serif; }
.pp-acc summary::-webkit-details-marker{display:none}
.pp-acc summary::after { content:'⌄'; font-size: 16px; transition: transform .2s; }
.pp-acc details[open] summary::after { transform: rotate(180deg); }
.pp-acc .cnt { padding: 0 4px 18px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.92); }

/* Feature chips 2x2 */
.pp-chips { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
@media(max-width:560px){ .pp-chips{grid-template-columns:1fr} }
.pp-chip { border-radius: 12px; padding: 16px 18px; font-size: 14px; font-weight: 700; line-height: 1.4; background: var(--green-light); color: var(--text); }
.pp-chip.solid { background: var(--green); color: #fff; }
.pp-chip small { display:block; font-weight: 500; font-size: 12.5px; margin-top: 4px; opacity:.85; }

/* Light FAQ accordion */
.pp-faq-grid { display:grid; grid-template-columns: .8fr 1.2fr; gap: 60px; max-width: 1120px; margin: 0 auto; align-items: start; }
@media(max-width:860px){ .pp-faq-grid{grid-template-columns:1fr} }
.pp-facc details { border-bottom: 1px solid var(--border); }
.pp-facc summary { cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 16px 4px; font-weight: 600; font-size: 15px; color: var(--text); }
.pp-facc summary::-webkit-details-marker{display:none}
.pp-facc summary::after { content:'⌄'; color: var(--green); font-size: 16px; flex-shrink:0; transition: transform .2s; }
.pp-facc details[open] summary::after { transform: rotate(180deg); }
.pp-facc .cnt { padding: 0 4px 18px; font-size: 14px; line-height: 1.7; color: var(--text-sec); }

/* Orange checkmark strip */
.pp-strip { background: var(--green); color:#fff; padding: 20px 24px; display:flex; justify-content:center; gap: 16px 44px; flex-wrap:wrap; font-size: 14px; font-weight: 700; }
.pp-strip span::before { content:'✓  '; }

/* Centered CTA button row */
.pp-btnrow { text-align:center; margin-top: 44px; }

/* ── PAWPRINT FOOTER ── */
.pp-footer { background: var(--green); color:#fff; padding: 56px 28px 32px; }
.ppf-top { max-width: 1180px; margin: 0 auto; display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 36px; }
@media(max-width:960px){ .ppf-top{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .ppf-top{grid-template-columns:1fr} }
.ppf-brand h3 { font-family:'Poppins','Inter',sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 18px; }
.ppf-email { display:flex; background:#fff; border-radius: 10px; overflow:hidden; max-width: 320px; }
.ppf-email input { flex:1; border:none; outline:none; padding: 13px 16px; font-size: 14px; font-family:inherit; color: var(--text); }
.ppf-email button { background:#fff; border:none; font-size: 18px; padding: 0 16px; color: var(--text); }
.ppf-col h4 { font-family:'Poppins','Inter',sans-serif; font-size: 17px; font-weight: 800; margin-bottom: 16px; color:#fff; }
.ppf-col a { display:block; font-size: 14px; color: rgba(255,255,255,.95); margin-bottom: 12px; }
.ppf-col a.u { text-decoration: underline; text-underline-offset: 3px; }
.ppf-col a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ppf-mid { max-width: 1180px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.35); display:grid; grid-template-columns: 220px 1fr; gap: 24px; font-size: 13px; }
@media(max-width:700px){ .ppf-mid{grid-template-columns:1fr} }
.ppf-disc { max-width: 1180px; margin: 32px auto 0; font-size: 12px; line-height: 1.75; color: rgba(255,255,255,.95); }
.ppf-disc h5 { font-size: 14px; font-weight: 800; margin-bottom: 10px; }
.ppf-disc p { margin-bottom: 10px; }

/* ── Кошик у хедері ── */
.cart-link { display:flex; align-items:center; color:#fff; margin-left:14px; opacity:.95; }
.cart-link:hover { opacity:1; }
.cart-link svg { width:22px; height:22px; }

/* ── Платіжні плашки ── */
.pay-badges { display:flex; gap:8px; align-items:center; margin-top:14px; justify-content:center; }
.pay-badge { background:#fff; border:1px solid var(--border); border-radius:6px; padding:5px 12px; font-size:12px; font-weight:800; letter-spacing:.3px; }
.pay-badge.visa { color:#1a1f71; font-style:italic; }
.pay-badge.mc { color:#eb001b; }
.pay-note { text-align:center; font-size:11.5px; color:var(--text-muted); margin-top:6px; }

/* ── Футер-дисклеймер для рекламних статей ── */
.adv-footer { background:#1b2030; color:rgba(255,255,255,.75); padding:40px 24px 48px; font-size:11.5px; line-height:1.8; }
.adv-footer-inner { max-width:900px; margin:0 auto; }
.adv-footer .cap { text-transform:uppercase; font-weight:800; color:#fff; letter-spacing:.4px; margin-bottom:12px; }
.adv-footer .cop { font-weight:800; color:#fff; margin-bottom:16px; }
.adv-footer p { margin-bottom:12px; }
