/* ==========================================================================
   Daily Insider Weekly / Local Reputation Management — site.css
   Handwritten CSS, custom properties, BEM naming, CSS Grid + Flexbox.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

/* ---------------------------------------------------------------------
   0. Custom properties
   --------------------------------------------------------------------- */
:root{
  /* publication (advertorial / about) palette */
  --pub-bg:#ffffff;
  --pub-ink:#16211d;
  --pub-ink-soft:#42524c;
  --pub-accent:#2f6f5e;
  --pub-accent-dark:#1d4a3d;
  --pub-mint:#eef6f2;
  --pub-mint-deep:#e2efe9;
  --pub-border:#d9e6e1;
  --pub-callout:#f5faf8;

  /* offer palette */
  --offer-bg:#fffdfa;
  --offer-ink:#171512;
  --offer-ink-soft:#5c564d;
  --offer-accent:#e0451c;
  --offer-accent-dark:#b23413;
  --offer-dark:#141210;
  --offer-panel:#f7f3ee;
  --offer-panel-deep:#efe8de;
  --offer-border:#e7e0d5;
  --offer-highlight:#fff3ea;

  --shadow-sm:0 1px 3px rgba(20,15,10,.08);
  --shadow-md:0 8px 24px rgba(20,15,10,.10);
  --shadow-lg:0 20px 45px rgba(20,15,10,.16);
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --font-pub:'Inter',system-ui,sans-serif;
  --font-offer:'Sora',system-ui,sans-serif;
}

/* ---------------------------------------------------------------------
   1. Reset / base
   --------------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{margin:0;min-width:0;overflow-x:hidden;}
img,video{max-width:100%;height:auto;display:block;}
a{color:inherit;}
button{font:inherit;}
ul,ol{margin:0;padding:0;}
h1,h2,h3,h4,p,figure{margin:0;}
input,textarea,select,button{font-family:inherit;}

.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,summary:focus-visible{
  outline:3px solid #2f6fe4;
  outline-offset:2px;
  border-radius:4px;
}

/* ---------------------------------------------------------------------
   2. Body themes
   --------------------------------------------------------------------- */
body.pub-theme{
  background:var(--pub-bg);
  color:var(--pub-ink);
  font-family:var(--font-pub);
  line-height:1.6;
}
body.offer-theme{
  background:var(--offer-bg);
  color:var(--offer-ink);
  font-family:var(--font-offer);
  line-height:1.6;
}

.container{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:0 16px;
}
@media (min-width:768px){ .container{padding:0 32px;} }

/* =======================================================================
   3. PUBLICATION FAMILY (advertorial + about)
   ======================================================================= */

/* -- masthead -- */
.pub-header{
  border-bottom:1px solid var(--pub-border);
  background:var(--pub-bg);
}
.pub-header__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  max-width:1120px;
  margin:0 auto;
}
.pub-header__brand{
  font-family:var(--font-pub);
  font-weight:800;
  font-size:1.15rem;
  letter-spacing:-0.01em;
  text-decoration:none;
  color:var(--pub-ink);
  display:flex;
  align-items:center;
  gap:8px;
}
.pub-header__brand-mark{
  width:26px;height:26px;border-radius:7px;
  background:var(--pub-accent);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.85rem;font-weight:800;
  flex:none;
}
.pub-header__nav{
  display:none;
  gap:22px;
  list-style:none;
  font-size:.92rem;
  font-weight:600;
}
.pub-header__nav a{text-decoration:none;color:var(--pub-ink-soft);}
.pub-header__nav a:hover{color:var(--pub-accent);}
@media (min-width:768px){
  .pub-header__nav{display:flex;}
}

.pub-promo{
  background:var(--pub-mint);
  border-bottom:1px solid var(--pub-border);
}
.pub-promo__bar{
  max-width:1120px;margin:0 auto;
  padding:12px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}
.pub-promo__text{
  font-size:.92rem;
  font-weight:600;
  color:var(--pub-ink);
}
@media (min-width:640px){
  .pub-promo__bar{flex-direction:row;align-items:center;justify-content:space-between;}
}

