/* ==========================================================================
   Modern Insider Media / Local SEO Program
   Plain handwritten CSS. System font stack. Mobile-first, three breakpoints.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Publication theme (advertorial, about) */
  --pub-bg: #ffffff;
  --pub-ink: #0f1f38;
  --pub-text: #303b4a;
  --pub-muted: #667085;
  --pub-accent: #1857e0;
  --pub-accent-dark: #0d3fae;
  --pub-border: #e3e7ee;
  --pub-surface: #f6f7f9;
  --pub-tag-bg: #eaf0ff;
  --pub-tag-ink: #1449c4;
  --pub-callout-bg: #f2f6ff;
  --pub-ribbon-bg: #0f1f38;

  /* Offer theme (program + legal pages) */
  --off-bg: #fbf7ee;
  --off-bg-alt: #efe4cd;
  --off-ink: #182449;
  --off-text: #4a5468;
  --off-muted: #737d94;
  --off-accent: #146c94;
  --off-accent-dark: #0f5674;
  --off-border: #e6dcc4;
  --off-card-bg: #ffffff;
  --off-highlight-bg: #182449;
  --off-highlight-ink: #fbf7ee;
  --off-badge-bg: #ffffff;
}

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

body {
  margin: 0;
  font-family: var(--font-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

button { font-family: inherit; }

.wrap {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.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;
}

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  background: #111; color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   Buttons (shared)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .15s ease, border-color .15s ease;
}
.btn:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}
.btn:active { transform: translateY(1px); }

.btn--pub-primary {
  background: var(--pub-accent);
  color: #fff;
  box-shadow: 0 3px 0 var(--pub-accent-dark), 0 6px 14px rgba(15,31,56,.18);
}
.btn--pub-primary:hover { background: var(--pub-accent-dark); }

.btn--pub-ghost {
  background: #fff;
  color: var(--pub-ink);
  border-color: var(--pub-border);
}
.btn--pub-ghost:hover { border-color: var(--pub-accent); color: var(--pub-accent); }

.btn--off-primary {
  background: var(--off-accent);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(20,108,148,.35);
}
.btn--off-primary:hover { background: var(--off-accent-dark); }

.btn--off-secondary {
  background: transparent;
  color: var(--off-ink);
  border-color: var(--off-ink);
  border-radius: 999px;
}
.btn--off-secondary:hover { background: var(--off-ink); color: var(--off-bg); }

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

/* ==========================================================================
   Cookie consent banner (shared, all pages)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: #10182c;
  color: #f4f5f7;
  padding: 16px 18px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions button {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 2px solid #f4f5f7;
  background: transparent;
  color: #f4f5f7;
  font-weight: 700;
  cursor: pointer;
}
.cookie-banner__actions button.cookie-accept { background: #ffb703; border-color: #ffb703; color: #10182c; }

@media (min-width: 768px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner p { max-width: 70%; }
}

/* ==========================================================================
   Disclaimer + Footer (shared, every page)
   ========================================================================== */

.site-disclaimer {
  display: block;
  background: #f1efe8;
  border-top: 1px solid #ddd6c4;
  border-bottom: 1px solid #ddd6c4;
  padding: 22px 0;
}
.site-disclaimer .wrap { max-width: 900px; }
.site-disclaimer p {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #3c3a33;
}
.site-disclaimer p:last-child { margin-bottom: 0; }
.site-disclaimer a { color: var(--off-accent-dark); text-decoration: underline; font-weight: 600; }

