:root{
  --primary:#81396d;
  --primary-dark:#4c2240;
  --primary-tint:#f7eef4;
  --primary-tint-2:#efd9e8;
  --gold:#c9962c;
  --gold-dark:#a67a1f;
  --text-dark:#2b1526;
  --text-body:#4c3d49;
  --text-muted:#8a7a86;
  --white:#ffffff;
  --border-light:#ecdce7;
  --star:#e8b13a;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family:'Poppins', Arial, sans-serif;
  color:var(--text-body);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:'Poppins', sans-serif; font-weight:700; color:var(--text-dark);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{list-style:none;}

/* ===== Header ===== */
header{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 44px; background:var(--white); border-bottom:1px solid var(--border-light);
  position:sticky; top:0; z-index:300;
}
.logo{display:flex; align-items:center; gap:8px; font-size:22px;}
.logo a{display:flex; align-items:center; gap:8px; color:inherit;}
.logo .icon{font-size:20px;}
.logo .brand{font-weight:700; color:var(--primary-dark);}
.logo .sub{font-weight:500; font-size:13px; color:var(--gold-dark); text-transform:uppercase; letter-spacing:1px; margin-left:2px;}

nav{display:flex; gap:32px;}
nav a{font-size:14.5px; font-weight:600; color:var(--text-body);}
nav a:hover{color:var(--primary);}

.header-actions{display:flex; align-items:center; gap:14px;}
.btn-primary{
  display:inline-block; background:var(--primary); color:var(--white);
  font-weight:700; font-size:14px; padding:13px 28px; border-radius:999px;
  white-space:nowrap; transition:background .15s ease;
}
.btn-primary:hover{background:var(--primary-dark);}
.btn-gold{
  display:inline-block; background:var(--gold); color:var(--white);
  font-weight:700; font-size:14px; padding:13px 28px; border-radius:999px;
  white-space:nowrap; transition:background .15s ease;
}
.btn-gold:hover{background:var(--gold-dark);}
.btn-outline{
  display:inline-block; background:var(--white); color:var(--primary);
  font-weight:700; font-size:14px; padding:12px 27px; border-radius:999px;
  border:2px solid var(--primary);
}
.btn-outline:hover{background:var(--primary-tint);}

.hamburger{display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none;}
.hamburger span{display:block; width:23px; height:2px; background:var(--primary); border-radius:2px; transition:all .2s;}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

.mobile-menu{
  display:none; position:absolute; top:100%; left:0; right:0;
  background:var(--white); border-bottom:1px solid var(--border-light);
  padding:8px 20px 20px; z-index:290;
}
.mobile-menu.open{display:block;}
.mobile-menu a{display:block; padding:12px 0; font-size:15px; font-weight:600; color:var(--text-dark); border-bottom:1px solid var(--border-light);}
.mobile-menu .btn-primary{display:block; margin-top:14px; text-align:center; width:100%;}

/* ===== Offer strip ===== */
.offer-strip{
  background:var(--primary-dark); color:var(--white); text-align:center;
  padding:9px 16px; font-size:13.5px; font-weight:600; letter-spacing:0.2px;
}
.offer-strip strong{color:var(--gold);}

/* ===== Hero ===== */
.hero{background:var(--primary-tint); padding:56px 44px 64px;}
.hero-inner{max-width:1220px; margin:0 auto; display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;}
.breadcrumb{font-size:13px; color:var(--text-muted); margin-bottom:14px;}
.breadcrumb a{color:var(--primary); font-weight:600;}

.trust-row{display:flex; align-items:center; gap:12px; margin-bottom:18px; flex-wrap:wrap;}
.trust-stars{color:var(--star); font-size:16px; letter-spacing:1px;}
.trust-count{font-size:14px; color:var(--text-muted); font-weight:600;}

h1.title{font-size:40px; line-height:1.22; font-weight:700; color:var(--text-dark); margin-bottom:20px;}
h1.title em{color:var(--primary); font-style:normal;}

.byline{display:flex; align-items:center; gap:14px; margin-bottom:22px;}
.avatar{width:42px; height:42px; border-radius:50%; background:var(--primary-tint-2); display:flex; align-items:center; justify-content:center; font-size:19px; color:var(--primary); flex-shrink:0; overflow:hidden;}
.avatar img{width:100%; height:100%; object-fit:cover;}
.byline-text .name{font-weight:700; color:var(--text-dark); font-size:14.5px;}
.byline-text .meta{font-size:13px; color:var(--text-muted);}
.byline-text .meta a{color:var(--primary); font-weight:600; text-decoration:underline;}

.content p{font-size:16px; line-height:1.75; color:var(--text-body); margin-bottom:16px;}
.content h2{font-size:24px; font-weight:700; color:var(--text-dark); margin:8px 0 14px;}
.content h3{font-size:19px; font-weight:700; color:var(--primary-dark); margin:22px 0 8px;}

.hero-ctas{display:flex; gap:12px; margin-top:8px; flex-wrap:wrap;}

.hero-image{display:flex; align-items:center; justify-content:center; position:relative;}
.hero-image img{max-width:300px; width:100%; filter:drop-shadow(0 24px 34px rgba(76,34,64,0.22));}
.savings-badge{
  position:absolute; top:6px; right:0; background:var(--gold); color:var(--white);
  font-weight:800; font-size:13px; padding:10px 18px; border-radius:999px;
  transform:rotate(6deg); box-shadow:0 8px 18px rgba(76,34,64,0.2);
}

@media (max-width:900px){
  header{padding:14px 18px;}
  nav{display:none;}
  .header-actions .btn-primary{display:none;}
  .hamburger{display:flex;}
  .hero{padding:36px 20px 44px;}
  .hero-inner{grid-template-columns:1fr; gap:32px;}
  h1.title{font-size:28px;}
}

/* ===== Quality Standards ===== */
.quality-section{background:var(--white); padding:72px 44px; border-bottom:1px solid var(--border-light);}
.quality-inner{max-width:1150px; margin:0 auto;}
.quality-divider{width:56px; height:3px; background:var(--gold); margin:20px auto 0;}
.quality-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:42px;}
.quality-card{background:var(--primary-tint); border-radius:12px; padding:30px 22px; text-align:center;}
.quality-card img{height:54px; width:auto; margin:0 auto 18px;}
.quality-card h3{font-size:15.5px; font-weight:700; color:var(--text-dark); margin-bottom:10px;}
.quality-card p{font-size:14px; line-height:1.65; color:var(--text-body);}

