/* =========================================================================
   PROSERVE MANAGEMENT LIMITED — site.css
   Two design families in one sheet:
   1. .pub-*   — "Modern Ledger" publication (advertorial + about)
   2. .off-*   — offer / SaaS-style product page (+ shared on legal pages)
   Shared base + legal/utility rules live at the top.
   ========================================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }

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

.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: -48px;
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 500;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Video / media wrapper (shared) ---------- */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9d9d9;
}
.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame--wide { aspect-ratio: 16 / 9; }

/* =========================================================================
   1. PUBLICATION FAMILY — "Modern Ledger" (advertorial + about)
   Palette: warm off-white paper, near-black ink, editorial serif headlines,
   a muted terracotta accent for badges/links. Reproduces a classic
   masthead + centered single-column article layout (BestHealthDay ref).
   ========================================================================= */
.pub {
  --pub-ink: #1a1512;
  --pub-paper: #faf6ef;
  --pub-paper-alt: #f1ece0;
  --pub-rule: #d8cfbd;
  --pub-accent: #b5461f;
  --pub-accent-dark: #8a3416;
  --pub-muted: #6b6152;
  --pub-green: #2f6b45;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  background: var(--pub-paper);
  color: var(--pub-ink);
  line-height: 1.6;
}
.pub .sans {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Masthead */
.pub-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pub-muted);
  border-bottom: 1px solid var(--pub-rule);
  font-family: "Inter", sans-serif;
}
.pub-topbar__badge {
  background: #fdece3;
  color: var(--pub-accent-dark);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: .68rem;
}
.pub-masthead {
  text-align: center;
  padding: 22px 16px 18px;
  border-bottom: 3px double var(--pub-ink);
}
.pub-masthead__name {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 3rem);
  letter-spacing: .01em;
  margin: 0;
}
.pub-masthead__tag {
  font-style: italic;
  color: var(--pub-muted);
  font-size: clamp(.8rem, 2vw, .95rem);
  margin-top: 4px;
}

/* Article shell */
.pub-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 16px 0;
}
.pub-kicker {
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--pub-accent);
}
.pub-h1 {
  font-size: clamp(1.75rem, 6vw, 2.85rem);
  line-height: 1.15;
  font-weight: 700;
  margin-top: 10px;
}
.pub-dek {
  font-style: italic;
  color: #3d372e;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  margin-top: 14px;
  line-height: 1.5;
}
.pub-byline {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: .88rem;
  color: var(--pub-muted);
}
.pub-byline__stars { color: #d9962b; letter-spacing: 1px; }
.pub-byline__name { font-weight: 700; color: var(--pub-ink); }
.pub-readcount {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--pub-green);
  margin-top: 8px;
}
.pub-readcount::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pub-green);
  display: inline-block;
}

.pub-hero-media {
  margin-top: 22px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 30px -18px rgba(26,21,18,.4);
}
.pub-hero-media figcaption {
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  color: var(--pub-muted);
  padding: 6px 2px 0;
}

.pub-body {
  padding: 28px 16px 0;
  max-width: 760px;
  margin: 0 auto;
}
.pub-body p {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  margin-bottom: 20px;
}
.pub-body strong { color: var(--pub-accent-dark); }
.pub-lead-quote {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-style: italic;
  border-left: 4px solid var(--pub-accent);
  padding-left: 18px;
  margin: 26px 0;
  color: #2c261f;
}
.pub-h2 {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  margin: 40px 0 16px;
  line-height: 1.25;
}
.pub-h3 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  margin: 30px 0 12px;
}

