/* ==========================================================================
   Everyday Wire / Klantflow — site.css
   Handwritten CSS, BEM naming, CSS custom properties, mobile-first.
   Two design families share this file:
     .theme-advertorial  → dark "publication" family (index, about)
     .theme-offer        → light "offer" family (the-program + legal pages)
   ========================================================================== */

/* -------------------------------------------------------------------------
   0. Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
table { border-collapse: collapse; width: 100%; }
:focus-visible {
  outline: 3px solid var(--focus-ring, #3b6bfb);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   1. Theme tokens
   ------------------------------------------------------------------------- */
.theme-advertorial {
  --bg: #0a0d16;
  --bg-alt: #0e1220;
  --bg-card: #141a2b;
  --bg-card-2: #171f34;
  --border: #262e46;
  --text: #eef1f8;
  --text-muted: #a2acc4;
  --accent: #4f7bff;
  --accent-strong: #7a9bff;
  --accent-contrast: #071022;
  --focus-ring: #7a9bff;
  --font-head: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

.theme-offer {
  --bg: #ffffff;
  --bg-alt: #f3f6f4;
  --bg-card: #ffffff;
  --bg-dark: #0d1917;
  --bg-dark-2: #122320;
  --border: #dfe6e2;
  --text: #142420;
  --text-muted: #57655f;
  --accent: #0f8a63;
  --accent-strong: #0b6b4c;
  --accent-contrast: #ffffff;
  --accent2: #e07a1e;
  --highlight-bg: #eaf8f1;
  --focus-ring: #0b6b4c;
  --font-head: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius-lg: 6px;
  --radius-md: 6px;
  --radius-sm: 4px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

/* -------------------------------------------------------------------------
   2. Layout helpers
   ------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 768px) {
  .wrap { padding: 0 32px; }
}

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

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* -------------------------------------------------------------------------
   3. Site header (shared skeleton, themed by variables)
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.theme-offer .site-header { background: var(--bg-dark); }
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}
.theme-offer .site-header__brand { color: #fff; letter-spacing: .01em; }
.site-header__brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: .85rem;
  font-weight: 800;
  flex: none;
}
.site-header__toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.theme-offer .site-header__toggle { color: #fff; border-color: #2a3b37; }
.site-header__toggle-bar,
.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  position: relative;
}
.site-header__toggle-bar::before { position: absolute; top: -6px; }
.site-header__toggle-bar::after { position: absolute; top: 6px; }
.site-header__nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 18px;
  border-top: 1px solid var(--border);
}
.site-header__nav--open { display: flex; }
.site-header__link {
  padding: 12px 4px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.theme-offer .site-header__link { color: rgba(255,255,255,.78); border-color: #1c2c29; }
.site-header__link:hover, .site-header__link:focus-visible { color: var(--accent-strong); }
.theme-offer .site-header__link:hover, .theme-offer .site-header__link:focus-visible { color: #fff; }
.site-header__link--cta {
  margin-top: 8px;
  border: none;
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-sm);
  justify-content: center;
  font-weight: 700;
}
@media (min-width: 768px) {
  .site-header__toggle { display: none; }
  .site-header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 0;
    border-top: none;
  }
  .site-header__link {
    border-bottom: none;
    padding: 8px 2px;
    min-height: auto;
  }
  .site-header__link--cta { margin-top: 0; padding: 10px 18px; }
}

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.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;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
  text-align: center;
}
.theme-offer .btn { border-radius: var(--radius-sm); }
.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 10px 24px -12px rgba(79,123,255,.65);
}
.theme-offer .btn--primary { box-shadow: 0 10px 20px -10px rgba(15,138,99,.5); }
.btn--primary:hover, .btn--primary:focus-visible { transform: translateY(-2px); background: var(--accent-strong); }
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--accent); color: var(--accent-strong); }
.btn--block { width: 100%; }
.btn--lg { min-height: 54px; padding: 14px 30px; font-size: 1.05rem; }

/* -------------------------------------------------------------------------
   5. Typography helpers
   ------------------------------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent-strong);
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.3rem);
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-lede {
  font-size: clamp(1rem, .94rem + .4vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 62ch;
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   6. Section rhythm
   ------------------------------------------------------------------------- */
.section {
  padding: 44px 0;
}
@media (min-width: 768px) { .section { padding: 72px 0; } }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark, #0a0d16); color: #fff; }
.section--tight { padding: 32px 0; }
@media (min-width: 768px) { .section--tight { padding: 48px 0; } }
.section__head { margin-bottom: 28px; }
@media (min-width: 768px) { .section__head { margin-bottom: 40px; } }

/* -------------------------------------------------------------------------
   7. Advertorial ribbon + hero
   ------------------------------------------------------------------------- */
.disclosure-ribbon {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 9px 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ad-hero {
  padding: 36px 0 40px;
}
@media (min-width: 768px) { .ad-hero { padding: 60px 0 56px; } }
.ad-hero__h1 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-size: clamp(1.8rem, 1.25rem + 3.4vw, 3rem);
  margin-bottom: 18px;
}
.ad-hero__h1 em {
  font-style: normal;
  color: var(--accent-strong);
}
.ad-hero__subhead {
  font-size: clamp(1.02rem, .95rem + .5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.6;
  margin-bottom: 22px;
}
.ad-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.ad-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.ad-hero__media video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

/* -------------------------------------------------------------------------
   8. Article body / editorial blocks
   ------------------------------------------------------------------------- */
.article {
  padding: 8px 0 0;
}
.article__section {
  padding: 34px 0;
  border-top: 1px solid var(--border);
}
.article__section:first-child { border-top: none; }
.article__h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.35rem, 1.1rem + 1.4vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.article__h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 20px 0 10px;
}
.article__p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 68ch;
}
.article__p strong { color: var(--text); }
.article__media {
  margin: 22px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article__media img, .article__media video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.article__media figcaption {
  padding: 10px 14px;
  font-size: .82rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

/* what-clients-pay aside box */
.rate-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 22px 20px;
  margin: 24px 0;
}
.rate-box__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-strong);
  margin-bottom: 12px;
}
.rate-box__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px dashed var(--border);
  flex-wrap: wrap;
}
.rate-box__row:first-of-type { border-top: none; }
.rate-box__item { color: var(--text-muted); font-size: .95rem; }
.rate-box__value { font-weight: 800; color: var(--text); font-size: 1.05rem; }
.rate-box__note {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-muted);
}
.rate-box__note a { color: var(--accent-strong); text-decoration: underline; }