@media (max-width:900px){.quality-grid{grid-template-columns:1fr 1fr; gap:16px;}}
@media (max-width:560px){.quality-grid{grid-template-columns:1fr;}}

/* ===== Section intro (shared) ===== */
.section-intro{text-align:center; max-width:720px; margin:0 auto 46px;}
.eyebrow{display:inline-block; font-size:12.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--primary); background:var(--primary-tint); padding:6px 16px; border-radius:999px; margin-bottom:16px;}
.section-intro h2{font-size:30px; font-weight:700; color:var(--text-dark); margin-bottom:14px; line-height:1.3;}
.section-intro p{font-size:16.5px; line-height:1.7; color:var(--text-body);}

/* ===== Ingredients ===== */
.ingredients-section{background:var(--primary-tint); padding:72px 44px;}
.ingredients-inner{max-width:1000px; margin:0 auto;}
.ingredient-list{display:flex; flex-direction:column; gap:20px;}
.ingredient-card{
  display:grid; grid-template-columns:56px 1fr; gap:22px;
  background:var(--white); border-radius:14px; padding:26px 28px;
  box-shadow:0 2px 10px rgba(76,34,64,0.06);
}
.ingredient-num{width:56px; height:56px; border-radius:50%; background:var(--primary); color:var(--white); font-weight:700; font-size:20px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.ingredient-card h3{font-size:20px; font-weight:700; color:var(--primary-dark); margin-bottom:8px;}
.ingredient-card p{font-size:15.5px; line-height:1.7; color:var(--text-body);}

@media (max-width:900px){
  .ingredients-section{padding:48px 20px;}
  .ingredient-card{grid-template-columns:44px 1fr; gap:16px; padding:20px;}
  .ingredient-num{width:44px; height:44px; font-size:16px;}
}

.supp-facts{max-width:600px; margin:0 auto 44px; background:var(--white); border:2px solid var(--primary-tint-2); border-radius:14px; padding:26px 30px;}
.supp-facts-title{font-weight:700; color:var(--primary-dark); font-size:18px; margin-bottom:12px; border-bottom:2px solid var(--primary-tint); padding-bottom:8px;}
.supp-facts-row{display:flex; justify-content:space-between; font-size:14px; margin-bottom:6px; color:var(--text-body);}
.supp-facts-row strong{color:var(--text-dark);}

/* ===== Scientific Evidence ===== */
.evidence-section{background:var(--white); padding:72px 44px;}
.evidence-inner{max-width:1000px; margin:0 auto;}
.evidence-note{background:var(--primary-tint); border-radius:12px; padding:18px 22px; font-size:14.5px; line-height:1.7; color:var(--text-body); margin-bottom:36px;}
.evidence-note strong{color:var(--primary-dark);}
.evidence-list{display:flex; flex-direction:column; gap:18px;}
.evidence-card{background:var(--primary-tint); border-left:4px solid var(--primary); border-radius:10px; padding:24px 28px;}
.evidence-tag{display:inline-block; font-size:12px; font-weight:700; color:var(--primary); background:var(--white); padding:5px 13px; border-radius:999px; margin-bottom:12px;}
.evidence-card h3{font-size:19px; font-weight:700; color:var(--text-dark); margin-bottom:10px;}
.evidence-card p{font-size:15px; line-height:1.7; color:var(--text-body); margin-bottom:14px;}
.evidence-footer{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:12px; border-top:1px solid var(--border-light);}
.evidence-meta{font-size:13px; color:var(--text-muted);}
.view-study-link{font-size:13.5px; font-weight:700; color:var(--primary);}
.view-study-link:hover{color:var(--primary-dark);}
.disclaimer{margin-top:32px; font-size:13.5px; line-height:1.7; color:var(--text-muted); font-style:italic;}

/* ===== Info sections ===== */
.info-section{background:var(--primary-tint); padding:72px 44px;}
.info-section.alt{background:var(--white);}
.info-inner{max-width:1000px; margin:0 auto;}
.info-section .content p{font-size:16px; line-height:1.75; color:var(--text-body); margin-bottom:18px;}
.steps-list{display:flex; flex-direction:column; gap:22px; margin:36px 0 8px;}
.step-card{display:grid; grid-template-columns:48px 1fr; gap:20px;}
.step-num{width:48px; height:48px; border-radius:50%; background:var(--gold); color:var(--white); font-weight:700; font-size:18px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.step-card h3{font-size:18px; font-weight:700; color:var(--primary-dark); margin-bottom:6px;}
.step-card p{font-size:15.5px; line-height:1.7; color:var(--text-body);}

/* ===== Verdict / "Does it work" callout ===== */
.verdict-section{background:var(--primary); padding:64px 44px; text-align:center;}
.verdict-inner{max-width:820px; margin:0 auto;}
.verdict-inner .eyebrow{background:rgba(255,255,255,0.15); color:var(--white);}
.verdict-inner h2{color:var(--white); font-size:30px; margin-bottom:18px;}
.verdict-inner p{color:rgba(255,255,255,0.9); font-size:17px; line-height:1.75; margin-bottom:26px;}

/* ===== Reviews ===== */
.reviews-section{background:var(--white); padding:72px 44px;}
.reviews-inner{max-width:1050px; margin:0 auto;}
.reviews-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.review-card{background:var(--primary-tint); border-radius:14px; padding:24px; display:flex; flex-direction:column;}
.review-stars{color:var(--star); font-size:15px; margin-bottom:12px;}
.review-card p.quote{font-size:14.5px; line-height:1.7; color:var(--text-body); font-style:italic; margin-bottom:16px; flex:1;}
.reviewer{display:flex; align-items:center; gap:10px; border-top:1px solid var(--border-light); padding-top:14px;}
.reviewer .avatar{width:44px; height:44px;}
.reviewer .rname{font-size:13.5px; font-weight:700; color:var(--text-dark);}
.reviewer .rmeta{font-size:12px; color:var(--text-muted);}

@media (max-width:900px){.reviews-section{padding:48px 20px;} .reviews-grid{grid-template-columns:1fr;}}

/* ===== Pricing (sales-forward) ===== */
.pricing-section{background:var(--primary-tint); padding:76px 44px;}
.pricing-inner{max-width:1150px; margin:0 auto;}
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; margin-top:44px;}
.price-card{background:var(--white); border-radius:16px; overflow:hidden; border:1px solid var(--border-light); text-align:center; display:flex; flex-direction:column;}
.price-card.featured{border:2px solid var(--gold); transform:translateY(-14px); box-shadow:0 14px 30px rgba(76,34,64,0.18);}
.price-header{background:var(--primary-dark); color:var(--white); font-weight:700; font-size:14px; padding:16px 12px;}
.price-card.featured .price-header{background:var(--gold);}
.popular-badge{display:inline-block; background:var(--gold); color:var(--white); font-size:11px; font-weight:800; padding:5px 14px; border-radius:999px; margin:16px auto 0;}
.save-line{font-size:16px; font-weight:700; color:var(--primary-dark); margin:14px 0 4px;}
.bottle-photo{width:75%; max-width:160px; margin:18px auto 6px;}
.price-main{font-size:40px; font-weight:700; color:var(--text-dark); margin:6px 0 0;}
.price-main span.unit{font-size:15px; font-weight:600; color:var(--text-muted);}
.price-card-body{padding:0 22px 28px; display:flex; flex-direction:column; align-items:center; flex:1;}
.pricing-btn{display:inline-block; background:var(--primary); color:var(--white); font-weight:700; font-size:14px; padding:14px 32px; border-radius:999px; margin:18px 0 14px; width:100%;}
.price-card.featured .pricing-btn{background:var(--gold);}
.pricing-btn:hover{opacity:0.9;}
.shipping-line{font-size:13.5px; font-weight:700; color:var(--primary-dark); margin-bottom:10px;}
.strike-line{font-size:14px; color:var(--text-muted);}
.strike-line s{margin-right:6px;}
.strike-line strong{font-size:16px; color:var(--text-dark);}

@media (max-width:900px){
  .pricing-section{padding:48px 20px;}
  .pricing-grid{grid-template-columns:1fr; gap:32px;}
  .price-card.featured{transform:none;}
}

/* ===== Pros & Cons ===== */
.proscons-section{background:var(--white); padding:72px 44px;}
.proscons-inner{max-width:1000px; margin:0 auto;}
.proscons-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:40px;}
.proscons-card{background:var(--primary-tint); border-radius:14px; padding:28px 30px; border-top:5px solid var(--primary);}
.proscons-card.cons{border-top-color:var(--text-muted); background:#f5f2f4;}
.proscons-card h3{font-size:20px; font-weight:700; color:var(--text-dark); margin-bottom:18px;}
.proscons-card li{display:flex; gap:10px; font-size:15px; line-height:1.6; color:var(--text-body); margin-bottom:14px;}
.proscons-card li .mark{flex-shrink:0; font-weight:700; color:var(--primary);}
.proscons-card.cons li .mark{color:var(--text-muted);}

@media (max-width:900px){.proscons-section{padding:48px 20px;} .proscons-grid{grid-template-columns:1fr;}}

/* ===== Guarantee ===== */
.guarantee-section{background:var(--primary-tint); padding:72px 44px; text-align:center;}
.guarantee-inner{max-width:760px; margin:0 auto;}
.guarantee-badge-img{width:130px; margin:0 auto 22px;}
.guarantee-inner h2{font-size:30px; font-weight:700; color:var(--text-dark); margin-bottom:18px;}
.guarantee-inner p{font-size:16px; line-height:1.75; color:var(--text-body);}

/* ===== Benefits ===== */
.benefits-section{background:var(--white); padding:72px 44px;}
.benefits-inner{max-width:1050px; margin:0 auto;}
.benefits-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px;}
.benefit-card{background:var(--primary-tint); border-radius:14px; padding:26px 24px; text-align:center;}
.benefit-icon{width:52px; height:52px; border-radius:50%; background:var(--gold); color:var(--white); font-size:22px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px;}
.benefit-card h3{font-size:17px; font-weight:700; color:var(--primary-dark); margin-bottom:8px;}
.benefit-card p{font-size:14.5px; line-height:1.65; color:var(--text-body);}

