/**
 * SP OTP-shell — design tokens & chrome from Own the Patch structure
 * RTL mirrored (rail on the right)
 */
:root {
  /* رنگ‌ها دیگه مقدار مستقل ندارن — به توکن‌های یکپارچه‌ی style.css وصل شدن تا تو کل سایت
     فقط یه منبع رنگ باشه. قبلاً اینجا یه پالت جدا (spruce/pillar/bone/...) با هگزهای کمی
     متفاوت از style.css تعریف شده بود — همون خانواده‌ی «forest + cream + coral» بود ولی
     رنگ قرمز CTA هوم‌پیج (#b01e2a) با رنگ قرمز اصلی سایت (#e63946) دقیقاً یکی نبود. */
  --sp-spruce: var(--sp-color-forest);
  --sp-spruce-deep: var(--sp-color-forest-deep);
  --sp-pillar: var(--sp-primary);
  --sp-pillar-dark: var(--sp-primary-hover);
  --sp-pillar-on-dark: var(--sp-primary-hover);
  --sp-bone: var(--sp-color-cream);
  --sp-putty: var(--sp-color-cream-muted);
  /* --sp-text-muted تم-محوره (زیر تم تیره‌ی اجباری سایت، همیشه روشن می‌شه) — ولی sage باید همیشه
     یه خاکستری تیره‌ی ثابت بمونه چون فقط رو سکشن‌های روشن (bone/putty) استفاده می‌شه، صرف‌نظر از
     تم سراسری. همین باگ (رنگ روشن رو پس‌زمینه‌ی روشن، عملاً نامرئی) باعث گزارش کاربر شد. */
  --sp-sage: #46564c;
  --sp-line: rgba(26, 46, 40, 0.12);
  --sp-line-dark: rgba(245, 240, 232, 0.16);
  --sp-bone-soft: rgba(245, 240, 232, 0.66);

  /* این یکی مخصوص همین شله (ارتفاع هدر شناور رو صفحات مارکتینگ، متفاوت از --sp-header-height اصلی سایت) */
  --sp-header-h: 3.5rem;
  /* بقیه‌ی توکن‌های layout/motion این شل (rail-w, sec-pad, gutter, ease-osmo, ease-soft, label-size,
     label-track) دیگه اینجا نیستن — به style.css منتقل شدن (یه منبع واحد برای همه‌ی توکن‌ها) */
}

/* ---------- Fixed parallax hero layer ---------- */
.sp-hero-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s var(--sp-ease-soft);
}
.sp-hero-fixed.is-faded { opacity: 0; visibility: hidden; }
.sp-hero-fixed__img {
  position: absolute;
  inset: 0;
  background-image: var(--sp-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.sp-hero-fixed__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(9, 20, 15, 0.97) 0%, rgba(9, 20, 15, 0.91) 40%, rgba(9, 20, 15, 0.8) 100%);
}

/* Column guides like OTP */
.sp-guides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none;
}
@media (min-width: 760px) {
  .sp-guides { display: block; }
}
.sp-guides__inner {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1760px;
  margin-inline: auto;
  padding-inline: var(--sp-gutter);
}
body.sp-marketing .sp-guides__inner {
  padding-right: calc(var(--sp-rail-w) + var(--sp-gutter));
}
.sp-guides__inner span {
  border-left: 1px solid var(--sp-line-dark);
}
.sp-guides__inner span:first-child { border-left: 0; }

