/* =========================================================
   Prime Post Weekly / Copy Skills Lab — shared stylesheet
   Loaded after Pico.css (classless) via CDN.
   Two design families are scoped with [data-theme]:
     data-theme="pub"   -> advertorial + about (publication)
     data-theme="offer" -> academy + all legal/contact pages
   ========================================================= */

:root {
  --gap-sm: 0.75rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --radius: 10px;
  --max-narrow: 720px;
  --max-wide: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
}

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

a { text-decoration-thickness: 1px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

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

.table-wrap { width: 100%; overflow-x: auto; }

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

/* =========================================================
   PUBLICATION THEME (advertorial + about)
   ========================================================= */
[data-theme="pub"] {
  --pub-bg: #ffffff;
  --pub-ink: #1a1a1a;
  --pub-muted: #5a5a5a;
  --pub-accent: #a4132a;
  --pub-line: #e4e0da;
  --pub-panel: #f7f4ef;
  background: var(--pub-bg);
  color: var(--pub-ink);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

[data-theme="pub"] h1,
[data-theme="pub"] h2,
[data-theme="pub"] h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.15;
  color: #111;
}

[data-theme="pub"] main {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 1rem;
}

[data-theme="pub"] .pub-header {
  border-bottom: 1px solid var(--pub-line);
  padding: 1rem;
}
[data-theme="pub"] .pub-header__row {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
[data-theme="pub"] .brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + 1vw, 1.6rem);
  letter-spacing: 0.02em;
  color: var(--pub-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
[data-theme="pub"] .brand:hover { color: var(--pub-accent); }
[data-theme="pub"] .brand__mark { color: var(--pub-accent); }
[data-theme="pub"] .nav-cats {
  display: none;
  gap: 1.1rem;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pub-muted);
}
@media (min-width: 768px) {
  [data-theme="pub"] .nav-cats { display: flex; }
}

[data-theme="pub"] .ribbon {
  max-width: var(--max-narrow);
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}
[data-theme="pub"] .ribbon span {
  display: inline-block;
  background: var(--pub-ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

[data-theme="pub"] .kicker {
  color: var(--pub-accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.2rem;
}

[data-theme="pub"] h1.headline {
  font-size: clamp(1.75rem, 1.35rem + 2vw, 2.9rem);
  margin: 0.5rem 0 0;
}

[data-theme="pub"] .standfirst {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: #333;
  margin: 1rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--pub-accent);
}
[data-theme="pub"] .standfirst strong { color: var(--pub-ink); }

[data-theme="pub"] .byline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--pub-line);
  font-size: 0.9rem;
  color: var(--pub-muted);
}
[data-theme="pub"] .byline__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pub-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex: none;
}

[data-theme="pub"] figure { margin: 0 0 1.75rem; }
[data-theme="pub"] figure img,
[data-theme="pub"] figure video { border-radius: var(--radius); }
[data-theme="pub"] figcaption {
  font-size: 0.82rem;
  color: var(--pub-muted);
  margin-top: 0.5rem;
}

[data-theme="pub"] article > section { margin: 2.25rem 0; }

[data-theme="pub"] .methodology-box {
  background: var(--pub-panel);
  border: 1px solid var(--pub-line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
[data-theme="pub"] .methodology-box h2 { font-size: 1.15rem; margin-top: 0; }
[data-theme="pub"] .methodology-box ul { margin-bottom: 0; padding-left: 1.2rem; }

[data-theme="pub"] .progress-entry {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-top: 1px dashed var(--pub-line);
}
[data-theme="pub"] .progress-entry:first-of-type { border-top: none; }
[data-theme="pub"] .progress-date {
  font-weight: 700;
  color: var(--pub-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="pub"] .deliverables-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.75rem;
}
[data-theme="pub"] .deliverables-list li {
  padding: 0.9rem 1rem;
  background: var(--pub-panel);
  border-left: 3px solid var(--pub-accent);
  border-radius: 0 8px 8px 0;
}

[data-theme="pub"] .how-steps {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1rem;
}
[data-theme="pub"] .how-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
}
[data-theme="pub"] .how-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--pub-ink);
  color: #fff;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme="pub"] .how-steps h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