.site-footer {
  background: #10182c;
  color: #d7dbe4;
  padding: 32px 0 40px;
}
.site-footer__company {
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
  color: #cfd4de;
  border-bottom: 1px solid #2a3350;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.site-footer__links a {
  color: #f4f5f7;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer__links a:hover,
.site-footer__links a:focus-visible { text-decoration: underline; }
.site-footer__copy {
  margin-top: 18px;
  font-size: 12px;
  color: #838ba1;
}

body.has-sticky-cta { padding-bottom: 78px; }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 800;
  background: #fff;
  border-top: 1px solid var(--pub-border);
  padding: 10px 14px;
  box-shadow: 0 -4px 18px rgba(0,0,0,.12);
}
.sticky-cta .wrap {
  max-width: 1120px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta__text { display: none; }
.sticky-cta .btn { width: 100%; }
@media (min-width: 560px) {
  .sticky-cta__text { display: block; font-size: 14px; font-weight: 700; color: var(--pub-ink); }
  .sticky-cta .btn { width: auto; }
}

/* ==========================================================================
   PUBLICATION THEME (advertorial + about)
   ========================================================================== */

.pub-page { background: var(--pub-bg); color: var(--pub-text); }

.pub-header {
  border-bottom: 1px solid var(--pub-border);
  background: #fff;
}
.pub-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.pub-logo {
  font-size: 19px;
  font-weight: 800;
  color: var(--pub-ink);
  text-decoration: none;
  letter-spacing: -.2px;
}
.pub-logo span { color: var(--pub-accent); }
.pub-nav__toggle {
  min-width: 44px; min-height: 44px;
  border: 1px solid var(--pub-border);
  background: #fff;
  border-radius: 6px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.pub-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  left: 0; right: 0;
  top: 62px;
  background: #fff;
  border-bottom: 1px solid var(--pub-border);
  z-index: 500;
  padding: 8px 18px 16px;
}
.pub-nav__list.is-open { display: flex; }
.pub-nav__list a {
  display: block;
  padding: 12px 6px;
  text-decoration: none;
  color: var(--pub-text);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--pub-border);
}
.pub-header { position: relative; }

@media (min-width: 768px) {
  .pub-nav__toggle { display: none; }
  .pub-nav__list {
    display: flex !important;
    position: static;
    flex-direction: row;
    border: 0;
    padding: 0;
    gap: 22px;
  }
  .pub-nav__list a { border: 0; padding: 6px 0; font-size: 14px; }
}

.pub-ribbon {
  background: var(--pub-ribbon-bg);
  color: #fff;
}
.pub-ribbon .wrap {
  padding-top: 9px; padding-bottom: 9px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  text-align: center;
}
.pub-ribbon p {
  margin: 0;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 700;
}
.pub-ribbon a { color: #ffd166; text-decoration: underline; }

.pub-article__head { padding: 26px 0 8px; }
.pub-eyebrow {
  color: var(--pub-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.pub-h1 {
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.12;
  color: var(--pub-ink);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.pub-dek {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--pub-muted);
  margin: 0 0 20px;
  max-width: 70ch;
}
.pub-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  font-size: 13px;
  color: var(--pub-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pub-border);
  margin-bottom: 22px;
}
.pub-byline strong { color: var(--pub-ink); }

.pub-hero-media {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--pub-surface);
  margin-bottom: 26px;
}
.pub-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.pub-article__body { padding-bottom: 8px; }
.pub-article__body > .wrap { max-width: 780px; }

.pub-article__body p { font-size: 17px; margin: 0 0 18px; }
.pub-article__body h2 {
  font-size: clamp(22px, 4vw, 30px);
  color: var(--pub-ink);
  font-weight: 800;
  margin: 44px 0 16px;
  letter-spacing: -.3px;
}
.pub-article__body h3 {
  font-size: 19px;
  color: var(--pub-ink);
  font-weight: 700;
  margin: 0 0 8px;
}

.pub-callout {
  background: var(--pub-callout-bg);
  border-left: 5px solid var(--pub-accent);
  border-radius: 4px;
  padding: 20px 22px;
  margin: 28px 0;
}
.pub-callout p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--pub-ink);
  line-height: 1.4;
}
.pub-callout span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pub-muted);
}