/* Two-column split: market-rate + AI-leverage */
.pub-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
  padding: 22px 18px;
  background: var(--pub-paper-alt);
  border: 1px solid var(--pub-rule);
  border-radius: 6px;
}
.pub-split__col h3 {
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pub-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.pub-split__col p { font-size: .98rem; margin-bottom: 10px; }
.pub-split__divider {
  border: none;
  border-top: 1px solid var(--pub-rule);
}
.pub-rate-figure {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  color: var(--pub-ink);
  display: block;
}
.pub-rate-figure small {
  font-size: .55em;
  font-weight: 600;
  color: var(--pub-muted);
  display: block;
  margin-top: 2px;
}

.pub-pullquote {
  margin: 34px 0;
  padding: 26px 22px;
  background: var(--pub-ink);
  color: var(--pub-paper);
  border-radius: 8px;
  text-align: center;
}
.pub-pullquote p {
  font-size: clamp(1.2rem, 3.5vw, 1.55rem);
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}
.pub-pullquote span {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #d9962b;
  margin-top: 12px;
}

.pub-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.pub-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--pub-rule);
  border-radius: 6px;
}
.pub-list li::before {
  content: "✓";
  color: var(--pub-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Comparison table */
.pub-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--pub-rule);
  border-radius: 6px;
  -webkit-overflow-scrolling: touch;
}
.pub-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: .88rem;
  background: #fff;
}
.pub-table th, .pub-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--pub-rule);
}
.pub-table thead th {
  background: var(--pub-paper-alt);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--pub-muted);
}
.pub-table tbody tr:last-child td { border-bottom: none; }
.pub-table td.is-win { color: var(--pub-green); font-weight: 700; }

/* Fit checklist */
.pub-fit {
  margin: 24px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--pub-rule);
  border-radius: 6px;
}
.pub-fit__item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--pub-rule);
  font-size: .96rem;
}
.pub-fit__item:last-child { border-bottom: none; }
.pub-fit__mark { color: var(--pub-accent); font-weight: 700; }

/* Testimonial card — accent borrow (quote/testimonial card shape + badge row) */
.pub-testimonial {
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--pub-rule);
  border-radius: 10px;
  box-shadow: 0 2px 0 var(--pub-rule);
}
.pub-testimonial__stars { color: #d9962b; letter-spacing: 2px; font-size: 1rem; }
.pub-testimonial__name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 8px;
  font-size: .92rem;
}
.pub-testimonial p { font-size: .96rem; margin-top: 6px; margin-bottom: 0; }
.pub-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
  font-family: "Inter", sans-serif;
}
.pub-badge-row span {
  background: var(--pub-paper-alt);
  border: 1px solid var(--pub-rule);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .78rem;
  color: var(--pub-muted);
  font-weight: 600;
}

/* CTA blocks */
.pub-cta-block {
  margin: 34px 0;
  padding: 28px 20px;
  text-align: center;
  background: linear-gradient(160deg, #fdece3, var(--pub-paper-alt));
  border-radius: 10px;
  border: 1px solid var(--pub-rule);
}
.pub-cta-block h3 {
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  margin-bottom: 10px;
}
.pub-cta-block p {
  font-family: "Inter", sans-serif;
  color: var(--pub-muted);
  font-size: .95rem;
  margin-bottom: 18px;
}
.pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  min-height: 48px;
  background: var(--pub-accent);
  color: #fff;
  border-radius: 6px;
  border: none;
  transition: background .18s ease, transform .18s ease;
}
.pub-btn:hover { background: var(--pub-accent-dark); transform: translateY(-1px); }
.pub-btn:active { transform: translateY(0); }
.pub-btn--ghost {
  background: transparent;
  color: var(--pub-ink);
  border: 2px solid var(--pub-ink);
}
.pub-btn--ghost:hover { background: var(--pub-ink); color: #fff; }

.pub-signal {
  font-family: "Inter", sans-serif;
  font-size: .82rem;
  color: var(--pub-muted);
  margin-top: 12px;
}

/* Sticky bought-notice toast (from primary ref) */
.pub-toast {
  position: fixed;
  left: 12px;
  bottom: 12px;
  max-width: 280px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.25);
  padding: 12px 14px;
  z-index: 60;
  border: 1px solid var(--pub-rule);
  animation: pub-toast-in .5s ease 1.4s both;
}
.pub-toast__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pub-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: .85rem;
}
.pub-toast__name { font-family: "Inter", sans-serif; font-weight: 700; font-size: .82rem; }
.pub-toast__meta { font-family: "Inter", sans-serif; font-size: .74rem; color: var(--pub-muted); }
.pub-toast__close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--pub-muted);
  min-width: 32px;
  min-height: 32px;
}
@keyframes pub-toast-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 479px) {
  .pub-toast { left: 8px; right: 8px; bottom: 8px; max-width: none; }
}

