:root{
  --primary:#81396d;
  --primary-dark:#5c2850;
  --primary-tint:#f7f0f5;
  --primary-tint-2:#efe0ea;
  --text-dark:#2b1826;
  --text-body:#3f3944;
  --text-muted:#6b6470;
  --white:#ffffff;
  --gold:#f2b134; /* used only for star ratings - universal rating convention */
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family:'Fira Sans', Arial, sans-serif;
  color:var(--text-body);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:'Fira Sans', sans-serif;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}

/* Header */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 48px;
  border-bottom:1px solid #f0e6ee;
  background:var(--white);
  position:relative;
}
.logo{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:'Fira Sans', sans-serif;
  font-size:24px;
  color:var(--primary);
}
.logo .brand{font-weight:800;}
.logo .sub{font-weight:500; color:var(--primary); opacity:0.7;}
.logo .icon{font-size:20px; opacity:0.85;}

nav{
  display:flex;
  gap:36px;
}
nav a{
  font-size:15px;
  font-weight:600;
  color:#4a4350;
}
nav a:hover{color:var(--primary);}

.header-actions{display:flex; align-items:center; gap:14px;}

.btn-pill{
  display:inline-block;
  background:var(--primary);
  color:var(--white);
  font-weight:700;
  font-size:13px;
  letter-spacing:0.5px;
  padding:13px 26px;
  border-radius:999px;
  white-space:nowrap;
  transition:background .15s ease;
}
.btn-pill:hover{background:var(--primary-dark);}

/* Mobile hamburger */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:8px;
  background:none;
  border:none;
}
.hamburger span{display:block; width:24px; 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 #f0e6ee;
  padding:8px 20px 20px;
  z-index:100;
  box-shadow:0 8px 20px rgba(43,24,38,0.08);
}
.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 #f0e6ee;
}
.mobile-menu .btn-pill{display:inline-block; margin-top:14px; text-align:center; width:100%;}

/* Hero */
.hero{
  background:var(--primary-tint);
  padding:56px 48px 64px;
}
.hero-inner{
  max-width:1250px;
  margin:0 auto;
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  align-items:start;
}
.hero-image{
  display:flex;
  align-items:center;
  justify-content:center;
  position:sticky;
  top:40px;
}
.hero-image img{
  max-width:340px;
  width:100%;
  filter:drop-shadow(0 20px 30px rgba(43,24,38,0.18));
}

.breadcrumb{
  font-size:13px;
  color:var(--text-muted);
  margin-bottom:14px;
}
.breadcrumb a{color:var(--primary); font-weight:600;}

.rule{
  height:3px;
  width:100%;
  background:var(--primary);
  border-radius:2px;
  margin-bottom:22px;
  opacity:0.85;
}

h1.title{
  font-size:42px;
  line-height:1.2;
  font-weight:800;
  color:var(--text-dark);
  margin-bottom:22px;
}

.byline{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:26px;
}
.avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--primary-tint-2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  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:15px;
}
.byline-text .meta{
  font-size:13.5px;
  color:var(--text-muted);
}
.byline-text .meta a{
  color:var(--primary);
  font-weight:600;
  text-decoration:underline;
}

hr.thin{
  border:none;
  border-top:1px solid #e6d5e0;
  margin-bottom:26px;
}

blockquote{
  border-left:4px solid var(--primary);
  padding:4px 0 4px 20px;
  font-style:italic;
  font-size:19px;
  color:var(--primary-dark);
  margin-bottom:26px;
  line-height:1.5;
}

.content p{
  font-size:16px;
  line-height:1.75;
  color:var(--text-body);
  margin-bottom:18px;
}
.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:24px 0 8px;
}

.rating-badge-img{margin:28px 0 22px; max-width:300px;}

.teaser{
  font-style:italic;
  font-size:15px;
  color:var(--text-muted);
}

