/* =========================================================
   EDGE SOLUTIONS — shared stylesheet
   Two design families share this file:
   - .pub-*   : "Honest Post Desk" advertorial / publication family
   - .off-*   : "Repurpo" offer / SaaS family
   Legal pages reuse the offer family's shell.
   ========================================================= */

:root {
  --pub-ink: #1a2b2f;
  --pub-teal: #0d3b3e;
  --pub-teal-dark: #082628;
  --pub-paper: #f4f1ea;
  --pub-card: #ffffff;
  --pub-line: #dcd6c8;
  --pub-accent: #b3492b;
  --pub-green: #2f6d4f;

  --off-ink: #12130f;
  --off-bg: #f7f6f0;
  --off-panel: #ffffff;
  --off-line: #e4e1d3;
  --off-lime: #a8c93f;
  --off-lime-dark: #7fa22a;
  --off-muted: #5c5c52;
}

* { box-sizing: border-box; }

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--pub-ink);
  background: var(--pub-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

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

/* focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid #1d6f8c;
  outline-offset: 2px;
}

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

.pub-body { background: var(--pub-paper); color: var(--pub-ink); }

.pub-topbar {
  background: var(--pub-teal);
  color: #f4f1ea;
  padding: 14px 16px;
}
.pub-topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pub-topbar__brand {
  font-weight: 700;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  letter-spacing: 0.02em;
}
.pub-topbar__tag {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfe3e0;
  border: 1px solid rgba(244,241,234,0.4);
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

.pub-ribbon {
  background: #e8e2cf;
  border-bottom: 1px solid var(--pub-line);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  color: #55503f;
  padding: 8px 16px;
}
.pub-ribbon__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}
.pub-ribbon__crumb::after { content: "›"; margin-left: 8px; color: #9a927a; }
.pub-ribbon__crumb:last-child::after { content: none; }

.pub-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 16px 0;
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .pub-shell {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    padding-top: 36px;
  }
}

.pub-article { min-width: 0; }

.pub-h1 {
  font-size: clamp(1.65rem, 4.6vw, 2.55rem);
  line-height: 1.16;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.pub-h1 em { font-style: italic; color: var(--pub-accent); }

.pub-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  color: #6b6555;
  border-bottom: 1px solid var(--pub-line);
  padding-bottom: 16px;
  margin-bottom: 18px;
}
.pub-meta__byline strong { color: var(--pub-ink); }

.pub-share {
  display: flex;
  gap: 8px;
}
.pub-share__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pub-teal);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}
.pub-share__btn:hover { background: var(--pub-teal-dark); transform: translateY(-2px); }

.pub-hero-figure { margin: 0 0 22px; }
.pub-hero-figure img, .pub-hero-figure video {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.pub-figcaption {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  color: #7a7460;
  margin-top: 6px;
}

.pub-standfirst {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  line-height: 1.5;
  font-weight: 700;
  color: var(--pub-teal-dark);
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--pub-accent);
}

.pub-article p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 18px;
  color: #2c2a22;
}
.pub-article h2 {
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  line-height: 1.25;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--pub-teal-dark);
}
.pub-article h3 {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  margin: 26px 0 10px;
}
.pub-article strong { color: var(--pub-teal-dark); }
.pub-article blockquote {
  margin: 22px 0;
  padding: 16px 20px;
  background: #fffdf6;
  border-left: 4px solid var(--pub-green);
  font-style: italic;
  font-size: 1.05rem;
  color: #33422f;
}

.pub-methodology {
  background: #fffdf6;
  border: 1px solid var(--pub-line);
  border-radius: 6px;
  padding: 20px;
  margin: 26px 0;
}
.pub-methodology h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--pub-teal);
}
.pub-methodology ul { margin: 0; padding-left: 20px; }
.pub-methodology li { margin-bottom: 8px; line-height: 1.5; }

.pub-progress-entry {
  border-top: 1px dashed var(--pub-line);
  padding: 18px 0;
}
.pub-progress-entry__date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pub-accent);
  display: block;
  margin-bottom: 6px;
}

.pub-scorebars { margin: 24px 0; display: grid; gap: 14px; }
.pub-scorebar__label {
  display: flex; justify-content: space-between;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--pub-teal-dark);
  font-weight: 700;
}
.pub-scorebar__track {
  height: 10px;
  background: #e8e2cf;
  border-radius: 5px;
  overflow: hidden;
}
.pub-scorebar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pub-green), var(--pub-teal));
  border-radius: 5px;
}

.pub-rates {
  margin: 30px 0;
  padding: 24px 18px;
  background: var(--pub-teal-dark);
  color: #f4f1ea;
  border-radius: 8px;
}
.pub-rates__heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #eaf5f3;
  margin: 0 0 20px;
  text-align: center;
  font-weight: 700;
}
.pub-rates__band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 12px;
  text-align: center;
}
@media (min-width: 560px) {
  .pub-rates__band { grid-template-columns: repeat(4, 1fr); }
}
.pub-rates__figure {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.pub-rates__label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  color: #a9cac4;
  margin-top: 6px;
  line-height: 1.35;
}
.pub-rates__note {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: #cfe3e0;
  text-align: center;
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(207,227,224,0.25);
}
.pub-rates__note a { color: #cfe3e0; text-decoration: underline; }

.pub-split {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .pub-split { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.pub-split__panel {
  background: var(--pub-card);
  border: 1px solid var(--pub-line);
  border-radius: 8px;
  padding: 22px;
}
.pub-split__panel h3 {
  margin-top: 0;
  color: var(--pub-teal-dark);
}
.pub-split__panel ul { padding-left: 20px; margin: 12px 0 0; }
.pub-split__panel li { margin-bottom: 8px; line-height: 1.5; }

.pub-offer-list {
  margin: 24px 0;
  padding: 22px;
  background: #eef2e6;
  border: 1px solid #d7e2cb;
  border-radius: 8px;
}
.pub-offer-list h3 { margin-top: 0; color: var(--pub-green); }
.pub-offer-list ul { padding-left: 0; margin: 14px 0 0; list-style: none; }
.pub-offer-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-top: 1px solid #d7e2cb;
  line-height: 1.5;
}
.pub-offer-list li:first-child { border-top: none; }
.pub-offer-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--pub-green);
  font-weight: 700;
}

.pub-verdict {
  margin: 32px 0 20px;
  padding: 26px 22px;
  background: var(--pub-teal);
  color: #fff;
  border-radius: 10px;
  text-align: center;
}
.pub-verdict h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #fff;
}
.pub-verdict p {
  color: #dcebe8;
  margin: 0 0 18px;
}

.pub-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pub-accent);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 6px;
  min-height: 44px;
  transition: background 0.15s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}
.pub-cta-btn:hover { background: #93381f; transform: translateY(-2px); }

.pub-results-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}
.pub-results-table caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pub-teal-dark);
  font-family: Arial, Helvetica, sans-serif;
}
.pub-results-table th, .pub-results-table td {
  padding: 10px 12px;
  border: 1px solid var(--pub-line);
  text-align: left;
  vertical-align: top;
}
.pub-results-table th {
  background: #e8e2cf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pub-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pub-rail { display: grid; gap: 20px; align-content: start; }
.pub-rail__card {
  background: var(--pub-card);
  border: 1px solid var(--pub-line);
  border-radius: 8px;
  padding: 16px;
}
.pub-rail__card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #43402f;
  margin: 0 0 12px;
}
.pub-rail__card--sticky { position: static; }
@media (min-width: 1024px) {
  .pub-rail__card--sticky { position: sticky; top: 20px; }
}
.pub-rail__panel-img {
  border-radius: 6px;
  width: 100%;
  margin-bottom: 12px;
}
.pub-rail__cta {
  display: block;
  text-align: center;
  background: var(--pub-teal);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 6px;
  min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.pub-rail__cta:hover { background: var(--pub-teal-dark); }

.pub-drawn-panel {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background:
    repeating-linear-gradient(135deg, #dfe8dd 0 12px, #ecf1e8 12px 24px);
  border: 1px solid var(--pub-line);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pub-green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  text-align: center;
  padding: 12px;
}

.pub-section-gap { margin: 36px 0; }

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

/* =========================================================
   OFFER / SAAS FAMILY
   ========================================================= */

.off-body {
  background: var(--off-bg);
  color: var(--off-ink);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.off-nav {
  background: var(--off-bg);
  border-bottom: 1px solid var(--off-line);
  padding: 16px;
  position: sticky;
  top: 0;
  z-index: 40;
}
.off-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.off-nav__brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.off-nav__brand-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--off-lime);
  display: inline-block;
}
.off-nav__links {
  display: none;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 500;
}
@media (min-width: 900px) {
  .off-nav__links { display: flex; }
}
.off-nav__links a { transition: color 0.15s ease; }
.off-nav__links a:hover { color: var(--off-lime-dark); }
.off-nav__cta {
  background: var(--off-ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 18px;
  border-radius: 999px;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.off-nav__cta:hover { background: #2a2b24; transform: translateY(-1px); }

.off-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px 40px;
  display: grid;
  gap: 28px;
}
@media (min-width: 1024px) {
  .off-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 48px 16px 64px;
    gap: 40px;
  }
}
.off-hero__kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--off-lime-dark);
  margin-bottom: 14px;
  display: inline-block;
}
.off-h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.off-hero__subhead {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--off-muted);
  margin: 0 0 26px;
  max-width: 46ch;
}
.off-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.off-btn-primary {
  background: var(--off-ink);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 999px;
  min-height: 44px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}