/* About page publication cards */
.pub-about-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 16px 10px;
}
.pub-value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0;
}
.pub-value-grid__item {
  background: #fff;
  border: 1px solid var(--pub-rule);
  border-radius: 6px;
  padding: 16px;
}
.pub-value-grid__item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.pub-value-grid__item p {
  font-family: "Inter", sans-serif;
  font-size: .92rem;
  color: var(--pub-muted);
}

.pub-footer-spacer { height: 8px; }

@media (min-width: 480px) {
  .pub-split { grid-template-columns: 1fr 1fr; }
  .pub-value-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .pub-masthead__name { font-size: 3.2rem; }
  .pub-article, .pub-body, .pub-about-hero { padding-left: 24px; padding-right: 24px; }
  .pub-cta-block { padding: 40px; }
}
@media (min-width: 1024px) {
  .pub-split { padding: 32px; gap: 40px; }
}

/* =========================================================================
   2. OFFER FAMILY — product / SaaS landing (the-program + legal pages)
   Palette: near-black ink, cool paper-grey background, indigo accent CTA,
   grotesque sans headline type, generous whitespace, card UI (Orshot ref).
   ========================================================================= */
.off {
  --off-bg: #f6f7f9;
  --off-surface: #ffffff;
  --off-ink: #10121a;
  --off-muted: #5b6072;
  --off-line: #e3e5ea;
  --off-accent: #4338ca;
  --off-accent-dark: #322aa0;
  --off-accent-soft: #eeecfd;
  --off-good: #0f8a5f;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--off-bg);
  color: var(--off-ink);
  line-height: 1.55;
}

.off-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.off-nav__brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.off-nav__brand::before {
  content: "";
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--off-accent), #7c3aed);
  display: inline-block;
}
.off-nav__cta {
  font-weight: 700;
  font-size: .9rem;
  background: var(--off-ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background .18s ease;
}
.off-nav__cta:hover { background: var(--off-accent); }

.off-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 16px 40px;
  text-align: center;
}
.off-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--off-accent);
  margin-bottom: 20px;
}
.off-pill span.new {
  background: var(--off-accent);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: .68rem;
}
.off-kicker {
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--off-accent);
  margin-bottom: 14px;
}
.off-h1 {
  font-size: clamp(1.9rem, 7vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  max-width: 880px;
  margin: 0 auto;
}
.off-subhead {
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: var(--off-muted);
  max-width: 640px;
  margin: 18px auto 0;
}
.off-subhead strong { color: var(--off-ink); }
.off-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}
.off-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  min-height: 48px;
  border-radius: 10px;
  border: none;
  background: var(--off-accent);
  color: #fff;
  transition: background .18s ease, transform .18s ease;
  width: 100%;
  max-width: 340px;
}
.off-btn:hover { background: var(--off-accent-dark); transform: translateY(-1px); }
.off-btn--ghost {
  background: var(--off-surface);
  color: var(--off-ink);
  border: 1px solid var(--off-line);
}
.off-btn--ghost:hover { background: var(--off-bg); }

.off-hero__rates {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--off-muted);
}
.off-hero__rates span {
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 8px;
  padding: 8px 12px;
}
.off-hero__rates strong { color: var(--off-ink); }

.off-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 16px;
}
.off-section--alt { background: var(--off-surface); }
.off-section--dark {
  background: var(--off-ink);
  color: #fff;
}
.off-section--full { max-width: none; padding-left: 0; padding-right: 0; }

.off-section__head { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.off-kicker--center { text-align: center; }
.off-h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.off-section__head p {
  color: var(--off-muted);
  margin-top: 12px;
  font-size: 1.02rem;
}

/* device-mockup style media card */
.off-media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--off-line);
  box-shadow: 0 30px 60px -30px rgba(16,18,26,.25);
  background: var(--off-surface);
}

