/* ==========================================================================
   Shared base
   ========================================================================== */
:root {
  color-scheme: light dark;
}

[x-cloak] {
  display: none !important;
}

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

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-underline-offset: 2px;
}

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

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

/* focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffd166;
  outline-offset: 2px;
}

/* ==========================================================================
   Disclaimer + footer (shared skeleton, theme modifiers)
   ========================================================================== */
.site-disclaimer {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.site-disclaimer--dark {
  background: #141a29;
  border: 1px solid #2a3350;
  color: #cbd3ec;
}
.site-disclaimer--light {
  background: #f4f1ec;
  border: 1px solid #ded6c6;
  color: #3a3530;
}
.site-disclaimer a {
  font-weight: 600;
  text-decoration: underline;
}
.site-disclaimer--dark a { color: #8fb2ff; }
.site-disclaimer--light a { color: #b8460e; }

.site-footer {
  padding: 2.5rem 1.25rem 3rem;
}
.site-footer--dark {
  background: #05070c;
  color: #9aa4c4;
}
.site-footer--light {
  background: #1c2333;
  color: #c4cadd;
}
.site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-footer__company {
  font-size: 0.875rem;
  line-height: 1.7;
  white-space: pre-line;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
}
.site-footer__links a {
  color: inherit;
  text-decoration: underline;
  padding: 0.25rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-footer--dark .site-footer__links a:hover { color: #8fb2ff; }
.site-footer--light .site-footer__links a:hover { color: #ffb27a; }

/* ==========================================================================
   PUBLICATION theme (advertorial + about) — dark, bold grotesk
   ========================================================================== */
.pub-body {
  background: #0b0f19;
  color: #e7eaf6;
  font-family: 'Inter', system-ui, sans-serif;
}
.pub-display {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
}
.pub-ribbon {
  background: #05070c;
  color: #9aa4c4;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  font-weight: 600;
}
.pub-header {
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1b2236;
}
.pub-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #f4f6ff;
  font-size: 1.05rem;
}
.pub-logo__mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #3b6cff, #7aa0ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex: none;
}
.pub-nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #cbd3ec;
  border: 1px solid #262f48;
}
.pub-hero {
  padding: 2.5rem 1.25rem 1.5rem;
  text-align: center;
}
.pub-hero__h1 {
  font-size: clamp(1.9rem, 6vw, 3.25rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 52rem;
  margin: 0 auto;
}
.pub-hero__h1 .accent { color: #5b8bff; }
.pub-hero__h2 {
  margin: 1.1rem auto 0;
  max-width: 42rem;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: #b9c1e2;
  font-weight: 500;
  line-height: 1.5;
}
.pub-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #141a29;
  border: 1px solid #2a3350;
  color: #b9c1e2;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.pub-section {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.75rem 1.25rem;
}
.pub-section--tight { padding-top: 0; }
.pub-section h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f6ff;
}
.pub-prose {
  color: #cbd3ec;
  font-size: 1.05rem;
  line-height: 1.75;
}
.pub-prose p + p { margin-top: 1.1rem; }
.pub-prose strong { color: #f4f6ff; }
.pub-card {
  background: #141a29;
  border: 1px solid #242c46;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  height: 100%;
}
.pub-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #1c2440;
  color: #8fb2ff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.pub-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f4f6ff;
  margin-bottom: 0.5rem;
}
.pub-card p {
  color: #b9c1e2;
  font-size: 0.98rem;
  line-height: 1.6;
}
.pub-card--highlight {
  background: linear-gradient(160deg, #1c2440, #141a29);
  border: 1px solid #3b6cff;
  box-shadow: 0 0 0 1px rgba(91,139,255,0.15), 0 18px 40px -20px rgba(59,108,255,0.55);
}
.pub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .pub-grid { grid-template-columns: 1fr 1fr; }
}
.pub-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 768px) {
  .pub-split { grid-template-columns: 1fr 1fr; }
}
.pub-callout {
  border-left: 3px solid #ffb454;
  background: #1a1710;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  color: #ffe3b0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
}
.pub-callout span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb454;
  margin-bottom: 0.5rem;
}
.pub-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #3b6cff;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 0.85rem;
  min-height: 44px;
  transition: background 0.15s ease, transform 0.15s ease;
  box-shadow: 0 12px 28px -14px rgba(59,108,255,0.7);
}
.pub-cta:hover { background: #2c58e0; transform: translateY(-1px); }
.pub-cta--ghost {
  background: transparent;
  border: 1px solid #3b6cff;
  color: #8fb2ff;
  box-shadow: none;
}
.pub-cta--ghost:hover { background: rgba(59,108,255,0.12); }
.pub-cta-band {
  text-align: center;
  padding: 2.5rem 1.25rem;
  background: #0f1526;
  border-top: 1px solid #1b2236;
  border-bottom: 1px solid #1b2236;
}
.pub-summary {
  background: #141a29;
  border: 1px solid #242c46;
  border-radius: 1.25rem;
  padding: 1.75rem;
}
.pub-summary ul { margin-top: 0.75rem; }
.pub-summary li {
  display: flex;
  gap: 0.6rem;
  color: #cbd3ec;
  padding: 0.35rem 0;
  line-height: 1.5;
}
.pub-summary li::before {
  content: "✓";
  color: #6fdc9a;
  font-weight: 700;
  flex: none;
}
.pub-faq {
  border: 1px solid #242c46;
  border-radius: 0.9rem;
  background: #141a29;
  overflow: hidden;
}
.pub-faq + .pub-faq { margin-top: 0.75rem; }
.pub-faq__q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #f4f6ff;
  min-height: 44px;
}
.pub-faq__icon {
  transition: transform 0.2s ease;
  color: #8fb2ff;
  flex: none;
}
.pub-faq__a {
  padding: 0 1.25rem 1.1rem;
  color: #b9c1e2;
  line-height: 1.65;
}
.pub-figure {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid #242c46;
}
.pub-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #8892b3;
  background: #10151f;
}
.pub-trustrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.pub-trustchip {
  background: #10151f;
  border: 1px solid #242c46;
  color: #cbd3ec;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   OFFER theme (training + legal pages) — warm light retail/campaign
   ========================================================================== */
.offer-body {
  background: #f7f4ee;
  color: #2a2620;
  font-family: 'Inter', system-ui, sans-serif;
}
.offer-display {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
}
.offer-header {
  background: #ffffff;
  border-bottom: 1px solid #e7e0d2;
  padding: 0.9rem 1.25rem;
}
.offer-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.offer-logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1c2333;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.offer-logo__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #ff5a1f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex: none;
}
.offer-nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4b463d;
}
@media (min-width: 768px) {
  .offer-nav { display: flex; }
}
.offer-nav a:hover { color: #ff5a1f; }
.offer-header__cta {
  background: #ff5a1f;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease;
}
.offer-header__cta:hover { background: #d84c17; }

.offer-hero__banner {
  position: relative;
  background: linear-gradient(120deg, #ff5a1f, #ff8a3d);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  max-height: 260px;
}
@media (min-width: 768px) {
  .offer-hero__banner { aspect-ratio: 21 / 6; max-height: 340px; }
}
.offer-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  mix-blend-mode: multiply;
}
.offer-hero__body {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
}
.offer-hero__kicker {
  color: #b8460e;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.offer-hero__h1 {
  font-size: clamp(1.8rem, 5.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1c2333;
  max-width: 42rem;
}
.offer-hero__sub {
  margin-top: 0.9rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: #4b463d;
  max-width: 38rem;
  line-height: 1.6;
}
.offer-pullquote {
  margin-top: 1.5rem;
  border: 1px solid #e7e0d2;
  border-left: 4px solid #1c3faa;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.1rem 1.4rem;
  max-width: 34rem;
}
.offer-pullquote span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1c3faa;
  margin-bottom: 0.35rem;
}
.offer-pullquote p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c2333;
}
.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ff5a1f;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.9rem;
  border-radius: 0.7rem;
  min-height: 44px;
  box-shadow: 0 14px 30px -16px rgba(255,90,31,0.65);
  transition: background 0.15s ease, transform 0.15s ease;
}
.offer-cta:hover { background: #d84c17; transform: translateY(-1px); }
.offer-cta--outline {
  background: transparent;
  color: #1c3faa;
  border: 1.5px solid #1c3faa;
  box-shadow: none;
}
.offer-cta--outline:hover { background: #eef1fb; }
.offer-fineprint {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #6b6459;
  font-style: italic;
  max-width: 34rem;
}
.offer-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.offer-section h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: #1c2333;
}
.offer-section--wrap {
  background: #fffdf9;
  border-top: 1px solid #e7e0d2;
  border-bottom: 1px solid #e7e0d2;
}
.offer-lede {
  color: #4b463d;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 46rem;
}
.offer-icon-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .offer-icon-row { grid-template-columns: repeat(3, 1fr); }
}
.offer-icon-card { text-align: left; }
.offer-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #eaf0ff;
  color: #1c3faa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
