/* ==========================================================================
   Modern Signal / Mailværk — shared stylesheet
   Plain CSS, mobile-first, system fonts, no framework.
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #26313f;
  background: #ffffff;
  line-height: 1.55;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.18; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
button { font: inherit; }
input, textarea, select { font: inherit; }
:focus-visible {
  outline: 3px solid #1656d6;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: #152241;
  color: #fff;
  padding: 0.6em 1em;
  z-index: 500;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 18px;
}
.offer-page .wrap,
.legal-page .wrap { max-width: 1180px; }
@media (min-width: 768px) {
  .wrap { padding: 0 24px; }
}

/* ---------- Buttons & pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  min-height: 46px;
  padding: 0.7em 1.4em;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--block { width: 100%; }
.btn--primary {
  background: #1656d6;
  color: #fff;
  box-shadow: 0 4px 0 #0d3fa8;
}
.btn--primary:hover { background: #1e63ef; box-shadow: 0 5px 0 #0d3fa8; }
.btn--ghost {
  background: transparent;
  color: #152241;
  border-color: #152241;
}
.btn--ghost:hover { background: #152241; color: #fff; }
.btn--dark {
  background: #1c1a17;
  color: #fdfaf4;
  border-radius: 999px;
  box-shadow: none;
}
.btn--dark:hover { background: #322d25; }
.btn--outline-dark {
  background: transparent;
  color: #1c1a17;
  border-color: #1c1a17;
  border-radius: 999px;
}
.btn--outline-dark:hover { background: #1c1a17; color: #fdfaf4; }
.btn--small { min-height: 40px; padding: 0.5em 1.1em; font-size: 0.9rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.35em 0.85em;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #152241;
  color: #fff;
}

/* ---------- Disclaimer & footer (shared, every page) ---------- */
.site-disclaimer {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 18px;
  font-size: 0.92rem;
  color: #3a352c;
  background: #f4f0e6;
  border-top: 1px solid #e3ddc9;
  border-bottom: 1px solid #e3ddc9;
}
.offer-page .site-disclaimer,
.legal-page .site-disclaimer { max-width: 1180px; }
.site-disclaimer p { margin: 0 0 0.6em; }
.site-disclaimer p:last-child { margin-bottom: 0; }
.site-disclaimer a { color: #0d3fa8; text-decoration: underline; font-weight: 700; }

.site-footer {
  background: #14120f;
  color: #d8d3c6;
  padding: 32px 0 40px;
}
.site-footer__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer__company {
  font-size: 0.88rem;
  line-height: 1.7;
  white-space: pre-line;
  color: #bdb7a6;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.site-footer__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f4f0e6;
  padding: 6px 2px;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.site-footer__links a:hover,
.site-footer__links a:focus-visible { color: #ffd580; text-decoration: underline; }
@media (min-width: 768px) {
  .site-footer__inner { padding: 0 24px; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  background: #14120f;
  color: #f4f0e6;
  padding: 16px 18px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.cookie-banner__text { flex: 1 1 260px; font-size: 0.88rem; margin: 0; }
.cookie-banner__text a { text-decoration: underline; color: #ffd580; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 550;
  background: #ffffff;
  border-top: 1px solid #e4e7ec;
  padding: 10px 18px;
  box-shadow: 0 -4px 16px rgba(20,30,50,0.12);
}
.offer-page .sticky-cta { background: #1c1a17; border-top-color: #1c1a17; }
.sticky-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}
.has-sticky-cta { padding-bottom: 84px; }
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
  .has-sticky-cta { padding-bottom: 0; }
}

/* =========================================================================
   PUBLICATION FAMILY (advertorial + about)
   ========================================================================= */
.pub-page { background: #ffffff; color: #26313f; }
.pub-masthead {
  border-bottom: 1px solid #e4e7ec;
  padding: 16px 0;
  text-align: center;
}
.pub-masthead__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #152241;
}
.pub-masthead__logo span { color: #1656d6; }

.pub-article { padding: 22px 0 40px; }
.pub-disclosure {
  font-size: 0.85rem;
  color: #1656d6;
  text-decoration: underline;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6px;
  min-height: 44px;
  line-height: 44px;
}
.pub-category {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5b6472;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.pub-h1 {
  font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  color: #152241;
  margin-bottom: 14px;
}
.pub-dek {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: #384354;
  font-weight: 500;
  margin-bottom: 16px;
}
.pub-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.pub-hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #eef1f5;
  margin-bottom: 18px;
}
.pub-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 600px) {
  .pub-hero-media { aspect-ratio: 16 / 9; }
}
.pub-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e7ec;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: #5b6472;
}
.pub-byline__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #152241;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.pub-byline__name { color: #152241; font-weight: 700; }
.pub-byline__check {
  display: inline-flex; align-items: center; gap: 5px;
  color: #1656d6; font-weight: 600;
}

.pub-intro { font-size: 1.08rem; color: #26313f; }
.pub-intro em { font-style: italic; }

.pub-section { margin: 34px 0; }
.pub-section h2 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  color: #152241;
  margin-bottom: 12px;
  scroll-margin-top: 90px;
}
.pub-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1656d6;
  margin-bottom: 8px;
}
.pub-q {
  font-weight: 700;
  color: #152241;
}

.pub-callout {
  background: #eef3ff;
  border-left: 5px solid #1656d6;
  border-radius: 8px;
  padding: 20px 22px;
  margin: 22px 0;
}
.pub-callout__figure {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: #152241;
  margin-bottom: 6px;
}
.pub-callout p { margin: 0; font-size: 0.98rem; color: #2c3646; }
.pub-callout a { text-decoration: underline; }

.pub-cta-band {
  background: #152241;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  margin: 28px 0;
}
.pub-cta-band__inner { max-width: 520px; margin: 0 auto; }
.pub-cta-band h3 { color: #fff; font-size: 1.25rem; margin-bottom: 8px; }
.pub-cta-band p { color: #c7d0e6; margin-bottom: 16px; font-size: 0.95rem; }

.pub-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}
@media (min-width: 560px) {
  .pub-cards { grid-template-columns: 1fr 1fr; }
}
.pub-card {
  background: #152241;
  border-radius: 10px;
  padding: 18px;
  color: #fff;
}
.pub-card__title { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; color: #fff; }
.pub-card__desc { font-size: 0.88rem; color: #b9c3db; margin-bottom: 14px; }
.pub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1656d6;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55em 0.9em;
  border-radius: 6px;
  min-height: 40px;
}
.pub-card__cta:hover { background: #1e63ef; }

.pub-media {
  margin: 22px 0;
  border-radius: 10px;
  overflow: hidden;
}
.pub-media img { width: 100%; height: auto; }
.pub-media figcaption {
  font-size: 0.82rem;
  color: #5b6472;
  padding: 8px 2px 0;
}
.pub-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #0e1730;
  margin: 22px 0 8px;
}
.pub-video video { width: 100%; height: 100%; object-fit: cover; }
.pub-video-caption { font-size: 0.82rem; color: #5b6472; margin-bottom: 22px; }

.pub-takeaway {
  background: #f6f7f9;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 22px 0;
}
.pub-takeaway h3 { font-size: 1.05rem; color: #152241; margin-bottom: 8px; }
.pub-takeaway__list { margin: 0; padding-left: 1.1em; }
.pub-takeaway__list li { margin-bottom: 6px; }

.pub-closing { margin: 30px 0 10px; }
.pub-closing h2 { color: #152241; }

/* about page reuse */
.about-grid { display: grid; gap: 18px; margin: 24px 0; }
@media (min-width: 700px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-block {
  background: #f6f7f9;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 18px 20px;
}
.about-block h2 { font-size: 1.1rem; color: #152241; }

/* =========================================================================
   OFFER FAMILY (start page + legal chrome)
   ========================================================================= */
.offer-page { background: #f7f4ef; color: #3a352c; }
.offer-page h1, .offer-page h2, .offer-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #1c1a17;
}

.offer-topbar {
  background: #1c1a17;
  color: #f4f0e6;
  font-size: 0.85rem;
  padding: 10px 0;
}
.offer-topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  text-align: center;
}
.offer-topbar strong { color: #fff; }

.offer-nav {
  background: #f7f4ef;
  border-bottom: 1px solid #e6ddc9;
  position: relative;
}
.offer-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.offer-nav__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1c1a17;
  letter-spacing: 0.01em;
}
.offer-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 22px;
}
.offer-nav__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a4436;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.offer-nav__links a:hover { color: #1c1a17; }
.offer-nav__actions { display: flex; align-items: center; gap: 10px; }
.offer-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid #d8cfb8;
  background: #fff;
}
.offer-nav__toggle span,
.offer-nav__toggle::before,
.offer-nav__toggle::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: #1c1a17;
  position: relative;
}
.offer-nav__toggle::before { position: absolute; transform: translateY(-6px); }
.offer-nav__toggle::after { position: absolute; transform: translateY(6px); }
.offer-nav__mobile {
  display: none;
  flex-direction: column;
  padding: 6px 18px 16px;
  gap: 4px;
}
.offer-nav__mobile a {
  padding: 10px 4px;
  font-weight: 600;
  color: #4a4436;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.offer-nav.is-open .offer-nav__mobile { display: flex; }
@media (min-width: 860px) {
  .offer-nav__links { display: flex; }
  .offer-nav__toggle { display: none; }
  .offer-nav__mobile { display: none !important; }
}

.offer-hero { padding: 34px 0 30px; }
.offer-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}
@media (min-width: 860px) {
  .offer-hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
}
.offer-hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7a6a3d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.offer-hero__h1 {
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.12;
  margin-bottom: 14px;
}
.offer-hero__h2 {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 3.4vw, 1.4rem);
  color: #6f6858;
  margin-bottom: 16px;
}
.offer-hero__lead { font-size: 1.02rem; color: #4a4436; max-width: 42ch; }
.offer-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.offer-hero__media {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ece5d8;
}
.offer-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.offer-trust {
  border-top: 1px solid #e6ddc9;
  border-bottom: 1px solid #e6ddc9;
  background: #f1ecdf;
  padding: 16px 0;
}
.offer-trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5c5544;
  text-align: center;
}

.offer-section { padding: 44px 0; }
.offer-section--alt { background: #ece5d8; }
.offer-section__head { max-width: 640px; margin: 0 auto 28px; text-align: center; }
.offer-section__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8a7c5c;
  margin-bottom: 8px;
}
.offer-section__head h2 { font-size: clamp(1.5rem, 4.4vw, 2.1rem); }
.offer-section__head p { color: #6f6858; }

.offer-panels { display: flex; flex-direction: column; gap: 20px; }
.offer-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}
@media (min-width: 760px) {
  .offer-panel { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .offer-panel--flip .offer-panel__media { order: 2; }
}
.offer-panel__media {
  min-height: 180px;
  background: #ece5d8;
}
.offer-panel__media img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.offer-panel__media--css {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9dcc4 0%, #ece5d8 100%);
  padding: 30px;
  text-align: center;
}
.offer-panel__media--css strong {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: #33422f;
}
.offer-panel__card { padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; }
.offer-panel__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a7c5c;
  margin-bottom: 8px;
}
.offer-panel__card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.offer-panel__card p { color: #4a4436; }
.offer-panel__list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
.offer-panel__list li {
  border-top: 1px solid #eee5d3;
  padding-top: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #33422f;
}

.offer-divider {
  height: 34px;
  margin-top: -34px;
  position: relative;
  background: inherit;
  border-radius: 28px 28px 0 0;
}

.offer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 620px) {
  .offer-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .offer-cards { grid-template-columns: repeat(3, 1fr); }
}
.offer-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid #eee5d3;
}
.offer-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #1c1a17;
  color: #fdfaf4;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.offer-card__title { font-size: 1.05rem; margin-bottom: 6px; color: #1c1a17; font-weight: 700;}
.offer-card__desc { color: #6f6858; font-size: 0.92rem; margin: 0; }

.offer-video-band {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
@media (min-width: 800px) {
  .offer-video-band { flex-direction: row; }
}
.offer-video-band__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #1c1a17;
}
.offer-video-band__media video { width: 100%; height: 100%; object-fit: cover; }
.offer-video-band__text { width: 100%; }
.offer-video-band__text h2 { margin-bottom: 10px; }

.offer-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) {
  .offer-reasons { grid-template-columns: repeat(3, 1fr); }
}
.offer-reason { text-align: center; padding: 6px 10px; }
.offer-reason__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #ece5d8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}
.offer-reason h3 { font-size: 1.05rem; margin-bottom: 6px; }
.offer-reason p { color: #6f6858; font-size: 0.92rem; }

.offer-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 800px) {
  .offer-split { grid-template-columns: 1fr 1fr; }
}
.offer-split__col {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid #eee5d3;
}
.offer-split__col h3 { font-size: 1.2rem; margin-bottom: 12px; }
.offer-split__checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.offer-split__item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #e3dbc4;
  padding-bottom: 8px;
  font-size: 0.94rem;
}
.offer-split__item span:first-child { color: #33422f; }
.offer-split__fee { font-weight: 700; color: #1c1a17; white-space: nowrap; }
.offer-split__note { font-size: 0.85rem; color: #6f6858; margin-top: 12px; }
.offer-split__arith {
  margin-top: 14px;
  background: #f6f1e6;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #4a4436;
}

.offer-pricing { display: flex; flex-direction: column; gap: 18px; }
.offer-price-card {
  background: #ffffff;
  border: 2px solid #eee5d3;
  border-radius: 18px;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) {
  .offer-price-card { grid-template-columns: 1.3fr 1fr; align-items: center; }
}
.offer-price-card--highlight {
  border-color: #1c1a17;
  background: #1c1a17;
  color: #fdfaf4;
}
.offer-price-card--highlight h3,
.offer-price-card--highlight .offer-price-card__price { color: #fdfaf4; }
.offer-price-card--highlight .offer-price-card__hours,
.offer-price-card--highlight .offer-price-card__list li { color: #d8d3c6; }
.offer-price-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffd580;
  color: #33290a;
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.offer-price-card__head h3 { font-size: 1.35rem; margin-bottom: 4px; }
.offer-price-card__hours { font-size: 0.88rem; color: #6f6858; margin-bottom: 10px; }
.offer-price-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.offer-price-card__list li { font-size: 0.92rem; padding-left: 1.3em; position: relative; }
.offer-price-card__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  font-weight: 800; color: #6a8a58;
}
.offer-price-card--highlight .offer-price-card__list li::before { color: #ffd580; }
.offer-price-card__side { text-align: left; }
@media (min-width: 760px) {
  .offer-price-card__side { text-align: right; }
}
.offer-price-card__price { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.offer-price-card__price small { font-family: -apple-system, sans-serif; font-size: 0.9rem; font-weight: 500; display: block; color: inherit; opacity: 0.75; }

.offer-addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .offer-addons { grid-template-columns: repeat(3, 1fr); }
}
.offer-addon {
  background: #ffffff;
  border: 1px solid #eee5d3;
  border-radius: 14px;
  padding: 20px;
}
.offer-addon__price { font-family: Georgia, serif; font-weight: 700; font-size: 1.15rem; color: #1c1a17; margin-bottom: 6px; }
.offer-addon h3 { font-size: 1rem; margin-bottom: 6px; }
.offer-addon p { color: #6f6858; font-size: 0.88rem; margin: 0; }

.offer-perks {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid #eee5d3;
}
.offer-perks__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 700px) {
  .offer-perks__list { grid-template-columns: 1fr 1fr; }
}
.offer-perks__list li {
  padding-left: 1.5em;
  position: relative;
  font-size: 0.95rem;
}
.offer-perks__list li::before {
  content: "★";
  position: absolute; left: 0; top: 0;
  color: #b99a3c;
}

.offer-limits {
  background: #f1ecdf;
  border-radius: 16px;
  padding: 26px 24px;
}
.offer-limits__list { margin: 0; padding-left: 1.2em; }
.offer-limits__list li { margin-bottom: 8px; }

.offer-lead__intro { max-width: 640px; margin: 0 auto 26px; text-align: center; }
.offer-form-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eee5d3;
  padding: 26px 22px;
  max-width: 640px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 560px) {
  .form-row--two { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.9rem; font-weight: 700; color: #33291b; }
.form-input, .form-textarea {
  font-size: 1rem;
  padding: 0.7em 0.8em;
  border: 1px solid #d8cfb8;
  border-radius: 8px;
  background: #fffdf9;
  min-height: 46px;
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-input:focus, .form-textarea:focus { border-color: #1c1a17; }
.form-checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 20px; }
.form-checkbox-row input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.form-checkbox-row label { font-size: 0.88rem; color: #4a4436; }
.form-error {
  color: #a8271f;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}
.form-field.has-error .form-input,
.form-field.has-error .form-textarea { border-color: #a8271f; }
.form-field.has-error .form-error { display: block; }
.offer-form-note { font-size: 0.82rem; color: #6f6858; margin-top: 12px; }
.form-success {
  display: none;
  background: #e6f0df;
  border: 1px solid #b6d1a4;
  color: #2b4520;
  border-radius: 10px;
  padding: 16px 18px;
  font-weight: 600;
}
.form-success.is-visible { display: block; }
.offer-form-card.is-submitted form { display: none; }

/* =========================================================================
   LEGAL PAGES
   ========================================================================= */
.legal-page { background: #f7f4ef; color: #3a352c; }
.legal-header { padding: 30px 0 10px; }
.legal-header p.legal-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a7c5c;
  margin-bottom: 8px;
}
.legal-title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 5vw, 2.4rem); color: #1c1a17; }
.legal-content { padding: 10px 0 40px; }
.legal-box {
  background: #ffffff;
  border: 1px solid #eee5d3;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 2px 0 #eee5d3;
}
.legal-box h2 { font-family: Georgia, serif; font-size: 1.25rem; color: #1c1a17; margin-top: 1.4em; }
.legal-box h2:first-child { margin-top: 0; }
.legal-box ul { padding-left: 1.2em; }
.legal-box a { color: #0d3fa8; text-decoration: underline; font-weight: 600; }
.legal-contact-block {
  background: #ffffff;
  border: 1px solid #eee5d3;
  border-radius: 14px;
  padding: 22px;
  margin-top: 20px;
  white-space: pre-line;
  font-size: 0.95rem;
}
.legal-back {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 700;
  color: #0d3fa8;
  min-height: 44px;
  line-height: 44px;
}

/* ---------- 404 ---------- */
.notfound { padding: 60px 0; text-align: center; }
.notfound h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