@media (max-width:900px){
  header{padding:16px 20px; flex-wrap:wrap; gap:12px;}
  nav{display:none;}
  .header-actions .btn-pill{display:none;}
  .hamburger{display:flex;}
  .hero{padding:32px 20px 40px;}
  .hero-inner{grid-template-columns:1fr; gap:32px;}
  .hero-image{position:static;}
  h1.title{font-size:30px;}
}

/* Quality Standards */
.quality-section{
  background:var(--primary-tint);
  padding:72px 48px;
  border-bottom:1px solid #f0e6ee;
}
.quality-inner{
  max-width:1150px;
  margin:0 auto;
}
.quality-divider{
  width:64px;
  height:4px;
  background:var(--primary);
  border-radius:2px;
  margin:20px auto 0;
}
.quality-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  margin-top:40px;
}
.quality-card{
  background:var(--white);
  border-top:4px solid var(--primary);
  border-radius:12px;
  padding:30px 22px;
  text-align:center;
  box-shadow:0 1px 3px rgba(43,24,38,0.06);
}
.quality-card img{
  height:56px;
  width:auto;
  margin:0 auto 18px;
}
.quality-card h3{
  font-size:16px;
  font-weight:700;
  color:var(--primary-dark);
  margin-bottom:10px;
}
.quality-card p{
  font-size:14px;
  line-height:1.65;
  color:var(--text-body);
}

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

/* Ingredients Breakdown */
.ingredients-section{
  background:var(--white);
  padding:72px 48px;
}
.ingredients-inner{
  max-width:1000px;
  margin:0 auto;
}
.section-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto 48px;
}
.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  color:var(--primary);
  background:var(--primary-tint);
  padding:6px 16px;
  border-radius:999px;
  margin-bottom:16px;
}
.section-intro h2{
  font-size:30px;
  font-weight:800;
  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);
}

.ingredient-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.ingredient-card{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:22px;
  background:var(--primary-tint);
  border:1px solid #ecd9e6;
  border-radius:14px;
  padding:26px 28px;
}
.ingredient-num{
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--primary);
  color:var(--white);
  font-family:'Fira Sans', sans-serif;
  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;}
}

/* Scientific Evidence */
.evidence-section{
  background:var(--primary-tint);
  padding:72px 48px;
}
.evidence-inner{
  max-width:1000px;
  margin:0 auto;
}
.evidence-note{
  background:var(--white);
  border:1px solid #ecd9e6;
  border-radius:12px;
  padding:18px 22px;
  font-size:14.5px;
  line-height:1.7;
  color:var(--text-muted);
  margin-bottom:36px;
}
.evidence-note strong{color:var(--primary-dark);}

.evidence-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.evidence-card{
  background:var(--white);
  border-left:4px solid var(--primary);
  border-radius:10px;
  padding:24px 28px;
  box-shadow:0 1px 3px rgba(43,24,38,0.06);
}
.evidence-tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.4px;
  color:var(--primary);
  background:var(--primary-tint);
  padding:4px 12px;
  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 #f0e6ee;
}
.evidence-meta{
  font-size:13px;
  color:var(--text-muted);
}
.view-study-link{
  font-size:13.5px;
  font-weight:700;
  color:var(--primary);
  white-space:nowrap;
}
.view-study-link:hover{color:var(--primary-dark); text-decoration:underline;}

.disclaimer{
  margin-top:32px;
  font-size:13.5px;
  line-height:1.7;
  color:var(--text-muted);
  font-style:italic;
}

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

/* What Is / How It Works */
.info-section{
  background:var(--white);
  padding:72px 48px;
}
.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(--primary);
  color:var(--white);
  font-family:'Fira Sans', sans-serif;
  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);
}