[data-theme="pub"] .how-steps p { margin: 0; color: #333; }

[data-theme="pub"] .stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
  background: var(--pub-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
}
@media (min-width: 640px) {
  [data-theme="pub"] .stat-band { grid-template-columns: repeat(4, 1fr); }
}
[data-theme="pub"] .stat-band .stat-figure {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 700;
  color: #ffd7a8;
}
[data-theme="pub"] .stat-band .stat-label {
  font-size: 0.78rem;
  color: #e8e2d8;
  margin-top: 0.35rem;
}
[data-theme="pub"] .stat-note {
  font-size: 0.82rem;
  color: var(--pub-muted);
  margin-top: 0.75rem;
}

[data-theme="pub"] .score {
  display: grid;
  gap: 1rem;
}
[data-theme="pub"] .score-row { display: grid; gap: 0.35rem; }
[data-theme="pub"] .score-row__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
}
[data-theme="pub"] .score-track {
  height: 10px;
  background: var(--pub-line);
  border-radius: 999px;
  overflow: hidden;
}
[data-theme="pub"] .score-fill {
  height: 100%;
  background: var(--pub-accent);
  border-radius: 999px;
}

[data-theme="pub"] table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
[data-theme="pub"] table caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
[data-theme="pub"] th, [data-theme="pub"] td {
  border: 1px solid var(--pub-line);
  padding: 0.6rem 0.75rem;
  text-align: left;
}
[data-theme="pub"] th { background: var(--pub-panel); }

[data-theme="pub"] .pull-quote {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-left: 4px solid var(--pub-accent);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
[data-theme="pub"] .pull-quote p {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  margin: 0;
}
[data-theme="pub"] .pull-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--pub-muted);
  font-style: normal;
}

