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

/* =========================================================
   OFFER FAMILY — masterclass page (+ legal.css imports this)
   Fintech / SaaS webinar language: white page, bright green
   accent, rounded card-UI, blob photo panel, pill badges.
   ========================================================= */

:root {
  --off-ink: #0d1b14;
  --off-body: #3a463d;
  --off-muted: #6d7a71;
  --off-line: #e2e8e3;
  --off-bg: #ffffff;
  --off-alt: #f3f8f4;
  --off-green: #1aa35c;
  --off-green-dark: #0e6b3b;
  --off-forest: #0d2e1e;
  --off-mint: #e3f6ea;
  --off-mint-line: #bfe6cd;
  --off-warn: #b3261e;
  --off-radius: 18px;
  --off-max: 1160px;
}

body.offer {
  background: var(--off-bg);
  color: var(--off-body);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.off-container {
  width: 100%;
  max-width: var(--off-max);
  margin: 0 auto;
  padding: 0 18px;
}

/* ---------- header ---------- */
.off-header {
  border-bottom: 1px solid var(--off-line);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(150%) blur(6px);
  z-index: 30;
}
.off-header__inner {
  max-width: var(--off-max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.off-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--off-forest);
  letter-spacing: -0.01em;
}
.off-logo span { color: var(--off-green); }

.off-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--off-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.off-nav-toggle__bar,
.off-nav-toggle__bar::before,
.off-nav-toggle__bar::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--off-forest);
  position: relative;
}
.off-nav-toggle__bar::before { position: absolute; top: -6px; }
.off-nav-toggle__bar::after { position: absolute; top: 6px; }

.off-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--off-line);
}
.off-nav.is-open { display: block; }
.off-nav-list { display: flex; flex-direction: column; padding: 6px 18px 12px; }
.off-nav-list a {
  padding: 12px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--off-forest);
  border-bottom: 1px solid var(--off-line);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.off-nav-list a:last-child { border-bottom: 0; }
.off-header__cta { display: none; }

@media (min-width: 860px) {
  .off-nav-toggle { display: none; }
  .off-nav { display: block; position: static; border-bottom: 0; background: transparent; }
  .off-nav-list { flex-direction: row; gap: 26px; padding: 0; }
  .off-nav-list a { padding: 8px 0; border-bottom: 0; min-height: auto; font-size: 0.92rem; }
  .off-header__cta { display: inline-flex; }
}

/* ---------- buttons ---------- */
.btn-primary, .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--off-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn-primary:hover, .btn-submit:hover { background: var(--off-green-dark); transform: translateY(-1px); }
.btn-primary:focus-visible, .btn-submit:focus-visible { outline: 3px solid #2563eb; outline-offset: 2px; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--off-forest);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.btn-dark:hover { background: #082013; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid var(--off-forest);
  color: var(--off-forest);
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
}
.btn-ghost:hover { background: var(--off-mint); }

/* ---------- hero ---------- */
.hero { padding: 34px 0 40px; }
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-green-dark);
  background: var(--off-mint);
  border: 1px solid var(--off-mint-line);
  padding: 6px 12px;
  border-radius: 999px;
}
.hero__title {
  margin: 16px 0 0;
  font-size: clamp(1.8rem, 6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--off-ink);
}
.hero__title em { color: var(--off-green-dark); font-style: normal; }
.hero__subhead {
  margin: 16px 0 0;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: var(--off-body);
  max-width: 52ch;
}
.hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--off-mint), #d3f0dd);
  padding: 14px;
}
.hero__media img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__badges { display: flex; flex-direction: column; gap: 10px; margin-top: -30px; position: relative; padding: 0 6px; }
.hero__badge {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(13,46,30,0.14);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--off-ink);
}
.hero__badge-icon {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--off-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

@media (min-width: 900px) {
  .hero__inner { flex-direction: row; align-items: center; gap: 50px; }
  .hero__content { flex: 1; }
  .hero__media { flex: 1; }
}

/* ---------- badge row (trust strip) ---------- */
.badge-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.badge-row__item {
  background: var(--off-alt);
  border: 1px solid var(--off-line);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--off-body);
  flex: 1 1 140px;
  text-align: center;
}
@media (min-width: 640px) { .badge-row__item { flex: 0 1 auto; } }