/* Pricing */
.pricing-section{
  background:var(--primary-tint);
  padding:72px 48px;
}
.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 #ecd9e6;
  text-align:center;
  display:flex;
  flex-direction:column;
}
.price-card.featured{
  background:var(--primary);
  border-color:var(--primary);
  transform:translateY(-14px);
  box-shadow:0 12px 28px rgba(43,24,38,0.18);
}
.price-header{
  background:var(--primary-dark);
  color:var(--white);
  font-weight:700;
  font-size:14px;
  letter-spacing:0.4px;
  padding:16px 12px;
}
.price-card.featured .price-header{
  background:var(--white);
  color:var(--primary-dark);
}
.popular-badge{
  display:inline-block;
  background:var(--white);
  color:var(--primary);
  font-size:11px;
  font-weight:800;
  letter-spacing:0.5px;
  padding:5px 14px;
  border-radius:999px;
  margin:16px auto 0;
}
.save-line{
  font-size:16px;
  font-weight:800;
  color:var(--primary-dark);
  margin:14px 0 4px;
}
.price-card.featured .save-line{color:var(--white);}

.bottle-photo{
  width:75%;
  max-width:160px;
  margin:18px auto 6px;
}

.price-main{
  font-family:'Fira Sans', sans-serif;
  font-size:40px;
  font-weight:800;
  color:var(--text-dark);
  margin:6px 0 0;
}
.price-card.featured .price-main{color:var(--white);}
.price-main span.unit{font-size:15px; font-weight:600; color:var(--text-muted);}
.price-card.featured .price-main span.unit{color:rgba(255,255,255,0.8);}

.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-dark);
  color:var(--white);
  font-weight:700;
  font-size:14px;
  letter-spacing:0.4px;
  padding:14px 32px;
  border-radius:999px;
  margin:18px 0 14px;
  width:100%;
}
.price-card.featured .pricing-btn{
  background:var(--white);
  color:var(--primary-dark);
}
.pricing-btn:hover{opacity:0.9;}

.shipping-line{
  font-size:13.5px;
  font-weight:700;
  color:var(--primary-dark);
  margin-bottom:10px;
}
.price-card.featured .shipping-line{color:var(--white);}

.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);
}
.price-card.featured .strike-line{color:rgba(255,255,255,0.75);}
.price-card.featured .strike-line strong{color:var(--white);}

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

/* Reviews */
.reviews-section{
  background:var(--white);
  padding:72px 48px;
}
.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:1px solid #ecd9e6;
  border-radius:14px;
  padding:24px;
  display:flex;
  flex-direction:column;
}
.review-stars{color:var(--gold); 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 #e6d5e0;
  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;}
}

/* Pros & Cons */
.proscons-section{
  background:var(--primary-tint);
  padding:72px 48px;
}
.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(--white);
  border-radius:14px;
  padding:28px 30px;
  border-top:5px solid var(--primary);
}
.proscons-card.cons{border-top-color:var(--primary-dark);}
.proscons-card h3{
  font-family:'Fira Sans', sans-serif;
  font-size:20px;
  font-weight:700;
  color:var(--text-dark);
  margin-bottom:18px;
}
.proscons-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.proscons-card li{
  display:flex;
  gap:10px;
  font-size:15px;
  line-height:1.6;
  color:var(--text-body);
}
.proscons-card li .mark{
  flex-shrink:0;
  font-weight:800;
  color:var(--primary);
}
.proscons-card.cons li .mark{color:var(--primary-dark);}

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

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

/* Benefits */
.benefits-section{
  background:var(--primary-tint);
  padding:72px 48px;
}
.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(--white);
  border:1px solid #ecd9e6;
  border-radius:14px;
  padding:26px 24px;
  text-align:center;
}
.benefit-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--primary);
  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(--white);
  padding:72px 48px;
}
.faq-inner{
  max-width:820px;
  margin:0 auto;
}
.faq-item{
  border:1px solid #ecd9e6;
  border-radius:12px;
  margin-bottom:14px;
  overflow:hidden;
  background:var(--primary-tint);
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 24px;
  font-family:'Fira Sans', sans-serif;
  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;
  transition:transform .15s ease;
}
.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);
  background:var(--white);
}
.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.85);
  padding:56px 48px 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-family:'Fira Sans', sans-serif;
  font-size:22px;
  font-weight:800;
  color:var(--white);
  margin-bottom:14px;
}
.footer-grid p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,0.7);
}
.footer-grid h4{
  font-family:'Fira Sans', sans-serif;
  font-size:14px;
  font-weight:700;
  color:var(--white);
  letter-spacing:0.5px;
  margin-bottom:16px;
  text-transform:uppercase;
}
.footer-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  font-size:14px;
  color:rgba(255,255,255,0.75);
}
.footer-links a:hover{color:var(--white);}