[data-theme="pub"] .verdict {
  background: linear-gradient(180deg, #fff, var(--pub-panel));
  border: 1px solid var(--pub-line);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  text-align: center;
}
[data-theme="pub"] .verdict h2 { margin-top: 0; }
[data-theme="pub"] .verdict .price-line {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.75rem 0 1.25rem;
}

.cta-button {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  text-decoration: none;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cta-button:hover, .cta-button:focus-visible { transform: translateY(-2px); }

[data-theme="pub"] .cta-button {
  background: var(--pub-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(164,19,42,0.25);
}
[data-theme="pub"] .cta-button:hover,
[data-theme="pub"] .cta-button:focus-visible {
  background: #870f22;
}
[data-theme="pub"] .cta-button.secondary {
  background: transparent;
  color: var(--pub-ink);
  border: 2px solid var(--pub-ink);
  box-shadow: none;
}

[data-theme="pub"] .sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: var(--pub-ink);
  color: #fff;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}
[data-theme="pub"] .sticky-cta p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
}
[data-theme="pub"] .sticky-cta .cta-button {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  flex: none;
}
body[data-theme="pub"] { padding-bottom: 4.5rem; }
@media (min-width: 640px) {
  body[data-theme="pub"] { padding-bottom: 4rem; }
}

[data-theme="pub"] .site-disclaimer,
[data-theme="pub"] .site-footer {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* about page extras */
[data-theme="pub"] .about-hero {
  padding: 2rem 0 1rem;
}
[data-theme="pub"] .value-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  [data-theme="pub"] .value-grid { grid-template-columns: repeat(3, 1fr); }
}
[data-theme="pub"] .value-grid > div {
  background: var(--pub-panel);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

/* =========================================================
   OFFER THEME (academy + legal/contact pages)
   ========================================================= */
[data-theme="offer"] {
  --offer-bg: #f7f7f4;
  --offer-panel: #ffffff;
  --offer-ink: #14141a;
  --offer-muted: #5c5c66;
  --offer-accent: #3730d6;
  --offer-accent-ink: #ffffff;
  --offer-line: #e3e3dd;
  --offer-dark: #14141a;
  background: var(--offer-bg);
  color: var(--offer-ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
[data-theme="offer"] h1, [data-theme="offer"] h2, [data-theme="offer"] h3 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--offer-ink);
}

[data-theme="offer"] main {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1rem;
}

[data-theme="offer"] .offer-header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(247,247,244,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--offer-line);
}
[data-theme="offer"] .offer-header__row {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
}
[data-theme="offer"] .brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--offer-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
[data-theme="offer"] .brand__mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--offer-accent);
  display: inline-block;
}
[data-theme="offer"] .nav-links {
  display: none;
  gap: 1.5rem;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
}
[data-theme="offer"] .nav-links a { color: var(--offer-ink); text-decoration: none; }
[data-theme="offer"] .nav-links a:hover { color: var(--offer-accent); }
@media (min-width: 768px) {
  [data-theme="offer"] .nav-links { display: flex; }
}
[data-theme="offer"] .nav-cta {
  background: var(--offer-ink);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
[data-theme="offer"] .nav-cta:hover { background: var(--offer-accent); }

[data-theme="offer"] .hero {
  padding: clamp(2.25rem, 1.5rem + 3vw, 5rem) 0 clamp(1.5rem, 1rem + 2vw, 3rem);
  text-align: center;
}
[data-theme="offer"] .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--offer-accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
[data-theme="offer"] h1.headline {
  font-size: clamp(1.9rem, 1.4rem + 2.6vw, 3.4rem);
  max-width: 18ch;
  margin: 0 auto;
}
[data-theme="offer"] .hero-subhead {
  max-width: 56ch;
  margin: 1.1rem auto 0;
  color: var(--offer-muted);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
}
[data-theme="offer"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.75rem;
}
[data-theme="offer"] .cta-button {
  background: var(--offer-ink);
  color: #fff;
}
[data-theme="offer"] .cta-button:hover, [data-theme="offer"] .cta-button:focus-visible {
  background: var(--offer-accent);
}
[data-theme="offer"] .cta-button.secondary {
  background: var(--offer-panel);
  color: var(--offer-ink);
  border: 1px solid var(--offer-line);
}
[data-theme="offer"] .cta-button.secondary:hover {
  border-color: var(--offer-accent);
  color: var(--offer-accent);
  background: var(--offer-panel);
}

[data-theme="offer"] .hero-visual {
  position: relative;
  max-width: 920px;
  margin: 2.5rem auto 0;
}
[data-theme="offer"] .hero-visual img {
  border-radius: 16px;
  border: 1px solid var(--offer-line);
  box-shadow: 0 30px 60px -20px rgba(20,20,26,0.25);
}
[data-theme="offer"] .badge-chip {
  position: absolute;
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 12px 24px -8px rgba(20,20,26,0.2);
  display: none;
}
@media (min-width: 640px) {
  [data-theme="offer"] .badge-chip { display: block; }
}
[data-theme="offer"] .badge-chip--left { left: -1rem; top: 12%; color: var(--offer-accent); }
[data-theme="offer"] .badge-chip--right { right: -1rem; bottom: 10%; }

[data-theme="offer"] section {
  padding: clamp(2.5rem, 1.8rem + 3vw, 5rem) 0;
  border-top: 1px solid var(--offer-line);
}
[data-theme="offer"] section:first-of-type,
[data-theme="offer"] .hero {
  border-top: none;
}

[data-theme="offer"] .cta-band {
  background: var(--offer-dark);
  color: #fff;
  border-radius: 20px;
  padding: clamp(2rem, 1.6rem + 2vw, 3.5rem) clamp(1.25rem, 1rem + 2vw, 3rem);
  text-align: center;
  border-top: none;
}
[data-theme="offer"] .cta-band h2 { color: #fff; }
[data-theme="offer"] .cta-band p { color: #d7d7e6; max-width: 60ch; margin: 0.9rem auto 1.5rem; }
[data-theme="offer"] .cta-band .cta-button { background: #fff; color: var(--offer-ink); }
[data-theme="offer"] .cta-band .cta-button:hover { background: var(--offer-accent); color: #fff; }

[data-theme="offer"] .section-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--offer-accent);
  margin-bottom: 0.6rem;
}
[data-theme="offer"] h2.section-title {
  font-size: clamp(1.5rem, 1.25rem + 1.2vw, 2.2rem);
  max-width: 30ch;
}
[data-theme="offer"] .section-lede {
  max-width: 65ch;
  color: var(--offer-muted);
  font-size: 1.02rem;
}

[data-theme="offer"] .two-col {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  [data-theme="offer"] .two-col { grid-template-columns: 1fr 1fr; }
  [data-theme="offer"] .two-col.reverse > :first-child { order: 2; }
}
[data-theme="offer"] .two-col img,
[data-theme="offer"] .two-col .video-frame {
  border-radius: 16px;
  border: 1px solid var(--offer-line);
}

[data-theme="offer"] .rate-table th, [data-theme="offer"] .rate-table td {
  border: 1px solid var(--offer-line);
  padding: 0.75rem 1rem;
  text-align: left;
}
[data-theme="offer"] table { width: 100%; border-collapse: collapse; background: var(--offer-panel); border-radius: 12px; overflow: hidden; }
[data-theme="offer"] th { background: #efeff9; font-weight: 700; }
[data-theme="offer"] .rate-note {
  font-size: 0.85rem;
  color: var(--offer-muted);
  margin-top: 0.75rem;
}

[data-theme="offer"] .deliverables-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  [data-theme="offer"] .deliverables-list { grid-template-columns: repeat(3, 1fr); }
}
[data-theme="offer"] .two-col .deliverables-list {
  grid-template-columns: 1fr;
}
[data-theme="offer"] .deliverables-list li {
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 14px;
  padding: 1.25rem;
}
[data-theme="offer"] .deliverables-list li strong { display: block; margin-bottom: 0.4rem; }

[data-theme="offer"] .workflow-steps {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: wstep;
  display: grid;
  gap: 1.1rem;
}
[data-theme="offer"] .workflow-steps li {
  counter-increment: wstep;
  position: relative;
  padding-left: 3.1rem;
}
[data-theme="offer"] .workflow-steps li::before {
  content: counter(wstep);
  position: absolute;
  left: 0; top: 0;
  width: 2.2rem; height: 2.2rem;
  border-radius: 8px;
  background: var(--offer-accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme="offer"] .workflow-steps h3 { margin: 0 0 0.2rem; font-size: 1.05rem; }
[data-theme="offer"] .workflow-steps p { margin: 0; color: var(--offer-muted); }

[data-theme="offer"] .pricing-card {
  background: var(--offer-panel);
  border: 2px solid var(--offer-ink);
  border-radius: 20px;
  padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
[data-theme="offer"] .pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--offer-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
[data-theme="offer"] .pricing-card__head { text-align: center; margin-bottom: 1.25rem; }
[data-theme="offer"] .pricing-card__name { font-size: 1.4rem; margin: 0.5rem 0 0.25rem; }
[data-theme="offer"] .pricing-card__price {
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.6rem);
  font-weight: 800;
}
[data-theme="offer"] .pricing-card__hours { color: var(--offer-muted); font-size: 0.9rem; }
[data-theme="offer"] .pricing-card details {
  border-top: 1px solid var(--offer-line);
  padding: 0.9rem 0;
}
[data-theme="offer"] .pricing-card details:last-of-type { border-bottom: 1px solid var(--offer-line); }
[data-theme="offer"] .pricing-card summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}
[data-theme="offer"] .pricing-card summary::-webkit-details-marker { display: none; }
[data-theme="offer"] .pricing-card summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--offer-accent);
}
[data-theme="offer"] .pricing-card details[open] summary::after { content: "\2212"; }
[data-theme="offer"] .pricing-card details ul { margin: 0.6rem 0 0; padding-left: 1.2rem; }
[data-theme="offer"] .pricing-card .cta-button { display: block; text-align: center; margin-top: 1.5rem; }

[data-theme="offer"] .addon-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  [data-theme="offer"] .addon-grid { grid-template-columns: repeat(3, 1fr); }
}
[data-theme="offer"] .addon-card {
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
[data-theme="offer"] .addon-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--offer-accent);
}

