/* =========================================================================
   Site overrides on top of UIkit 3.21.6
   Two design families:
     - .family-publication  (advertorial + about)
     - .family-offer        (offer page + legal pages)
   ========================================================================= */

:root{
  /* ---- publication family ---- */
  --pub-header-bg:#123b46;
  --pub-header-text:#f4f4f2;
  --pub-bg:#eef1f2;
  --pub-card-bg:#ffffff;
  --pub-text:#1d1f22;
  --pub-text-soft:#4b5765;
  --pub-border:#dfe3e6;
  --pub-accent:#c0392b;
  --pub-cta:#2f9e44;
  --pub-cta-dark:#227a34;
  --pub-serif:'Lora', Georgia, serif;
  --pub-sans:'Source Sans Pro', Arial, sans-serif;

  /* ---- offer family ---- */
  --offer-bg-dark:#12161c;
  --offer-bg-dark-2:#1a1f27;
  --offer-bg-light:#f3f4f6;
  --offer-card-bg:#ffffff;
  --offer-text-light:#f7f7f8;
  --offer-text-dark:#14181f;
  --offer-text-soft:#5b6270;
  --offer-accent:#e6483f;
  --offer-accent-dark:#c53a32;
  --offer-border:#e3e5e9;
  --offer-sans:'Inter', Arial, sans-serif;
}

*{ 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:none; }
.uk-container{ max-width:1200px; }

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

/* =========================================================================
   SHARED: earnings disclaimer + footer (every page)
   ========================================================================= */
.site-disclaimer{
  display:block;
  background:#fbf7ec;
  border:1px solid #e3d9b8;
  border-radius:8px;
  color:#4a4130;
  padding:18px 20px;
  margin:0 auto;
  max-width:1200px;
  font-size:14px;
  line-height:1.6;
}
.site-disclaimer a{ color:#7a4b12; text-decoration:underline; font-weight:600; }
.site-disclaimer a:hover, .site-disclaimer a:focus{ color:#4a2e08; }
.site-disclaimer-wrap{ padding:28px 16px; background:var(--pub-bg); }
.family-offer .site-disclaimer-wrap{ background:var(--offer-bg-light); }

.site-footer{
  background:#0e1116;
  color:#c7cbd1;
  padding:36px 16px 28px;
}
.site-footer__inner{ max-width:1200px; margin:0 auto; }
.site-footer__company{
  font-size:14px;
  line-height:1.8;
  white-space:pre-line;
  color:#c7cbd1;
  border-bottom:1px solid #262b33;
  padding-bottom:20px;
  margin-bottom:20px;
}
.site-footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  padding:0;
  margin:0;
  list-style:none;
}
.site-footer__links a{
  color:#f0f1f3;
  font-size:14px;
  font-weight:600;
  display:inline-block;
  padding:6px 0;
}
.site-footer__links a:hover, .site-footer__links a:focus{ color:var(--offer-accent); outline:none; text-decoration:underline; }
.site-footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid #262b33;
  font-size:12.5px;
  color:#7d838d;
}

/* focus visibility everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:3px solid #4fa8ff;
  outline-offset:2px;
}

/* =========================================================================
   PUBLICATION FAMILY (advertorial + about)
   ========================================================================= */
.family-publication{
  background:var(--pub-bg);
  color:var(--pub-text);
  font-family:var(--pub-sans);
}

.pub-topbar{
  background:var(--pub-header-bg);
  color:var(--pub-header-text);
  padding:14px 16px;
}
.pub-topbar__inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.pub-topbar__mast{
  font-family:var(--pub-serif);
  font-weight:700;
  font-size:clamp(18px,4vw,24px);
  color:#fff;
  letter-spacing:.2px;
}
.pub-topbar__ribbon{
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#dfe9e6;
  border:1px solid rgba(255,255,255,.35);
  padding:5px 10px;
  border-radius:3px;
  white-space:nowrap;
}

.pub-breadcrumb{
  max-width:1200px;
  margin:0 auto;
  padding:14px 16px 0;
  font-size:13px;
  color:var(--pub-text-soft);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
}
.pub-breadcrumb__chip{
  display:inline-block;
  width:10px;height:10px;
  background:var(--pub-header-bg);
  margin-right:6px;
  border-radius:2px;
}
.pub-breadcrumb a{ color:var(--pub-text-soft); }
.pub-breadcrumb a:hover{ color:var(--pub-accent); text-decoration:underline; }