/* -- disclosure ribbon -- */
.ribbon{
  background:var(--pub-ink);
  color:#fff;
}
.ribbon__bar{
  max-width:1120px;margin:0 auto;
  padding:9px 16px;
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:700;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.ribbon__bar span{opacity:.78;text-transform:none;letter-spacing:0;font-weight:500;}

/* -- article shell -- */
.article{
  max-width:760px;
  margin:0 auto;
  padding:28px 16px 8px;
}
.article__eyebrow{
  color:var(--pub-accent);
  font-weight:700;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:10px;
}
.article__h1{
  font-family:var(--font-pub);
  font-weight:800;
  letter-spacing:-0.02em;
  font-size:clamp(1.7rem,5.4vw,2.75rem);
  line-height:1.14;
  margin-bottom:14px;
}
.article__dek{
  font-size:clamp(1rem,2.6vw,1.2rem);
  color:var(--pub-ink-soft);
  font-weight:500;
  margin-bottom:20px;
}

.article__jump{
  border:1px solid var(--pub-border);
  border-radius:var(--radius-sm);
  background:var(--pub-callout);
  padding:12px 14px;
  margin-bottom:24px;
}
.article__jump-label{
  display:block;
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--pub-ink-soft);
  margin-bottom:6px;
}
.article__jump-select{
  width:100%;
  border:1px solid var(--pub-border);
  border-radius:6px;
  padding:10px 12px;
  font-size:1rem;
  background:#fff;
  color:var(--pub-ink);
  min-height:44px;
}

.article__figure{
  margin:0 0 22px;
}
.article__media{
  border-radius:var(--radius-md);
  overflow:hidden;
  background:var(--pub-mint);
  box-shadow:var(--shadow-sm);
}
.article__media--photo img{width:100%;object-fit:cover;}
.article__media--loop{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
}
.article__media--loop video{
  width:100%;height:100%;object-fit:cover;
}
.article__caption{
  font-size:.85rem;
  color:var(--pub-ink-soft);
  margin-top:8px;
  text-align:center;
}

.article__body{font-size:1.05rem;}
.article__body p{margin:0 0 18px;}
.article__body p:last-child{margin-bottom:0;}
.article__body strong{color:var(--pub-ink);}

.article__h2{
  font-family:var(--font-pub);
  font-weight:800;
  font-size:clamp(1.35rem,4vw,1.8rem);
  letter-spacing:-0.01em;
  margin:36px 0 14px;
  line-height:1.22;
}
.article__h3{
  font-weight:700;
  font-size:1.12rem;
  margin:22px 0 10px;
}

/* numbered system steps (AI-leverage woven into how-it-works) */
.article__steps{
  list-style:none;
  counter-reset:steps;
  display:grid;
  gap:14px;
  margin:16px 0;
}
.article__steps li{
  counter-increment:steps;
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:.98rem;
}
.article__steps li::before{
  content:counter(steps);
  flex:none;
  width:28px;height:28px;
  border-radius:50%;
  background:var(--pub-accent);
  color:#fff;
  font-weight:800;
  font-size:.85rem;
  display:flex;align-items:center;justify-content:center;
}
.article__steps strong{color:var(--pub-ink);}

/* Q&A blocks */
.qa{
  margin:22px 0;
  padding:18px 18px 4px;
  border-left:3px solid var(--pub-accent);
  background:var(--pub-callout);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}
.qa__q{
  font-weight:700;
  font-size:1.02rem;
  margin-bottom:10px;
  color:var(--pub-accent-dark);
}
.qa__a p{margin:0 0 14px;}
.qa__a p:last-child{margin-bottom:0;}

/* pull quote */
.pull-quote{
  margin:28px 0;
  padding:22px 20px;
  border-top:3px solid var(--pub-accent);
  border-bottom:3px solid var(--pub-accent);
  font-family:var(--font-pub);
  font-weight:700;
  font-size:clamp(1.2rem,4vw,1.55rem);
  line-height:1.35;
  letter-spacing:-0.01em;
  color:var(--pub-accent-dark);
}
.pull-quote cite{
  display:block;
  margin-top:10px;
  font-style:normal;
  font-weight:600;
  font-size:.82rem;
  color:var(--pub-ink-soft);
  text-transform:uppercase;
  letter-spacing:.05em;
}