[data-theme="offer"] .perks {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  [data-theme="offer"] .perks { grid-template-columns: repeat(2, 1fr); }
}
[data-theme="offer"] .perks li {
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 12px;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
}
[data-theme="offer"] .perks li::before {
  content: "\2713";
  position: absolute;
  left: 0.9rem; top: 0.85rem;
  color: var(--offer-accent);
  font-weight: 800;
}

[data-theme="offer"] .payback {
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 16px;
  padding: 1.5rem;
}
[data-theme="offer"] .payback ul { padding-left: 1.2rem; }

[data-theme="offer"] .limits {
  background: #fbf3e3;
  border: 1px solid #ecdcb3;
  border-radius: 16px;
  padding: 1.5rem;
}
[data-theme="offer"] .limits ul { padding-left: 1.2rem; margin-bottom: 0; }

[data-theme="offer"] .curriculum-list {
  list-style: none;
  counter-reset: cstep;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.75rem;
}
[data-theme="offer"] .curriculum-list li {
  counter-increment: cstep;
  position: relative;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 12px;
  font-weight: 600;
}
[data-theme="offer"] .curriculum-list li::before {
  content: counter(cstep);
  position: absolute;
  left: 0.9rem; top: 50%;
  transform: translateY(-50%);
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  background: var(--offer-accent);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="offer"] .curriculum-gallery {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  [data-theme="offer"] .curriculum-gallery { grid-template-columns: 1fr 1fr; }
}