@media (max-width:900px){.benefits-section{padding:48px 20px;} .benefits-grid{grid-template-columns:1fr;}}

/* ===== FAQ ===== */
.faq-section{background:var(--primary-tint); padding:72px 44px;}
.faq-inner{max-width:820px; margin:0 auto;}
.faq-item{border:1px solid var(--border-light); border-radius:12px; margin-bottom:14px; overflow:hidden; background:var(--white);}
.faq-item summary{list-style:none; cursor:pointer; padding:20px 24px; font-weight:700; font-size:16px; color:var(--text-dark); display:flex; align-items:center; justify-content:space-between; gap:16px;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:'+'; font-size:22px; color:var(--primary); flex-shrink:0;}
.faq-item[open] summary::after{content:'\2212';}
.faq-item .faq-answer{padding:0 24px 22px; font-size:15px; line-height:1.75; color:var(--text-body);}
.faq-item .faq-answer p{margin-bottom:12px;}

@media (max-width:900px){.faq-section{padding:48px 20px;}}

/* ===== Footer ===== */
footer{background:var(--primary-dark); color:rgba(255,255,255,0.8); padding:56px 44px 28px;}
.footer-inner{max-width:1150px; margin:0 auto;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:36px;}
.footer-logo{font-size:22px; font-weight:700; color:var(--white); margin-bottom:14px;}
.footer-grid p{font-size:14px; line-height:1.7; color:rgba(255,255,255,0.65);}
.footer-grid h4{font-size:13px; font-weight:700; color:var(--gold); letter-spacing:1px; margin-bottom:16px; text-transform:uppercase;}
.footer-links{display:flex; flex-direction:column; gap:10px;}
.footer-links a{font-size:14px; color:rgba(255,255,255,0.7);}
.footer-links a:hover{color:var(--gold);}
.footer-payment{display:flex; align-items:center; gap:14px; margin-top:18px;}
.footer-payment img{height:26px; width:auto; opacity:0.85;}
.footer-disclosure{border-top:1px solid rgba(255,255,255,0.15); padding-top:24px; font-size:12.5px; line-height:1.7; color:rgba(255,255,255,0.5);}
.footer-disclosure p{margin-bottom:10px;}
.footer-copyright{margin-top:18px; font-size:12.5px; color:rgba(255,255,255,0.45);}