.offer-icon-card h3 {
  font-weight: 700;
  color: #1c2333;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.offer-icon-card p {
  color: #55503f;
  font-size: 0.95rem;
  line-height: 1.55;
}
.offer-badgerow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.offer-badgepill {
  background: #fff;
  border: 1px solid #e7e0d2;
  color: #4b463d;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.offer-aside {
  border: 1px solid #f0c8a8;
  background: #fff6ec;
  border-radius: 1rem;
  padding: 1.75rem;
}
.offer-aside__label {
  display: inline-block;
  background: #ff5a1f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.offer-aside table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.offer-aside th, .offer-aside td {
  text-align: left;
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid #f0ddc7;
  font-size: 0.92rem;
}
.offer-aside th { color: #8a5a2e; font-weight: 700; }
.offer-aside td { color: #3a3530; }
.offer-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .offer-steps { grid-template-columns: 1fr 1fr; }
}
.offer-step {
  background: #fff;
  border: 1px solid #e7e0d2;
  border-radius: 1rem;
  padding: 1.5rem;
}
.offer-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #1c3faa;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.offer-step h3 { font-weight: 700; color: #1c2333; margin-bottom: 0.35rem; font-size: 1.02rem; }
.offer-step p { color: #55503f; font-size: 0.92rem; line-height: 1.55; }
.offer-step--callout {
  background: #eef1fb;
  border: 1.5px solid #1c3faa;
}
.offer-step--callout h3 { color: #1c3faa; }

.offer-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 1rem;
  border: 1px solid #e7e0d2;
}
.offer-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}
.offer-price-table th, .offer-price-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee6d8;
  font-size: 0.92rem;
  text-align: left;
  vertical-align: top;
}
.offer-price-table thead th {
  background: #1c2333;
  color: #fff;
  font-size: 0.95rem;
}
.offer-price-table th:first-child, .offer-price-table td:first-child {
  width: 30%;
  color: #55503f;
  font-weight: 600;
}
.offer-price-table td.price-cell {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1c2333;
}
.offer-price-table th.is-highlight, .offer-price-table td.is-highlight {
  background: #fff6ec;
}
.offer-price-table thead th.is-highlight {
  background: #ff5a1f;
}
.offer-tier-badge {
  display: inline-block;
  background: #ffe1c9;
  color: #b8460e;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-top: 0.35rem;
}
.offer-addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 640px) {
  .offer-addons { grid-template-columns: 1fr 1fr; }
}
.offer-addon-card {
  background: #fff;
  border: 1px solid #e7e0d2;
  border-radius: 0.9rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.offer-addon-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.offer-addon-card__head h3 {
  font-weight: 700;
  color: #1c2333;
  font-size: 1rem;
}
.offer-addon-card__price {
  font-weight: 800;
  color: #b8460e;
  font-size: 1.05rem;
  white-space: nowrap;
}
.offer-addon-card p { color: #55503f; font-size: 0.9rem; line-height: 1.5; }
.offer-perks {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .offer-perks { grid-template-columns: 1fr 1fr; }
}
.offer-perk {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e7e0d2;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  color: #2a2620;
  line-height: 1.5;
}
.offer-perk::before {
  content: "★";
  color: #ff5a1f;
  flex: none;
}
.offer-limits {
  background: #f1eee7;
  border: 1px solid #e0d9c8;
  border-radius: 1rem;
  padding: 1.75rem;
}
.offer-limits ul { margin-top: 0.75rem; }
.offer-limits li {
  padding: 0.3rem 0;
  color: #4b463d;
  font-size: 0.95rem;
  line-height: 1.55;
  display: flex;
  gap: 0.6rem;
}
.offer-limits li::before {
  content: "–";
  flex: none;
  color: #8a5a2e;
}
.offer-form-wrap {
  background: #1c2333;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  color: #fff;
}
.offer-form-wrap h2 { color: #fff; }
.offer-form-wrap .offer-lede { color: #c4cadd; }
.offer-form {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 40rem;
}
@media (min-width: 640px) {
  .offer-form--pair { grid-template-columns: 1fr 1fr; }
}
.offer-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #e3e7f5;
}
.offer-field input,
.offer-field textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #3a4363;
  background: #242c46;
  color: #fff;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  min-height: 44px;
}
.offer-field input::placeholder,
.offer-field textarea::placeholder { color: #8a92b5; }
.offer-field input:focus, .offer-field textarea:focus {
  border-color: #ff8a3d;
  outline: none;
}
.offer-field--error input, .offer-field--error textarea {
  border-color: #ff8686;
}
.offer-error {
  color: #ffb3b3;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  min-height: 1rem;
}
.offer-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #c4cadd;
  line-height: 1.5;
}
.offer-consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex: none;
}
.offer-consent a { color: #ffb27a; text-decoration: underline; }
.offer-success {
  background: #16351f;
  border: 1px solid #2f7a45;
  color: #d3f5dd;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}
.offer-two-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .offer-two-card { grid-template-columns: 1fr 1fr; }
}
.offer-two-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e7e0d2;
  border-radius: 0.9rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: #1c2333;
  transition: border-color 0.15s ease;
}
.offer-two-card a:hover { border-color: #ff5a1f; }

/* ==========================================================================
   Legal pages (shared light template)
   ========================================================================== */
.legal-body {
  background: #f7f4ee;
  color: #2a2620;
  font-family: 'Inter', system-ui, sans-serif;
}
.legal-main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}
.legal-main h1 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 800;
  color: #1c2333;
  margin-bottom: 1rem;
}
.legal-main h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c2333;
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}
.legal-main p, .legal-main li {
  color: #4b463d;
  line-height: 1.7;
  font-size: 1rem;
}
.legal-main ul, .legal-main ol {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-main ul { list-style: disc; }
.legal-main ol { list-style: decimal; }
.legal-main a { color: #1c3faa; text-decoration: underline; }
.legal-updated {
  color: #8a5a2e;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