/* steps with woven-in AI callout */
.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
  margin: 18px 0;
}
.steps__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 18px 18px 18px 62px;
  position: relative;
}
.steps__item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px; top: 18px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.steps__item-title { font-weight: 800; margin-bottom: 6px; font-size: 1.02rem; }
.steps__item-text { color: var(--text-muted); font-size: .95rem; line-height: 1.6; }

.callout {
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  margin: 18px 0;
  border: 1px solid var(--border);
}
.callout--autopilot {
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border-color: var(--accent);
}
.callout--handsoff {
  background: var(--highlight-bg);
  border-color: var(--accent);
}
.callout__label {
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent-strong);
  margin-bottom: 8px;
  display: block;
}
.callout__text { font-size: 1.02rem; line-height: 1.65; color: var(--text); }

/* deliverables list */
.deliverables {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.deliverables__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: var(--bg-card);
}
.deliverables__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
}
.deliverables__text { color: var(--text-muted); font-size: .95rem; line-height: 1.55; }
.deliverables__text strong { color: var(--text); display: block; margin-bottom: 2px; font-size: 1rem; }

/* objections accordion-free list */
.objections { display: grid; gap: 14px; margin: 18px 0; }
.objections__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: var(--bg-card);
}
.objections__q { font-weight: 800; margin-bottom: 6px; font-size: 1rem; }
.objections__a { color: var(--text-muted); font-size: .95rem; line-height: 1.6; }

/* cta band inside article */
.cta-band {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin: 30px 0 10px;
}
.cta-band__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 1rem + 1.2vw, 1.6rem);
  margin-bottom: 10px;
}
.cta-band__text { color: var(--text-muted); margin-bottom: 18px; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* sticky rail — accent borrowed treatment */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 24px -16px rgba(0,0,0,.5);
}
.sticky-cta__text { font-size: .85rem; font-weight: 700; color: var(--text); display: none; }
.sticky-cta .btn { flex: 1; }
@media (min-width: 480px) {
  .sticky-cta__text { display: block; }
  .sticky-cta .btn { flex: none; }
}
.page-has-sticky-cta { padding-bottom: 78px; }
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
  .page-has-sticky-cta { padding-bottom: 0; }
}