.off-btn-primary:hover { background: #2a2b24; transform: translateY(-2px); }
.off-btn-secondary {
  border: 1px solid var(--off-ink);
  color: var(--off-ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 999px;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: background 0.15s ease;
}
.off-btn-secondary:hover { background: #eceadb; }
.off-hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--off-muted);
}
.off-hero__trust span { display: flex; align-items: center; gap: 6px; }
.off-hero__trust .dot { color: var(--off-lime-dark); font-weight: 700; }

.off-hero__media {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(155deg, #e7ecd6 0%, #cfe0b8 45%, #9fbf86 100%);
  padding: 18px;
  position: relative;
}
.off-hero__media-inner {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #10130c;
}
.off-hero__media-inner img, .off-hero__media-inner video {
  width: 100%; height: 100%; object-fit: cover;
}
.off-hero__floating-card {
  position: absolute;
  left: 18px; right: 18px; bottom: -18px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(20,20,10,0.18);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
}
@media (min-width: 1024px) {
  .off-hero__floating-card { left: 24px; right: auto; max-width: 260px; }
}
.off-hero__floating-card .badge {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--off-lime);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #14210a; flex-shrink: 0;
}

.off-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
}
.off-section--tight { padding-top: 32px; padding-bottom: 32px; }
.off-section--panel {
  background: var(--off-panel);
  border-top: 1px solid var(--off-line);
  border-bottom: 1px solid var(--off-line);
}
.off-section--dark {
  background: var(--off-ink);
  color: #f2f2ea;
}
.off-section--dark .off-h2 { color: #fff; }
.off-section--dark .off-muted-text { color: #b7b7ac; }

.off-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--off-lime-dark);
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.off-h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.16;
  font-weight: 400;
  margin: 0 0 14px;
  text-align: center;
}
.off-lede {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--off-muted);
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.off-muted-text { color: var(--off-muted); }