/* ---------- Marketing chrome header ---------- */
body.sp-marketing {
  background: var(--sp-spruce-deep);
  color: var(--sp-bone);
}
body.sp-marketing .sp-main {
  position: relative;
  z-index: 1;
  padding: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  transform: none !important;
  animation: none !important;
}
body.sp-marketing .sp-header {
  position: fixed !important;
  inset: 0 0 auto;
  height: var(--sp-header-h);
  z-index: 60;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  pointer-events: none;
}
body.sp-marketing .sp-header.is-scrolled {
  background: rgba(14, 31, 23, 0.92) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sp-line-dark) !important;
}
body.sp-marketing .sp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: none;
  padding: 0.75rem var(--sp-gutter);
  pointer-events: none;
}
body.sp-marketing .sp-logo,
body.sp-marketing .sp-header__actions {
  pointer-events: auto;
}
body.sp-marketing .sp-nav,
body.sp-marketing .sp-menu-btn { display: none !important; }
body.sp-marketing .sp-logo {
  color: var(--sp-bone);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.sp-marketing .sp-logo span,
body.sp-marketing .sp-logo__text {
  background: none !important;
  -webkit-text-fill-color: var(--sp-bone) !important;
  color: var(--sp-bone) !important;
}

/* ---------- Side rail (RTL = right) ---------- */
#sp-side-nav.sp-side-nav {
  display: none;
  position: fixed !important;
  top: calc(var(--sp-header-h) + 1.25rem);
  right: var(--sp-gutter);
  left: auto !important;
  z-index: 55;
  flex-direction: column;
  gap: 0.45rem;
  width: auto;
  margin: 0;
  padding: 0;
  transform: none !important;
}
@media (min-width: 1100px) {
  body.sp-marketing #sp-side-nav.sp-side-nav { display: flex !important; }
}
/* هاور/اکتیو مثل OTP: نه underline کشیده، یه مربع کوچیک قرمز که سمت شروع متن (راست تو RTL)
   scale/fade می‌شه ظاهر می‌شه — دقیقاً همون زبان بصری eyebrow badge (مربع قرمز قبل از متن) */
.sp-side-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: var(--sp-label-track);
  text-transform: uppercase;
  color: var(--sp-bone-soft);
  text-decoration: none;
  padding: 0.2rem 0.95rem 0.2rem 0;
  transition: color 0.25s var(--sp-ease-soft);
}
.sp-side-nav a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--sp-pillar);
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: transform 0.3s var(--sp-ease-osmo), opacity 0.25s ease;
}
.sp-side-nav a.is-active,
.sp-side-nav a:hover {
  color: var(--sp-bone);
}
.sp-side-nav a.is-active::before,
.sp-side-nav a:hover::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
#sp-side-nav.is-on-light a::before { background: var(--sp-pillar); }

/* Active section progress marker (rail line) */
.sp-rail-progress {
  display: none;
  position: fixed;
  top: calc(var(--sp-header-h) + 1rem);
  right: calc(var(--sp-gutter) - 0.55rem);
  width: 2px;
  height: 180px;
  background: rgba(242, 241, 236, 0.12);
  z-index: 54;
  border-radius: 2px;
  overflow: hidden;
}
.sp-rail-progress__fill {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0%;
  background: var(--sp-pillar);
  transition: height 0.25s linear;
}
@media (min-width: 1100px) {
  body.sp-marketing .sp-rail-progress { display: block; }
}

/* Bottom fixed links (OTP left footer links → RTL left in our mirror stays start side) */
.sp-bottom-rail {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: auto;
  left: var(--sp-gutter);
  z-index: 55;
  flex-direction: column;
  gap: 0.35rem;
}
@media (min-width: 1100px) {
  body.sp-marketing .sp-bottom-rail { display: flex; }
}
.sp-bottom-rail a,
.sp-bottom-rail button {
  font-size: var(--sp-label-size);
  font-weight: 700;
  letter-spacing: var(--sp-label-track);
  text-transform: uppercase;
  color: var(--sp-bone-soft);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: right;
  padding: 0;
  transition: color 0.25s ease;
}
.sp-bottom-rail a:hover,
.sp-bottom-rail button:hover {
  color: var(--sp-bone);
}
.sp-bottom-rail__rule {
  width: 1.5rem;
  height: 1px;
  background: var(--sp-line-dark);
  margin: 0.35rem 0;
  align-self: flex-start;
}

/* رنگ خودکار سایدبار/bottom-rail/رول‌پراگرس وقتی زیرشون یه سکشن روشنه (bone/putty) — با JS
   (adaptiveColorFor تو main.js) این کلاس‌ها موقع اسکرول اضافه/حذف می‌شن */