[data-theme="offer"] .lead-form {
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 20px;
  padding: clamp(1.25rem, 1rem + 1.5vw, 2.5rem);
  max-width: 620px;
  margin: 0 auto;
}
[data-theme="offer"] .form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  [data-theme="offer"] .form-grid.two { grid-template-columns: 1fr 1fr; }
}
[data-theme="offer"] .field { display: grid; gap: 0.4rem; }
[data-theme="offer"] .field label { font-weight: 600; font-size: 0.92rem; }
[data-theme="offer"] .field input,
[data-theme="offer"] .field textarea {
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--offer-line);
  font-family: inherit;
  min-height: 44px;
}
[data-theme="offer"] .field textarea { min-height: 110px; resize: vertical; }
[data-theme="offer"] .field input:focus,
[data-theme="offer"] .field textarea:focus {
  outline: 3px solid var(--offer-accent);
  outline-offset: 1px;
}
[data-theme="offer"] .field small { color: var(--offer-muted); font-size: 0.82rem; }
[data-theme="offer"] .consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin: 1.1rem 0;
}
[data-theme="offer"] .consent input { margin-top: 0.25rem; width: 20px; height: 20px; flex: none; }
[data-theme="offer"] .lead-form .cta-button {
  width: 100%;
  text-align: center;
  border: none;
}
[data-theme="offer"] .success-note {
  margin-top: 1.25rem;
  background: #eef3ea;
  border: 1px solid #cfe0c6;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
}
[data-theme="offer"] .success-note strong { display: block; margin-bottom: 0.2rem; }

[data-theme="offer"] .site-disclaimer,
[data-theme="offer"] .site-footer {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* legal-page content tweaks under offer theme */
[data-theme="offer"] .legal-article { max-width: 760px; margin: 0 auto; }
[data-theme="offer"] .legal-article h1 { font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem); }
[data-theme="offer"] .legal-article h2 { font-size: 1.3rem; margin-top: 2rem; }
[data-theme="offer"] .legal-article section { border-top: none; padding: 0; }
[data-theme="offer"] .legal-updated { color: var(--offer-muted); font-size: 0.9rem; }
[data-theme="offer"] .contact-card {
  background: var(--offer-panel);
  border: 1px solid var(--offer-line);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 760px;
  margin: 0 auto 2rem;
}

/* =========================================================
   SHARED disclaimer + footer (both themes)
   ========================================================= */
.site-disclaimer {
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 0.9rem;
  color: #444;
}
[data-theme="offer"] .site-disclaimer { color: var(--offer-muted); border-color: var(--offer-line); }
.site-disclaimer p { margin: 0 0 0.5rem; }
.site-disclaimer a { font-weight: 600; }

.site-footer {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  font-size: 0.9rem;
}
.site-footer__company {
  white-space: pre-line;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.25rem;
}
[data-theme="offer"] .site-footer__company { color: var(--offer-muted); }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  list-style: none;
  margin: 0; padding: 0;
}
.site-footer__links a {
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
[data-theme="pub"] .site-footer__links a { color: var(--pub-ink); }
[data-theme="offer"] .site-footer__links a { color: var(--offer-ink); }
