/* ========================================================================
   TrustProduct — Advertorial Landing (Derila Ergo)
   Long-form, single-column, paid-native style
   Modeled on proven native advertorial pattern
   ======================================================================== */

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body,h1,h2,h3,h4,p,figure,blockquote,ul,ol,dl{margin:0}
ul,ol{padding:0;list-style:none}
img,picture,video{max-width:100%;display:block;height:auto}
a{color:#2563eb;text-decoration:underline}
button{font:inherit;cursor:pointer;border:none;background:none}

:root{
  --bg:#ffffff;
  --text:#0f0f0f;
  --text-muted:#3a3a3a;
  --text-light:#6a6a6a;
  --accent:#2563eb;
  --green:#008c00;
  --green-dark:#4ba614;
  --cta-border:#34740e;
  --cyan-quote:#73f9f9;
  --card-bg:#f4f4f4;
  --fb-bubble:#F0F2F5;
  --fb-meta:#65676B;
  --fb-text:#050505;
  --border:#e5e5e5;
  --urgency:#e63946;
  --sponsored:#fff8e1;

  --fs-h1:40px;
  --fs-h2:28px;
  --fs-h3:22px;
  --fs-body:18px;
  --lh-body:1.65;

  --max-w:720px;
  --block-gap:22px;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Montserrat',ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-size:var(--fs-body);
  line-height:var(--lh-body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ---------------- STICKY SPONSORED BAR ---------------- */
.sponsored-bar{
  position:sticky;top:0;z-index:900;
  background:var(--sponsored);
  border-bottom:1px solid #f0d880;
  padding:10px 16px;
  font-size:14px;
  text-align:center;
  color:#5a4500;
  font-weight:500;
}
.sponsored-bar a{
  color:#c92734;
  font-weight:700;
  text-decoration:none;
}
.sponsored-bar a:hover{text-decoration:underline}
.sponsored-bar .sponsored-label{
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:700;
  font-size:11px;
  margin-right:8px;
  background:#5a4500;
  color:#fff;
  padding:2px 8px;
  border-radius:3px;
}

/* ---------------- ARTICLE CONTAINER ---------------- */
.wrap{
  max-width:1060px;
  margin:0 auto;
  padding:14px 16px 40px;
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
.article-body{
  max-width:var(--max-w);
  min-width:0;
}
@media (min-width:900px){
  .wrap{
    grid-template-columns:1fr 280px;
    gap:32px;
  }
  .article-body{max-width:none}
}

/* ---------------- STICKY OFFER SIDEBAR ---------------- */
.offer-sidebar{display:none}
@media (min-width:900px){
  .offer-sidebar{
    display:block;
    position:sticky;
    top:20px;
    align-self:start;
  }
}
.offer-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:18px 18px 20px;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
}
.offer-card .offer-eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#008c00;
  margin-bottom:6px;
}
.offer-card h3{
  font-size:18px;
  font-weight:700;
  line-height:1.25;
  margin-bottom:12px;
  color:#000;
}
.offer-card .offer-img{
  display:block;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:12px;
  background:#f2f2f2;
}
.offer-card .offer-img img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.offer-card .offer-stars{
  color:#ffb400;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:4px;
}
.offer-card .offer-reviews{
  font-size:12px;
  color:#555;
  margin-bottom:10px;
}
.offer-card .offer-price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-bottom:6px;
}
.offer-card .offer-price .now{
  font-size:26px;
  font-weight:800;
  color:#c92734;
}
.offer-card .offer-price .old{
  font-size:14px;
  color:#999;
  text-decoration:line-through;
}
.offer-card .offer-line{
  font-size:13px;
  font-weight:700;
  color:#c92734;
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.offer-card .btn-cta{
  font-size:18px;
  padding:13px 16px;
  margin:8px 0 6px;
}
.offer-card .offer-trust{
  font-size:11px;
  color:#777;
  text-align:center;
  margin-top:6px;
  line-height:1.4;
}

/* ---------------- ARTICLE HERO ---------------- */
.headline{
  font-family:'Montserrat',sans-serif;
  font-size:var(--fs-h1);
  line-height:1.2;
  font-weight:700;
  color:var(--text);
  margin-bottom:14px;
  letter-spacing:-.01em;
}
.article-meta{
  font-size:13px;
  color:var(--text-light);
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  padding:10px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:18px;
}
.article-meta .author{
  display:flex;align-items:center;gap:8px;
  color:var(--text);font-weight:600;
}
.article-meta .author .avatar{
  width:30px;height:30px;border-radius:50%;
  background:linear-gradient(135deg,#c8a96e,#8c7a54);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;font-size:12px;font-weight:700;
}
.article-meta .dot{width:3px;height:3px;border-radius:50%;background:var(--text-light)}

.hero-img{
  margin:16px 0 20px;
  border-radius:4px;
  overflow:hidden;
}
.hero-img img{width:100%;aspect-ratio:16/9;object-fit:cover;background:#eee}

/* ---------------- ARTICLE BODY ---------------- */
.content p{margin-bottom:var(--block-gap);color:var(--text)}
.content h2{
  font-size:var(--fs-h2);
  line-height:1.25;
  font-weight:700;
  margin:30px 0 14px;
  color:var(--text);
  letter-spacing:-.005em;
}
.content h3{
  font-size:var(--fs-h3);
  line-height:1.3;
  font-weight:700;
  margin:24px 0 10px;
  color:var(--text);
}
.content strong,.content b{font-weight:700;color:var(--text)}
.content a{color:var(--accent);font-weight:700}
.content a:hover{text-decoration:underline}

.content ul{margin:16px 0 22px;padding-left:20px;list-style:disc}
.content ul li{margin-bottom:8px}

.content img{margin:18px 0;border-radius:4px;width:100%}

/* Highlighted quote pill */
.quote-pill{
  display:flex;
  justify-content:center;
  margin:24px 0;
}
.quote-pill .pill{
  background:var(--cyan-quote);
  padding:14px 24px;
  border-radius:100px;
  text-align:center;
  max-width:100%;
  font-size:17px;
  line-height:1.5;
  font-weight:500;
}
.quote-pill .pill em{font-style:italic}
.quote-pill .pill strong{font-weight:700}

/* ---------------- FB COMMENTS ---------------- */
.fb-thread{margin:22px 0}
.fb-comment{
  display:flex;
  gap:8px;
  margin-top:10px;
}
.fb-comment.reply{margin-left:40px}
.fb-comment.reply-deeper{margin-left:40px}
.fb-avatar{
  width:32px;height:32px;
  border-radius:50%;
  flex-shrink:0;
  background:linear-gradient(135deg,#cbd5e1,#94a3b8);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;font-size:13px;font-weight:700;
  overflow:hidden;
}
.fb-comment.reply .fb-avatar,
.fb-comment.reply-deeper .fb-avatar{width:24px;height:24px;font-size:11px}
.fb-content{flex:1;min-width:0}
.fb-bubble{
  background:var(--fb-bubble);
  padding:8px 12px;
  border-radius:18px;
}
.fb-name{
  font-size:13px;
  font-weight:600;
  color:#050505;
  margin-bottom:2px;
}
.fb-text{font-size:15px;color:var(--fb-text);line-height:1.4}
.fb-meta{
  display:flex;
  align-items:center;
  gap:8px;
  padding:4px 12px 0;
  font-size:12px;
  color:var(--fb-meta);
}
.fb-meta .time{color:var(--fb-meta)}
.fb-reactions{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:12px;
  color:var(--fb-meta);
}
.fb-reactions .rx{
  width:16px;height:16px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
}
.fb-reactions .like{background:#2078f4;color:#fff}
.fb-reactions .heart{background:#f33e58;color:#fff}
.fb-reactions .wow{background:#ffd86a;color:#333}

/* ---------------- CTA BUTTON (green gradient) ---------------- */
.cta-wrap{margin:24px 0;text-align:center}
.btn-cta{
  display:inline-block;
  width:100%;
  max-width:600px;
  background:linear-gradient(180deg,#4ba614,#008c00);
  color:#ffffff!important;
  border:1px solid var(--cta-border);
  padding:16px 24px;
  border-radius:6px;
  font-weight:700;
  font-size:22px;
  line-height:1.25;
  text-decoration:none;
  text-align:center;
  box-shadow:0 3px 8px rgba(0,140,0,.25);
  transition:filter .2s,transform .1s;
}
.btn-cta:hover{
  filter:brightness(.92);
  text-decoration:none;
}
.btn-cta:active{transform:translateY(1px)}
.btn-cta .small{display:block;font-size:14px;font-weight:500;opacity:.95;margin-top:2px}

/* Image that doubles as link */
.img-link{display:block;margin:18px 0}
.img-link img{width:100%;border-radius:4px}

/* ---------------- TESTIMONIAL CARDS GRID ---------------- */
.tg-intro{margin-bottom:14px}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:18px 0 26px;
}
.t-card{
  background:var(--card-bg);
  padding:16px 18px;
  border-radius:6px;
}
.t-card .t-head{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom:6px;
}
.t-card .t-name{
  font-weight:700;
  font-size:15px;
  display:inline-flex;
  align-items:center;
  gap:4px;
  color:#000;
}
.t-card .t-verified{
  width:16px;height:16px;
  display:inline-block;
  background:#1e88e5;
  color:#fff;
  border-radius:50%;
  text-align:center;
  line-height:16px;
  font-size:10px;
  font-weight:900;
}
.t-card .t-stars{
  display:inline-flex;
  gap:2px;
  color:#ffb400;
  font-size:18px;
  letter-spacing:2px;
  line-height:1;
  margin-bottom:4px;
}
.t-card .t-body{
  color:#000;
  font-size:15px;
  line-height:1.55;
  margin:8px 0 0;
}

/* ---------------- PRICE COMPARISON LIST ---------------- */
.price-list{
  margin:16px 0 22px;
  padding-left:20px;
  list-style:disc;
  font-size:17px;
}
.price-list li{margin-bottom:8px}
.price-list li strong{font-weight:700}

/* ---------------- OFFER CHECKS ---------------- */
.offer-checks{margin:18px 0}
.offer-checks p{margin:6px 0;font-size:17px}

/* ---------------- FOOTER ---------------- */
.article-end{
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--border);
}
.site-footer{
  background:#f6f6f6;
  border-top:1px solid var(--border);
  padding:26px 16px 20px;
  margin-top:30px;
}
.footer-inner{max-width:var(--max-w);margin:0 auto}
.footer-brand{
  display:flex;align-items:center;gap:8px;
  font-size:16px;
  font-weight:700;
  margin-bottom:14px;
  color:#222;
}
.footer-brand .checkmark{
  width:22px;height:22px;
  background:var(--accent);
  color:#fff;
  border-radius:4px;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:900;
}
.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.footer-links a{
  font-size:13px;
  color:#444;
  text-decoration:none;
  font-weight:500;
}
.footer-links a:hover{text-decoration:underline}
.footer-compliance{
  background:#fff;
  border:1px solid var(--border);
  border-radius:4px;
  padding:14px 16px;
  margin-bottom:12px;
}
.footer-compliance p{
  font-size:9px;
  color:var(--text-light);
  line-height:1.45;
  margin:0 0 5px;
}
.footer-compliance p:last-child{margin-bottom:0}
.footer-compliance strong{color:#333;font-weight:700}
.footer-copy{
  font-size:11px;
  color:#999;
  text-align:center;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:640px){
  :root{
    --fs-h1:28px;
    --fs-h2:22px;
    --fs-h3:19px;
    --fs-body:17px;
  }
  .testimonial-grid{grid-template-columns:1fr;gap:12px}
  .btn-cta{font-size:18px;padding:14px 18px}
  .quote-pill .pill{font-size:15px;padding:12px 18px}
  .wrap{padding:12px 14px 30px}
}