#sp-side-nav.is-on-light a {
  color: rgba(15, 20, 18, 0.5);
}
#sp-side-nav.is-on-light a.is-active,
#sp-side-nav.is-on-light a:hover {
  color: var(--sp-spruce);
}
.sp-rail-progress.is-on-light {
  background: rgba(15, 20, 18, 0.14);
}
#sp-bottom-rail.is-on-light a,
#sp-bottom-rail.is-on-light button {
  color: rgba(15, 20, 18, 0.5);
}
#sp-bottom-rail.is-on-light a:hover,
#sp-bottom-rail.is-on-light button:hover {
  color: var(--sp-spruce);
}
#sp-bottom-rail.is-on-light .sp-bottom-rail__rule {
  background: var(--sp-line);
}

/* ---------- Hero ---------- */
.sp-mkt-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--sp-header-h) + 2rem) var(--sp-gutter) 4rem;
  background: transparent !important;
}
@media (min-width: 1100px) {
  .sp-mkt-hero {
    padding-right: calc(var(--sp-rail-w) + var(--sp-gutter));
  }
}
.sp-mkt-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}
.sp-mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--sp-label-size);
  font-weight: 700;
  letter-spacing: var(--sp-label-track);
  text-transform: uppercase;
  color: var(--sp-bone-soft);
  margin-bottom: 1.35rem;
}
.sp-mkt-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--sp-pillar);
  flex-shrink: 0;
}
.sp-mkt-hero__title {
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--sp-bone);
  margin: 0 0 1.35rem;
  text-wrap: balance;
}
.sp-mkt-hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--sp-bone-soft);
  max-width: 38em;
  margin: 0 0 2rem;
}
.sp-mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

/* OTP-style CTA button with sliding arrows */
.sp-btn-osmo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: var(--sp-pillar);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--sp-ease-soft);
}
.sp-btn-osmo:hover { background: var(--sp-pillar-dark); color: #fff; }
.sp-btn-osmo__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
}
.sp-btn-osmo__icon {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.45s var(--sp-ease-osmo);
}
.sp-btn-osmo:hover .sp-btn-osmo__icon.is-right {
  transform: translateX(-0.15rem);
}
html[dir="rtl"] .sp-btn-osmo:hover .sp-btn-osmo__icon.is-right {
  transform: translateX(0.25rem);
}

/* Ghost link with char-lift feel via underline */
.sp-link-ghost {
  font-size: var(--sp-label-size);
  font-weight: 700;
  letter-spacing: var(--sp-label-track);
  text-transform: uppercase;
  color: var(--sp-bone-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.35s var(--sp-ease-osmo);
}
.sp-link-ghost:hover {
  color: var(--sp-bone);
  border-bottom-color: var(--sp-bone);
}

/* Scroll indicator bottom-start (OTP has bottom right in LTR → bottom left in RTL? OTP screenshot shows bottom right for LTR. For RTL put bottom left away from rail) */
.sp-mkt-scroll {
  position: absolute;
  bottom: 1.75rem;
  right: var(--sp-gutter);
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  font-size: var(--sp-label-size);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sp-bone-soft);
  z-index: 2;
}
.sp-mkt-scroll__line {
  width: 1px;
  height: 52px;
  background: rgba(242, 241, 236, 0.25);
  position: relative;
  overflow: hidden;
}
.sp-mkt-scroll__line i {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 35%;
  background: var(--sp-bone);
  animation: sp-scroll-pulse 2s var(--sp-ease-soft) infinite;
}
@keyframes sp-scroll-pulse {
  0% { top: -30%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ---------- Sections ---------- */
.sp-mkt-section {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-sec-pad);
  padding-inline: var(--sp-gutter);
}
@media (min-width: 1100px) {
  .sp-mkt-section {
    padding-right: calc(var(--sp-rail-w) + var(--sp-gutter));
  }
}
.sp-over-hero {
  z-index: 1;
  background: transparent !important;
}
.sp-mkt-section--deep {
  background: var(--sp-spruce-deep);
  color: var(--sp-bone);
}
.sp-mkt-section--spruce {
  background: var(--sp-spruce);
  color: var(--sp-bone);
}
.sp-mkt-section--bone {
  background: var(--sp-bone);
  color: var(--sp-spruce);
}
.sp-mkt-section--putty {
  background: var(--sp-putty);
  color: var(--sp-spruce);
}
.sp-mkt-wrap {
  max-width: var(--sp-container);
  margin: 0;
}
.sp-mkt-section__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 0 1.1rem;
}
.sp-mkt-section--bone .sp-mkt-section__title,
.sp-mkt-section--putty .sp-mkt-section__title {
  color: var(--sp-spruce);
}
.sp-mkt-section--deep .sp-mkt-section__title,
.sp-mkt-section--spruce .sp-mkt-section__title {
  color: var(--sp-bone);
}
.sp-mkt-section__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 0 2.5rem;
}
.sp-mkt-section--bone .sp-mkt-section__lead,
.sp-mkt-section--putty .sp-mkt-section__lead {
  color: var(--sp-sage);
}
.sp-mkt-section--deep .sp-mkt-section__lead,
.sp-mkt-section--spruce .sp-mkt-section__lead {
  color: var(--sp-bone-soft);
}
.sp-mkt-quote {
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 0 1.25rem;
  color: var(--sp-bone);
}
.sp-mkt-quote + p {
  color: var(--sp-bone-soft);
  max-width: 42ch;
  line-height: 1.65;
}

