/* ==========================================================================
   True Herald Desk / Le Passage Commerce — site overrides on top of Bootstrap 5
   Mobile-first. Breakpoints at 480px, 768px, 1024px.
   ========================================================================== */

:root{
  --pub-navy: #101b34;
  --pub-navy-2: #16224a;
  --pub-red: #c8102e;
  --pub-green: #2c7a39;
  --pub-green-dark: #205c2a;
  --pub-ink: #17181a;
  --pub-muted: #55585f;
  --pub-border: #e3e2dd;
  --pub-bg: #ffffff;
  --pub-paper: #faf9f6;

  --offer-bg: #f6f4ee;
  --offer-surface: #ffffff;
  --offer-ink: #16150f;
  --offer-muted: #625f54;
  --offer-border: #e4e0d4;
  --offer-accent: #b8531f;
  --offer-accent-dark: #8f3f16;
  --offer-accent-soft: #f1e3d6;
  --offer-dark: #1c1a14;
  --offer-dark-2: #26241c;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body{
  margin: 0;
  color: var(--pub-ink);
  background: var(--pub-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

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

a{ text-decoration: none; }

.skip-link{
  position: absolute;
  left: 8px;
  top: -48px;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 2000;
  transition: top .15s ease;
}
.skip-link:focus{ top: 8px; color: #fff; }

:focus-visible{
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

.container-narrow{
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==========================================================================
   Cookie banner (shared, all pages)
   ========================================================================== */
.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: #101010;
  color: #f2f0ea;
  padding: 16px;
  display: none;
  box-shadow: 0 -4px 18px rgba(0,0,0,.25);
}
.cookie-banner.is-visible{ display: block; }
.cookie-banner__inner{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-banner p{ margin: 0; font-size: .92rem; line-height: 1.5; }
.cookie-banner a{ color: #ffd39a; text-decoration: underline; }
.cookie-banner__actions{ display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn{ min-height: 44px; }
@media (min-width: 768px){
  .cookie-banner__inner{ flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner p{ flex: 1; }
}
body.has-cookie-banner{ padding-bottom: 132px; }
@media (min-width: 768px){ body.has-cookie-banner{ padding-bottom: 88px; } }

/* ==========================================================================
   Disclaimer + Footer (shared shape, themed per family below)
   ========================================================================== */
.site-disclaimer{
  display: block;
  padding: 28px 16px;
  font-size: .92rem;
  line-height: 1.6;
}
.site-disclaimer p{ max-width: 900px; margin: 0 auto 8px; }
.site-disclaimer a{ text-decoration: underline; font-weight: 600; }

.site-footer{ padding: 28px 16px 36px; }
.site-footer__inner{ max-width: 1080px; margin: 0 auto; }
.site-footer__company{
  font-size: .88rem;
  line-height: 1.7;
  white-space: pre-line;
  margin-bottom: 18px;
}
.site-footer__links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links a{
  font-size: .95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 600px){
  .site-footer__links{ flex-direction: row; flex-wrap: wrap; gap: 20px; }
}

/* ==========================================================================
   PUBLICATION FAMILY (advertorial + about)
   ========================================================================== */
body.pub{ background: var(--pub-bg); }

.pub-topbar{
  background: var(--pub-navy);
  color: #fff;
  padding: 14px 16px;
}
.pub-topbar__inner{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pub-topbar__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: clamp(.85rem, 2vw + .5rem, 1.15rem);
  text-transform: uppercase;
  color: #fff;
}
.pub-topbar__brand svg{ flex-shrink: 0; }
.pub-topbar__date{ font-size: .85rem; opacity: .85; }

.pub-ticker{
  background: var(--pub-red);
  color: #fff;
  padding: 10px 16px;
}
.pub-ticker__inner{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pub-ticker__label{
  flex-shrink: 0;
  background: #fff;
  color: var(--pub-red);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
  padding: 4px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.pub-ticker__text{
  font-size: .85rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pub-article{
  max-width: 780px;
  margin: 0 auto;
  padding: 28px 16px 8px;
}

.pub-category{
  display: inline-block;
  background: var(--pub-red);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.pub-h1{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(1.7rem, 5vw + .6rem, 2.75rem);
  color: var(--pub-ink);
  margin: 0 0 16px;
}

.pub-subhead{
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw + .8rem, 1.3rem);
  color: #33353a;
  line-height: 1.5;
  margin: 0 0 20px;
  font-weight: 600;
}

.pub-byline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--pub-border);
  border-bottom: 1px solid var(--pub-border);
  padding: 14px 0;
  margin-bottom: 24px;
}
.pub-byline__who{ display: flex; align-items: center; gap: 10px; }
.pub-byline__avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pub-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.pub-byline__name{ font-weight: 700; font-size: .95rem; }
.pub-byline__date{ font-size: .82rem; color: var(--pub-muted); }
.pub-byline__actions{ display: flex; gap: 8px; }
.pub-share-btn{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--pub-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--pub-ink);
  background: #fff;
  transition: background .15s ease, transform .15s ease;
}
.pub-share-btn:hover{ background: var(--pub-paper); transform: translateY(-1px); }

.pub-hero-media{ margin: 0 0 24px; }
.pub-hero-media img{ width: 100%; border-radius: var(--radius-md); }
.pub-hero-media figcaption{
  font-size: .8rem;
  color: var(--pub-muted);
  margin-top: 8px;
}

.pub-body{ font-size: 1.05rem; line-height: 1.75; color: #26272b; }
.pub-body p{ margin: 0 0 18px; }
.pub-lede{ font-weight: 700; font-size: 1.15rem; }
.pub-body h2{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 2.2vw + .8rem, 1.85rem);
  margin: 36px 0 16px;
  line-height: 1.25;
  color: var(--pub-ink);
}
.pub-body strong{ color: var(--pub-ink); }
.pub-inline-link{ color: var(--pub-red); font-weight: 700; text-decoration: underline; }

.pub-inline-figure{ margin: 24px 0; }
.pub-inline-figure img{ width: 100%; border-radius: var(--radius-md); }
.pub-inline-figure figcaption{ font-size: .8rem; color: var(--pub-muted); margin-top: 8px; }

.myth-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
@media (min-width: 600px){
  .myth-grid{ grid-template-columns: 1fr 1fr; }
}
.myth-card{
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--pub-border);
}
.myth-card--myth{ background: #fdeeee; border-color: #f4c9c9; }
.myth-card--fact{ background: #eaf5ec; border-color: #bfe2c6; }
.myth-card__tag{
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.myth-card--myth .myth-card__tag{ background: var(--pub-red); color: #fff; }
.myth-card--fact .myth-card__tag{ background: var(--pub-green); color: #fff; }
.myth-card p{ margin: 0; font-size: .96rem; line-height: 1.55; }

.pub-aside-rates{
  border: 2px solid var(--pub-navy);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 28px 0;
  background: var(--pub-paper);
}
.pub-aside-rates__title{
  display: inline-block;
  background: var(--pub-navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.rates-table{ width: 100%; border-collapse: collapse; font-size: .92rem; }
.rates-table th, .rates-table td{
  text-align: left;
  padding: 9px 8px;
  border-bottom: 1px solid var(--pub-border);
}
.rates-table th{ font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; color: var(--pub-muted); }
.rates-table tr:last-child td{ border-bottom: none; }
.pub-aside-rates__note{ font-size: .78rem; color: var(--pub-muted); margin: 12px 0 0; }

.pub-callout-band{
  background: var(--pub-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  margin: 32px 0;
}
.pub-callout-band__kicker{
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9fb2df;
  margin-bottom: 10px;
}
.pub-callout-band h2{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.3rem, 2vw + .8rem, 1.7rem);
  margin: 0 0 12px;
  color: #fff;
}
.pub-callout-band p{ margin: 0; line-height: 1.65; color: #dfe6f6; font-size: 1rem; }

.pub-video-embed{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px 0 18px;
  background: #000;
}
.pub-video-embed .ratio{ background: #000; }
.pub-video-embed__play{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pub-video-embed__play span{
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(200,16,46,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.pub-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pub-green);
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  min-height: 48px;
  transition: background .15s ease, transform .15s ease;
  width: 100%;
}
.pub-cta-btn:hover{ background: var(--pub-green-dark); transform: translateY(-1px); color: #fff; }
@media (min-width: 500px){ .pub-cta-btn{ width: auto; } }
.pub-cta-wrap{ text-align: center; margin: 8px 0 32px; }
.pub-cta-sub{ font-size: .82rem; color: var(--pub-muted); margin-top: 10px; }

.pub-compare-wrap{ overflow-x: auto; margin: 24px 0 32px; -webkit-overflow-scrolling: touch; }
.pub-compare-table{ width: 100%; min-width: 480px; border-collapse: collapse; font-size: .92rem; }
.pub-compare-table caption{ text-align: left; font-weight: 700; margin-bottom: 10px; }
.pub-compare-table th, .pub-compare-table td{ padding: 12px 10px; border: 1px solid var(--pub-border); vertical-align: top; }
.pub-compare-table thead th{ background: var(--pub-navy); color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.pub-compare-table tbody th{ text-align: left; background: var(--pub-paper); font-weight: 700; }

.pub-checklist{ list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; }
.pub-checklist li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .98rem;
  line-height: 1.55;
}
.pub-checklist li::before{
  content: "✓";
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pub-green);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.pub-expert-box{
  display: flex;
  gap: 16px;
  border-left: 4px solid var(--pub-red);
  background: var(--pub-paper);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px;
  margin: 8px 0 32px;
  flex-direction: column;
}
.pub-expert-box__avatar{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pub-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pub-expert-box__name{ font-weight: 700; margin-bottom: 4px; }
.pub-expert-box__body p{ margin: 0 0 8px; font-size: .92rem; line-height: 1.6; color: #33353a; }
@media (min-width: 560px){ .pub-expert-box{ flex-direction: row; } }

.pub-sources{
  font-size: .74rem;
  color: var(--pub-muted);
  line-height: 1.7;
  border-top: 1px solid var(--pub-border);
  padding-top: 16px;
  margin-bottom: 24px;
}
.pub-sources p{ margin: 0 0 4px; word-break: break-word; }

.pub-disclaimer, body.pub .site-disclaimer{
  background: var(--pub-paper);
  color: #3a3c41;
  border-top: 1px solid var(--pub-border);
}
body.pub .site-footer{
  background: var(--pub-navy);
  color: #cfd6e8;
}
body.pub .site-footer__company{ color: #fff; }
body.pub .site-footer__links a{ color: #cfd6e8; }
body.pub .site-footer__links a:hover{ color: #fff; }

/* about (publication family) page */
.pub-page-header{
  max-width: 780px;
  margin: 0 auto;
  padding: 36px 16px 8px;
}
.pub-page-header h1{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.8rem, 4vw + .6rem, 2.6rem);
  margin: 0 0 14px;
}
.pub-page-header p{ color: var(--pub-muted); font-size: 1.02rem; line-height: 1.6; }

/* ==========================================================================
   OFFER FAMILY (the-program + legal pages)
   ========================================================================== */
body.offer{ background: var(--offer-bg); color: var(--offer-ink); }

.offer-nav{
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(246,244,238,.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--offer-border);
}
.offer-nav__inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.offer-nav__brand{
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  color: var(--offer-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.offer-nav__toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--offer-border);
  background: #fff;
}
.offer-nav__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  order: 3;
}
.offer-nav__links.is-open{ display: flex; }
.offer-nav__links a{
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 4px;
  color: var(--offer-ink);
  font-size: .96rem;
  border-bottom: 1px solid var(--offer-border);
}
.offer-nav__actions{ display: flex; align-items: center; gap: 10px; }
.offer-nav .btn-accent{ display: none; }
@media (min-width: 860px){
  .offer-nav__toggle{ display: none; }
  .offer-nav__links{
    display: flex !important;
    flex-direction: row;
    width: auto;
    order: 2;
    gap: 22px;
  }
  .offer-nav__links a{ border-bottom: none; min-height: auto; padding: 4px 0; }
  .offer-nav__inner{ flex-wrap: nowrap; }
  .offer-nav .btn-accent{ display: inline-flex; }
}

.btn-accent{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--offer-ink);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  min-height: 44px;
  border: none;
  transition: background .15s ease, transform .15s ease;
}
.btn-accent:hover{ background: #000; transform: translateY(-1px); }
.btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--offer-ink) !important;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  min-height: 44px;
  border: 1px solid var(--offer-ink);
  transition: background .15s ease, transform .15s ease;
}
.btn-ghost:hover{ background: rgba(0,0,0,.06); transform: translateY(-1px); }

.offer-hero{ padding: 48px 16px 32px; text-align: center; }
.offer-hero__inner{ max-width: 820px; margin: 0 auto; }
.offer-hero__kicker{
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--offer-accent-dark);
  background: var(--offer-accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.offer-hero h1{
  font-size: clamp(1.9rem, 6vw + .5rem, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.offer-hero__subtitle{
  font-size: clamp(1.05rem, 1.4vw + .8rem, 1.3rem);
  color: var(--offer-muted);
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 640px;
}
.offer-hero__ctas{ display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 36px; }
@media (min-width: 480px){ .offer-hero__ctas{ flex-direction: row; justify-content: center; } }

.offer-hero__panel{
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--offer-dark);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.4);
}
.offer-hero__panel-bar{
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #100f0b;
}
.offer-hero__panel-bar span{ width: 10px; height: 10px; border-radius: 50%; background: #4a473d; }
.offer-hero__panel-media{ position: relative; }
.offer-hero__panel-media img{ width: 100%; display: block; opacity: .92; }
.offer-hero__panel-caption{
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(20,18,12,.78);
  color: #fff;
  font-size: .82rem;
  padding: 8px 14px;
  border-radius: 999px;
}

.offer-section{ padding: 44px 16px; }
.offer-section--muted{ background: var(--offer-surface); border-top: 1px solid var(--offer-border); border-bottom: 1px solid var(--offer-border); }
.offer-section--dark{ background: var(--offer-dark); color: #f3f1e9; }
.offer-section--dark .offer-muted-text{ color: #c9c5b6; }
.offer-section__inner{ max-width: 1080px; margin: 0 auto; }

.section-kicker{
  display: block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--offer-accent-dark);
  margin-bottom: 10px;
}
.offer-section--dark .section-kicker{ color: #f0b489; }

.offer-h2{
  font-size: clamp(1.5rem, 3vw + .8rem, 2.2rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.18;
  margin: 0 0 16px;
}
.offer-lead{ font-size: 1.05rem; line-height: 1.65; color: var(--offer-muted); max-width: 720px; }
.offer-section--dark .offer-lead{ color: #d8d4c6; }

.rates-compact{
  border: 1px solid var(--offer-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  background: var(--offer-surface);
}
.rates-compact table{ width: 100%; border-collapse: collapse; font-size: .95rem; }
.rates-compact th, .rates-compact td{ padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--offer-border); }
.rates-compact thead th{ background: var(--offer-dark); color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.rates-compact tbody tr:last-child td{ border-bottom: none; }
.rates-compact tbody th{ text-align: left; font-weight: 700; }
.rates-compact__note{ font-size: .82rem; color: var(--offer-muted); margin-top: 14px; }

.split{ display: grid; gap: 28px; align-items: center; }
.split__media img, .split__media video{ border-radius: var(--radius-lg); width: 100%; }
.split__text h2{ margin-top: 0; }
@media (min-width: 860px){
  .split{ grid-template-columns: 1fr 1fr; gap: 48px; }
  .split--reverse .split__media{ order: 2; }
  .split--reverse .split__text{ order: 1; }
}

.ratio-frame{ position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.ratio-frame video{ width: 100%; height: 100%; object-fit: cover; }

.deliverable-grid{ display: grid; gap: 16px; margin-top: 26px; grid-template-columns: 1fr; }
@media (min-width: 640px){ .deliverable-grid{ grid-template-columns: repeat(3,1fr); } }
.deliverable-card{
  background: var(--offer-surface);
  border: 1px solid var(--offer-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.deliverable-card__num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--offer-accent-soft); color: var(--offer-accent-dark);
  font-weight: 800; margin-bottom: 12px;
}
.deliverable-card h3{ font-size: 1.05rem; margin: 0 0 8px; font-weight: 700; }
.deliverable-card p{ font-size: .92rem; color: var(--offer-muted); margin: 0; line-height: 1.55; }

.pricing-grid{ display: grid; gap: 20px; margin-top: 30px; grid-template-columns: 1fr; }
@media (min-width: 640px){ .pricing-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .pricing-grid{ grid-template-columns: repeat(4,1fr); } }
.price-card{
  background: var(--offer-surface);
  border: 1px solid var(--offer-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.price-card--highlight{
  border-color: var(--offer-accent);
  box-shadow: 0 20px 40px -24px rgba(184,83,31,.5);
  transform: translateY(-4px);
}
.price-card__badge{
  position: absolute;
  top: -13px; left: 22px;
  background: var(--offer-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card__name{ font-size: 1.15rem; font-weight: 800; margin: 0; }
.price-card__hours{ font-size: .82rem; color: var(--offer-muted); }
.price-card__price{ font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.price-card__list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; flex: 1; }
.price-card__list li{ font-size: .9rem; line-height: 1.45; padding-left: 22px; position: relative; }
.price-card__list li::before{
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--offer-accent-dark);
  font-weight: 800;
}
.price-card .btn-accent, .price-card .btn-ghost{ width: 100%; }

.addon-grid{ display: grid; gap: 16px; margin-top: 26px; grid-template-columns: 1fr; }
@media (min-width: 700px){ .addon-grid{ grid-template-columns: repeat(3,1fr); } }
.addon-card{
  background: var(--offer-surface);
  border: 1px solid var(--offer-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.addon-card__price{ font-weight: 800; font-size: 1.15rem; color: var(--offer-accent-dark); }
.addon-card h3{ font-size: 1rem; margin: 0; font-weight: 700; }
.addon-card p{ font-size: .9rem; color: var(--offer-muted); margin: 0; line-height: 1.5; }

.perks-stack{ list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.perks-stack li{
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--offer-surface);
  border: 1px solid var(--offer-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: .95rem;
  line-height: 1.5;
}
.perks-stack li::before{
  content: "★";
  flex-shrink: 0;
  color: var(--offer-accent);
  font-size: 1rem;
  margin-top: 2px;
}

.limits-block{
  background: var(--offer-surface);
  border: 1px dashed var(--offer-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  margin-top: 26px;
}
.limits-list{ list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 12px; }
.limits-list li{ font-size: .93rem; line-height: 1.55; padding-left: 20px; position: relative; color: #3a3830; }
.limits-list li::before{ content: "–"; position: absolute; left: 0; color: var(--offer-accent-dark); font-weight: 800; }

.lead-form-section{ padding: 44px 16px 56px; }
.lead-form-grid{ display: grid; gap: 30px; max-width: 1080px; margin: 0 auto; }
@media (min-width: 900px){ .lead-form-grid{ grid-template-columns: 1fr 1fr; align-items: start; } }
.lead-form{
  background: var(--offer-surface);
  border: 1px solid var(--offer-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.form-field{ display: grid; gap: 6px; }
.form-field label{ font-size: .9rem; font-weight: 700; }
.form-field input,
.form-field textarea{
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--offer-border);
  background: #fff;
  min-height: 44px;
  width: 100%;
  font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus{ border-color: var(--offer-accent); }
.form-row{ display: grid; gap: 16px; }
@media (min-width: 480px){ .form-row{ grid-template-columns: 1fr 1fr; } }
.form-error{ font-size: .82rem; color: #b3261e; min-height: 1.1em; }
.form-consent{ display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; line-height: 1.5; }
.form-consent input{ margin-top: 4px; width: 20px; height: 20px; flex-shrink: 0; }
.lead-form .btn-accent{ width: 100%; font-size: 1.02rem; padding: 14px; }
.form-success{
  display: none;
  background: #eaf5ec;
  border: 1px solid #bfe2c6;
  color: #1f5a2a;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  line-height: 1.5;
}
.form-success.is-visible{ display: block; }
.lead-form.is-hidden{ display: none; }
.lead-copy h2{ margin-top: 0; }
.lead-copy ul{ margin: 18px 0 0; padding-left: 20px; display: grid; gap: 10px; }
.lead-copy li{ font-size: .95rem; line-height: 1.5; color: var(--offer-muted); }

body.offer .site-disclaimer{ background: var(--offer-surface); border-top: 1px solid var(--offer-border); color: #4a4738; }
body.offer .site-footer{ background: var(--offer-dark); color: #d6d2c2; }
body.offer .site-footer__company{ color: #fff; }
body.offer .site-footer__links a{ color: #d6d2c2; }
body.offer .site-footer__links a:hover{ color: #fff; }

/* legal pages (offer family, simplified content) */
.legal-page{ padding: 40px 16px 8px; }
.legal-page__inner{ max-width: 780px; margin: 0 auto; }
.legal-page h1{ font-size: clamp(1.7rem, 4vw + .6rem, 2.4rem); font-weight: 800; margin: 0 0 20px; }
.legal-page h2{ font-size: 1.2rem; font-weight: 800; margin: 32px 0 12px; }
.legal-page p, .legal-page li{ font-size: .98rem; line-height: 1.65; color: #2c2a22; }
.legal-page ul{ padding-left: 20px; }
.legal-page a{ color: var(--offer-accent-dark); text-decoration: underline; }

/* Bootstrap alignment helpers reused across pages */
.visually-hidden-heading{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