/* aside rate box */
.rate-box{
  margin:26px 0;
  border:1px solid var(--pub-border);
  border-radius:var(--radius-md);
  background:#fff;
  overflow:hidden;
}
.rate-box__head{
  background:var(--pub-ink);
  color:#fff;
  padding:12px 18px;
  font-weight:700;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.rate-box__body{padding:16px 18px 18px;}
.rate-box__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:11px 0;
  border-bottom:1px solid var(--pub-border);
  font-size:.98rem;
}
.rate-box__row:last-child{border-bottom:none;}
.rate-box__label{color:var(--pub-ink-soft);}
.rate-box__value{font-weight:700;white-space:nowrap;}
.rate-box__foot{
  margin-top:10px;
  font-size:.82rem;
  color:var(--pub-ink-soft);
}

/* checklist / takeaway boxes */
.takeaway{
  margin:26px 0;
  padding:18px 20px;
  background:var(--pub-mint);
  border-radius:var(--radius-md);
}
.takeaway__title{
  font-weight:800;
  font-size:1.05rem;
  margin-bottom:12px;
}
.takeaway__list{list-style:none;display:grid;gap:10px;}
.takeaway__list li{
  position:relative;
  padding-left:28px;
  font-size:.98rem;
}
.takeaway__list li::before{
  content:"✓";
  position:absolute;left:0;top:0;
  width:20px;height:20px;
  border-radius:5px;
  background:var(--pub-accent);
  color:#fff;
  font-size:.75rem;
  display:flex;align-items:center;justify-content:center;
}

/* offer list (what you can sell) */
.offer-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin:18px 0 26px;
}
.offer-list__item{
  border:1px solid var(--pub-border);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  display:grid;
  gap:4px;
}
.offer-list__item-title{font-weight:700;color:var(--pub-ink);}
.offer-list__item-sub{font-size:.9rem;color:var(--pub-ink-soft);}

/* cta band inside article */
.cta-band{
  margin:32px 0;
  padding:26px 20px;
  border-radius:var(--radius-md);
  background:linear-gradient(135deg,var(--pub-accent-dark),var(--pub-accent));
  color:#fff;
  text-align:center;
}
.cta-band__title{
  font-family:var(--font-pub);
  font-weight:800;
  font-size:clamp(1.2rem,4vw,1.5rem);
  margin-bottom:8px;
}
.cta-band__sub{
  font-size:.98rem;
  opacity:.92;
  margin-bottom:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:12px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:.98rem;
  text-decoration:none;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn--pub-solid{
  background:#fff;
  color:var(--pub-accent-dark);
}
.btn--pub-solid:hover{box-shadow:var(--shadow-md);}
.btn--pub-outline{
  background:transparent;
  border-color:var(--pub-accent);
  color:var(--pub-accent);
}
.btn--pub-ghost{
  background:var(--pub-accent);
  color:#fff;
}
.btn--pub-ghost:hover{background:var(--pub-accent-dark);}

.article__closing{
  margin:32px 0 8px;
  padding-top:22px;
  border-top:1px solid var(--pub-border);
}

/* about page (publication family, no stock media) */
.about-hero{
  max-width:760px;margin:0 auto;padding:32px 16px 8px;
}
.about-hero__title{
  font-family:var(--font-pub);
  font-weight:800;
  font-size:clamp(1.8rem,5.6vw,2.6rem);
  letter-spacing:-0.02em;
  margin-bottom:16px;
}
.about-hero__lead{font-size:1.08rem;color:var(--pub-ink-soft);}
.about-block{max-width:760px;margin:0 auto;padding:14px 16px;}
.about-block__title{
  font-weight:800;font-size:1.3rem;margin:26px 0 12px;
}
.about-block p{font-size:1.02rem;margin:0 0 16px;}
.about-grid{
  display:grid;gap:14px;margin:18px 0 8px;
}
@media (min-width:640px){ .about-grid{grid-template-columns:repeat(3,1fr);} }
.about-grid__card{
  border:1px solid var(--pub-border);
  border-radius:var(--radius-sm);
  padding:16px;
  background:var(--pub-callout);
}
.about-grid__card h3{font-size:1rem;font-weight:700;margin-bottom:6px;}
.about-grid__card p{font-size:.92rem;color:var(--pub-ink-soft);margin:0;}

/* =======================================================================
   4. OFFER FAMILY (join + legal pages)
   ======================================================================= */

.offer-header{
  background:var(--offer-bg);
  border-bottom:1px solid var(--offer-border);
  position:sticky;top:0;z-index:20;
}
.offer-header__bar{
  max-width:1180px;margin:0 auto;
  padding:14px 16px;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
}
.offer-header__brand{
  font-family:var(--font-offer);
  font-weight:800;
  font-size:1.05rem;
  text-decoration:none;
  color:var(--offer-ink);
  letter-spacing:-0.01em;
}
.offer-header__nav{
  display:none;
  gap:24px;
  list-style:none;
  font-size:.92rem;
  font-weight:600;
}
.offer-header__nav a{text-decoration:none;color:var(--offer-ink-soft);}
.offer-header__nav a:hover{color:var(--offer-accent);}
@media (min-width:860px){ .offer-header__nav{display:flex;} }
.offer-header__cta{flex:none;}

/* hero */
.offer-hero{
  background:var(--offer-bg);
  padding:34px 0 40px;
  text-align:center;
}
.offer-hero__badges{
  display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:18px;
}
.offer-hero__quotes{
  display:grid;
  gap:12px;
  max-width:640px;
  margin:0 auto 22px;
}
@media (min-width:640px){ .offer-hero__quotes{grid-template-columns:1fr 1fr;} }
.quote-card{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-md);
  background:var(--offer-panel);
  padding:14px 16px;
  font-size:.9rem;
  font-style:italic;
  color:var(--offer-ink-soft);
  text-align:left;
}
.offer-hero__h1{
  font-family:var(--font-offer);
  font-weight:800;
  letter-spacing:-0.02em;
  font-size:clamp(1.7rem,6vw,3rem);
  line-height:1.1;
  max-width:900px;
  margin:0 auto 16px;
}
.offer-hero__h1 em{
  font-style:normal;
  color:var(--offer-accent);
}
.offer-hero__h2{
  font-size:clamp(1.05rem,3vw,1.35rem);
  font-weight:600;
  color:var(--offer-ink-soft);
  max-width:680px;
  margin:0 auto 24px;
}
.offer-hero__h2 strong{color:var(--offer-accent-dark);}
.offer-hero__ctas{
  display:flex;flex-direction:column;gap:12px;align-items:center;margin-bottom:14px;
}
@media (min-width:480px){ .offer-hero__ctas{flex-direction:row;justify-content:center;} }
.offer-hero__note{font-size:.85rem;color:var(--offer-ink-soft);}

