/* ================================================================
   Apadana MIS — mis-sections.css  v1.0
   New & overriding styles for:
     • Module grid (replaces alternating facility rows)
     • Testimonials V2
     • Early-adopter / promise section improvements
   ================================================================ */

/* ================================================================
   1. MODULE GRID  (.ap-modules)
   ================================================================ */
.ap-modules {
  padding: var(--ap-section-y, 5rem) 0;
  background: var(--ap-bg, #faf8fc);
  position: relative;
  overflow: hidden;
}
.ap-modules::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(97,24,74,.05), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(201,162,75,.04), transparent 60%);
  pointer-events: none;
}
.ap-modules > .container { position: relative; z-index: 1; }

/* Grid */
.ap-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .ap-modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .ap-modules-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Module card */
.ap-mod-card {
  background: #fff;
  border: 1px solid var(--ap-line, #ece9ef);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ap-ease, cubic-bezier(.4,0,.2,1)),
              box-shadow .3s var(--ap-ease, cubic-bezier(.4,0,.2,1)),
              border-color .3s var(--ap-ease, cubic-bezier(.4,0,.2,1));
}
.ap-mod-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ap-primary, #61184a), var(--ap-accent, #c9a24b));
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 20px 20px 0 0;
}
.ap-mod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(97,24,74,.11);
  border-color: var(--ap-primary-100, #f5ecf1);
}
.ap-mod-card:hover::after { opacity: 1; }