.off-steps {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .off-steps { grid-template-columns: repeat(3, 1fr); }
}
.off-step {
  background: var(--off-panel);
  border: 1px solid var(--off-line);
  border-radius: 14px;
  padding: 24px;
}
.off-step__num {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--off-lime-dark);
  margin-bottom: 10px;
  display: block;
}
.off-step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.off-step p { margin: 0; color: var(--off-muted); font-size: 0.94rem; line-height: 1.55; }

.off-leverage {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .off-leverage { grid-template-columns: 1fr 1fr; }
}
.off-leverage__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e7ecd6;
}
.off-leverage__media img, .off-leverage__media video { width: 100%; height: 100%; object-fit: cover; }
.off-leverage__list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.off-leverage__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.96rem; line-height: 1.5;
}
.off-leverage__list li::before {
  content: "→";
  color: var(--off-lime-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.off-deliverables {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .off-deliverables { grid-template-columns: repeat(3, 1fr); }
}
.off-deliverable-card {
  background: var(--off-panel);
  border: 1px solid var(--off-line);
  border-radius: 14px;
  padding: 22px;
}
.off-deliverable-card img { border-radius: 8px; margin-bottom: 14px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.off-deliverable-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.off-deliverable-card p { margin: 0; color: var(--off-muted); font-size: 0.92rem; line-height: 1.5; }

.off-rates-panel {
  background: #eef1e2;
  border: 1px solid #d8dfc4;
  border-radius: 18px;
  padding: 28px 20px;
}
.off-rates-panel__grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}
@media (min-width: 640px) {
  .off-rates-panel__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .off-rates-panel__grid { grid-template-columns: repeat(4, 1fr); }
}
.off-rate-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid #e1e6d2;
}
.off-rate-card__value {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--off-ink);
}
.off-rate-card__label {
  font-size: 0.82rem;
  color: var(--off-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.off-arithmetic {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e1e6d2;
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.off-arithmetic strong { color: var(--off-ink); }
.off-rates-panel__foot {
  font-size: 0.8rem;
  color: var(--off-muted);
  margin-top: 16px;
  text-align: center;
}
.off-rates-panel__foot a { text-decoration: underline; }

.off-pricing {
  display: grid;
  gap: 24px;
  justify-items: center;
}
.off-pricing-card {
  background: var(--off-panel);
  border: 2px solid var(--off-ink);
  border-radius: 20px;
  padding: 34px 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 50px rgba(20,20,10,0.14);
}
.off-pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--off-lime);
  color: #14210a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 999px;
}
.off-pricing-card h3 { margin: 10px 0 4px; font-size: 1.3rem; text-align: center; }
.off-pricing-card__price {
  text-align: center;
  font-family: Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin: 10px 0;
}
.off-pricing-card__price span { font-size: 1rem; color: var(--off-muted); font-family: 'Helvetica Neue', Arial, sans-serif; }
.off-pricing-card__meta {
  text-align: center;
  font-size: 0.85rem;
  color: var(--off-muted);
  margin-bottom: 18px;
}
.off-pricing-card ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.off-pricing-card li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.93rem; line-height: 1.45; }
.off-pricing-card li::before { content: "✓"; color: var(--off-lime-dark); font-weight: 700; flex-shrink: 0; }