.footer-payment{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:18px;
}
.footer-payment img{height:26px; width:auto; opacity:0.9;}

.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.55);
}
.footer-disclosure p{margin-bottom:10px;}
.footer-copyright{
  margin-top:18px;
  font-size:12.5px;
  color:rgba(255,255,255,0.5);
}

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

/* Legal pages (Disclaimer / Privacy Policy / Terms & Conditions) */
.legal-page{
  padding:56px 48px 80px;
  background:var(--white);
}
.legal-container{
  max-width:900px;
  margin:0 auto;
}
.legal-header{
  text-align:center;
  margin-bottom:44px;
}
.legal-header h1{
  font-size:36px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:12px;
}
.legal-header .last-updated{
  font-size:14px;
  color:var(--text-muted);
}
.legal-content{
  background:var(--primary-tint);
  padding:40px;
  border-radius:16px;
  border:1px solid #ecd9e6;
}
.legal-content h2{
  font-size:22px;
  font-weight:700;
  color:var(--primary-dark);
  margin:34px 0 16px;
}
.legal-content h2:first-child{margin-top:0;}
.legal-content h3{
  font-size:18px;
  font-weight:700;
  color:var(--text-dark);
  margin:24px 0 12px;
}
.legal-content p{
  font-size:15.5px;
  color:var(--text-body);
  line-height:1.75;
  margin-bottom:14px;
}
.legal-content ul, .legal-content ol{
  margin:12px 0 14px 22px;
}
.legal-content li{
  font-size:15.5px;
  color:var(--text-body);
  line-height:1.75;
  margin-bottom:10px;
}
.legal-content strong{color:var(--text-dark); font-weight:700;}
.legal-content a{color:var(--primary); text-decoration:underline;}
.legal-content a:hover{color:var(--primary-dark);}

.warning-box{
  background:#fdf0ec;
  padding:20px 22px;
  border-radius:10px;
  margin:24px 0;
  border-left:4px solid #b5473a;
}
.info-box{
  background:var(--primary-tint-2);
  padding:20px 22px;
  border-radius:10px;
  margin:24px 0;
  border-left:4px solid var(--primary);
}
.contact-info-box{
  background:var(--white);
  padding:20px 22px;
  border-radius:10px;
  margin:24px 0;
  border-left:4px solid var(--primary);
}
.legal-content hr{border:none; border-top:1px solid #e6d5e0; 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); color:var(--white) !important;}

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

/* Blog listing */
.blog-hero{
  background:var(--primary-tint);
  padding:56px 48px;
  text-align:center;
}
.blog-hero-inner{max-width:720px; margin:0 auto;}
.blog-listing-section{
  background:var(--white);
  padding:64px 48px 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:1px solid #ecd9e6;
  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:800;
  letter-spacing:0.4px;
  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 48px 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:800;
  color:var(--text-dark);
  line-height:1.25;
  margin-top:14px;
}
.post-body-section{
  background:var(--white);
  padding:48px 48px 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-family:'Fira Sans', sans-serif;
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
}
.post-cta p{color:rgba(255,255,255,0.85); margin-bottom:20px; font-size:15px;}
.post-cta .btn-pill{background:var(--white); color:var(--primary-dark);}
.post-cta .btn-pill:hover{background:var(--primary-tint);}

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

.related-posts{
  border-top:1px solid #f0e6ee;
  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{list-style:none; margin:0; display:flex; flex-direction:column; gap:10px;}
.related-posts a{font-size:15px; font-weight:600; 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;}
}