.pub-option {
  border: 1px solid var(--pub-border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 16px;
  background: var(--pub-surface);
}
.pub-option__tag {
  display: inline-block;
  background: var(--pub-tag-bg);
  color: var(--pub-tag-ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.pub-option h3 { margin-bottom: 6px; }
.pub-option p { margin: 0; font-size: 15px; color: var(--pub-text); }

.pub-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
  border: 1px solid var(--pub-border);
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
}
.pub-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.pub-table caption { text-align: left; padding: 12px 16px; font-size: 13px; color: var(--pub-muted); }
.pub-table th, .pub-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--pub-border);
}
.pub-table thead th {
  background: var(--pub-ink);
  color: #fff;
  font-weight: 700;
}
.pub-table tbody tr:last-child td { border-bottom: 0; }
.pub-table tbody tr.is-winner { background: var(--pub-tag-bg); font-weight: 700; }

.pub-cta-band {
  background: var(--pub-ink);
  color: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  margin: 36px 0;
  text-align: center;
}
.pub-cta-band h2 { color: #fff; margin: 0 0 12px; }
.pub-cta-band p { color: #cfd6e6; font-size: 16px; max-width: 62ch; margin: 0 auto 22px; }

.pub-figure { margin: 28px 0; }
.pub-figure img {
  width: 100%;
  border-radius: 10px;
}
.pub-figure figcaption {
  font-size: 13px;
  color: var(--pub-muted);
  margin-top: 8px;
}

.pub-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  margin: 10px 0 0;
}
.pub-video-wrap video { width: 100%; height: 100%; object-fit: cover; }

.pub-checklist { list-style: none; margin: 0 0 22px; padding: 0; }
.pub-checklist li {
  position: relative;
  padding: 6px 0 6px 32px;
  font-size: 16px;
}
.pub-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pub-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pub-cta-final {
  border: 2px solid var(--pub-ink);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  margin: 36px 0 10px;
}
.pub-cta-final h2 { margin: 0 0 10px; }
.pub-cta-final p { max-width: 60ch; margin: 0 auto 22px; color: var(--pub-text); }

.pub-sources { font-size: 13px; color: var(--pub-muted); margin: 30px 0 0; }

/* ==========================================================================
   OFFER THEME (program page + legal pages)
   ========================================================================== */

.off-page { background: var(--off-bg); color: var(--off-text); }

.off-header {
  background: var(--off-bg);
  border-bottom: 1px solid var(--off-border);
  position: relative;
}
.off-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}
.off-logo {
  font-size: 19px;
  font-weight: 800;
  color: var(--off-ink);
  text-decoration: none;
}
.off-logo span { color: var(--off-accent); }
.off-nav__toggle {
  min-width: 44px; min-height: 44px;
  border: 1px solid var(--off-border);
  background: #fff;
  border-radius: 8px;
  font-size: 22px;
  cursor: pointer;
}
.off-nav__list {
  list-style: none;
  margin: 0; padding: 10px 18px 18px;
  display: none;
  flex-direction: column;
  position: absolute;
  left: 0; right: 0; top: 64px;
  background: #fff;
  border-bottom: 1px solid var(--off-border);
  z-index: 500;
}
.off-nav__list.is-open { display: flex; }
.off-nav__list a {
  display: block;
  padding: 12px 6px;
  text-decoration: none;
  color: var(--off-ink);
  font-weight: 600;
  border-bottom: 1px solid var(--off-border);
}
.off-nav__cta { display: none; }

@media (min-width: 768px) {
  .off-nav__toggle { display: none; }
  .off-nav__list {
    display: flex !important;
    position: static;
    flex-direction: row;
    border: 0; padding: 0;
    gap: 22px;
    background: transparent;
  }
  .off-nav__list a { border: 0; padding: 6px 0; font-size: 14px; font-weight: 600; }
  .off-nav__cta { display: inline-flex; }
}

