/* ==========================================================================
   MEDIA LORD LIMITED — site.css
   Handwritten CSS, custom properties, BEM naming, mobile-first, CSS Grid
   for page structure and flexbox inside components.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

/* -------------------------------------------------------------------------
   0. Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* -------------------------------------------------------------------------
   1. Global tokens
   ------------------------------------------------------------------------- */
:root {
  --space-1: 0.5rem;
  --space-2: 0.875rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5rem;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1140px;
  --focus-ring: 0 0 0 3px rgba(90, 140, 255, 0.55);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

:focus-visible {
  outline: 3px solid #5a8cff;
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* -------------------------------------------------------------------------
   2. Publication theme (advertorial + about) — dark, modern-grotesk
   ------------------------------------------------------------------------- */
.pub {
  --bg: #0a0c13;
  --bg-alt: #10131d;
  --bg-card: #151827;
  --border: #262c40;
  --text: #f4f6fb;
  --text-dim: #a7adc2;
  --accent: #4f7dff;
  --accent-2: #8b6dff;
  --accent-soft: rgba(79, 125, 255, 0.16);
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
}
.pub h1, .pub h2, .pub h3, .pub .mast__word {
  font-family: "Sora", "Inter", sans-serif;
}

.pub__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Masthead */
.mast {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.mast__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.mast__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}
.mast__brand-icon { font-size: 1.2rem; }
.mast__toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  cursor: pointer;
}
.mast__toggle:hover { background: var(--bg-card); }
.mast__menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 1rem;
  border-top: 1px solid var(--border);
}
.mast__menu.is-open { display: flex; padding-top: 0.75rem; }
.mast__menu a {
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mast__menu a:hover, .mast__menu a:focus-visible { background: var(--bg-card); color: var(--text); }

@media (min-width: 768px) {
  .mast__menu {
    display: flex !important;
    flex-direction: row;
    border-top: none;
    padding: 0;
    gap: 0.5rem;
  }
  .mast__toggle { display: none; }
}

/* Hero */
.hero {
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
}
.hero__ribbon {
  margin: 0 auto var(--space-3);
  width: fit-content;
}
.hero__eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hero__title {
  font-size: clamp(1.75rem, 5.5vw + 0.5rem, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subhead {
  margin: var(--space-2) auto 0;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw + 0.6rem, 1.2rem);
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: var(--space-3);
}
.hero__cta {
  margin-top: var(--space-4);
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(79, 125, 255, 0.55);
}
.btn--primary:hover { box-shadow: 0 14px 28px -8px rgba(79, 125, 255, 0.7); }
.btn--block { width: 100%; }
.btn--ghost-dark {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost-dark:hover { background: var(--bg-card); }

/* Section shells */
.section { padding: var(--space-5) 0; }
.section--alt.pub-alt { background: var(--bg-alt); }
.section__kicker {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
}
.section__title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 800;
  text-align: center;
  max-width: 34ch;
  margin: 0 auto;
  line-height: 1.2;
}
.section__lede {
  text-align: center;
  color: var(--text-dim);
  max-width: 56ch;
  margin: var(--space-2) auto 0;
  font-size: 1.05rem;
}
.pub .section__lede, .pub p, .pub li { color: var(--text-dim); }
.pub .prose p, .pub .prose li { color: var(--text-dim); }
.pub strong { color: var(--text); }

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.stat-band__item {
  text-align: center;
  padding: var(--space-3) var(--space-1);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-band__figure {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3.2vw + 0.8rem, 2.6rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat-band__label {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
@media (min-width: 700px) {
  .stat-band { grid-template-columns: repeat(4, 1fr); }
}

/* Card grid (2x2 quiz-card language) */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.step-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.step-card__num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step-card__title { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.step-card__text { color: var(--text-dim); font-size: 0.95rem; }
.step-card__tag {
  align-self: flex-start;
  margin-top: auto;
  background: rgba(79,125,255,0.14);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

/* Offer list */
.offer-list {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.9rem;
}
.offer-list__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}
.offer-list__mark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.offer-list__text { color: var(--text); font-weight: 500; }

/* Media frame */
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.media-frame video, .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }

/* Split layout */
.split {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
@media (min-width: 800px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}

/* Quote card (accent borrow: testimonial card shape) */
.quote-card {
  margin-top: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  max-width: 700px;
  margin-inline: auto;
  position: relative;
}
.quote-card__mark {
  font-family: "Sora", serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quote-card__text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.quote-card__byline {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Objection / FAQ accordion-like list */
.faq {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.75rem;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.faq__q {
  font-weight: 700;
  color: var(--text);
  font-size: 1.02rem;
  display: flex;
  gap: 0.6rem;
}
.faq__a { margin-top: 0.5rem; color: var(--text-dim); }

/* CTA band */
.cta-band {
  margin-top: var(--space-5);
  background: linear-gradient(135deg, rgba(79,125,255,0.18), rgba(139,109,255,0.14));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}
.cta-band__kicker {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.cta-band__title { font-size: clamp(1.3rem, 2.4vw + 0.5rem, 1.8rem); font-weight: 800; color: var(--text); max-width: 30ch; margin: 0 auto; }
.cta-band__text { color: var(--text-dim); margin-top: 0.6rem; max-width: 50ch; margin-inline: auto; }
.cta-band__actions { margin-top: var(--space-3); display: flex; justify-content: center; }

/* Price teaser strip */
.price-teaser {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.price-teaser__range { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--text); }
.price-teaser__note { color: var(--text-dim); font-size: 0.9rem; max-width: 32ch; }

/* -------------------------------------------------------------------------
   3. Disclaimer + footer (shared, both themes)
   ------------------------------------------------------------------------- */
.site-disclaimer {
  display: block;
  padding: var(--space-3) 0;
}
.site-disclaimer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem var(--space-3);
  border: 1px dashed;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.6;
}
.pub .site-disclaimer__inner {
  border-color: var(--border);
  color: var(--text-dim);
  background: var(--bg-alt);
}
.offer .site-disclaimer__inner {
  border-color: #d9e7e4;
  color: #4a5a58;
  background: #f6fbfa;
}
.site-disclaimer a { text-decoration: underline; font-weight: 600; }

.site-footer {
  padding: var(--space-4) 0 var(--space-5);
}
.pub .site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); color: var(--text-dim); }
.offer .site-footer { background: #0e8f86; color: #eafffb; }
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.site-footer__company {
  font-size: 0.9rem;
  line-height: 1.7;
  white-space: pre-line;
}
.offer .site-footer__company { color: #eafffb; }
.pub .site-footer__company { color: var(--text-dim); }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.site-footer__links a { min-height: 44px; display: inline-flex; align-items: center; }
.pub .site-footer__links a { color: var(--text); }
.pub .site-footer__links a:hover { color: var(--accent); }
.offer .site-footer__links a { color: #ffffff; }
.offer .site-footer__links a:hover { text-decoration: underline; }
.site-footer__meta { font-size: 0.8rem; opacity: 0.85; }

/* -------------------------------------------------------------------------
   4. Offer theme — light, founder-letter / narrative (Pazy-derived)
   ------------------------------------------------------------------------- */
.offer {
  --bg: #ffffff;
  --bg-alt: #f4fbfa;
  --card: #ffffff;
  --border: #dfeeec;
  --text: #163430;
  --text-dim: #56685f;
  --teal: #14a89a;
  --teal-dark: #0d7f74;
  --cta: #ff5a3c;
  --cta-dark: #e14526;
  --ink: #14171a;
  background: var(--bg);
  color: var(--text);
}
.offer h1, .offer h2, .offer h3 { font-family: "Sora", "Inter", sans-serif; }

.offer-mast {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.offer-mast__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.offer-mast__brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.offer-mast__cta {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.offer-mast__cta:hover { background: var(--teal-dark); }

.byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: var(--space-4) auto 0;
  text-align: left;
  max-width: 420px;
}
.byline__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.byline__name { font-weight: 700; font-size: 0.92rem; }
.byline__date { color: var(--text-dim); font-size: 0.82rem; }

.offer-hero {
  padding: var(--space-3) 0 var(--space-5);
  text-align: center;
}
.offer-hero__title {
  margin-top: var(--space-3);
  font-size: clamp(1.7rem, 5vw + 0.4rem, 2.75rem);
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1.18;
  max-width: 20ch;
  margin-inline: auto;
}
.offer-hero__subhead {
  margin: var(--space-2) auto 0;
  max-width: 52ch;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.15rem);
}
.offer-hero__media {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
}
.offer-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.btn--cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(255, 90, 60, 0.5);
}
.btn--cta:hover { background: var(--cta-dark); }
.btn--teal {
  background: var(--teal);
  color: #fff;
}
.btn--teal:hover { background: var(--teal-dark); }
.btn--outline-offer {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.btn--outline-offer:hover { background: var(--ink); color: #fff; }

.offer-section { padding: var(--space-5) 0; }
.offer-section--alt { background: var(--bg-alt); }
.offer-section__kicker {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.5rem;
}
.offer-section__title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
  font-weight: 800;
  text-align: center;
  max-width: 34ch;
  margin: 0 auto;
  line-height: 1.25;
}
.offer-section__lede {
  text-align: center;
  color: var(--text-dim);
  max-width: 58ch;
  margin: var(--space-2) auto 0;
}

.prose-narrow { max-width: 700px; margin: var(--space-4) auto 0; }
.prose-narrow p { margin-bottom: 1.1rem; color: var(--text); }
.prose-narrow p:last-child { margin-bottom: 0; }
.prose-narrow a { color: var(--teal-dark); text-decoration: underline; font-weight: 600; }

/* Pull quote / big stat card (Pazy calculator-card look) */
.pull-quote {
  margin: var(--space-4) auto 0;
  max-width: 560px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}
.pull-quote__eyebrow { color: var(--text-dim); font-size: 0.9rem; }
.pull-quote__figure {
  margin-top: 0.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw + 0.6rem, 3rem);
  color: var(--teal-dark);
  line-height: 1.1;
}
.pull-quote__caption { margin-top: 0.5rem; color: var(--text-dim); font-size: 0.92rem; }

/* Benefit bullets */
.benefit-list { margin-top: var(--space-4); display: grid; gap: 1rem; max-width: 680px; margin-inline: auto; }
.benefit-list__item { display: flex; gap: 0.85rem; align-items: flex-start; }
.benefit-list__mark {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.benefit-list__title { font-weight: 700; color: var(--text); }
.benefit-list__text { color: var(--text-dim); font-size: 0.95rem; margin-top: 0.15rem; }

/* Divider (accent borrow: Cursor section-divider treatment) */
.section-divider {
  height: 72px;
  background: repeating-linear-gradient(135deg, #eef7f5 0 18px, #f7fbfa 18px 36px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Tabs (packages) — accent borrow: CTA button/button-row treatment */
.tabs { margin-top: var(--space-4); }
.tabs__row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.tabs__btn {
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.15s ease, color 0.15s ease;
}
.tabs__btn:hover { background: #f1f1f1; }
.tabs__btn.is-active {
  background: var(--ink);
  color: #fff;
}
.tabs__panels { position: relative; }
.tabs__panel {
  display: none;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  max-width: 620px;
  margin-inline: auto;
}
.tabs__panel.is-active { display: block; }
.tabs__panel--highlight { border: 2px solid var(--teal); background: #ecfbf8; }
.panel__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.panel__name { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.panel__badge {
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.panel__price { font-family: "Sora", sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--teal-dark); margin-top: 0.5rem; }
.panel__hours { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.2rem; }
.panel__list { margin-top: var(--space-3); display: grid; gap: 0.65rem; }
.panel__list li { display: flex; gap: 0.6rem; color: var(--text); font-size: 0.97rem; }
.panel__list li::before { content: "✓"; color: var(--teal-dark); font-weight: 800; flex-shrink: 0; }
.panel__cta { margin-top: var(--space-3); }

/* Add-ons */
.addon-grid {
  margin-top: var(--space-4);
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
}
.addon-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.addon-card__name { font-weight: 700; color: var(--text); }
.addon-card__price { font-family: "Sora", sans-serif; font-weight: 800; color: var(--teal-dark); font-size: 1.2rem; }
.addon-card__text { color: var(--text-dim); font-size: 0.9rem; }

/* Perk stack */
.perk-stack { margin-top: var(--space-4); display: grid; gap: 0.7rem; max-width: 640px; margin-inline: auto; }
.perk-stack__item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 500;
}
.perk-stack__icon { font-size: 1.1rem; }

/* What clients pay aside */
.rate-aside {
  margin-top: var(--space-4);
  max-width: 700px;
  margin-inline: auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: #fffefb;
}
.rate-aside__label {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.rate-aside__grid { display: grid; gap: 0.9rem; }
@media (min-width: 640px) {
  .rate-aside__grid { grid-template-columns: repeat(2, 1fr); }
}
.rate-aside__row { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--border); padding-bottom: 0.6rem; font-size: 0.95rem; }
.rate-aside__row span:last-child { font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
.rate-aside__math { margin-top: var(--space-3); padding-top: var(--space-2); border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.92rem; }

/* Steps (how you deliver) */
.steps { margin-top: var(--space-4); max-width: 700px; margin-inline: auto; display: grid; gap: var(--space-3); }
.steps__item { display: flex; gap: 1rem; }
.steps__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.steps__title { font-weight: 700; color: var(--text); }
.steps__text { color: var(--text-dim); margin-top: 0.2rem; font-size: 0.95rem; }

/* Limits block */
.limits {
  margin-top: var(--space-4);
  max-width: 700px;
  margin-inline: auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cta);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3);
}
.limits__title { font-weight: 700; margin-bottom: 0.5rem; }
.limits ul { display: grid; gap: 0.4rem; }
.limits li { color: var(--text-dim); font-size: 0.94rem; padding-left: 1.1rem; position: relative; }
.limits li::before { content: "–"; position: absolute; left: 0; color: var(--text-dim); }

/* Lead form */
.lead-form {
  margin-top: var(--space-4);
  max-width: 620px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.lead-form__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .lead-form__row-2 { grid-template-columns: 1fr 1fr; display: grid; gap: 1rem; }
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.field input, .field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
}
.field input:focus, .field textarea:focus { border-color: var(--teal); }
.field--checkbox { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.field--checkbox input { width: 20px; height: 20px; margin-top: 0.15rem; flex-shrink: 0; }
.field--checkbox label { font-weight: 500; font-size: 0.9rem; }
.field__hint { font-size: 0.8rem; color: var(--text-dim); }
.field__error {
  font-size: 0.82rem;
  color: #c22b1f;
  display: none;
}
.field.has-error input, .field.has-error textarea { border-color: #c22b1f; }
.field.has-error .field__error { display: block; }
.lead-form__submit { margin-top: 1.4rem; }
.lead-form__success {
  display: none;
  margin-top: 1.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  color: var(--teal-dark);
  font-weight: 600;
}
.lead-form__success.is-visible { display: block; }
.lead-form.is-submitted form { display: none; }

/* -------------------------------------------------------------------------
   5. Legal pages (shared minimal layout, offer theme)
   ------------------------------------------------------------------------- */
.legal {
  padding: var(--space-5) 0 var(--space-4);
}
.legal__title {
  font-size: clamp(1.6rem, 3.5vw + 0.5rem, 2.4rem);
  font-weight: 800;
  color: var(--teal-dark);
}
.legal__updated { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.4rem; }
.legal__body { margin-top: var(--space-4); max-width: 720px; }
.legal__body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: var(--space-4);
  color: var(--text);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p, .legal__body li { color: var(--text-dim); margin-top: 0.75rem; line-height: 1.7; }
.legal__body ul { padding-left: 1.2rem; }
.legal__body li { list-style: disc; }
.legal__body a { color: var(--teal-dark); text-decoration: underline; font-weight: 600; }

/* About (publication theme) */
.about-hero { padding: var(--space-5) 0 var(--space-4); text-align: center; }
.about-hero__title { font-size: clamp(1.8rem, 4vw + 0.5rem, 2.6rem); font-weight: 800; }
.about-hero__lede { color: var(--text-dim); max-width: 60ch; margin: var(--space-2) auto 0; }
.about-grid { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
@media (min-width: 700px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.about-card__title { font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.about-card__text { color: var(--text-dim); font-size: 0.95rem; }

/* 404-style not found reuse (contact page has none, but keep generic) */
.not-found { padding: var(--space-6) 0; text-align: center; }

/* -------------------------------------------------------------------------
   6. Utility
   ------------------------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