@media (max-width:900px){.footer-grid{grid-template-columns:1fr; gap:28px;}}

/* ===== Legal pages ===== */
.legal-page{padding:56px 44px 80px; background:var(--primary-tint);}
.legal-container{max-width:900px; margin:0 auto;}
.legal-header{text-align:center; margin-bottom:44px;}
.legal-header h1{font-size:36px; font-weight:700; color:var(--primary-dark); margin-bottom:12px;}
.legal-header .last-updated{font-size:14px; color:var(--text-muted);}
.legal-content{background:var(--white); padding:40px; border-radius:16px; border:1px solid var(--border-light);}
.legal-content h2{font-size:22px; font-weight:700; color:var(--text-dark); margin:32px 0 14px;}
.legal-content h2:first-child{margin-top:0;}
.legal-content h3{font-size:18px; font-weight:700; color:var(--primary-dark); margin:22px 0 10px;}
.legal-content p{font-size:15.5px; line-height:1.75; color:var(--text-body); margin-bottom:14px;}
.legal-content ul{margin:10px 0 14px 22px; list-style:disc;}
.legal-content li{font-size:15px; line-height:1.7; color:var(--text-body); margin-bottom:8px;}
.legal-content strong{color:var(--text-dark);}
.legal-content a{color:var(--primary); text-decoration:underline;}