/* Card head: icon + number */
.ap-mod-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.ap-mod-card__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ap-primary-50, #fdf5fa);
  color: var(--ap-primary, #61184a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease;
}
.ap-mod-card__ico svg {
  width: 26px;
  height: 26px;
}
.ap-mod-card:hover .ap-mod-card__ico {
  background: var(--ap-primary, #61184a);
  color: #fff;
}
.ap-mod-card__num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ap-primary-100, #f5ecf1);
  background: var(--ap-primary-50, #fdf5fa);
  border: 1px solid var(--ap-primary-100, #f5ecf1);
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  align-self: flex-start;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.ap-mod-card:hover .ap-mod-card__num {
  background: var(--ap-primary-50, #fdf5fa);
  color: var(--ap-primary, #61184a);
  border-color: var(--ap-primary, #61184a);
}

/* Card title */
.ap-mod-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ap-ink, #20131c);
  margin: 0 0 0.6rem;
  line-height: 1.5;
}

/* Card description */
.ap-mod-card__desc {
  font-size: 0.88rem;
  color: var(--ap-muted, #8a7f93);
  line-height: 1.85;
  margin: 0 0 1.2rem;
  flex: 1;
}

/* Feature chips */
.ap-mod-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.ap-mod-card__chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ap-primary, #61184a);
  background: var(--ap-primary-50, #fdf5fa);
  border: 1px solid var(--ap-primary-100, #f5ecf1);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}

/* More link */
.ap-mod-card__more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ap-primary, #61184a);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  transition: gap .2s ease;
}
.ap-mod-card__more:hover { gap: 0.55rem; color: var(--ap-primary, #61184a); }

/* VoIP card accent */
.ap-mod-card--voip {
  background: linear-gradient(160deg, #fff 60%, var(--ap-primary-50, #fdf5fa) 100%);
  border-color: var(--ap-primary-100, #f5ecf1);
}
.ap-mod-card--voip .ap-mod-card__ico {
  background: linear-gradient(135deg, var(--ap-primary, #61184a), #9b2c7f);
  color: #fff;
}
.ap-mod-card--voip .ap-mod-card__title { color: var(--ap-primary, #61184a); }


/* ================================================================
   2. TESTIMONIALS V2  (.ap-tv2)
   ================================================================ */
.ap-tv2-header {
  text-align: center;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--ap-line, #ece9ef);
}

/* Featured testimonial */
.ap-tv2-featured {
  margin-top: 2.5rem;
  background: linear-gradient(160deg, var(--ap-primary-900, #2d0921), var(--ap-primary-800, #3d0e2c));
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.ap-tv2-featured::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 12rem;
  line-height: 1;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  user-select: none;
}
.ap-tv2-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(201,162,75,.18), transparent 60%);
  pointer-events: none;
}
.ap-tv2-featured > * { position: relative; z-index: 1; }

.ap-tv2-feat__stars {
  color: var(--ap-accent, #c9a24b);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}
.ap-tv2-feat__text {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 2;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  margin: 0 0 2rem;
  max-width: 820px;
}
.ap-tv2-feat__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ap-tv2-feat__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.ap-tv2-feat__name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  display: block;
}
.ap-tv2-feat__role {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}

/* Secondary grid */
.ap-tv2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .ap-tv2-grid { grid-template-columns: 1fr; }
}

/* Secondary cards */
.ap-tv2-card {
  background: #fff;
  border: 1px solid var(--ap-line, #ece9ef);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.ap-tv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(97,24,74,.09);
}
.ap-tv2-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ap-primary, #61184a), var(--ap-accent, #c9a24b));
  opacity: 0;
  transition: opacity .3s ease;
}
.ap-tv2-card:hover::before { opacity: 1; }

.ap-tv2-card__stars {
  color: var(--ap-accent, #c9a24b);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.ap-tv2-card__text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--ap-ink-2, #4a3f52);
  flex: 1;
  margin: 0 0 1.2rem;
}
.ap-tv2-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ap-line, #ece9ef);
}
.ap-tv2-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ap-primary-50, #fdf5fa);
  border: 2px solid var(--ap-primary-100, #f5ecf1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ap-primary, #61184a);
  flex-shrink: 0;
}
.ap-tv2-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ap-ink, #20131c);
  display: block;
}
.ap-tv2-card__role {
  font-size: 0.78rem;
  color: var(--ap-muted, #8a7f93);
}


/* ================================================================
   3. EARLY ADOPTER / PROMISE IMPROVEMENTS
   ================================================================ */

/* Included modules list inside ap-early */
.ap-early__modules {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 0.5rem 0 1.25rem;
}
.ap-early__modules-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.ap-early__modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.75rem;
}
.ap-early__modules-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.8);
}
.ap-early__modules-item svg {
  width: 13px; height: 13px;
  color: var(--ap-accent, #c9a24b);
  flex-shrink: 0;
}

/* Support badge row */
.ap-early__support {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ap-early__support svg {
  width: 15px; height: 15px;
  color: var(--ap-accent, #c9a24b);
  flex-shrink: 0;
}

/* ================================================================
   4. PRICING PLANS  (.ap-pricing)
   ================================================================ */
.ap-pricing {
  padding: var(--ap-section-y, 5rem) 0;
  background: var(--ap-bg, #faf8fc);
}

/* ── Controls bar ── */
.ap-pricing-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Period toggle */
.ap-period-toggle {
  display: flex;
  background: #fff;
  border: 1.5px solid var(--ap-border, #e8e0f0);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.ap-period-btn {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: .45rem 1.25rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ap-muted, #8b7eab);
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: inherit;
}
.ap-period-btn.active {
  background: var(--ap-primary, #5b21b6);
  color: #fff;
}
.ap-period-discount {
  font-size: .7rem;
  font-weight: 800;
  padding: .15em .6em;
  border-radius: 999px;
  background: var(--ap-accent, #c9a24b);
  color: #fff;
}

/* User count control */
.ap-user-control {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--ap-text, #1a0f2e);
}
.ap-user-control label {
  font-weight: 600;
  margin: 0;
}
.ap-user-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--ap-border, #e8e0f0);
  border-radius: 999px;
  overflow: hidden;
}
.ap-user-btn {
  border: none;
  background: transparent;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ap-primary, #5b21b6);
  transition: background .15s;
}
.ap-user-btn:hover { background: var(--ap-primary-50, #f3eeff); }
.ap-user-btn svg { width: 14px; height: 14px; }
#ap-user-count {
  border: none;
  width: 52px;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ap-primary-900, #2d1b69);
  font-family: inherit;
  outline: none;
  -moz-appearance: textfield;
}
#ap-user-count::-webkit-outer-spin-button,
#ap-user-count::-webkit-inner-spin-button { -webkit-appearance: none; }
.ap-user-label {
  font-weight: 600;
  color: var(--ap-muted, #8b7eab);
}

/* Plan grid */
.ap-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .ap-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .ap-pricing-controls { flex-direction: column; gap: 1rem; }
}

/* Base plan card */
.ap-plan {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--ap-border, #e8e0f0);
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.ap-plan:hover {
  box-shadow: 0 12px 40px rgba(100,60,160,.10);
  transform: translateY(-4px);
}

/* Featured plan */
.ap-plan--featured {
  background: linear-gradient(160deg, var(--ap-primary-900, #2d1b69) 0%, var(--ap-primary-800, #3d2b87) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 20px 60px rgba(60,30,140,.25);
  transform: scale(1.035);
  z-index: 1;
}
.ap-plan--featured:hover {
  transform: scale(1.035) translateY(-4px);
}

/* Badge */
.ap-plan__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 999px;
  background: var(--ap-accent, #c9a24b);
  color: #fff;
  margin-bottom: .75rem;
}

/* Head */
.ap-plan__head { margin-bottom: 1.25rem; }
.ap-plan__name {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 .25rem;
  color: var(--ap-primary-900, #2d1b69);
}
.ap-plan--featured .ap-plan__name { color: #fff; }
.ap-plan__sub {
  font-size: 0.82rem;
  color: var(--ap-muted, #8b7eab);
  margin: 0;
}
.ap-plan--featured .ap-plan__sub { color: rgba(255,255,255,.65); }

/* Price */
.ap-plan__price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ap-border, #e8e0f0);
}
.ap-plan--featured .ap-plan__price { border-color: rgba(255,255,255,.15); }
.ap-plan__amount {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ap-primary-900, #2d1b69);
  line-height: 1.1;
}
.ap-plan--featured .ap-plan__amount { color: #fff; }
.ap-plan__amount--contact { font-size: 1.4rem; }
.ap-plan__period {
  font-size: 0.78rem;
  color: var(--ap-muted, #8b7eab);
}
.ap-plan--featured .ap-plan__period { color: rgba(255,255,255,.6); }

/* Annual save badge */
.ap-plan__annual-save {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  padding: .2em .65em;
  border-radius: 999px;
  background: rgba(201,162,75,.15);
  color: var(--ap-accent, #c9a24b);
  margin-bottom: .35rem;
}
.ap-plan--featured .ap-plan__annual-save {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* Per-user hint */
.ap-plan__per-user {
  display: block;
  font-size: .72rem;
  opacity: .75;
  margin-top: .15rem;
}

/* Features list */
.ap-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ap-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: 0.86rem;
  color: var(--ap-text, #1a0f2e);
}
.ap-plan--featured .ap-plan__features li { color: rgba(255,255,255,.9); }
.ap-plan__features li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ap-accent, #c9a24b);
}

/* CTA */
.ap-plan__cta { margin-top: auto; }
.ap-plan__note {
  font-size: 0.74rem;
  text-align: center;
  color: var(--ap-muted, #8b7eab);
  margin: .6rem 0 0;
}
.ap-plan--featured .ap-plan__note { color: rgba(255,255,255,.5); }

/* Footer */
.ap-pricing-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ap-muted, #8b7eab);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.ap-pricing-footer svg { width: 16px; height: 16px; flex-shrink: 0; }
.ap-pricing-footer a { color: var(--ap-primary, #5b21b6); font-weight: 600; }

/* btn-outline-primary for pricing */
.ap-pricing .btn-outline-primary {
  border: 1.5px solid var(--ap-primary, #5b21b6);
  color: var(--ap-primary, #5b21b6);
  background: transparent;
}
.ap-pricing .btn-outline-primary:hover {
  background: var(--ap-primary, #5b21b6);
  color: #fff;
}

/* ================================================================
   5. BANNER (ap-trial) BOTTOM STRIP FIX
   ================================================================ */
.ap-trial__bottom-certs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ap-trial__bottom-certs span {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}

/* ================================================================
   6. SECTION BACKGROUND — v2  یکپارچه و حرفه‌ای
   رویکرد: دو سطح نوترال + دکوراسیون هندسی یکسان
   الهام‌گرفته از: Stripe · Linear · Notion
   ================================================================ */

/*
 * قانون ساده:
 *  - بخش‌های زوج: #ffffff  (سفید)
 *  - بخش‌های فرد: #f7f6f8  (خاکستری خیلی ملایم)
 *  - decoration: حلقه‌های هندسی با border ظریف — نه blob رنگی
 *  - dot-grid فقط روی بخش‌های خاکستری با opacity کم
 */

/* ── رنگ‌های پایه ── */
.ap-modules        { background: #ffffff; }
.question          { background: #f7f6f8; }
.ap-promise        { background: #ffffff; }
.ap-pricing        { background: #f7f6f8; }
.articles,
[data-section="blog"] { background: #ffffff; }

/* ── overflow + position برای decoration ── */
.ap-modules,
.question,
.ap-promise,
.ap-pricing,
[data-section="blog"] {
  position: relative;
  overflow: hidden;
}

/* ── خط جداکننده ظریف به جای رنگ ── */
.ap-modules,
.question,
.ap-promise,
.ap-pricing,
[data-section="blog"] {
  border-top: 1px solid rgba(26,19,34,.055);
}

/* ── dot-grid روی بخش‌های خاکستری ── */
.question,
.ap-pricing {
  background-color: #f7f6f8;
  background-image: radial-gradient(circle, rgba(97,24,74,.042) 1px, transparent 1px);
  background-size: 28px 28px;
}

/*
 * ── حلقه‌های هندسی (ring decoration) ──
 * border-only circles — هیچ fill یا blur نداریم
 * هر بخش یک حلقه بزرگ در گوشه + یک حلقه کوچک‌تر
 */

/* ماژول‌ها — حلقه گوشه راست-بالا */
.ap-modules::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(97,24,74,.07);
  top: -270px; right: -210px;
  pointer-events: none;
  z-index: 0;
}
.ap-modules::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,.10);
  bottom: -150px; left: -110px;
  pointer-events: none;
  z-index: 0;
}
.ap-modules .container,
.ap-modules > .container { position: relative; z-index: 1; }

/* سوالات — حلقه گوشه چپ-بالا */
.question::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1.5px solid rgba(97,24,74,.07);
  top: -230px; left: -190px;
  pointer-events: none;
  z-index: 0;
}
.question::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,.11);
  bottom: -130px; right: -100px;
  pointer-events: none;
  z-index: 0;
}
.question .container { position: relative; z-index: 1; }

/* Promise / Testimonials — حلقه گوشه راست-پایین */
.ap-promise::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1.5px solid rgba(97,24,74,.065);
  bottom: -250px; right: -200px;
  pointer-events: none;
  z-index: 0;
}
.ap-promise::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,.09);
  top: -110px; left: -110px;
  pointer-events: none;
  z-index: 0;
}
.ap-promise .container { position: relative; z-index: 1; }

/* Pricing — حلقه گوشه چپ-بالا */
.ap-pricing::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(97,24,74,.07);
  top: -240px; left: -190px;
  pointer-events: none;
  z-index: 0;
}
.ap-pricing::after {
  content: "";
  position: absolute;
  width: 310px; height: 310px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,.10);
  bottom: -155px; right: -125px;
  pointer-events: none;
  z-index: 0;
}
.ap-pricing .container { position: relative; z-index: 1; }

/* Blog / Articles — حلقه ملایم گوشه راست */
[data-section="blog"]::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1.5px solid rgba(97,24,74,.06);
  top: -210px; right: -170px;
  pointer-events: none;
  z-index: 0;
}
[data-section="blog"] .container { position: relative; z-index: 1; }

/* Hero — بدون تغییر اضافی */
.back-header,
.slide-section,
[data-section="hero"],
.ap-hero {
  background: var(--ap-bg);
}

/* ── dot-grid یکپارچه روی ap-modules-grid ── */
.ap-modules-grid {
  position: relative;
}
.ap-modules-grid::after {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: radial-gradient(circle, rgba(97,24,74,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: .28;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 25%, transparent 72%);
}
.ap-mod-card { position: relative; z-index: 1; }