.offer-hero__media{
  margin:28px auto 0;
  max-width:880px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:16/10;
  background:var(--offer-panel);
}
.offer-hero__media video{width:100%;height:100%;object-fit:cover;}

.badge{
  display:inline-flex;align-items:center;gap:6px;
  border:1px solid var(--offer-border);
  background:var(--offer-panel);
  border-radius:999px;
  padding:6px 14px;
  font-size:.8rem;
  font-weight:700;
  color:var(--offer-ink-soft);
}

.btn--offer-solid{
  background:var(--offer-accent);
  color:#fff;
}
.btn--offer-solid:hover{background:var(--offer-accent-dark);}
.btn--offer-outline{
  background:#fff;
  border-color:var(--offer-ink);
  color:var(--offer-ink);
}
.btn--offer-outline:hover{background:var(--offer-ink);color:#fff;}

/* trust strip */
.trust-strip{
  border-top:1px solid var(--offer-border);
  border-bottom:1px solid var(--offer-border);
  background:var(--offer-panel);
  padding:22px 0;
}
.trust-strip__label{
  text-align:center;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--offer-ink-soft);
  margin-bottom:14px;
}
.trust-strip__row{
  display:flex;flex-wrap:wrap;gap:10px;justify-content:center;
}
.trust-strip__chip{
  background:#fff;
  border:1px solid var(--offer-border);
  border-radius:999px;
  padding:8px 16px;
  font-size:.85rem;
  font-weight:600;
}