.warning-box{background:#fbeaea; padding:20px 22px; border-radius:10px; margin:24px 0; border-left:4px solid #a83232;}
.info-box{background:var(--primary-tint); padding:20px 22px; border-radius:10px; margin:24px 0; border-left:4px solid var(--primary);}
.contact-info-box{background:var(--primary-tint); padding:20px 22px; border-radius:10px; margin:24px 0; border-left:4px solid var(--primary);}
.legal-content hr{border:none; border-top:1px solid var(--border-light); margin:32px 0;}
.legal-content a.back-home{
  display:inline-flex; align-items:center; gap:8px; padding:12px 26px;
  background:var(--primary); color:var(--white) !important; text-decoration:none !important;
  border-radius:999px; font-size:15px; font-weight:700; margin-top:32px;
}
.legal-content a.back-home:hover{background:var(--primary-dark);}

@media (max-width:768px){
  .legal-page{padding:40px 20px 56px;}
  .legal-header h1{font-size:27px;}
  .legal-content{padding:24px;}
}

/* ===== Blog listing ===== */
.blog-hero{background:var(--primary-tint); padding:60px 44px; text-align:center;}
.blog-hero-inner{max-width:720px; margin:0 auto;}
.blog-hero h1{font-size:34px; font-weight:700; color:var(--text-dark); margin:14px 0 12px; line-height:1.3;}
.blog-hero p{font-size:16.5px; line-height:1.7; color:var(--text-body);}
.blog-listing-section{background:var(--white); padding:64px 44px 80px;}
.blog-listing-inner{max-width:1100px; margin:0 auto;}
.blog-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.blog-card{background:var(--primary-tint); border-radius:14px; overflow:hidden; display:flex; flex-direction:column;}
.blog-card-body{padding:26px 24px; display:flex; flex-direction:column; flex:1;}
.blog-tag{display:inline-block; font-size:11.5px; font-weight:700; color:var(--primary); background:var(--white); padding:5px 12px; border-radius:999px; margin-bottom:14px; width:fit-content;}
.blog-card h3{font-size:19px; font-weight:700; color:var(--text-dark); margin-bottom:10px; line-height:1.35;}
.blog-card p{font-size:14.5px; line-height:1.65; color:var(--text-body); margin-bottom:18px; flex:1;}
.blog-read-link{font-size:14px; font-weight:700; color:var(--primary);}
.blog-read-link:hover{color:var(--primary-dark);}

@media (max-width:900px){
  .blog-hero{padding:40px 20px;}
  .blog-listing-section{padding:40px 20px 56px;}
  .blog-grid{grid-template-columns:1fr;}
}

/* ===== Blog post ===== */
.post-hero{background:var(--primary-tint); padding:48px 44px 40px;}
.post-hero-inner{max-width:780px; margin:0 auto;}
.post-meta-row{display:flex; align-items:center; gap:12px; flex-wrap:wrap; font-size:13.5px; color:var(--text-muted); margin-top:16px;}
.post-title{font-size:36px; font-weight:700; color:var(--text-dark); line-height:1.25; margin-top:14px;}
.post-body-section{background:var(--white); padding:48px 44px 72px;}
.post-body{max-width:780px; margin:0 auto; font-size:16.5px; line-height:1.8; color:var(--text-body);}
.post-body h2{font-size:25px; font-weight:700; color:var(--text-dark); margin:38px 0 16px;}
.post-body h2:first-child{margin-top:0;}
.post-body h3{font-size:19px; font-weight:700; color:var(--primary-dark); margin:26px 0 10px;}
.post-body p{margin-bottom:18px;}
.post-body ul, .post-body ol{margin:0 0 18px 22px;}
.post-body li{margin-bottom:10px;}
.post-body strong{color:var(--text-dark);}
.post-body a{color:var(--primary); text-decoration:underline;}

.post-callout{background:var(--primary-tint); border-left:4px solid var(--primary); border-radius:10px; padding:20px 24px; margin:28px 0; font-size:15.5px;}
.post-callout strong{color:var(--primary-dark);}

.post-cta{background:var(--primary); color:var(--white); border-radius:16px; padding:32px; text-align:center; margin:36px 0;}
.post-cta h3{font-size:22px; font-weight:700; margin-bottom:10px; color:var(--white);}
.post-cta p{color:rgba(255,255,255,0.88); margin-bottom:20px; font-size:15px;}
.post-cta .btn-gold{padding:15px 34px;}

.post-disclosure{font-size:13px; color:var(--text-muted); font-style:italic; border-top:1px solid var(--border-light); padding-top:16px; margin-top:36px;}

.related-posts{border-top:1px solid var(--border-light); margin-top:20px; padding-top:28px;}
.related-posts h4{font-size:14px; font-weight:700; letter-spacing:0.4px; text-transform:uppercase; color:var(--primary); margin-bottom:16px;}
.related-posts ul{display:flex; flex-direction:column; gap:10px;}
.related-posts a{font-size:16px; font-weight:700; color:var(--text-dark);}
.related-posts a:hover{color:var(--primary);}

@media (max-width:900px){
  .post-hero{padding:32px 20px 28px;}
  .post-body-section{padding:32px 20px 48px;}
  .post-title{font-size:26px;}
}