.off-addons {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .off-addons { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .off-addons { grid-template-columns: repeat(4, 1fr); }
}
.off-addon-card {
  background: var(--off-panel);
  border: 1px solid var(--off-line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.off-addon-card__price {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.off-addon-card h4 { margin: 0; font-size: 1rem; }
.off-addon-card p { margin: 0; font-size: 0.88rem; color: var(--off-muted); line-height: 1.5; flex-grow: 1; }

.off-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .off-perks { grid-template-columns: repeat(2, 1fr); }
}
.off-perk {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--off-panel);
  border: 1px solid var(--off-line);
  border-radius: 12px;
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.off-perk__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off-lime);
  color: #14210a;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}

.off-limits {
  background: #fbf4ea;
  border: 1px solid #ecdcc2;
  border-radius: 16px;
  padding: 26px 22px;
}
.off-limits ul { margin: 14px 0 0; padding-left: 20px; }
.off-limits li { margin-bottom: 10px; line-height: 1.55; font-size: 0.95rem; }

.off-form-section {
  background: #eef1e2;
}
.off-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  border: 1px solid #d8dfc4;
}
.off-form-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .off-form-grid--pair { grid-template-columns: 1fr 1fr; }
}
.off-field { display: flex; flex-direction: column; gap: 6px; }
.off-field label { font-size: 0.88rem; font-weight: 600; }
.off-field input, .off-field textarea {
  font-size: 16px;
  padding: 13px 14px;
  border: 1px solid #c9cdb8;
  border-radius: 8px;
  background: #fbfbf6;
  font-family: inherit;
  min-height: 44px;
}
.off-field textarea { min-height: 100px; resize: vertical; }
.off-field input:focus, .off-field textarea:focus { border-color: var(--off-lime-dark); }
.off-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; line-height: 1.5;
  margin: 18px 0;
}
.off-consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.off-form-note { font-size: 0.8rem; color: var(--off-muted); margin-top: 14px; text-align: center; }
.off-form-success {
  display: none;
  background: #e7f2d9;
  border: 1px solid #b9d68e;
  color: #2a4014;
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.off-form-success.is-visible { display: block; }
.off-field-error {
  color: #a3321a;
  font-size: 0.82rem;
  margin-top: 2px;
  display: none;
}
.off-field-error.is-visible { display: block; }
.off-field input.is-invalid, .off-field textarea.is-invalid { border-color: #a3321a; }

.off-faq { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.off-faq-item {
  background: var(--off-panel);
  border: 1px solid var(--off-line);
  border-radius: 12px;
  overflow: hidden;
}
.off-faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
  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-lime-dark); flex-shrink: 0; }
.off-faq-item[open] summary::after { content: "–"; }
.off-faq-item p { margin: 0; padding: 0 18px 18px; color: var(--off-muted); font-size: 0.94rem; line-height: 1.55; }

/* Legal page shell reuses offer nav */
.legal-shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 16px 20px;
}
.legal-shell h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  margin: 0 0 20px;
}
.legal-shell h2 {
  font-size: 1.2rem;
  margin: 30px 0 10px;
}
.legal-shell p, .legal-shell li { line-height: 1.65; color: #2b2b24; margin: 0 0 14px; font-size: 0.98rem; }
.legal-shell ul { padding-left: 22px; }
.legal-shell address { font-style: normal; }
.legal-updated { color: var(--off-muted); font-size: 0.85rem; margin-bottom: 26px; }

/* =========================================================
   SHARED: disclaimer + footer
   ========================================================= */

.site-disclaimer {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4a4a40;
  background: transparent;
}
.pub-body .site-disclaimer {
  max-width: 1180px;
  color: #55503f;
  border-top: 1px solid var(--pub-line);
}
.off-body .site-disclaimer, .legal-shell + .site-disclaimer {
  border-top: 1px solid var(--off-line);
}
.site-disclaimer a { text-decoration: underline; font-weight: 600; }

.site-footer {
  background: #12130f;
  color: #cfcfc3;
  padding: 32px 16px 40px;
}
.pub-body .site-footer { background: var(--pub-teal-dark); color: #cfe3e0; }
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.site-footer__company {
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: pre-line;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.85rem;
}
.site-footer__links a {
  padding: 6px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.site-footer__links a:hover { border-color: currentColor; }
.site-footer__bottom {
  font-size: 0.78rem;
  color: #8a8a7d;
  margin-top: 6px;
}

/* mobile nav toggle (offer family) */
.off-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--off-line);
  border-radius: 10px;
  background: #fff;
}
@media (min-width: 900px) {
  .off-nav__toggle { display: none; }
}
.off-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid var(--off-line);
}
.off-nav__mobile.is-open { display: flex; }
.off-nav__mobile a {
  padding: 12px 6px;
  min-height: 44px;
  display: flex; align-items: center;
  font-size: 0.98rem;
  border-radius: 8px;
}
.off-nav__mobile a:hover { background: #f0f0e6; }
@media (min-width: 900px) {
  .off-nav__mobile { display: none !important; }
}

.pub-topbar__toggle { display: none; }