/* -------------------------------------------------------------------------
   9. Publication content pages (About) & generic content pages
   ------------------------------------------------------------------------- */
.content-page__head { padding: 40px 0 10px; }
.content-page__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.3rem + 2vw, 2.5rem);
  margin-bottom: 14px;
}
.content-page__lede { color: var(--text-muted); font-size: 1.05rem; max-width: 60ch; line-height: 1.6; }
.content-page__body { padding: 10px 0 30px; }
.content-page__body h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 26px 0 10px;
}
.content-page__body p, .content-page__body li {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 12px;
  max-width: 70ch;
}
.content-page__body ul { display: grid; gap: 8px; margin: 12px 0 18px; }
.content-page__body li { position: relative; padding-left: 20px; margin-bottom: 0; }
.content-page__body li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.content-page__body a { color: var(--accent-strong); text-decoration: underline; }
.content-page__grid {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}
@media (min-width: 768px) { .content-page__grid { grid-template-columns: repeat(2, 1fr); } }
.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--bg-card);
}
.info-card__title { font-weight: 800; margin-bottom: 8px; }
.info-card__text { color: var(--text-muted); font-size: .95rem; line-height: 1.6; }

/* -------------------------------------------------------------------------
   10. Disclaimer + Footer (site-wide invariant)
   ------------------------------------------------------------------------- */
.site-disclaimer {
  display: block;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 26px 0;
}
.theme-advertorial .site-disclaimer { background: var(--bg-card); }
.site-disclaimer__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 768px) { .site-disclaimer__wrap { padding: 0 32px; } }
.site-disclaimer__text {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 74ch;
}
.site-disclaimer__text a { color: var(--accent-strong); text-decoration: underline; }

.site-footer {
  background: var(--bg-dark, #090c14);
  color: rgba(255,255,255,.86);
  padding: 34px 0 28px;
}
.theme-advertorial .site-footer { background: #05070d; }
.site-footer__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  gap: 26px;
}
@media (min-width: 768px) {
  .site-footer__wrap { padding: 0 32px; grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.site-footer__company { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.72); }
.site-footer__company p { margin: 0 0 2px; }
.site-footer__company strong { color: #fff; display: block; margin-bottom: 6px; font-size: .95rem; }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
@media (min-width: 768px) { .site-footer__links { justify-content: flex-end; } }
.site-footer__links a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  padding: 6px 0;
  display: inline-block;
  min-height: 32px;
}
.site-footer__links a:hover, .site-footer__links a:focus-visible { color: #fff; text-decoration: underline; }
.site-footer__bottom {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 14px 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
@media (min-width: 768px) { .site-footer__bottom { padding: 14px 32px 0; } }

/* -------------------------------------------------------------------------
   11. Cookie banner (no tracking — local UI state only)
   ------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 200;
  background: var(--bg-card, #141a2b);
  color: var(--text, #eef1f8);
  border: 1px solid var(--border, #262e46);
  border-radius: var(--radius-md, 14px);
  padding: 16px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
  display: none;
}
.cookie-banner--visible { display: block; }
.cookie-banner__text { font-size: .88rem; line-height: 1.55; margin-bottom: 12px; color: var(--text-muted); }
.cookie-banner__text a { color: var(--accent-strong); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { min-height: 44px; padding: 10px 18px; font-size: .9rem; }
@media (min-width: 480px) {
  .cookie-banner { left: auto; right: 20px; bottom: 20px; max-width: 380px; }
}

/* -------------------------------------------------------------------------
   12. OFFER PAGE — hero (LMT-style split: form left, promo right)
   ------------------------------------------------------------------------- */
.offer-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 30px 0 40px;
}
.offer-hero__grid {
  display: grid;
  gap: 26px;
}
@media (min-width: 1024px) {
  .offer-hero__grid { grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
}
.offer-hero__kicker {
  color: var(--accent2);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: inline-block;
  margin-bottom: 14px;
}
.offer-hero__h1 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(1.7rem, 1.2rem + 3vw, 2.7rem);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.offer-hero__h1 span { color: var(--accent2); }
.offer-hero__subhead {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, .95rem + .35vw, 1.15rem);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 20px;
}
.offer-hero__bullets { display: grid; gap: 8px; margin-bottom: 26px; }
.offer-hero__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.offer-hero__bullets li::before {
  content: "✓";
  color: var(--accent2);
  font-weight: 800;
  flex: none;
}
.offer-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--bg-dark-2);
}
.offer-hero__media video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (min-width: 480px) {
  .offer-hero__media video { aspect-ratio: 16 / 11; }
}
.offer-hero__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent2);
  color: #201004;
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,.5);
}
.offer-hero__badge strong { font-size: .95rem; font-weight: 800; }
.offer-hero__badge span { font-size: .62rem; font-weight: 700; text-transform: uppercase; }