/* Rate band — oversized figures */
.off-rateband {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.off-rateband__item {
  text-align: center;
  padding: 22px 10px;
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 14px;
}
.off-rateband__figure {
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--off-accent);
  display: block;
}
.off-rateband__label {
  font-size: .82rem;
  color: var(--off-muted);
  margin-top: 6px;
  display: block;
}
.off-rateband__note {
  text-align: center;
  max-width: 640px;
  margin: 22px auto 0;
  font-size: .88rem;
  color: var(--off-muted);
}

/* AI-leverage callout band (full width highlighted) */
.off-callout-band {
  background: linear-gradient(135deg, var(--off-accent), #7c3aed);
  color: #fff;
  padding: 44px 16px;
}
.off-callout-band__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.off-callout-band .off-kicker { color: #ffe8b8; }
.off-callout-band h2 {
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
}
.off-callout-band p {
  margin-top: 14px;
  font-size: 1.02rem;
  color: #eef0ff;
}
.off-callout-band__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}
.off-callout-band__steps li {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
}

/* Pricing — stacked full width boxed offer */
.off-price-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--off-surface);
  border: 2px solid var(--off-ink);
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(16,18,26,.3);
}
.off-price-box__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--off-accent);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 6px 16px;
  border-radius: 999px;
}
.off-price-box__name {
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 800;
  text-align: center;
  margin-top: 12px;
}
.off-price-box__price {
  text-align: center;
  margin-top: 10px;
}
.off-price-box__price strong {
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 800;
  color: var(--off-ink);
}
.off-price-box__price span {
  display: block;
  font-size: .85rem;
  color: var(--off-muted);
  margin-top: 4px;
}
.off-price-box__list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.off-price-box__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .95rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--off-line);
}
.off-price-box__list li:last-child { border-bottom: none; padding-bottom: 0; }
.off-price-box__list li::before {
  content: "✓";
  color: var(--off-good);
  font-weight: 800;
  flex-shrink: 0;
}
.off-price-box .off-btn { max-width: none; width: 100%; margin-top: 6px; }
.off-price-box__hours {
  text-align: center;
  font-size: .8rem;
  color: var(--off-muted);
  margin-top: 10px;
}

/* Add-ons */
.off-addons {
  max-width: 780px;
  margin: 28px auto 0;
  display: grid;
  gap: 14px;
}
.off-addon {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 12px;
  padding: 16px;
}
.off-addon__name { font-weight: 700; font-size: .98rem; }
.off-addon__desc { font-size: .85rem; color: var(--off-muted); margin-top: 4px; }
.off-addon__price {
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
  color: var(--off-accent);
}
.off-addon__tag {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--off-muted);
  background: var(--off-bg);
  border-radius: 6px;
  padding: 2px 6px;
  margin-top: 6px;
}

/* Perks stack */
.off-perks {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.off-perks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--off-accent-soft);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .95rem;
  list-style: none;
}
.off-perks li::before {
  content: "★";
  color: var(--off-accent);
  flex-shrink: 0;
}

/* Limits / honest block */
.off-limits {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.off-limits__item {
  background: var(--off-surface);
  border: 1px dashed var(--off-line);
  border-radius: 12px;
  padding: 16px;
}
.off-limits__item h3 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.off-limits__item p {
  font-size: .9rem;
  color: var(--off-muted);
}

/* FAQ accordion (accent borrow) */
.off-faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.off-faq__item {
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 12px;
  padding: 4px 18px;
}
.off-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
  font-size: .98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.off-faq__item summary::-webkit-details-marker { display: none; }
.off-faq__item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--off-accent);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.off-faq__item[open] summary::after { transform: rotate(45deg); }
.off-faq__item p {
  padding-bottom: 16px;
  color: var(--off-muted);
  font-size: .92rem;
  margin: 0;
}