/* section shell */
.section{padding:44px 0;}
.section--tight{padding:32px 0;}
.section--dark{background:var(--offer-dark);color:#fdf9f4;}
.section--panel{background:var(--offer-panel);}
.section__kicker{
  font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:var(--offer-accent);
  margin-bottom:10px;
}
.section--dark .section__kicker{color:#ff9166;}
.section__title{
  font-family:var(--font-offer);
  font-weight:800;
  font-size:clamp(1.5rem,4.6vw,2.2rem);
  letter-spacing:-0.015em;
  margin-bottom:14px;
}
.section__lead{
  font-size:1.02rem;
  color:var(--offer-ink-soft);
  max-width:640px;
}
.section--dark .section__lead{color:#d8d0c6;}

/* two column split (AI leverage + market rate) */
.split{
  display:grid;
  gap:28px;
}
@media (min-width:860px){ .split{grid-template-columns:1fr 1fr;align-items:start;} }
.split__col{display:grid;gap:14px;}
.split__col p{margin:0;color:var(--offer-ink-soft);font-size:1rem;}
.split__steps{list-style:none;display:grid;gap:10px;margin-top:6px;}
.split__steps li{
  display:flex;gap:10px;align-items:flex-start;
  font-size:.96rem;color:var(--offer-ink);
}
.split__steps li span{
  flex:none;width:24px;height:24px;border-radius:50%;
  background:var(--offer-accent);color:#fff;font-weight:700;font-size:.78rem;
  display:flex;align-items:center;justify-content:center;
}

.rate-table{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-md);
  overflow:hidden;
  background:#fff;
}
.rate-table__head{
  background:var(--offer-ink);
  color:#fff;
  padding:12px 16px;
  font-weight:700;
  font-size:.88rem;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.rate-table__row{
  display:flex;justify-content:space-between;gap:10px;
  padding:12px 16px;
  border-bottom:1px solid var(--offer-border);
  font-size:.95rem;
}
.rate-table__row:last-child{border-bottom:none;}
.rate-table__row--lead{background:var(--offer-highlight);font-weight:700;}
.rate-table__label{color:var(--offer-ink-soft);}
.rate-table__row--lead .rate-table__label{color:var(--offer-ink);}
.rate-table__value{font-weight:700;white-space:nowrap;}
.rate-table__foot{
  padding:12px 16px;font-size:.82rem;color:var(--offer-ink-soft);
  border-top:1px solid var(--offer-border);
}
.rate-table__math{
  margin-top:16px;
  padding:14px 16px;
  border:1px dashed var(--offer-border);
  border-radius:var(--radius-sm);
  font-size:.92rem;
  color:var(--offer-ink-soft);
  background:var(--offer-panel);
}
.rate-table__math strong{color:var(--offer-ink);}

/* dark note band */
.note-band{
  padding:40px 0;
  background:var(--offer-dark);
  color:#fdf9f4;
}
.note-band__inner{
  max-width:760px;margin:0 auto;
  text-align:center;
}
.note-band__kicker{
  font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:#ff9166;margin-bottom:14px;
}
.note-band__quote{
  font-family:var(--font-offer);
  font-weight:700;
  font-size:clamp(1.2rem,4vw,1.7rem);
  line-height:1.4;
}

/* pricing */
.pricing{
  display:grid;
  gap:20px;
}
@media (min-width:900px){
  .pricing{grid-template-columns:1.3fr 1fr;align-items:start;}
}
.price-spotlight{
  border-radius:var(--radius-lg);
  background:var(--offer-ink);
  color:#fff;
  padding:30px 26px;
  position:relative;
  box-shadow:var(--shadow-lg);
}
.price-spotlight__tag{
  position:absolute;top:-14px;left:26px;
  background:var(--offer-accent);
  color:#fff;
  font-size:.75rem;font-weight:800;
  text-transform:uppercase;letter-spacing:.05em;
  padding:6px 14px;border-radius:999px;
}
.price-spotlight__name{font-family:var(--font-offer);font-weight:800;font-size:1.5rem;margin-bottom:6px;}
.price-spotlight__price{font-size:clamp(2rem,7vw,2.8rem);font-weight:800;margin-bottom:4px;}
.price-spotlight__hours{font-size:.88rem;color:#cfc7ba;margin-bottom:18px;}
.price-spotlight__list{list-style:none;display:grid;gap:10px;margin-bottom:22px;}
.price-spotlight__list li{
  padding-left:26px;position:relative;font-size:.95rem;color:#efe9df;
}
.price-spotlight__list li::before{
  content:"✓";position:absolute;left:0;top:0;
  color:#ff9166;font-weight:800;
}

.price-others{display:grid;gap:14px;}
.price-card{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-md);
  padding:18px 20px;
  background:#fff;
}
.price-card__row{
  display:flex;justify-content:space-between;align-items:baseline;gap:10px;margin-bottom:6px;
}
.price-card__name{font-weight:700;font-size:1.02rem;}
.price-card__price{font-weight:800;font-size:1.15rem;color:var(--offer-accent-dark);white-space:nowrap;}
.price-card__hours{font-size:.8rem;color:var(--offer-ink-soft);margin-bottom:8px;}
.price-card__list{list-style:none;display:grid;gap:5px;}
.price-card__list li{
  font-size:.86rem;color:var(--offer-ink-soft);padding-left:16px;position:relative;
}
.price-card__list li::before{content:"–";position:absolute;left:0;}

/* add-ons */
.addons{
  display:grid;gap:14px;margin-top:8px;
}
@media (min-width:640px){ .addons{grid-template-columns:repeat(2,1fr);} }
@media (min-width:1024px){ .addons{grid-template-columns:repeat(4,1fr);} }
.addon-card{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-md);
  background:#fff;
  padding:16px;
  display:grid;gap:8px;
}
.addon-card__row{display:flex;justify-content:space-between;gap:8px;align-items:baseline;}
.addon-card__name{font-weight:700;font-size:.96rem;}
.addon-card__price{font-weight:800;color:var(--offer-accent-dark);white-space:nowrap;}
.addon-card__desc{font-size:.85rem;color:var(--offer-ink-soft);}

/* perks */
.perks{
  list-style:none;
  display:grid;gap:12px;
  margin-top:6px;
}
@media (min-width:768px){ .perks{grid-template-columns:1fr 1fr;} }
.perks li{
  display:flex;gap:10px;align-items:flex-start;
  background:#fff;
  border:1px solid var(--offer-border);
  border-radius:var(--radius-sm);
  padding:12px 14px;
  font-size:.93rem;
}
.perks li::before{
  content:"★";flex:none;color:var(--offer-accent);font-size:1rem;line-height:1.4;
}

/* limits / reality band (stat-like, honest) */
.limits{
  display:grid;gap:16px;
}
@media (min-width:768px){ .limits{grid-template-columns:repeat(3,1fr);} }
.limits__card{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-md);
  padding:20px;
  background:#fff;
}
.limits__stat{
  font-family:var(--font-offer);
  font-weight:800;
  font-size:1.7rem;
  color:var(--offer-accent-dark);
  margin-bottom:6px;
}
.limits__label{font-size:.92rem;color:var(--offer-ink-soft);}

/* faq */
.faq{max-width:760px;margin:0 auto;display:grid;gap:10px;}
.faq-item{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-sm);
  background:#fff;
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:16px 18px;
  font-weight:700;
  font-size:.98rem;
  display:flex;justify-content:space-between;align-items:center;gap:10px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  font-size:1.3rem;font-weight:400;color:var(--offer-accent);flex:none;
}
.faq-item[open] summary::after{content:"–";}
.faq-item__body{
  padding:0 18px 18px;
  font-size:.94rem;
  color:var(--offer-ink-soft);
}