/* lead form */
.lead-form--narrow { max-width: 560px; }
.lead-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 1px solid var(--border);
}
.lead-form__title { font-weight: 800; font-size: 1.15rem; margin-bottom: 4px; }
.lead-form__hint { color: var(--text-muted); font-size: .88rem; margin-bottom: 18px; }
.lead-form__row { display: grid; gap: 14px; margin-bottom: 14px; }
@media (min-width: 480px) {
  .lead-form__row--split { grid-template-columns: 1fr 1fr; }
}
.lead-form__field { display: flex; flex-direction: column; gap: 6px; }
.lead-form__field label { font-size: .85rem; font-weight: 700; color: var(--text); }
.lead-form__field input,
.lead-form__field textarea {
  font-size: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  min-height: 48px;
  font-family: inherit;
}
.lead-form__field textarea { min-height: 96px; resize: vertical; }
.lead-form__field input:focus, .lead-form__field textarea:focus { border-color: var(--accent); }
.lead-form__field--error input, .lead-form__field--error textarea { border-color: #c0392b; }
.lead-form__error {
  color: #c0392b;
  font-size: .8rem;
  min-height: 16px;
}
.lead-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 18px;
}
.lead-form__consent input { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.lead-form__consent label { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.lead-form__consent a { color: var(--accent-strong); text-decoration: underline; }
.lead-form__success {
  display: none;
  background: var(--highlight-bg);
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .92rem;
  font-weight: 600;
  margin-top: 14px;
}
.lead-form__success--visible { display: block; }
.lead-form--submitted .lead-form__fields { display: none; }

/* -------------------------------------------------------------------------
   13. OFFER PAGE — pull quote (rate placement)
   ------------------------------------------------------------------------- */
.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 6px 0 6px 22px;
  margin: 10px 0;
}
.pull-quote__text {
  font-size: clamp(1.15rem, 1.02rem + .6vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}
.pull-quote__cite { display: block; margin-top: 10px; font-size: .85rem; color: var(--text-muted); font-style: normal; }
.pull-quote__cite a { color: var(--accent-strong); text-decoration: underline; }

/* -------------------------------------------------------------------------
   14. OFFER PAGE — deliverable / feature cards (accent card-grid proportions)
   ------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  background: var(--bg-alt);
  text-align: left;
}
.feature-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.feature-card__title { font-weight: 800; margin-bottom: 8px; font-size: 1.02rem; }
.feature-card__text { color: var(--text-muted); font-size: .92rem; line-height: 1.55; }

/* -------------------------------------------------------------------------
   15. OFFER PAGE — stat band (what clients pay)
   ------------------------------------------------------------------------- */
.stat-band {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
@media (min-width: 768px) { .stat-band { grid-template-columns: repeat(4, 1fr); } }
.stat-band__item { padding: 6px; }
.stat-band__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 1.05rem + 1.4vw, 2rem);
  color: var(--accent-strong);
  line-height: 1.1;
}
.stat-band__label {
  margin-top: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-band__foot {
  margin-top: 22px;
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
}
.stat-band__foot a { color: var(--accent-strong); text-decoration: underline; }

/* -------------------------------------------------------------------------
   16. OFFER PAGE — workflow steps (hands-off system, reuses .steps)
   ------------------------------------------------------------------------- */
.theme-offer .steps__item::before { background: var(--accent); color: #fff; }

/* -------------------------------------------------------------------------
   17. OFFER PAGE — dark CTA image band
   ------------------------------------------------------------------------- */
.cta-image-band {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) { .cta-image-band { grid-template-columns: 1fr 1fr; } }
.cta-image-band__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
}
.cta-image-band__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cta-image-band__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2rem);
  margin-bottom: 14px;
}
.cta-image-band__text { color: rgba(255,255,255,.78); margin-bottom: 20px; line-height: 1.6; max-width: 50ch; }