.pub-wrap{ max-width:1200px; margin:0 auto; padding:18px 16px 0; }

.pub-h1{
  font-family:var(--pub-serif);
  font-weight:700;
  font-size:clamp(28px,5.6vw,44px);
  line-height:1.15;
  margin:10px 0 14px;
  color:#111417;
}

.pub-byline{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px solid var(--pub-border);
  font-size:13.5px;
  color:var(--pub-text-soft);
}
.pub-byline__meta strong{ color:var(--pub-text); display:block; font-size:14.5px; }
.pub-share{ display:flex; gap:8px; }
.pub-share__btn{
  width:34px;height:34px;
  border-radius:50%;
  background:#eef1f2;
  border:1px solid var(--pub-border);
  color:var(--pub-header-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  cursor:default;
}

.pub-layout{ display:block; }
.pub-main{ min-width:0; }
.pub-aside{ margin-top:28px; }

@media (min-width:1024px){
  .pub-layout{ display:grid; grid-template-columns:2fr 1fr; gap:40px; align-items:start; }
  .pub-aside{ margin-top:0; position:sticky; top:20px; }
}

.pub-hero-media{
  border-radius:6px;
  overflow:hidden;
  margin-bottom:22px;
  background:#0c1113;
}
.pub-hero-media img{ width:100%; }

.pub-article{ font-size:17px; line-height:1.75; color:var(--pub-text); }
.pub-article p{ margin:0 0 18px; }
.pub-article h2{
  font-family:var(--pub-serif);
  font-size:clamp(22px,3.6vw,30px);
  line-height:1.25;
  margin:36px 0 14px;
  color:#111417;
}
.pub-article h3{
  font-family:var(--pub-sans);
  font-weight:700;
  font-size:clamp(18px,2.8vw,21px);
  margin:26px 0 10px;
  color:#111417;
}
.pub-article strong{ color:#111417; }

.pub-pullquote{
  font-family:var(--pub-serif);
  font-size:clamp(20px,3.2vw,25px);
  line-height:1.4;
  color:#123b46;
  border-left:4px solid var(--pub-accent);
  padding:6px 0 6px 20px;
  margin:28px 0;
}
.pub-pullquote span{ display:block; font-family:var(--pub-sans); font-size:14px; color:var(--pub-text-soft); margin-top:10px; font-weight:600; }

.pub-ratebox{
  border:2px solid var(--pub-header-bg);
  border-radius:8px;
  padding:20px 20px 8px;
  margin:28px 0;
  background:#f6faf9;
}
.pub-ratebox__label{
  display:inline-block;
  background:var(--pub-header-bg);
  color:#fff;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:4px;
  margin-bottom:14px;
  font-weight:700;
}
.pub-ratebox__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px dashed var(--pub-border);
  font-size:15px;
}
.pub-ratebox__row:last-of-type{ border-bottom:none; }
.pub-ratebox__row span:first-child{ color:var(--pub-text-soft); }
.pub-ratebox__row span:last-child{ font-weight:700; color:#123b46; white-space:nowrap; }
.pub-ratebox__note{ font-size:12.5px; color:var(--pub-text-soft); padding:8px 0 14px; }

.pub-scorebars{ margin:24px 0; }
.pub-scorebar{ margin-bottom:16px; }
.pub-scorebar__top{ display:flex; justify-content:space-between; font-size:14px; font-weight:600; margin-bottom:6px; }
.pub-scorebar__track{ height:10px; background:#e2e7e8; border-radius:6px; overflow:hidden; }
.pub-scorebar__fill{ height:100%; background:linear-gradient(90deg,#2f9e44,#5cc26a); border-radius:6px; }

.pub-steps{ margin:22px 0; display:grid; gap:16px; }
.pub-step{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  background:var(--pub-card-bg);
  border:1px solid var(--pub-border);
  border-radius:8px;
  padding:16px;
}
.pub-step__num{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--pub-header-bg);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:17px;
}
.pub-step__body h3{ margin:0 0 6px; font-size:17px; }
.pub-step__body p{ margin:0; font-size:15px; color:var(--pub-text-soft); }

.pub-timeline{ margin:22px 0; border-left:2px solid var(--pub-border); padding-left:20px; }
.pub-timeline__entry{ position:relative; padding-bottom:22px; }
.pub-timeline__entry::before{
  content:"";
  position:absolute; left:-25px; top:4px;
  width:10px;height:10px; border-radius:50%;
  background:var(--pub-accent);
}
.pub-timeline__date{ font-size:12.5px; text-transform:uppercase; letter-spacing:.5px; color:var(--pub-accent); font-weight:700; margin-bottom:4px; }
.pub-timeline__entry p{ margin:0; font-size:15px; color:var(--pub-text); }

.pub-offer-list{ list-style:none; padding:0; margin:20px 0; display:grid; gap:10px; }
.pub-offer-list li{
  background:#fff;
  border:1px solid var(--pub-border);
  border-radius:8px;
  padding:12px 14px 12px 40px;
  position:relative;
  font-size:15px;
}
.pub-offer-list li::before{
  content:"✓";
  position:absolute; left:14px; top:11px;
  color:var(--pub-cta);
  font-weight:800;
}

.pub-media-inline{ margin:26px 0; border-radius:6px; overflow:hidden; }
.pub-media-inline figcaption{ font-size:13px; color:var(--pub-text-soft); padding:8px 2px 0; }

.pub-video{
  position:relative;
  width:100%;
  aspect-ratio:16/10;
  border-radius:6px;
  overflow:hidden;
  background:#0c1113;
  margin:26px 0;
}
.pub-video video{ width:100%; height:100%; object-fit:cover; }

.pub-summary-table{ width:100%; border-collapse:collapse; margin:20px 0; font-size:14.5px; }
.pub-summary-table caption{ text-align:left; font-weight:700; margin-bottom:10px; font-size:15px; }
.pub-summary-table th, .pub-summary-table td{ padding:10px 12px; border:1px solid var(--pub-border); text-align:left; }
.pub-summary-table th{ background:#f2f5f5; font-weight:700; }
.pub-table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; }

.pub-cta-band{
  background:#0f2e37;
  color:#f2f6f5;
  border-radius:10px;
  padding:28px 22px;
  margin:32px 0;
  text-align:center;
}
.pub-cta-band h2{ color:#fff; font-family:var(--pub-serif); font-size:clamp(22px,3.6vw,28px); margin:0 0 10px; }
.pub-cta-band p{ margin:0 0 20px; color:#cfe0dc; font-size:15.5px; }

.pub-cta-buttons{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.pub-btn-primary, .pub-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 26px;
  border-radius:6px;
  font-weight:700;
  font-size:15.5px;
  cursor:pointer;
  border:2px solid transparent;
  transition:background .15s ease, transform .15s ease, color .15s ease;
}
.pub-btn-primary{ background:var(--pub-cta); color:#fff; }
.pub-btn-primary:hover, .pub-btn-primary:focus-visible{ background:var(--pub-cta-dark); transform:translateY(-1px); }
.pub-btn-secondary{ background:transparent; color:#fff; border-color:rgba(255,255,255,.5); }
.pub-btn-secondary:hover, .pub-btn-secondary:focus-visible{ border-color:#fff; background:rgba(255,255,255,.08); }

.pub-aside-card{
  background:var(--pub-card-bg);
  border:1px solid var(--pub-border);
  border-radius:8px;
  padding:18px;
  margin-bottom:20px;
}
.pub-aside-card p{ font-size:14.5px; line-height:1.6; color:var(--pub-text); margin:0 0 14px; }
.pub-aside-card img{ border-radius:6px; margin-bottom:12px; }
.pub-aside-card .pub-btn-primary{ width:100%; }

.pub-methodology{
  background:#fff;
  border:1px solid var(--pub-border);
  border-radius:8px;
  padding:18px;
  margin:24px 0;
  font-size:14.5px;
  color:var(--pub-text-soft);
}
.pub-methodology strong{ color:var(--pub-text); }

.pub-author-box{
  display:flex; gap:12px; align-items:center;
  background:#fff; border:1px solid var(--pub-border); border-radius:8px; padding:16px; margin-top:30px;
}
.pub-author-box__avatar{
  width:50px;height:50px;border-radius:50%;
  background:var(--pub-header-bg); color:#fff;
  display:flex;align-items:center;justify-content:center; font-weight:700; font-size:18px; flex:none;
}
.pub-author-box p{ margin:0; font-size:13.5px; color:var(--pub-text-soft); }
.pub-author-box strong{ display:block; font-size:15px; color:var(--pub-text); }

/* about page (publication family, simpler article) */
.pub-about-hero{
  background:var(--pub-card-bg);
  border-radius:8px;
  border:1px solid var(--pub-border);
  padding:26px 20px;
  margin-top:18px;
}
.pub-fact-grid{
  display:grid; gap:14px; margin:22px 0;
  grid-template-columns:1fr;
}
@media (min-width:600px){ .pub-fact-grid{ grid-template-columns:repeat(2,1fr); } }
.pub-fact-card{ background:#fff; border:1px solid var(--pub-border); border-radius:8px; padding:16px; }
.pub-fact-card h3{ margin:0 0 6px; font-size:16px; }
.pub-fact-card p{ margin:0; font-size:14px; color:var(--pub-text-soft); }

/* =========================================================================
   OFFER FAMILY (offer page + legal pages)
   ========================================================================= */
.family-offer{
  background:var(--offer-bg-light);
  color:var(--offer-text-dark);
  font-family:var(--offer-sans);
}

.offer-navbar{
  background:#0d1015;
  padding:14px 16px;
  position:sticky;
  top:0;
  z-index:40;
}
.offer-navbar__inner{
  max-width:1200px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.offer-navbar__brand{
  color:#fff; font-weight:800; font-size:18px; letter-spacing:.2px;
}
.offer-navbar__brand span{ color:var(--offer-accent); }
.offer-navbar__cta{
  background:var(--offer-accent);
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:10px 16px;
  border-radius:6px;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  transition:background .15s ease;
}
.offer-navbar__cta:hover, .offer-navbar__cta:focus-visible{ background:var(--offer-accent-dark); }
.offer-navbar__back{ color:#c7cbd1; font-size:14px; font-weight:600; }
.offer-navbar__back:hover{ color:#fff; text-decoration:underline; }

.offer-hero{
  background:linear-gradient(180deg,#12161c 0%, #171c24 100%);
  color:var(--offer-text-light);
  padding:34px 16px 44px;
}
.offer-hero__inner{
  max-width:1200px; margin:0 auto;
  display:grid; gap:30px;
}
@media (min-width:1024px){
  .offer-hero__inner{ grid-template-columns:1.15fr .85fr; align-items:start; }
}
.offer-kicker{
  display:inline-block;
  font-size:12.5px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:#ffb4ae;
  background:rgba(230,72,63,.15);
  border:1px solid rgba(230,72,63,.4);
  padding:5px 10px;
  border-radius:4px;
  margin-bottom:14px;
}
.offer-h1{
  font-size:clamp(28px,6vw,46px);
  line-height:1.12;
  font-weight:800;
  margin:0 0 16px;
  color:#fff;
}
.offer-h1 em{ font-style:normal; color:#ff8880; }
.offer-hero__sub{ font-size:clamp(15px,2.4vw,18px); color:#c9cdd4; line-height:1.6; margin:0 0 22px; max-width:52ch; }
.offer-hero__badge-row{ display:flex; flex-wrap:wrap; gap:14px; margin:22px 0 26px; }
.offer-badge-circle{
  width:96px;height:96px;border-radius:50%;
  background:var(--offer-accent);
  color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  flex:none;
  box-shadow:0 8px 24px rgba(230,72,63,.35);
}
.offer-badge-circle strong{ font-size:16px; line-height:1.1; }
.offer-badge-circle span{ font-size:10px; text-transform:uppercase; letter-spacing:.5px; }
.offer-hero__note{ font-size:13px; color:#9aa0aa; }

.offer-hero__media{
  border-radius:12px;
  overflow:hidden;
  aspect-ratio:4/3;
  background:#0a0d11;
  border:1px solid #262b33;
}
.offer-hero__media video{ width:100%; height:100%; object-fit:cover; }

.offer-section{ padding:44px 16px; }
.offer-section--light{ background:var(--offer-bg-light); }
.offer-section--white{ background:#fff; }
.offer-section--dark{ background:var(--offer-bg-dark); color:var(--offer-text-light); }
.offer-section__inner{ max-width:1200px; margin:0 auto; }

.offer-eyebrow{
  font-size:12.5px; letter-spacing:1.2px; text-transform:uppercase; color:var(--offer-accent);
  font-weight:700; margin:0 0 10px;
}
.offer-h2{ font-size:clamp(24px,4vw,34px); font-weight:800; margin:0 0 16px; line-height:1.2; }
.offer-section--dark .offer-h2{ color:#fff; }
.offer-lede{ font-size:16px; line-height:1.7; color:var(--offer-text-soft); max-width:70ch; margin:0 0 26px; }
.offer-section--dark .offer-lede{ color:#c9cdd4; }

.offer-cards{ display:grid; gap:16px; grid-template-columns:1fr; }
@media (min-width:600px){ .offer-cards{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px){ .offer-cards{ grid-template-columns:repeat(4,1fr); } }
.offer-card{
  background:#fff; border:1px solid var(--offer-border); border-radius:10px; padding:22px 18px;
  transition:transform .15s ease, box-shadow .15s ease;
}
.offer-card:hover{ transform:translateY(-3px); box-shadow:0 10px 26px rgba(20,24,31,.08); }
.offer-card__icon{
  width:44px;height:44px;border-radius:10px;background:#fdeceb;color:var(--offer-accent);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:18px;margin-bottom:14px;
}
.offer-card h3{ font-size:16.5px; margin:0 0 8px; }
.offer-card p{ font-size:14px; color:var(--offer-text-soft); margin:0; line-height:1.6; }

.offer-stat-band{
  background:#fff;
  border:1px solid var(--offer-border);
  border-radius:12px;
  padding:26px 20px;
  display:grid;
  gap:22px;
  grid-template-columns:1fr;
  text-align:center;
}
@media (min-width:700px){ .offer-stat-band{ grid-template-columns:repeat(3,1fr); text-align:left; } }
.offer-stat{ position:relative; padding:0 6px; }
.offer-stat__value{ font-size:clamp(26px,4vw,34px); font-weight:800; color:var(--offer-accent-dark); display:block; }
.offer-stat__label{ font-size:13.5px; color:var(--offer-text-soft); margin-top:4px; }

.offer-ratebox{
  border:2px solid var(--offer-accent);
  border-radius:10px;
  padding:22px 20px 8px;
  background:#fff8f7;
  margin:8px 0 0;
}
.offer-ratebox__label{
  display:inline-block; background:var(--offer-accent); color:#fff; font-size:12px; letter-spacing:1px;
  text-transform:uppercase; padding:5px 10px; border-radius:4px; font-weight:700; margin-bottom:14px;
}
.offer-ratebox__row{
  display:flex; justify-content:space-between; gap:10px; padding:10px 0; border-bottom:1px dashed #e8cfcb; font-size:15px;
}
.offer-ratebox__row:last-of-type{ border-bottom:none; }
.offer-ratebox__row span:first-child{ color:var(--offer-text-soft); }
.offer-ratebox__row span:last-child{ font-weight:700; color:var(--offer-accent-dark); white-space:nowrap; text-align:right; }
.offer-ratebox__math{
  margin-top:10px; padding:14px 0 4px; border-top:1px solid #e8cfcb; font-size:14.5px; color:var(--offer-text-dark);
}
.offer-ratebox__note{ font-size:12.5px; color:var(--offer-text-soft); padding:8px 0 14px; }

.offer-leverage-band{
  background:linear-gradient(120deg,#1a1f27,#262230);
  color:#fff;
  border-radius:14px;
  padding:34px 22px;
  text-align:center;
}
.offer-leverage-band .offer-eyebrow{ color:#ff9d96; }
.offer-leverage-band h2{ color:#fff; font-size:clamp(22px,4vw,30px); margin:0 0 14px; }
.offer-leverage-band p{ color:#d7dae0; max-width:66ch; margin:0 auto; font-size:16px; line-height:1.7; }

.offer-pricing{ display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:768px){ .offer-pricing{ grid-template-columns:repeat(3,1fr); align-items:stretch; } }
.offer-pricing__card{
  background:#fff; border:1px solid var(--offer-border); border-radius:14px; padding:26px 22px;
  display:flex; flex-direction:column;
  position:relative;
}
.offer-pricing__card--highlight{
  border-color:var(--offer-accent);
  box-shadow:0 16px 34px rgba(230,72,63,.18);
  transform:scale(1.01);
}
@media (min-width:768px){ .offer-pricing__card--highlight{ transform:translateY(-10px) scale(1.02); } }
.offer-pricing__tag{
  position:absolute; top:-13px; left:22px;
  background:var(--offer-accent); color:#fff; font-size:11.5px; letter-spacing:.6px; text-transform:uppercase;
  padding:5px 10px; border-radius:5px; font-weight:700;
}
.offer-pricing__name{ font-size:20px; font-weight:800; margin:6px 0 6px; }
.offer-pricing__price{ font-size:34px; font-weight:800; color:var(--offer-accent-dark); margin:0 0 4px; }
.offer-pricing__hours{ font-size:13.5px; color:var(--offer-text-soft); margin-bottom:16px; }
.offer-pricing__list{ list-style:none; padding:0; margin:0 0 22px; flex:1; }
.offer-pricing__list li{ font-size:14.5px; padding:7px 0 7px 26px; position:relative; color:var(--offer-text-dark); }
.offer-pricing__list li::before{ content:"✓"; position:absolute; left:0; top:7px; color:var(--offer-accent); font-weight:800; }
.offer-pricing__cta{
  display:inline-flex; align-items:center; justify-content:center; min-height:46px;
  border-radius:7px; font-weight:700; font-size:15px; background:var(--offer-bg-light); color:var(--offer-text-dark);
  border:1px solid var(--offer-border); transition:background .15s ease;
}
.offer-pricing__card--highlight .offer-pricing__cta{ background:var(--offer-accent); color:#fff; border-color:var(--offer-accent); }
.offer-pricing__cta:hover, .offer-pricing__cta:focus-visible{ background:var(--offer-accent-dark); color:#fff; border-color:var(--offer-accent-dark); }

.offer-addons{ display:grid; gap:16px; grid-template-columns:1fr; margin-top:8px; }
@media (min-width:600px){ .offer-addons{ grid-template-columns:repeat(2,1fr); } }
.offer-addon{
  background:#fff; border:1px solid var(--offer-border); border-radius:10px; padding:18px 20px;
  display:flex; justify-content:space-between; gap:14px; align-items:flex-start;
}
.offer-addon__name{ font-weight:700; font-size:15.5px; margin:0 0 6px; }
.offer-addon__desc{ font-size:13.5px; color:var(--offer-text-soft); margin:0; }
.offer-addon__price{ font-weight:800; font-size:18px; color:var(--offer-accent-dark); white-space:nowrap; }

.offer-perks{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.offer-perks li{
  background:#fff; border:1px solid var(--offer-border); border-radius:9px; padding:14px 16px 14px 44px; position:relative;
  font-size:15px;
}
.offer-perks li::before{
  content:"★"; position:absolute; left:14px; top:13px; color:var(--offer-accent);
}

.offer-limits{
  background:#fff; border:1px dashed #c7ccd3; border-radius:10px; padding:22px 20px;
}
.offer-limits ul{ margin:0; padding-left:20px; }
.offer-limits li{ font-size:14.5px; line-height:1.7; color:var(--offer-text-dark); margin-bottom:8px; }

.offer-media{ border-radius:12px; overflow:hidden; }
.offer-media img{ width:100%; }

.offer-form{ background:#fff; border-radius:12px; padding:22px 20px; border:1px solid var(--offer-border); }
.offer-section--dark .offer-form, .offer-hero .offer-form{ background:#1a1f27; border-color:#2a2f38; }
.offer-form h3{ margin:0 0 6px; font-size:19px; }
.offer-section--dark .offer-form h3, .offer-hero .offer-form h3{ color:#fff; }
.offer-form__lead{ font-size:13.5px; color:var(--offer-text-soft); margin:0 0 18px; }
.offer-hero .offer-form__lead, .offer-section--dark .offer-form__lead{ color:#aeb3bc; }
.offer-form__row{ display:grid; gap:12px; grid-template-columns:1fr; margin-bottom:12px; }
@media (min-width:480px){ .offer-form__row--2{ grid-template-columns:1fr 1fr; } }
.offer-form label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:6px; color:var(--offer-text-dark); }
.offer-hero .offer-form label, .offer-section--dark .offer-form label{ color:#e5e7eb; }
.offer-form input, .offer-form textarea{
  width:100%; font-size:16px; padding:12px 14px; border-radius:7px; border:1px solid var(--offer-border);
  background:#fff; color:#14181f; font-family:inherit;
  min-height:46px;
}
.offer-form textarea{ min-height:96px; resize:vertical; }
.offer-hero .offer-form input, .offer-hero .offer-form textarea,
.offer-section--dark .offer-form input, .offer-section--dark .offer-form textarea{
  background:#12161c; border-color:#333a45; color:#fff;
}
.offer-form input:focus, .offer-form textarea:focus{ outline:2px solid var(--offer-accent); outline-offset:1px; }
.offer-form__consent{ display:flex; gap:10px; align-items:flex-start; font-size:13px; margin:14px 0 16px; color:var(--offer-text-soft); }
.offer-hero .offer-form__consent, .offer-section--dark .offer-form__consent{ color:#aeb3bc; }
.offer-form__consent input{ width:20px; height:20px; min-height:20px; margin-top:2px; flex:none; }
.offer-form__submit{
  width:100%; min-height:48px; border:none; border-radius:8px; background:var(--offer-accent); color:#fff;
  font-weight:700; font-size:15.5px; cursor:pointer; transition:background .15s ease;
}
.offer-form__submit:hover, .offer-form__submit:focus-visible{ background:var(--offer-accent-dark); }
.offer-form__error{ color:#ff8f88; font-size:12.5px; margin-top:6px; display:none; }
.offer-form__error.is-visible{ display:block; }
.offer-form__success{
  display:none; background:#e9f7ee; border:1px solid #b6e3c4; color:#1d6b3a; border-radius:8px; padding:14px 16px; font-size:14.5px; margin-top:14px;
}
.offer-form__success.is-visible{ display:block; }
.offer-form.is-submitted .offer-form__fields{ display:none; }

/* text+media split rows, alternating sides for rhythm */
.offer-split{ display:grid; gap:26px; grid-template-columns:1fr; align-items:center; }
@media (min-width:768px){
  .offer-split{ grid-template-columns:1fr 1fr; gap:36px; }
  .offer-split--reverse .offer-split__media{ order:2; }
}
.offer-split__media{ border-radius:12px; overflow:hidden; }
.offer-split__media img{ width:100%; }

/* UIkit accordion re-skin for offer curriculum */
.offer-accordion{ list-style:none; margin:0; padding:0; }
.offer-accordion > li{ background:#fff; border:1px solid var(--offer-border); border-radius:10px; margin-bottom:12px; padding:4px 18px; }
.offer-accordion .uk-accordion-title{
  font-family:var(--offer-sans); font-size:16.5px; font-weight:700; color:var(--offer-text-dark);
  padding:14px 34px 14px 0; margin:0; position:relative;
}
.offer-accordion .uk-accordion-title::before{ display:none; }
.offer-accordion .uk-accordion-title::after{
  content:"+"; position:absolute; right:0; top:10px; font-size:22px; color:var(--offer-accent); font-weight:700;
  transition:transform .2s ease;
}
.offer-accordion > li.uk-open .uk-accordion-title::after{ content:"–"; }
.offer-accordion .uk-accordion-content{ margin:0 0 16px; font-size:14.5px; color:var(--offer-text-soft); line-height:1.7; }

/* bottom sticky CTA rail (mobile/tablet) */
.offer-sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  background:#0d1015; border-top:1px solid #262b33;
  padding:10px 16px; display:flex; justify-content:center;
  box-shadow:0 -8px 22px rgba(0,0,0,.28);
}
.offer-sticky-cta a{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:46px; width:100%; max-width:480px;
  background:var(--offer-accent); color:#fff; font-weight:700; font-size:15px;
  border-radius:8px; padding:0 18px;
}
.offer-sticky-cta a:hover, .offer-sticky-cta a:focus-visible{ background:var(--offer-accent-dark); }
body.has-sticky-cta{ padding-bottom:74px; }
@media (min-width:1024px){
  .offer-sticky-cta{ display:none; }
  body.has-sticky-cta{ padding-bottom:0; }
}

/* legal pages (offer family, simplified) */
.legal-hero{
  background:var(--offer-bg-dark); color:#fff; padding:38px 16px;
}
.legal-hero__inner{ max-width:900px; margin:0 auto; }
.legal-hero h1{ font-size:clamp(26px,5vw,36px); font-weight:800; margin:0 0 10px; color:#fff; }
.legal-hero p{ color:#c9cdd4; margin:0; font-size:15px; }
.legal-content{ max-width:900px; margin:0 auto; padding:34px 16px 10px; }
.legal-content h2{ font-size:clamp(19px,3vw,23px); margin:28px 0 12px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ font-size:15.5px; line-height:1.75; color:#2c313a; }
.legal-content ul{ padding-left:22px; }
.legal-content a{ color:var(--offer-accent-dark); text-decoration:underline; font-weight:600; }
.legal-content .legal-meta{ color:#6b7280; font-size:13.5px; margin-bottom:26px; }