/* lead form */
.lead{
  background:var(--offer-panel);
  border-radius:var(--radius-lg);
  padding:26px 20px;
  max-width:640px;
  margin:0 auto;
}
.lead__title{font-family:var(--font-offer);font-weight:800;font-size:1.4rem;margin-bottom:8px;}
.lead__sub{font-size:.95rem;color:var(--offer-ink-soft);margin-bottom:20px;}
.lead__grid{display:grid;gap:14px;}
@media (min-width:600px){
  .lead__grid--pair{grid-template-columns:1fr 1fr;}
}
.field{display:grid;gap:6px;}
.field label{font-size:.86rem;font-weight:700;color:var(--offer-ink);}
.field input,.field textarea{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-sm);
  padding:12px 14px;
  font-size:1rem;
  min-height:48px;
  background:#fff;
  color:var(--offer-ink);
  width:100%;
}
.field textarea{min-height:96px;resize:vertical;}
.field--consent{
  display:flex;flex-direction:row;align-items:flex-start;gap:10px;
}
.field--consent input{width:22px;height:22px;min-height:0;flex:none;margin-top:2px;}
.field--consent label{font-weight:500;font-size:.88rem;}
.field__error{
  display:none;
  color:#b0261a;
  font-size:.82rem;
  font-weight:600;
}
.field--invalid input,.field--invalid textarea{border-color:#b0261a;}
.field--invalid .field__error{display:block;}
.lead__submit{width:100%;margin-top:6px;}
.lead__success{
  display:none;
  margin-top:16px;
  padding:14px 16px;
  background:#e7f5ea;
  border:1px solid #b7dec1;
  border-radius:var(--radius-sm);
  color:#1c5a2c;
  font-weight:600;
  font-size:.94rem;
}
.lead__success--visible{display:block;}
.lead__form--hidden{display:none;}

/* offer media blocks */
.media-block{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.media-block img{width:100%;object-fit:cover;}
.media-caption{
  margin-top:10px;
  font-size:.85rem;
  color:var(--offer-ink-soft);
  text-align:center;
}
.media-block--narrow{max-width:760px;margin:0 auto;}

.addons__title{
  margin:32px 0 6px;
  font-family:var(--font-offer);
  font-weight:800;
  font-size:1.2rem;
}

/* =======================================================================
   5. Legal pages (offer family, no stock media)
   ======================================================================= */
.legal{
  max-width:760px;
  margin:0 auto;
  padding:36px 16px 8px;
}
.legal__title{
  font-family:var(--font-offer);
  font-weight:800;
  font-size:clamp(1.6rem,5vw,2.3rem);
  margin-bottom:8px;
  letter-spacing:-0.01em;
}
.legal__updated{font-size:.85rem;color:var(--offer-ink-soft);margin-bottom:26px;}
.legal__section{margin-bottom:26px;}
.legal__section h2{font-size:1.15rem;font-weight:700;margin-bottom:10px;}
.legal__section p{margin:0 0 12px;color:var(--offer-ink-soft);font-size:.98rem;}
.legal__section ul{margin:0 0 12px;padding-left:20px;color:var(--offer-ink-soft);font-size:.98rem;}
.legal__section li{margin-bottom:6px;}
.legal__section a{color:var(--offer-accent-dark);font-weight:600;}

.contact-grid{
  display:grid;gap:16px;margin-bottom:28px;
}
@media (min-width:640px){ .contact-grid{grid-template-columns:1fr 1fr;} }
.contact-card{
  border:1px solid var(--offer-border);
  border-radius:var(--radius-md);
  padding:18px 20px;
  background:var(--offer-panel);
}
.contact-card h2{font-size:1rem;font-weight:700;margin-bottom:8px;}
.contact-card p{margin:0;font-size:.95rem;color:var(--offer-ink-soft);}
.contact-card a{color:var(--offer-accent-dark);font-weight:600;text-decoration:none;}

/* =======================================================================
   6. Shared: disclaimer + footer
   ======================================================================= */
.site-disclaimer{
  display:block;
  max-width:1120px;
  margin:0 auto;
  padding:22px 16px;
  font-size:.88rem;
  line-height:1.6;
  color:#3a352c;
  background:#fbf3e6;
  border-top:1px solid #eddcb8;
  border-bottom:1px solid #eddcb8;
}
.site-disclaimer a{color:#8a4a12;font-weight:700;}
.site-disclaimer p{margin:0 0 8px;}
.site-disclaimer p:last-child{margin-bottom:0;}

.site-footer{
  background:#171410;
  color:#d8d2c6;
  padding:30px 0 36px;
}
.site-footer__inner{
  max-width:1120px;margin:0 auto;padding:0 16px;
  display:grid;gap:20px;
}
.site-footer__company{
  font-size:.86rem;
  line-height:1.7;
  white-space:pre-line;
  color:#c8c1b3;
}
.site-footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  list-style:none;
  font-size:.9rem;
  font-weight:600;
}
.site-footer__links a{
  color:#fdf9f4;
  text-decoration:none;
  padding:6px 0;
  display:inline-block;
}
.site-footer__links a:hover{color:var(--offer-accent);text-decoration:underline;}

/* =======================================================================
   7. Responsive refinements
   ======================================================================= */
@media (min-width:768px){
  .article{padding-top:40px;}
  .section{padding:64px 0;}
  .note-band{padding:64px 0;}
}
@media (min-width:1024px){
  .offer-hero{padding:56px 0 60px;}
  .section{padding:80px 0;}
}