.off-hero { padding: 40px 0 44px; text-align: center; }
.off-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}
.off-badge {
  background: var(--off-badge-bg);
  border: 1px solid var(--off-border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--off-ink);
  letter-spacing: .02em;
}
.off-h1 {
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.12;
  color: var(--off-ink);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -.5px;
}
.off-hero__subhead {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--off-text);
  max-width: 62ch;
  margin: 0 auto 22px;
}
.off-hero__checklist {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.off-hero__checklist li {
  font-size: 14px;
  font-weight: 600;
  color: var(--off-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.off-hero__checklist li::before { content: "✓"; color: var(--off-accent); font-weight: 900; }
.off-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 560px) {
  .off-hero__ctas { flex-direction: row; justify-content: center; }
  .off-hero__checklist { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }
}

.off-band { background: var(--off-bg-alt); padding: 44px 0; }
.off-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--off-accent-dark);
  margin: 0 0 10px;
}
.off-section { padding: 44px 0; }
.off-section__title {
  font-size: clamp(22px, 4vw, 32px);
  color: var(--off-ink);
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -.3px;
}
.off-section__lead {
  text-align: center;
  max-width: 66ch;
  margin: 0 auto 32px;
  font-size: 16px;
  color: var(--off-text);
}

.off-compare {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.off-compare__col {
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 12px;
  padding: 22px;
}
.off-compare__col--new { border-color: var(--off-accent); box-shadow: 0 8px 24px rgba(20,108,148,.14); }
.off-compare__col h3 {
  margin: 0 0 12px;
  font-size: 17px;
  color: var(--off-ink);
}
.off-compare__col ul { margin: 0; padding-left: 20px; }
.off-compare__col li { margin-bottom: 8px; font-size: 15px; }
@media (min-width: 768px) {
  .off-compare { grid-template-columns: 1fr 1fr; }
}

.off-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .off-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .off-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .off-grid--5 { grid-template-columns: repeat(5, 1fr); }
}
.off-card {
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 12px;
  padding: 20px;
}
.off-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--off-ink); }
.off-card p { margin: 0; font-size: 14px; color: var(--off-text); }

.off-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 768px) {
  .off-steps { grid-template-columns: repeat(3, 1fr); }
}
.off-step {
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 12px;
  padding: 22px;
  position: relative;
}
.off-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-ink);
  color: var(--off-bg);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}
.off-step h3 { margin: 0 0 8px; font-size: 16px; color: var(--off-ink); }
.off-step p { margin: 0; font-size: 14px; }

.off-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  margin: 0 auto;
  max-width: 820px;
}
.off-video-wrap video { width: 100%; height: 100%; object-fit: cover; }

.off-rates {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.off-rates li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
}
.off-rates li strong { color: var(--off-ink); font-size: 16px; white-space: nowrap; }
.off-rates-note { text-align: center; font-size: 13px; color: var(--off-muted); margin: 16px auto 0; max-width: 640px; }

.off-pricing {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .off-pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.off-price-card {
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.off-price-card__name { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--off-accent-dark); }
.off-price-card__price { font-size: 34px; font-weight: 800; color: var(--off-ink); }
.off-price-card__hours { font-size: 13px; color: var(--off-muted); margin-top: -8px; }
.off-price-card ul { margin: 0; padding-left: 18px; flex-grow: 1; }
.off-price-card li { font-size: 14px; margin-bottom: 8px; }
.off-price-card--highlight {
  background: var(--off-highlight-bg);
  color: var(--off-highlight-ink);
  border-color: var(--off-highlight-bg);
  transform: none;
  box-shadow: 0 14px 36px rgba(24,36,73,.28);
  position: relative;
}
.off-price-card--highlight .off-price-card__name,
.off-price-card--highlight .off-price-card__price,
.off-price-card--highlight .off-price-card__hours { color: var(--off-highlight-ink); }
.off-price-card--highlight__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--off-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .off-price-card--highlight { transform: translateY(-10px); }
}