/* Feature columns with rules */
.sp-mkt-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--sp-line);
}
.sp-mkt-section--deep .sp-mkt-features,
.sp-mkt-section--spruce .sp-mkt-features {
  border-top-color: var(--sp-line-dark);
}
@media (min-width: 800px) {
  .sp-mkt-features { grid-template-columns: repeat(3, 1fr); }
}
.sp-mkt-feature {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--sp-line);
}
.sp-mkt-section--deep .sp-mkt-feature,
.sp-mkt-section--spruce .sp-mkt-feature {
  border-bottom-color: var(--sp-line-dark);
}
@media (min-width: 800px) {
  .sp-mkt-feature {
    border-bottom: none;
    border-left: 1px solid var(--sp-line);
    padding: 1.75rem 1.5rem;
  }
  .sp-mkt-section--deep .sp-mkt-feature,
  .sp-mkt-section--spruce .sp-mkt-feature {
    border-left-color: var(--sp-line-dark);
  }
  .sp-mkt-feature:first-child { border-left: none; padding-right: 0; }
  .sp-mkt-feature:last-child { padding-left: 0; }
}
.sp-mkt-feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.sp-mkt-section--bone .sp-mkt-feature h3,
.sp-mkt-section--putty .sp-mkt-feature h3 { color: var(--sp-spruce); }
.sp-mkt-section--deep .sp-mkt-feature h3,
.sp-mkt-section--spruce .sp-mkt-feature h3 { color: var(--sp-bone); }
.sp-mkt-feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--sp-sage);
}
.sp-mkt-section--deep .sp-mkt-feature p,
.sp-mkt-section--spruce .sp-mkt-feature p { color: var(--sp-bone-soft); }

/* Pricing cards */
.sp-mkt-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .sp-mkt-plans { grid-template-columns: repeat(3, 1fr); }
}
.sp-mkt-plan {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--sp-line-dark);
  background: rgba(242, 241, 236, 0.04);
  transition: transform 0.4s var(--sp-ease-osmo), border-color 0.35s ease, box-shadow 0.4s ease;
}
.sp-mkt-plan:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 30, 42, 0.55);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}
.sp-mkt-plan--popular {
  border-color: rgba(176, 30, 42, 0.6);
  background: linear-gradient(165deg, rgba(176, 30, 42, 0.16), rgba(14, 31, 23, 0.3));
}
.sp-mkt-plan__badge {
  font-size: var(--sp-label-size);
  font-weight: 800;
  letter-spacing: var(--sp-label-track);
  text-transform: uppercase;
  color: var(--sp-pillar-on-dark);
  margin-bottom: 0.75rem;
}
.sp-mkt-plan h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--sp-bone);
}
.sp-mkt-plan__blurb {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--sp-bone-soft);
  margin: 0 0 1.35rem;
}
.sp-mkt-plan__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Steps */
.sp-mkt-steps {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--sp-line);
  padding-top: 2rem;
}
@media (min-width: 800px) {
  .sp-mkt-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .sp-mkt-step {
    padding: 0 1.5rem;
    border-left: 1px solid var(--sp-line);
  }
  .sp-mkt-step:first-child { border-left: none; padding-right: 0; }
  .sp-mkt-step:last-child { padding-left: 0; }
}
.sp-mkt-step__num {
  font-size: var(--sp-label-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sp-pillar);
  margin-bottom: 1rem;
}
.sp-mkt-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--sp-spruce);
}
.sp-mkt-step p {
  margin: 0;
  color: var(--sp-sage);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Metrics */
.sp-mkt-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) {
  .sp-mkt-metrics { grid-template-columns: repeat(4, 1fr); }
}
.sp-mkt-metric {
  padding: 1.25rem;
  border: 1px solid var(--sp-line-dark);
  border-radius: 12px;
  text-align: center;
}
.sp-mkt-metric__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--sp-bone);
}
.sp-mkt-metric__label {
  font-size: 0.78rem;
  color: var(--sp-bone-soft);
  margin-top: 0.25rem;
}