/* ---------- generic section ---------- */
.section { padding: 46px 0; }
.section--alt { background: var(--off-alt); }
.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-green-dark);
}
.section__title {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 4.6vw, 2.1rem);
  font-weight: 800;
  color: var(--off-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.section__lead {
  margin: 14px 0 0;
  font-size: 1.02rem;
  color: var(--off-body);
  max-width: 62ch;
}

/* ---------- steps grid ---------- */
.steps-grid {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--off-line);
  border-radius: var(--off-radius);
  padding: 22px;
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--off-mint);
  color: var(--off-green-dark);
  font-weight: 800;
}
.step-card__title { margin-top: 14px; font-size: 1.08rem; font-weight: 800; color: var(--off-ink); }
.step-card__text { margin-top: 8px; font-size: 0.96rem; color: var(--off-body); }

@media (min-width: 768px) {
  .steps-grid { flex-direction: row; }
  .step-card { flex: 1; }
}

/* ---------- CTA band (batch the boring parts) ---------- */
.cta-band {
  background: var(--off-forest);
  border-radius: 24px;
  overflow: hidden;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
}
.cta-band__media { aspect-ratio: 16 / 10; background: #062015; }
.cta-band__media video { width: 100%; height: 100%; object-fit: cover; }
.cta-band__content { padding: 30px 24px 34px; }
.cta-band__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fe6b4;
}
.cta-band__title {
  margin-top: 10px;
  font-size: clamp(1.4rem, 4.6vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.cta-band__text { margin-top: 12px; color: #cfe8da; font-size: 1rem; max-width: 60ch; }
.cta-band__actions { margin-top: 20px; }

@media (min-width: 860px) {
  .cta-band__inner { flex-direction: row-reverse; align-items: stretch; }
  .cta-band__media { flex: 1; aspect-ratio: auto; }
  .cta-band__content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
}

/* ---------- rate box ---------- */
.rate-box {
  margin-top: 30px;
  border: 1px solid var(--off-mint-line);
  background: var(--off-mint);
  border-radius: var(--off-radius);
  padding: 22px;
}
.rate-box__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-green-dark);
  background: #fff;
  border: 1px solid var(--off-mint-line);
  padding: 4px 10px;
  border-radius: 999px;
}
.rate-box__hourly { margin-top: 14px; font-size: clamp(1.3rem, 4vw, 1.6rem); font-weight: 800; color: var(--off-ink); }
.rate-box__hourly span { font-size: 0.9rem; font-weight: 600; color: var(--off-muted); }
.rate-box__list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.rate-box__item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--off-mint-line);
  font-size: 0.95rem;
}
.rate-box__item:first-child { border-top: 0; padding-top: 0; }
.rate-box__item dt { color: var(--off-body); font-weight: 600; }
.rate-box__item dd { color: var(--off-green-dark); font-weight: 800; margin: 0; text-align: right; }
.rate-box__compare {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--off-mint-line);
  font-size: 0.92rem;
  color: var(--off-body);
}
.rate-box__note { margin-top: 14px; font-size: 0.82rem; color: var(--off-muted); }
.rate-box__note a { color: var(--off-green-dark); font-weight: 600; text-decoration: underline; }

/* ---------- pricing ---------- */
.pricing-grid {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--off-line);
  border-radius: var(--off-radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}
.price-card--highlight {
  border: 2px solid var(--off-green);
  background: #fbfffc;
  box-shadow: 0 18px 34px rgba(13,163,92,0.16);
  position: relative;
}
.price-card__flag {
  position: absolute;
  top: -14px; left: 22px;
  background: var(--off-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card__name { font-size: 1.15rem; font-weight: 800; color: var(--off-ink); }
.price-card__hours { margin-top: 4px; font-size: 0.85rem; color: var(--off-muted); font-weight: 600; }
.price-card__price { margin-top: 14px; font-size: clamp(1.6rem, 5vw, 2rem); font-weight: 800; color: var(--off-ink); }
.price-card__list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--off-body);
}
.price-card__list li::before {
  content: "✓";
  color: var(--off-green-dark);
  font-weight: 800;
  flex: none;
}
.price-card .btn-primary, .price-card .btn-ghost { margin-top: 22px; width: 100%; }

@media (min-width: 860px) {
  .pricing-grid { flex-direction: row; align-items: stretch; }
  .price-card { flex: 1; }
  .price-card--highlight { transform: translateY(-10px); }
}