/* Lead form */
.off-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 16px;
  padding: 24px 18px;
}
.off-form-row { margin-bottom: 16px; }
.off-form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.off-form-row input,
.off-form-row textarea {
  width: 100%;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--off-line);
  background: var(--off-bg);
  font-family: inherit;
  min-height: 44px;
}
.off-form-row textarea { min-height: 100px; resize: vertical; }
.off-form-row input:focus,
.off-form-row textarea:focus { outline: 3px solid var(--off-accent); outline-offset: 1px; background: #fff; }
.off-form-row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.off-form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--off-muted);
  margin-bottom: 18px;
}
.off-form-consent input {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.off-form-error {
  color: #b91c1c;
  font-size: .8rem;
  margin-top: 6px;
  display: block;
  min-height: 1em;
}
.off-form-success {
  background: #ecfdf3;
  border: 1px solid #a7e8c8;
  color: #0f5132;
  border-radius: 10px;
  padding: 16px;
  font-size: .95rem;
  font-weight: 600;
}
.off-form-submit { width: 100%; }

/* Steps strip (repeatable system) */
.off-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  counter-reset: step;
}
.off-step {
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 14px;
  padding: 20px;
  position: relative;
}
.off-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--off-accent);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 10px;
}
.off-step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.off-step p { font-size: .88rem; color: var(--off-muted); }

/* Trust logos / who this is for */
.off-audience {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.off-audience__item {
  background: var(--off-surface);
  border: 1px solid var(--off-line);
  border-radius: 12px;
  padding: 16px;
  font-size: .92rem;
}
.off-audience__item strong { display: block; margin-bottom: 4px; }

.off-footer-spacer { height: 8px; }

@media (min-width: 480px) {
  .off-rateband { grid-template-columns: repeat(2, 1fr); }
  .off-form-row--split { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .off-hero__ctas { flex-direction: row; justify-content: center; }
  .off-btn { width: auto; }
  .off-rateband { grid-template-columns: repeat(4, 1fr); }
  .off-steps { grid-template-columns: repeat(2, 1fr); }
  .off-audience { grid-template-columns: repeat(2, 1fr); }
  .off-limits { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .off-steps { grid-template-columns: repeat(4, 1fr); }
  .off-section { padding: 64px 24px; }
  .off-hero { padding-top: 40px; }
}

/* =========================================================================
   3. SHARED — legal pages, footer, disclaimer, cookie banner, nav toggle
   ========================================================================= */

.site-disclaimer {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px;
  font-size: .88rem;
  line-height: 1.6;
  color: #4b4536;
}
.off .site-disclaimer { color: var(--off-muted); max-width: 1180px; }
.site-disclaimer a { text-decoration: underline; font-weight: 600; }

.site-footer {
  border-top: 1px solid #d8cfbd;
  padding: 24px 16px 32px;
  background: #efe8db;
  font-size: .88rem;
}
.off .site-footer { background: #111321; color: #cfd2e0; border-top: none; }
.off .site-footer a { color: #cfd2e0; }
.off .site-footer__company { color: #9498b0; }

.site-footer__company {
  max-width: 1180px;
  margin: 0 auto 18px;
  white-space: pre-line;
  color: #5a5340;
  line-height: 1.6;
}
.site-footer__links {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  list-style: none;
  padding: 0;
}
.site-footer__links a {
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer__links a:hover { text-decoration: underline; }

/* Cookie / consent banner */
.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #111321;
  color: #eef0ff;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.4);
}
.consent-banner[hidden] { display: none; }
.consent-banner p { font-size: .85rem; max-width: 640px; margin: 0; }
.consent-banner a { text-decoration: underline; }
.consent-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-banner__actions button {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: .85rem;
}
.consent-banner__accept { background: #4338ca; color: #fff; }
.consent-banner__decline { background: transparent; color: #eef0ff; border: 1px solid #454869 !important; }

/* Generic legal page (built on .off shell) */
.legal-hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 16px 10px;
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.01em;
}
.legal-hero p { color: var(--off-muted); margin-top: 12px; }
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 10px 16px 40px;
}
.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 30px 0 12px;
}
.legal-body p, .legal-body li { font-size: .96rem; color: #383c4d; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body a { text-decoration: underline; font-weight: 600; color: var(--off-accent); }

/* Simple nav for legal/offer pages using details as mobile toggle when needed */
.off-nav__links { display: none; }
@media (min-width: 768px) {
  .off-nav__links {
    display: flex;
    gap: 22px;
    list-style: none;
    font-size: .92rem;
    font-weight: 600;
    color: var(--off-muted);
  }
  .off-nav__links a:hover { color: var(--off-ink); }
}
