/* =========================================================================
   PROSERVE / "Revenus Complémentaires" site stylesheet
   Two design families share this file:
   - .pub-*   : publication / editorial family (advertorial, about)
   - .off-*   : offer / SaaS-ish family (academy + legal pages use offer chrome)
   Handwritten-retro-2012 flavour: system fonts, flat borders, solid buttons,
   modern fluid/responsive layout underneath.
   ========================================================================= */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
.wrap--wide { max-width: 1080px; }
button, input, textarea, select { font-family: inherit; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

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

/* =========================================================================
   PUBLICATION FAMILY (advertorial + about)
   ========================================================================= */
.pub-body { background: #fbfaf7; font-family: Georgia, "Times New Roman", Times, serif; }

.pub-topbar {
  background: #14213d;
  color: #fff;
  border-bottom: 3px solid #d9a441;
}
.pub-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 12px;
}
.pub-logo {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
}
.pub-logo em { color: #d9a441; font-style: normal; }
.pub-tagline {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9d0e0;
  display: none;
}
@media (min-width: 480px) {
  .pub-tagline { display: block; }
}
.pub-nav {
  display: none;
}
@media (min-width: 768px) {
  .pub-nav {
    display: flex;
    gap: 20px;
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
    font-size: 14px;
  }
  .pub-nav a { color: #e6e9f2; text-decoration: none; }
  .pub-nav a:hover, .pub-nav a:focus-visible { color: #d9a441; }
}
.pub-nav-toggle {
  background: transparent;
  border: 1px solid #4a5578;
  color: #fff;
  padding: 8px 12px;
  min-height: 44px;
  min-width: 44px;
  font-size: 14px;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .pub-nav-toggle { display: none; }
}
.pub-nav-mobile {
  display: none;
  flex-direction: column;
  background: #101a33;
  border-bottom: 3px solid #d9a441;
}
.pub-nav-mobile.is-open { display: flex; }
.pub-nav-mobile a {
  color: #e6e9f2;
  text-decoration: none;
  padding: 14px 16px;
  border-top: 1px solid #26325a;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 15px;
  min-height: 44px;
}
@media (min-width: 768px) {
  .pub-nav-mobile { display: none !important; }
}

.pub-strip {
  background: #f3f0e8;
  border-bottom: 1px solid #e2ddce;
  padding: 12px 0;
}
.pub-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .pub-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pub-strip p {
  margin: 0;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #3a3a3a;
}
.pub-strip .btn { flex-shrink: 0; }

.pub-crumbs {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  padding: 16px 0 0;
}
.pub-crumbs a { color: #6b6b6b; text-decoration: underline; }

.ribbon {
  display: inline-block;
  background: #ece5d3;
  border: 1px solid #cbbf9c;
  color: #6b5a2a;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin: 18px 0 10px;
  border-radius: 2px;
}

.pub-byline {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  margin: 0 0 18px;
}

h1.pub-h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: #14213d;
}

.pub-dek {
  font-size: clamp(17px, 3vw, 20px);
  color: #3d3d3d;
  margin: 0 0 24px;
  font-style: italic;
}

.pub-article { padding: 0 0 8px; }
.pub-article h2 {
  font-size: clamp(22px, 4vw, 30px);
  color: #14213d;
  margin: 40px 0 14px;
  line-height: 1.25;
}
.pub-article h3 {
  font-size: clamp(18px, 3vw, 22px);
  color: #263466;
  margin: 28px 0 10px;
}
.pub-article p { margin: 0 0 18px; font-size: clamp(16px, 2.2vw, 18px); }
.pub-article ul, .pub-article ol { margin: 0 0 18px; padding-left: 22px; }
.pub-article li { margin-bottom: 8px; font-size: clamp(16px, 2.2vw, 18px); }
.pub-article strong { color: #14213d; }

.pub-toc-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  border: 1px solid #cbbf9c;
  border-radius: 4px;
  background: #fff;
  color: #14213d;
  margin-bottom: 24px;
}

.pub-figure { margin: 24px 0; }
.pub-figure img, .pub-figure video {
  width: 100%;
  border: 1px solid #e2ddce;
  border-radius: 4px;
}
.pub-figure figcaption {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #7a7a7a;
  margin-top: 8px;
  text-align: center;
}
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: #ece5d3;
}
.media-frame video { width: 100%; height: 100%; object-fit: cover; }

.pullquote {
  background: #14213d;
  color: #fff;
  border-left: 6px solid #d9a441;
  padding: 24px 22px;
  margin: 28px 0;
  border-radius: 3px;
}
.pullquote p {
  margin: 0;
  font-size: clamp(19px, 3.2vw, 24px);
  line-height: 1.35;
  font-style: italic;
}
.pullquote span.rate-num {
  color: #d9a441;
  font-style: normal;
  font-weight: 700;
}
.pullquote small {
  display: block;
  margin-top: 10px;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #b9c1d9;
  font-style: normal;
}

.leverage-band {
  background: #d9a441;
  color: #2a1f04;
  margin: 32px 0;
  padding: 28px 20px;
  border-radius: 4px;
  border: 1px solid #b98726;
}
.leverage-band .kicker {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin: 0 0 8px;
  color: #4a3c10;
}
.leverage-band h2 {
  margin: 0 0 12px;
  color: #221a04;
  font-size: clamp(22px, 4vw, 28px);
}
.leverage-band p {
  margin: 0;
  font-size: clamp(16px, 2.4vw, 19px);
  color: #2a1f04;
}

.offer-list {
  background: #fff;
  border: 1px solid #e2ddce;
  border-radius: 4px;
  padding: 20px 20px 20px 42px;
  margin: 24px 0;
}
.offer-list li { font-size: clamp(16px, 2.2vw, 18px); }

.checkitem::marker { content: ""; }
ul.checklist { list-style: none; padding-left: 0; margin: 20px 0; }
ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: clamp(16px, 2.2vw, 18px);
}
ul.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2a7d46;
  font-weight: 700;
}

.rates-inline {
  border: 2px dashed #cbbf9c;
  border-radius: 4px;
  padding: 18px 20px;
  margin: 24px 0;
  background: #fff;
}
.rates-inline h3 { margin-top: 0; }
.rates-inline table { width: 100%; border-collapse: collapse; }
.rates-inline th, .rates-inline td {
  text-align: left;
  padding: 8px 6px;
  font-size: 15px;
  border-bottom: 1px solid #eee2c8;
}
.rates-inline th { font-family: "Trebuchet MS", Helvetica, Arial, sans-serif; color: #6b5a2a; }
.rates-table-wrap { overflow-x: auto; }

.cta-block {
  background: #14213d;
  color: #fff;
  border-radius: 6px;
  padding: 28px 20px;
  margin: 34px 0;
  text-align: center;
}
.cta-block h2 { color: #fff; margin: 0 0 10px; }
.cta-block p { color: #d7dcec; margin: 0 0 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: #d9a441;
  color: #221a04;
  border-color: #b98726;
}
.btn-gold:hover { background: #e6b558; box-shadow: 0 4px 10px rgba(217,164,65,0.4); }
.btn-navy {
  background: #fff;
  color: #14213d;
  border-color: #fff;
}
.btn-navy:hover { background: #eef1fa; }
.btn-outline {
  background: transparent;
  border-color: currentColor;
}
.btn-block { width: 100%; }

.obj-list { margin: 24px 0; }
.obj-item {
  border: 1px solid #e2ddce;
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: #fff;
}
.obj-item h3 { margin: 0 0 6px; font-size: 17px; color: #14213d; }
.obj-item p { margin: 0; font-size: 15px; }

.site-disclaimer {
  display: block;
  max-width: 760px;
  margin: 40px auto 0;
  padding: 18px 16px;
  background: #f3f0e8;
  border: 1px solid #ddd5bd;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
.wrap--wide .site-disclaimer { max-width: 1080px; }
.site-disclaimer a { color: #14213d; text-decoration: underline; }

.site-footer {
  background: #14213d;
  color: #cfd5e6;
  padding: 28px 16px 40px;
  margin-top: 24px;
  font-size: 14px;
}
.site-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.site-footer__company {
  margin-bottom: 18px;
  white-space: pre-line;
  line-height: 1.7;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) {
  .site-footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.site-footer__links a {
  color: #e9ecf5;
  text-decoration: underline;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* =========================================================================
   OFFER FAMILY (academy + legal chrome)
   ========================================================================= */
.off-body {
  background: #0b0f14;
  color: #e7ece9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.off-page-light {
  background: #f5f7f4;
  color: #16201c;
}

.off-header {
  background: #0b0f14;
  border-bottom: 1px solid #1e2a24;
  position: sticky;
  top: 0;
  z-index: 50;
}
.off-page-light .off-header {
  background: #0f1712;
  border-bottom: 1px solid #1c2921;
}
.off-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 12px;
}
.off-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #eef4ee;
  text-decoration: none;
}
.off-logo em { color: #a7d99a; font-style: normal; }
.off-nav { display: none; }
@media (min-width: 768px) {
  .off-nav { display: flex; gap: 22px; font-size: 14px; }
  .off-nav a { color: #cfd8d2; text-decoration: none; }
  .off-nav a:hover, .off-nav a:focus-visible { color: #a7d99a; }
}
.off-header__cta { display: none; }
@media (min-width: 768px) { .off-header__cta { display: inline-flex; } }
.off-nav-toggle {
  background: transparent;
  border: 1px solid #2c3a32;
  color: #eef4ee;
  padding: 8px 12px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 4px;
  font-size: 14px;
}
@media (min-width: 768px) { .off-nav-toggle { display: none; } }
.off-nav-mobile {
  display: none;
  flex-direction: column;
  background: #0f1712;
  border-bottom: 1px solid #1e2a24;
}
.off-nav-mobile.is-open { display: flex; }
.off-nav-mobile a {
  color: #cfd8d2;
  text-decoration: none;
  padding: 14px 16px;
  border-top: 1px solid #1e2a24;
  min-height: 44px;
  font-size: 15px;
}
@media (min-width: 768px) { .off-nav-mobile { display: none !important; } }

.off-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(167,217,154,0.18), transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(217,164,65,0.10), transparent 50%),
    #0b0f14;
  padding: 48px 0 32px;
}
.off-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(167,217,154,0.1);
  border: 1px solid rgba(167,217,154,0.4);
  color: #bfe8b3;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
h1.off-h1 {
  font-size: clamp(28px, 6.5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 18px;
  color: #f3f7f2;
  letter-spacing: -0.5px;
}
h1.off-h1 .accent { color: #a7d99a; }
.off-subhead {
  font-size: clamp(16px, 2.6vw, 20px);
  color: #b9c4bd;
  max-width: 640px;
  margin: 0 0 28px;
}
.off-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 480px) {
  .off-hero__ctas { flex-direction: row; }
}
.off-hero__note { font-size: 13px; color: #83907; color: #8a978f; }

.btn-lime {
  background: #a7d99a;
  color: #0d1a0e;
  border: 2px solid #a7d99a;
}
.btn-lime:hover { background: #b9e6ad; box-shadow: 0 4px 14px rgba(167,217,154,0.35); }
.btn-ghost-dark {
  background: transparent;
  color: #eef4ee;
  border: 2px solid #33443a;
}
.btn-ghost-dark:hover { border-color: #a7d99a; color: #a7d99a; }

.off-hero__panel {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  border: 1px solid #223026;
  border-radius: 10px;
  overflow: visible;
  background: #0f1712;
}
.off-hero__panel .media-frame { aspect-ratio: 16/9; border-radius: 10px; background: #10221a; overflow: hidden; }
.hero-float-img {
  position: absolute;
  right: 14px;
  bottom: -22px;
  width: 34%;
  max-width: 180px;
  border: 3px solid #0b0f14;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
  z-index: 2;
}
@media (min-width: 640px) {
  .hero-float-img { right: 24px; bottom: -28px; max-width: 220px; }
}

.off-section { padding: 44px 0; }
.off-section--alt { background: #101915; }
.off-page-light .off-section--alt { background: #eaf0e8; }
.off-section-head { max-width: 680px; margin: 0 0 32px; }
.off-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.off-kicker-sm {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a7d99a;
  margin: 0 0 10px;
  font-weight: 700;
}
h2.off-h2 {
  font-size: clamp(24px, 4.5vw, 36px);
  margin: 0 0 12px;
  color: #f3f7f2;
  font-weight: 800;
}
.off-page-light h2.off-h2 { color: #16201c; }
.off-lead { color: #b9c4bd; font-size: clamp(15px, 2.2vw, 18px); margin: 0; }
.off-page-light .off-lead { color: #45524a; }

/* pricing spotlight */
.pricing-wrap { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .pricing-wrap { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.price-spotlight {
  background: linear-gradient(160deg, #14261a, #0e1712);
  border: 1px solid #2c4634;
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
}
.price-spotlight__badge {
  display: inline-block;
  background: #a7d99a;
  color: #0d1a0e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.price-spotlight h3 { font-size: 26px; margin: 0 0 6px; color: #f3f7f2; }
.price-spotlight .price-tag {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 800;
  color: #a7d99a;
  margin: 8px 0 4px;
}
.price-spotlight .price-note { color: #9fada4; font-size: 14px; margin: 0 0 20px; }
.price-spotlight ul { list-style: none; padding: 0; margin: 0 0 24px; }
.price-spotlight ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: #d5ddd6;
  font-size: 15px;
}
.price-spotlight ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #a7d99a;
  font-weight: 700;
}

.addons-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.addon-card {
  background: #101915;
  border: 1px solid #223026;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.off-page-light .addon-card { background: #fff; border-color: #d7e2d9; }
.addon-card h4 { margin: 0 0 4px; font-size: 15px; color: #f3f7f2; }
.off-page-light .addon-card h4 { color: #16201c; }
.addon-card p { margin: 0; font-size: 13px; color: #a4b0a8; }
.off-page-light .addon-card p { color: #55635b; }
.addon-card .addon-price {
  font-weight: 800;
  font-size: 17px;
  color: #a7d99a;
  white-space: nowrap;
}
.off-page-light .addon-card .addon-price { color: #35793f; }

.perks-stack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .perks-stack { grid-template-columns: 1fr 1fr; }
}
.perks-stack li {
  background: #101915;
  border: 1px solid #223026;
  border-radius: 8px;
  padding: 14px 16px 14px 40px;
  position: relative;
  font-size: 14.5px;
  color: #d5ddd6;
}
.off-page-light .perks-stack li { background: #fff; border-color: #d7e2d9; color: #2c362f; }
.perks-stack li::before {
  content: "★";
  position: absolute;
  left: 14px;
  color: #d9a441;
}

.rate-checklist { list-style: none; padding: 0; margin: 24px 0; }
.rate-checklist li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid #223026;
  font-size: 15px;
  color: #d5ddd6;
}
.off-page-light .rate-checklist li { border-color: #d7e2d9; color: #2c362f; }
.rate-checklist li .fee { font-weight: 800; color: #a7d99a; white-space: nowrap; }
.off-page-light .rate-checklist li .fee { color: #2a6b33; }

.leverage-panel {
  background: #101915;
  border: 1px solid #223026;
  border-radius: 12px;
  padding: 30px 24px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .leverage-panel { grid-template-columns: 1fr 1fr; align-items: center; }
}
.off-page-light .leverage-panel { background: #fff; border-color: #d7e2d9; }
.leverage-panel .media-frame { aspect-ratio: 4/3; }

.steps-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  background: #101915;
  border: 1px solid #223026;
  border-radius: 10px;
  padding: 20px 18px;
}
.off-page-light .step-card { background: #fff; border-color: #d7e2d9; }
.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #a7d99a;
  color: #0d1a0e;
  font-weight: 800;
  margin-bottom: 12px;
}
.step-card h4 { margin: 0 0 8px; font-size: 16px; color: #f3f7f2; }
.off-page-light .step-card h4 { color: #16201c; }
.step-card p { margin: 0; font-size: 14px; color: #a4b0a8; }
.off-page-light .step-card p { color: #55635b; }

.limits-block {
  background: #171310;
  border: 1px solid #3a2f22;
  border-left: 4px solid #d9a441;
  border-radius: 8px;
  padding: 20px 22px;
  margin: 0;
}
.off-page-light .limits-block { background: #fbf3e6; }
.limits-block h3 { margin: 0 0 10px; font-size: 17px; color: #f0dcae; }
.off-page-light .limits-block h3 { color: #6b5a2a; }
.limits-block ul { margin: 0; padding-left: 20px; }
.limits-block li { font-size: 14.5px; margin-bottom: 8px; color: #d9cbb0; }
.off-page-light .limits-block li { color: #4a3c10; }

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-grid figure { margin: 0; }
.gallery-grid img {
  border-radius: 10px;
  border: 1px solid #223026;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-grid figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #9fada4;
}

/* Lead form (shared visual language, offer skin) */
.lead-form {
  background: #101915;
  border: 1px solid #223026;
  border-radius: 12px;
  padding: 26px 22px;
  max-width: 560px;
  margin: 0 auto;
}
.off-page-light .lead-form { background: #fff; border-color: #d7e2d9; }
.lead-form h3 { margin: 0 0 6px; font-size: 20px; color: #f3f7f2; }
.off-page-light .lead-form h3 { color: #16201c; }
.lead-form p.form-note { margin: 0 0 20px; font-size: 14px; color: #a4b0a8; }
.off-page-light .lead-form p.form-note { color: #55635b; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #d5ddd6;
}
.off-page-light .field label { color: #2c362f; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #2c4634;
  background: #0b0f14;
  color: #eef4ee;
}
.off-page-light .field input, .off-page-light .field textarea {
  background: #f5f7f4;
  border-color: #c4d2c7;
  color: #16201c;
}
.field input:invalid.touched, .field textarea:invalid.touched { border-color: #e0685f; }
.field .error-msg {
  display: none;
  color: #f0a49c;
  font-size: 13px;
  margin-top: 6px;
}
.off-page-light .field .error-msg { color: #b33a2f; }
.field.has-error .error-msg { display: block; }
.field.has-error input, .field.has-error textarea { border-color: #e0685f; }
.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.field-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.field-consent label { font-size: 13.5px; color: #c1cbc4; font-weight: 400; }
.off-page-light .field-consent label { color: #3a4740; }
.form-success {
  display: none;
  background: #16301f;
  border: 1px solid #2f5c3c;
  color: #cdeecd;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14.5px;
}
.off-page-light .form-success { background: #e5f5e6; border-color: #b6dcb9; color: #1e4a24; }
.form-success.is-visible { display: block; }
.lead-form form.is-hidden { display: none; }

.off-disclaimer.site-disclaimer {
  background: #101915;
  border-color: #223026;
  color: #b9c4bd;
  max-width: 1080px;
}
.off-page-light .off-disclaimer.site-disclaimer { background: #eef2ec; border-color: #d7e2d9; color: #45524a; }
.off-disclaimer.site-disclaimer a { color: #a7d99a; }
.off-page-light .off-disclaimer.site-disclaimer a { color: #2a6b33; }

.off-footer.site-footer { background: #0b0f14; border-top: 1px solid #1e2a24; color: #99a49d; }
.off-page-light .off-footer.site-footer { background: #eaf0e8; color: #45524a; }
.off-footer.site-footer a { color: #d5ddd6; }
.off-page-light .off-footer.site-footer a { color: #16201c; }

/* Legal pages (offer chrome, light content body) */
.legal-main { padding: 40px 0 20px; }
.legal-main h1 { font-size: clamp(26px, 5vw, 38px); margin: 0 0 20px; color: #16201c; }
.legal-main h2 { font-size: clamp(19px, 3vw, 24px); margin: 28px 0 10px; color: #16201c; }
.legal-main p, .legal-main li { font-size: 16px; color: #303b34; }
.legal-main ul { padding-left: 22px; }
.legal-main .updated { color: #5b6960; font-size: 14px; margin-bottom: 24px; }

/* Not found (shares offer chrome) */
.notfound-main { padding: 60px 0; text-align: center; }
.notfound-main .code { font-size: clamp(48px, 10vw, 96px); font-weight: 800; color: #a7d99a; margin: 0; }
.notfound-main h1 { font-size: clamp(22px, 4vw, 30px); margin: 8px 0 16px; }
.notfound-main p { color: #45524a; margin: 0 0 24px; }

/* Utility */
.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;
}