.off-addons {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .off-addons { grid-template-columns: repeat(3, 1fr); }
}
.off-addon {
  background: #fff;
  border: 1px dashed var(--off-border);
  border-radius: 12px;
  padding: 18px;
}
.off-addon__row { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; margin-bottom: 6px; }
.off-addon__row strong { color: var(--off-ink); font-size: 15px; }
.off-addon__price { font-weight: 800; color: var(--off-accent-dark); white-space: nowrap; }
.off-addon p { margin: 0; font-size: 13px; color: var(--off-text); }

.off-perks {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.off-perks li {
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  display: flex;
  gap: 10px;
}
.off-perks li::before { content: "★"; color: var(--off-accent); flex-shrink: 0; }

.off-limits {
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 14px;
  padding: 26px;
  max-width: 780px;
  margin: 0 auto;
}
.off-limits ul { margin: 0; padding-left: 20px; }
.off-limits li { margin-bottom: 10px; font-size: 15px; }

.off-lead { background: var(--off-ink); padding: 48px 0; }
.off-lead .off-section__title,
.off-lead .off-section__lead { color: var(--off-bg); }
.off-lead .off-section__lead { color: #c8cde0; }

.off-form {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  max-width: 640px;
  margin: 0 auto;
}
.off-form__row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-bottom: 14px;
}
@media (min-width: 560px) {
  .off-form__row--2 { grid-template-columns: 1fr 1fr; }
}
.off-form__field { display: flex; flex-direction: column; gap: 6px; }
.off-form__field label { font-size: 13px; font-weight: 700; color: var(--off-ink); }
.off-form__field input,
.off-form__field textarea {
  min-height: 48px;
  border: 1px solid var(--off-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--off-ink);
}
.off-form__field textarea { min-height: 100px; resize: vertical; }
.off-form__field input:focus,
.off-form__field textarea:focus {
  outline: 2px solid var(--off-accent);
  outline-offset: 1px;
}
.off-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--off-text);
  margin-bottom: 18px;
}
.off-form__consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.off-form__error {
  color: #b3261e;
  font-size: 13px;
  margin: -8px 0 14px;
  display: none;
}
.off-form__error.is-visible { display: block; }
.off-form__success {
  display: none;
  background: #eef7ee;
  border: 1px solid #bfe3bf;
  color: #1e4620;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
}
.off-form__success.is-visible { display: block; }
.off-form.is-submitted form { display: none; }

.off-feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.off-feature__media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.off-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.off-feature__text { width: 100%; }
.off-feature__text h3 { font-size: 20px; color: var(--off-ink); margin: 0 0 10px; }
.off-feature__text p { margin: 0; font-size: 15px; }
@media (min-width: 768px) {
  .off-feature { flex-direction: row; }
  .off-feature--reverse { flex-direction: row-reverse; }
  .off-feature__media, .off-feature__text { flex: 1; }
}

/* Legal pages (offer family, plain content) */
.off-legal { padding: 40px 0 20px; }
.off-legal h1 {
  font-size: clamp(26px, 5vw, 38px);
  color: var(--off-ink);
  font-weight: 800;
  margin: 0 0 18px;
}
.off-legal h2 {
  font-size: 20px;
  color: var(--off-ink);
  font-weight: 700;
  margin: 30px 0 10px;
}
.off-legal p, .off-legal li { font-size: 15px; color: var(--off-text); }
.off-legal ul { padding-left: 20px; }
.off-legal .wrap { max-width: 760px; }
.off-legal address { font-style: normal; }

.off-contact-info {
  background: #fff;
  border: 1px solid var(--off-border);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 20px 0 30px;
}
.off-contact-info p { margin: 0 0 6px; }

@media (min-width: 1024px) {
  .off-hero { padding: 64px 0 60px; }
  .off-section { padding: 64px 0; }
  .off-band { padding: 60px 0; }
}

@media (min-width: 1024px) {
  .pub-article__head { padding: 40px 0 12px; }
}