/* -------------------------------------------------------------------------
   18. OFFER PAGE — pricing comparison table
   ------------------------------------------------------------------------- */
.price-table-wrap { overflow-x: auto; margin: 10px 0; -webkit-overflow-scrolling: touch; }
.price-table { min-width: 640px; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.price-table th, .price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: .92rem;
  vertical-align: top;
}
.price-table thead th {
  background: var(--bg-alt);
  font-family: var(--font-head);
  font-size: 1rem;
}
.price-table tbody th { color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.price-table td:not(:first-child), .price-table th:not(:first-child) { text-align: center; }
.price-table__tier-name { display: block; font-weight: 800; font-size: 1.05rem; }
.price-table__tier-hours { display: block; font-size: .78rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.price-table__tier--highlight { background: var(--highlight-bg); position: relative; }
.price-table__badge {
  display: block;
  width: fit-content;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 0 auto 8px;
}
.price-table__price { font-weight: 800; font-size: 1.15rem; color: var(--accent-strong); }
.price-table__check { color: var(--accent); font-weight: 800; }
.price-table__dash { color: var(--border); }
.price-table__cta-row td { border-bottom: none; padding-top: 18px; }
.price-table__cta-row .btn { min-height: 44px; padding: 10px 16px; font-size: .88rem; }

/* -------------------------------------------------------------------------
   19. OFFER PAGE — add-ons + perks
   ------------------------------------------------------------------------- */
.addon-list { display: grid; gap: 14px; }
@media (min-width: 768px) { .addon-list { grid-template-columns: repeat(2, 1fr); } }
.addon-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.addon-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.addon-card__name { font-weight: 800; font-size: 1rem; }
.addon-card__price { font-weight: 800; color: var(--accent-strong); font-size: 1.05rem; white-space: nowrap; }
.addon-card__text { color: var(--text-muted); font-size: .9rem; line-height: 1.55; }

.perk-stack { display: grid; gap: 10px; }
.perk-stack__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.perk-stack__item::before {
  content: "★";
  color: var(--accent2, var(--accent));
  font-weight: 800;
  flex: none;
}
.perk-stack__text { font-size: .95rem; color: var(--text); line-height: 1.5; }

/* -------------------------------------------------------------------------
   20. OFFER PAGE — limits block & FAQ accordion
   ------------------------------------------------------------------------- */
.limits-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  background: var(--bg-alt);
}
.limits-block__title { font-weight: 800; font-size: 1.1rem; margin-bottom: 12px; }
.limits-block__list { display: grid; gap: 10px; }
.limits-block__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.55;
}
.limits-block__list li::before { content: "—"; flex: none; color: var(--text-muted); }

.faq { display: grid; gap: 10px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 700;
  font-size: .98rem;
  text-align: left;
  min-height: 44px;
}
.faq__icon { flex: none; font-size: 1.2rem; color: var(--accent-strong); transition: transform .2s ease; }
.faq__item[data-open="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 18px;
}
.faq__item[data-open="true"] .faq__answer { max-height: 320px; padding-bottom: 18px; }
.faq__answer p { color: var(--text-muted); font-size: .92rem; line-height: 1.6; margin: 0; }

/* -------------------------------------------------------------------------
   21. Contact page details
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 18px; margin: 20px 0; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--bg-alt);
}
.contact-card__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--accent-strong); margin-bottom: 8px; display: block; }
.contact-card__value { font-weight: 700; font-size: 1.02rem; word-break: break-word; }
.contact-card__value a { text-decoration: underline; }

/* -------------------------------------------------------------------------
   22. Utility
   ------------------------------------------------------------------------- */
.mt-lg { margin-top: 28px; }
.center { text-align: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row--center { justify-content: center; }