/* CTA band */
.sp-mkt-cta {
  position: relative;
  z-index: 2;
  padding: var(--sp-sec-pad) var(--sp-gutter);
  background: var(--sp-spruce);
  text-align: center;
  color: var(--sp-bone);
}
.sp-mkt-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: var(--sp-bone);
}
.sp-mkt-cta p {
  color: var(--sp-bone-soft);
  max-width: 36em;
  margin: 0 auto 1.75rem;
}

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .sp-reveal {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
    transition: opacity 0.9s var(--sp-ease-osmo), transform 0.9s var(--sp-ease-osmo);
    will-change: opacity, transform;
  }
  .sp-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .sp-reveal-delay-1 { transition-delay: 0.08s; }
  .sp-reveal-delay-2 { transition-delay: 0.16s; }
  .sp-reveal-delay-3 { transition-delay: 0.24s; }
}
/* کاربرهایی که موشن رو کم می‌خوان: محتوا همیشه فوری دیده می‌شه، بدون فید/جابه‌جایی */
@media (prefers-reduced-motion: reduce) {
  .sp-reveal { opacity: 1; transform: none; }
}

/* Footer + red grid */
body.sp-marketing .sp-footer {
  position: relative;
  z-index: 2;
  background: var(--sp-spruce-deep);
  border-top: 1px solid var(--sp-line-dark);
  overflow: hidden;
  color: var(--sp-bone-soft);
}
.sp-footer__grid-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(6, 1fr);
  pointer-events: none;
}
.sp-footer__grid-fx span {
  transition: background 0.3s ease;
}
.sp-footer__grid-fx span.is-hot {
  background: rgba(176, 30, 42, 0.4);
}
body.sp-marketing .sp-footer .sp-container { position: relative; z-index: 1; }

/* Support modal (Clients-style) */
.sp-support-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.sp-support-modal.is-open { display: flex; }
.sp-support-modal__dark {
  position: absolute;
  inset: 0;
  background: rgba(14, 31, 23, 0.72);
  backdrop-filter: blur(6px);
}
.sp-support-modal__card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--sp-bone);
  color: var(--sp-spruce);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.sp-support-modal__card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--sp-spruce);
}
.sp-support-modal__card p {
  color: var(--sp-sage);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.sp-support-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.sp-support-modal__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.sp-support-modal__wa {
  background: #25d366;
  color: #fff;
}
.sp-support-modal__tg {
  background: transparent;
  border: 1px solid var(--sp-line);
  color: var(--sp-spruce);
}
.sp-support-modal__close {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--sp-sage);
}

/* Primary buttons on marketing use pillar */
body.sp-marketing .sp-btn--primary {
  background: var(--sp-pillar) !important;
  border: none !important;
  border-radius: 999px !important;
  color: #fff !important;
}
body.sp-marketing .sp-btn--outline {
  border-radius: 999px !important;
  border-color: var(--sp-line-dark) !important;
  color: var(--sp-bone) !important;
}