/* ---------- add-ons + perks ---------- */
.addons-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--off-line);
  border-radius: 14px;
  padding: 16px 18px;
}
.addon-item__body { flex: 1; }
.addon-item__name { font-weight: 800; color: var(--off-ink); font-size: 1rem; }
.addon-item__desc { margin-top: 6px; font-size: 0.9rem; color: var(--off-body); }
.addon-item__price {
  flex: none;
  font-weight: 800;
  color: var(--off-green-dark);
  font-size: 1.05rem;
  background: var(--off-mint);
  padding: 6px 12px;
  border-radius: 999px;
}

.perks-stack {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perk-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--off-ink);
  font-weight: 600;
  background: var(--off-alt);
  border-radius: 12px;
  padding: 12px 14px;
}
.perk-item::before {
  content: "★";
  color: var(--off-green);
  flex: none;
}

.pricing-media {
  margin-top: 30px;
  border-radius: var(--off-radius);
  overflow: hidden;
}
.pricing-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ---------- limits block ---------- */
.limits-block {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.limits-media { border-radius: var(--off-radius); overflow: hidden; }
.limits-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.limits-list { display: flex; flex-direction: column; gap: 14px; }
.limits-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--off-line);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--off-body);
}
.limits-list__item strong { color: var(--off-ink); }
.limits-list__item::before {
  content: "•";
  color: var(--off-warn);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 0.6;
  flex: none;
}

@media (min-width: 860px) {
  .limits-block { flex-direction: row; align-items: center; }
  .limits-media { flex: 1; }
  .limits-list { flex: 1; }
}

/* ---------- lead form ---------- */
.lead-form-wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.lead-form-media { border-radius: var(--off-radius); overflow: hidden; }
.lead-form-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.lead-form {
  background: #fff;
  border: 1px solid var(--off-line);
  border-radius: var(--off-radius);
  padding: 24px;
  flex: 1;
}
.form-row { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 700; color: var(--off-ink); }
.form-group input, .form-group textarea {
  border: 1.5px solid var(--off-line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  min-height: 48px;
  background: #fcfdfc;
}
.form-group textarea { min-height: 96px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--off-green); outline: none; box-shadow: 0 0 0 3px rgba(26,163,92,0.18); }
.form-group.has-error input, .form-group.has-error textarea { border-color: var(--off-warn); }
.form-error {
  font-size: 0.82rem;
  color: var(--off-warn);
  min-height: 1em;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-two-col { display: flex; flex-direction: column; gap: 16px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--off-body);
}
.form-consent input { width: 20px; height: 20px; margin-top: 2px; flex: none; }
.form-consent a { color: var(--off-green-dark); font-weight: 600; text-decoration: underline; }
.btn-submit { margin-top: 6px; width: 100%; }
.form-success {
  display: none;
  margin-top: 16px;
  background: var(--off-mint);
  border: 1px solid var(--off-mint-line);
  color: var(--off-green-dark);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-success.is-visible { display: block; }
.lead-form.is-submitted .form-row,
.lead-form.is-submitted .form-consent,
.lead-form.is-submitted .btn-submit { display: none; }

@media (min-width: 640px) {
  .form-two-col { flex-direction: row; }
  .form-two-col .form-group { flex: 1; }
}
@media (min-width: 900px) {
  .lead-form-wrap { flex-direction: row; align-items: stretch; }
  .lead-form-media { flex: 1; }
  .lead-form { flex: 1; }
}

/* ---------- disclaimer + footer ---------- */
.site-disclaimer {
  display: block;
  margin: 44px auto 0;
  max-width: var(--off-max);
  padding: 18px;
  background: var(--off-alt);
  border: 1px solid var(--off-line);
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--off-muted);
}
.site-disclaimer a { color: var(--off-green-dark); font-weight: 600; text-decoration: underline; }
.section > .site-disclaimer,
main > .site-disclaimer { margin-left: auto; margin-right: auto; }

.site-footer {
  margin-top: 30px;
  background: var(--off-forest);
  color: #cfe8da;
  padding: 30px 0 40px;
}
.site-footer__inner { max-width: var(--off-max); margin: 0 auto; padding: 0 18px; }
.site-footer__company { font-size: 0.85rem; line-height: 1.7; }
.site-footer__company strong { color: #fff; display: block; margin-bottom: 4px; }
.site-footer__links {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #163d29;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-footer__links a:hover { color: #8fe6b4; }
@media (min-width: 560px) {
  .site-footer__links { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .site-footer__links a { min-height: auto; }
}

/* container used to hold disclaimer at page-body width outside .section */
.close-wrap { padding: 0 18px; }
