/* =========================================================================
   Base / shared
   ========================================================================= */
:root{
  --gap-s: .5rem;
  --gap-m: 1rem;
  --gap-l: 2rem;
  --radius: 10px;
}

*{ box-sizing: border-box; }

html{ -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

img, video{ max-width: 100%; height: auto; display: block; }

a{ color: var(--accent); }

.wrap{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px){
  .wrap{ padding: 0 32px; }
}

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

button, .btn{
  font-family: inherit;
  cursor: pointer;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:focus-visible{ outline: 3px solid #fff; outline-offset: 2px; box-shadow: 0 0 0 5px rgba(0,0,0,.35); }

.btn--block{ width: 100%; }

/* generic section rhythm */
section{ padding: 2.5rem 0; }
@media (min-width: 768px){ section{ padding: 4.5rem 0; } }

hr.divider{
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* =========================================================================
   Site header (shared shell, themed by body class)
   ========================================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}
.site-header__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}
.brand{
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.brand__mark{
  display: inline-block;
  width: 1.2em; height: 1.2em;
  border-radius: 6px;
  background: var(--accent);
  flex: none;
}

.nav-toggle-input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.nav-toggle svg{ display: block; }
.main-nav{
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  z-index: 39;
}
.main-nav ul{
  list-style: none;
  margin: 0; padding: .5rem 16px 1rem;
  display: flex;
  flex-direction: column;
}
.main-nav a{
  display: block;
  padding: .8rem .25rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  min-height: 44px;
}
.main-nav a:hover, .main-nav a:focus-visible{ color: var(--accent); }
.nav-toggle-input:checked ~ .main-nav{ max-height: 400px; }

@media (min-width: 768px){
  .nav-toggle{ display: none !important; }
  .nav-toggle-input{ display: none !important; }
  .main-nav{
    position: static;
    max-height: none;
    overflow: visible;
    background: none;
    border: none;
  }
  .main-nav ul{
    flex-direction: row;
    padding: 0;
    gap: 1.75rem;
  }
  .main-nav a{
    border: none;
    padding: .4rem .1rem;
    min-height: auto;
  }
}

.header-cta{ display: none; }
@media (min-width: 1024px){
  .header-cta{ display: inline-flex; }
}
@media (min-width: 768px){
  .main-nav ul{ gap: 1.1rem; }
  .brand{ font-size: 1.1rem; }
}
@media (min-width: 1024px){
  .main-nav ul{ gap: 1.75rem; }
  .brand{ font-size: 1.2rem; }
}

/* =========================================================================
   PUBLICATION theme (advertorial + about)
   ========================================================================= */
body.pub{
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #1b2321;
  --muted: #565f5c;
  --accent: #0d6b57;
  --accent-ink: #ffffff;
  --line: #e4e1d8;
  --header-bg: #ffffff;
  --ribbon-bg: #eaf2ef;
}

body.pub .btn--primary{
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 16px rgba(13,107,87,.25);
}
body.pub .btn--primary:hover{ background: #0a5645; }
body.pub .btn--ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.ribbon{
  background: var(--ribbon-bg);
  color: var(--muted);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem 1rem;
  font-weight: 700;
}

.notice-bar{
  background: var(--ribbon-bg);
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
}
.notice-bar .wrap{
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start;
}
.notice-bar p{ margin: 0; font-weight: 600; color: var(--ink); font-size: .95rem; }
@media (min-width: 768px){
  .notice-bar .wrap{ flex-direction: row; align-items: center; justify-content: space-between; }
}

.article-head{ padding: 2rem 0 1rem; }
.article-head h1{
  font-size: clamp(1.7rem, 5.4vw, 2.85rem);
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 1rem;
  font-weight: 800;
}
.byline{
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .9rem;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1.4rem;
}
.byline strong{ color: var(--ink); }
.verdict-badge{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

article .lead{
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
article p{ margin: 0 0 1.15rem; color: var(--ink); }
article h2{
  font-size: clamp(1.35rem, 3.6vw, 1.9rem);
  margin: 2.4rem 0 1rem;
  letter-spacing: -.01em;
  font-weight: 800;
}
article h3{
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  margin: 1.8rem 0 .8rem;
  font-weight: 700;
}

.media-frame{ margin: 1.6rem 0; }
.media-frame img, .media-frame video{
  width: 100%;
  border-radius: var(--radius);
  background: #ddd;
}
.media-frame figcaption{
  font-size: .85rem;
  color: var(--muted);
  margin-top: .5rem;
  text-align: center;
}
.media-frame--video video{ aspect-ratio: 16/10; object-fit: cover; }

.reasons{
  margin: 1.6rem 0;
  padding: 0;
  list-style: none;
  counter-reset: reasons;
}
.reasons li{
  counter-increment: reasons;
  position: relative;
  padding: .1rem 0 .1rem 3rem;
  margin-bottom: 1.1rem;
}
.reasons li::before{
  content: counter(reasons);
  position: absolute;
  left: 0; top: -.1rem;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons strong{ display: block; margin-bottom: .15rem; }

.pull-quote{
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(20,30,28,.06);
}
.pull-quote p{
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .5rem;
  line-height: 1.35;
}
.pull-quote small{ color: var(--muted); font-size: .85rem; font-weight: 600; }

.callout{
  background: #102b25;
  color: #f2f7f5;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  margin: 2.2rem 0;
}
.callout .kicker{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 800;
  color: #7fe0c4;
  margin-bottom: .6rem;
}
.callout h3{ color: #fff; margin-top: 0; }
.callout p{ color: #d8e6e1; margin-bottom: .8rem; }

.steps{
  list-style: none;
  margin: 1.4rem 0;
  padding: 0;
  counter-reset: steps;
  display: grid;
  gap: 1rem;
}
.steps li{
  counter-increment: steps;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 1rem 1rem 1rem 3.2rem;
  position: relative;
}
.steps li::before{
  content: counter(steps);
  position: absolute;
  left: 1rem; top: 1rem;
  font-weight: 800;
  color: #7fe0c4;
}
.steps li strong{ display: block; color: #fff; margin-bottom: .2rem; }
.steps li span{ color: #cfe3dd; font-size: .95rem; }

.deliverables-list{
  list-style: none;
  margin: 1.4rem 0;
  padding: 0;
  display: grid;
  gap: .8rem;
}
@media (min-width: 480px){ .deliverables-list{ grid-template-columns: 1fr 1fr; } }
.deliverables-list li{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1rem 1rem 2.6rem;
  position: relative;
  font-weight: 600;
}
.deliverables-list li::before{
  content: "✓";
  position: absolute; left: 1rem; top: 1rem;
  color: var(--accent);
  font-weight: 900;
}

.faq-list{ margin: 1.4rem 0; }
.faq-list details{
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .2rem 1rem;
  margin-bottom: .7rem;
  background: var(--surface);
}
.faq-list summary{
  cursor: pointer;
  font-weight: 700;
  padding: .9rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list summary::after{ content: "+"; font-size: 1.4rem; color: var(--accent); flex: none; }
.faq-list details[open] summary::after{ content: "–"; }
.faq-list details p{ margin: 0 0 1rem; color: var(--muted); }

.compare-table-wrap{ overflow-x: auto; margin: 1.4rem 0; }
table.compare-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
table.compare-table th, table.compare-table td{
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
table.compare-table thead th{
  background: var(--ribbon-bg);
  font-weight: 800;
}
table.compare-table tbody tr:last-child td{ border-bottom: none; }

.cta-band{
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2.4rem 0;
}
.cta-band h3{ color: #fff; margin-top: 0; font-size: clamp(1.3rem, 3.4vw, 1.7rem); }
.cta-band p{ color: rgba(255,255,255,.9); }
.cta-band .btn{ background: #fff; color: var(--accent); margin-top: .5rem; }
.cta-band .btn:hover{ background: #f2f2f2; }

.site-disclaimer{
  display: block;
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding: 1.2rem 16px;
  font-size: .88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-disclaimer a{ font-weight: 600; }

.site-footer{
  background: var(--footer-bg, #14201c);
  color: #cfd8d4;
  padding: 2.4rem 0 2rem;
  margin-top: 1.5rem;
}
.site-footer__company{
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.site-footer__company strong{ color: #fff; display: block; margin-bottom: .3rem; font-size: 1rem; }
.site-footer__links{ border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.2rem; }
.site-footer__links ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.4rem;
}
.site-footer__links a{
  color: #eef4f1;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.site-footer__links a:hover{ text-decoration: underline; }
body.pub .site-footer{ --footer-bg: #14201c; }
body.offer .site-footer{ --footer-bg: #16131f; }

/* sticky mobile CTA */
.sticky-cta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  padding: .8rem 16px;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
.sticky-cta p{ margin: 0; font-size: .85rem; flex: 1; font-weight: 600; }
.sticky-cta .btn{ flex: none; padding: .7rem 1.1rem; font-size: .9rem; min-height: 44px; }
.sticky-cta__close{
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  width: 32px; height: 32px;
  flex: none;
  order: 3;
}
.sticky-cta.is-hidden{ display: none; }
body.has-sticky-cta{ padding-bottom: 76px; }
@media (min-width: 1024px){
  .sticky-cta{ display: none; }
  body.has-sticky-cta{ padding-bottom: 0; }
}

/* =========================================================================
   OFFER theme (training + legal pages)
   ========================================================================= */
body.offer{
  --bg: #f3efe6;
  --surface: #ffffff;
  --ink: #191621;
  --muted: #625d6d;
  --accent: #5b3df0;
  --accent-2: #a83c7c;
  --accent-ink: #ffffff;
  --line: #e4ded0;
  --header-bg: rgba(243,239,230,.92);
}
body.offer .btn--primary{
  background: var(--ink);
  color: #fff;
}
body.offer .btn--primary:hover{ background: #000; }
body.offer .btn--ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.hero-offer{
  position: relative;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(25,22,33,.16) 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 3rem 0 2.5rem;
  text-align: center;
  overflow: hidden;
}
.hero-offer__kicker{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-offer h1{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.hero-offer h1 mark{
  background: linear-gradient(100deg, #d9cdfa, #f4c9e4);
  color: var(--ink);
  padding: 0 .15em;
  border-radius: 4px;
}
.hero-offer .subhead{
  max-width: 640px;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}
.hero-offer h2.hero-sub{
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 1.4rem;
}
.hero-offer .btn{ margin: 0 auto; }
.trust-row{
  list-style: none;
  margin: 1.6rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 600;
}
.trust-row li::before{ content: "✓ "; color: var(--accent); font-weight: 800; }

.hero-visual{
  max-width: 760px;
  margin: 2.4rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(30,20,50,.18);
  border: 1px solid rgba(0,0,0,.06);
}
.hero-visual__bar{
  background: #232030;
  padding: .6rem .9rem;
  display: flex;
  gap: .4rem;
}
.hero-visual__bar span{
  width: 11px; height: 11px; border-radius: 50%;
  background: #55506a;
}
.hero-visual__bar span:nth-child(1){ background: #ec6a5e; }
.hero-visual__bar span:nth-child(2){ background: #f4bf4f; }
.hero-visual__bar span:nth-child(3){ background: #61c454; }
.hero-visual img{ width: 100%; }

section.on-surface{ background: var(--surface); }
section.on-bg{ background: var(--bg); }

.section-kicker{
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .6rem;
}
.section-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.2rem;
}
.section-head h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4.6vw, 2.4rem);
  margin: 0 0 .7rem;
  font-weight: 700;
}
.section-head p{ color: var(--muted); margin: 0; }

.deliverable-grid{
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0; padding: 0;
}
@media (min-width: 768px){ .deliverable-grid{ grid-template-columns: repeat(3, 1fr); } }
.deliverable-grid li{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}
.deliverable-grid li strong{ display: block; font-size: 1.05rem; margin-bottom: .5rem; }
.deliverable-grid li span{ color: var(--muted); font-size: .92rem; }

.rate-band{
  background: var(--ink);
  border-radius: 18px;
  padding: 2.2rem 1.4rem;
  display: grid;
  gap: 1.6rem;
  text-align: center;
}
@media (min-width: 640px){ .rate-band{ grid-template-columns: repeat(4, 1fr); } }
.rate-band__figure{
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .3rem;
  font-family: Georgia, "Times New Roman", serif;
}
.rate-band__label{
  color: #cabffa;
  font-size: .85rem;
  margin: 0;
}
.rate-band__note{
  grid-column: 1 / -1;
  color: #9990b3;
  font-size: .8rem;
  margin-top: .4rem;
}

.leverage-band{
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 20px;
  padding: 2.4rem 1.6rem;
  text-align: center;
}
.leverage-band .section-kicker{ color: #fbe6f4; }
.leverage-band h2{
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4.4vw, 2.2rem);
  margin: 0 0 1rem;
}
.leverage-band p{
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,.94);
  font-size: 1.05rem;
}

.feature-grid{
  display: grid;
  gap: 1.2rem;
  list-style: none;
  margin: 0; padding: 0;
}
@media (min-width: 768px){ .feature-grid{ grid-template-columns: 1fr 1fr; } }
.feature-grid li{
  border-radius: 16px;
  padding: 1.6rem;
  color: #fff;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.feature-grid li strong{ font-size: 1.1rem; margin-bottom: .4rem; display: block; }
.feature-grid li span{ font-size: .92rem; color: rgba(255,255,255,.92); }
.feature-grid li:nth-child(5n+1){ background: linear-gradient(135deg,#4a30c4,#6b4ce0); }
.feature-grid li:nth-child(5n+2){ background: linear-gradient(135deg,#a4327e,#c94393); }
.feature-grid li:nth-child(5n+3){ background: linear-gradient(135deg,#1b1730,#362d5e); }
.feature-grid li:nth-child(5n+4){ background: linear-gradient(135deg,#1f6f62,#2c8a76); }
.feature-grid li:nth-child(5n+5){ background: linear-gradient(135deg,#a15a17,#c67d29); }

.video-section .media-frame{ max-width: 760px; margin: 0 auto; }
.video-section .media-frame video{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 640px){
  .video-section .media-frame video{ aspect-ratio: 16/9; }
}
.video-section figcaption{ text-align: center; color: var(--muted); margin-top: .8rem; font-size: .9rem; }

.audience-media{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.audience-media img{ border-radius: 16px; }
.audience-media figcaption{ color: var(--muted); margin-top: .8rem; font-size: .9rem; }

.quote-card{
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(30,20,50,.08);
}
.quote-card blockquote{
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--ink);
}
.quote-card cite{
  font-style: normal;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.pricing{ max-width: 720px; margin: 0 auto; }
.pricing-card{
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(30,20,50,.14);
}
.pricing-card__head{
  background: var(--ink);
  color: #fff;
  padding: 1.6rem 1.6rem 1.4rem;
  text-align: center;
}
.pricing-card__note{ margin: .3rem 0 0; color: #cabffa; font-size: .92rem; }
.pricing-card__price{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  margin: .4rem 0 0;
  color: #fff;
}
table.price-table{
  width: 100%;
  border-collapse: collapse;
}
table.price-table td, table.price-table th{
  padding: .9rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  text-align: left;
}
table.price-table tbody tr:last-child td{ border-bottom: none; }
table.price-table td:first-child{ font-weight: 600; }
table.price-table td:last-child{ text-align: right; color: var(--accent); font-weight: 700; }
.pricing-card__cta{ padding: 1.4rem 1.6rem 1.8rem; text-align: center; }
.pricing-card__cta .btn{ width: 100%; }

.addon-list{
  list-style: none;
  margin: 1.4rem 0 0; padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 640px){ .addon-list{ grid-template-columns: 1fr 1fr; } }
.addon-list li{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.addon-list .addon-name{ font-weight: 700; }
.addon-list .addon-price{ color: var(--accent); font-weight: 800; font-size: 1.1rem; }
.addon-list .addon-desc{ color: var(--muted); font-size: .9rem; margin: 0; }

.perk-list{
  list-style: none;
  margin: 1.4rem auto 0; padding: 0;
  max-width: 640px;
  display: grid;
  gap: .8rem;
}
.perk-list li{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .9rem 1rem .9rem 2.6rem;
  position: relative;
  font-weight: 600;
  font-size: .95rem;
}
.perk-list li::before{
  content: "★";
  position: absolute; left: .9rem; top: .85rem;
  color: var(--accent);
}

.limits-block{
  background: var(--surface);
  border: 1px dashed var(--muted);
  border-radius: 16px;
  padding: 1.8rem;
  max-width: 760px;
  margin: 0 auto;
}
.limits-block h2{ margin-top: 0; }
.limits-block ul{ margin: 0; padding-left: 1.2rem; color: var(--muted); }
.limits-block li{ margin-bottom: .5rem; }

.lead-form{
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem;
}
.lead-form .field{ margin-bottom: 1.1rem; }
.lead-form label{
  display: block;
  font-weight: 700;
  margin-bottom: .35rem;
  font-size: .92rem;
}
.lead-form input, .lead-form textarea{
  width: 100%;
  font-size: 16px;
  padding: .75rem .9rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
}
.lead-form input:focus, .lead-form textarea:focus{
  outline: 3px solid var(--accent);
  outline-offset: 1px;
}
.lead-form .form-row{ display: grid; gap: 1.1rem; }
@media (min-width: 560px){ .lead-form .form-row--two{ grid-template-columns: 1fr 1fr; } }
.lead-form .consent{
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.lead-form .consent input{ width: 20px; height: 20px; flex: none; margin-top: .1rem; }
.lead-success{
  display: none;
  background: #eef7ee;
  border: 1px solid #bfe3bf;
  color: #1c4a24;
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.2rem;
  font-weight: 600;
}
.lead-success:target{ display: block; }

.faq-offer{ max-width: 760px; margin: 0 auto; }

/* legal / prose pages inside offer chrome */
.legal-hero{
  padding: 2.6rem 0 1.6rem;
  text-align: left;
}
.legal-hero h1{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 5.5vw, 2.6rem);
  margin: 0 0 .6rem;
}
.legal-hero p{ color: var(--muted); margin: 0; }
.legal-body{ max-width: 760px; }
.legal-body h2{ font-size: clamp(1.2rem, 3vw, 1.5rem); margin: 2rem 0 .8rem; }
.legal-body p, .legal-body li{ color: var(--ink); }
.legal-body ul{ padding-left: 1.2rem; }
.legal-body a{ font-weight: 600; }

.about-body{ max-width: 760px; }
.about-body p{ margin-bottom: 1.1rem; }
