/* ---------- HERO ---------- */

.darspa-hero {
    margin-top: 72px;
    margin-bottom: 40px;

    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: 0;

    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 16px; /* موبایل خیلی کوچک */
    padding-right: 6vw;

    text-align: right;
}

/* کانتینر کلی هیرو */
.darspa-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.darspa-hero-text {
    max-width: 480px;
    text-align: right;  /* راست‌چین بشه */
    direction: rtl;     /* مطمئن می‌شیم جهت متن راست به چپه */
}

/* ستون تصویر (سمت چپ روی دسکتاپ) */
.darspa-hero-illustration {
    max-width: 260px;
}

.darspa-hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.65));
}

/* متن‌های داخل هیرو */

.darspa-hero-title {
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 800;
    color: #f9fafb;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* هایلایت هیرو */
.darspa-hero-highlight {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 24px 10px;
    min-height: 44px;
    border-radius: 24px;

    background: #4c1d95; /* بنفش تیره */
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);

    color: #f9fafb;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 768px) {
  .darspa-hero-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    direction: rtl;
    text-align: right;

    font-size: 20px;        /* متن درشت‌تر */
    padding: 10px 20px;     /* خالیِ راست و چپ کمتر */
    border-radius: 16px;    /* مستطیلی، نه قرصی */
    white-space: nowrap;    /* همه تو یک خط */
  }
}

.darspa-hero-subtitle {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.9;
    color: #e5e7eb;
    max-width: 640px;
}

/* ---------- HERO Stats Badges (refactored) ---------- */

.darspa-hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  margin: 0 auto 24px;
  padding: 12px 28px;
  max-width: 720px;

  border-radius: 999px;
  background:
    radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.20), transparent 55%),
    rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(18px);

  flex-wrap: wrap;
}

.darspa-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: rtl;

  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;

  font-size: 12px;
  color: #e5e7eb;
}

/* جداکننده‌ی ظریف بین آمارها */
.darspa-hero-stat + .darspa-hero-stat {
  border-right: 1px solid rgba(148, 163, 184, 0.35);
  padding-right: 20px;
  margin-right: 4px;
}

.darspa-hero-stat-icon {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1)
          drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.darspa-hero-stat-number {
  font-weight: 800;
  font-size: 18px;
  color: #c4b5fd; /* بنفش لطیف */
  transition: color 0.15s ease;
}

.darspa-hero-stat-label {
  font-size: 13px;
  color: #e5e7eb;
  opacity: 0.95;
}

/* hover خیلی نرم فقط روی عدد */
.darspa-hero-stat:hover .darspa-hero-stat-number {
  color: #e9d5ff;
}

/* دسکتاپ: همه در یک ردیف و تقسیم عرض */
@media (min-width: 900px) {
  .darspa-hero-stats {
    flex-wrap: nowrap;
    width: 100%;
  }

  .darspa-hero-stat {
    flex: 1 1 0;
    justify-content: center;
    max-width: none;
  }

  .darspa-hero-stat-icon {
    width: 30px;
    height: 30px;
  }

  .darspa-hero-stat-number {
    font-size: 20px;
  }
}

/* موبایل: استک عمودی و باکس جمع‌وجورتر */
@media (max-width: 600px) {
  .darspa-hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 24px;
  }

  .darspa-hero-stat + .darspa-hero-stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

.darspa-hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

/* ---------- Sections ---------- */

.darspa-section {
    margin: 32px auto;
    max-width: 960px;
    padding: 0 16px;
    text-align: center;
    color: #e5e7eb;
}

/* تایتل همه سکشن‌ها */
.darspa-section-title {
    display: inline-block;
    margin: 0 0 10px;
    padding: 7px 22px 9px;
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 700;
    color: #f9fafb;
    border-radius: 999px;
    border: none;
    background:
        radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.35), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.25), transparent 55%),
        rgba(15, 23, 42, 0.9);
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.85),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

/* ساب‌تایتل همه سکشن‌ها */
.darspa-section-subtitle {
    margin: 10px auto 24px;
    font-size: 13px;
    color: #e5e7eb;
    max-width: 33rem;
    text-shadow: 0 0 12px rgba(15, 23, 42, 0.9);
}

/* ---------- How it works - Cards ---------- */

.darspa-steps {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    margin-top: 32px;
}

.darspa-step-card {
    width: 100%;
    background: linear-gradient(
        180deg,
        rgba(24, 30, 54, 0.92) 0%,
        rgba(17, 22, 39, 0.92) 100%
    );
    border-radius: 26px;
    padding: 28px 22px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px);
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* افکت نور در هوور */
.darspa-step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% -20%,
        rgba(129, 140, 248, 0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.darspa-step-card:hover::before {
    opacity: 1;
}

.darspa-step-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(168, 85, 247, 0.7);
}

/* آیکون کارت */

.darspa-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        145deg,
        rgba(129, 140, 248, 0.25),
        rgba(236, 72, 153, 0.25)
    );
    border: 1px solid rgba(129, 140, 248, 0.4);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.darspa-step-icon svg {
    width: 24px;
    height: 24px;
}

.darspa-step-icon svg * {
    stroke: #e0e7ff;
    stroke-width: 1.7;
}

/* متن کارت */

.darspa-step-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
}

.darspa-step-card p {
    margin: 0;
    color: #bfc4ce;
    font-size: 13px;
    line-height: 1.85;
}

/* ---------- سکشن تصویر "چطور جلو می‌ری" ---------- */

.darspa-how-visual-section {
    margin: 20px auto 12px;
    max-width: 960px;
    padding: 0 16px;
}

.darspa-how-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.darspa-how-visual-img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.65));
}

/* ---------- Use cases / تگ‌ها ---------- */

.darspa-tags-scroller {
    margin-top: 18px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    direction: ltr;
}

.darspa-tags-track {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    width: max-content;
    animation: darspa-tags-marquee 35s linear infinite;
    will-change: transform;
}

@keyframes darspa-tags-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.darspa-tag {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.55);
    color: #e5e7eb;
    white-space: nowrap;
    text-align: center;
    box-shadow: none;
    direction: rtl;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease,
        opacity 0.15s ease;
}

.darspa-tag span {
    font-size: 11px;
    color: #9ca3af;
    margin-right: 6px;
}

.darspa-tag:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 85, 247, 0.9);
    background:
        radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.25), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.25), transparent 55%),
        rgba(15, 23, 42, 0.96);
    box-shadow:
        0 16px 35px rgba(15, 23, 42, 0.85),
        0 0 0 1px rgba(168, 85, 247, 0.8);
}

/* -------- Audience -------- */

/* بنر «درسپا به درد کیا می‌خوره؟» سرتاسری و خفن */
.darspa-audience-clean {
  position: relative;
  overflow: hidden;

  width: 100vw;
  max-width: 100vw;
  margin: 72px 0 0;
  margin-right: calc(50% - 50vw);
  margin-left: 0;

  padding: 40px 16px 48px;
  text-align: center;
  border-radius: 0;

  background:
    radial-gradient(circle at 50% 0%, rgba(148, 163, 255, 0.28), transparent 60%),
    radial-gradient(circle at 100% 120%, rgba(56, 189, 248, 0.25), transparent 60%),
    #020617;

  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.7),
    0 18px 40px rgba(15, 23, 42, 0.75);
}

/* کانتینر داخلی تا ۹۶۰px */
.darspa-audience-clean > * {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

/* ---------------- Pills بالای سکشن ---------------- */

.darspa-audience-pills {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 16px;

  background:
    radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.45), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.35), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.95);
}

.darspa-audience-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  outline: none;
  background: transparent;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #cbd5f5;
  cursor: default;

  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}

.darspa-audience-pill.is-primary {
  background: linear-gradient(135deg, #a855f7, #6366f1, #38bdf8);
  color: #0f172a;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.darspa-audience-pill.is-secondary {
  opacity: 0.85;
}

/* هاور خیلی لطیف برای هر دو */
.darspa-audience-pill.is-primary:hover {
  filter: brightness(1.03);
}

.darspa-audience-pill.is-secondary:hover {
  opacity: 1;
}

/* تایتل این سکشن: ساده و بدون حاشیه/پس‌زمینه */
.darspa-audience-clean .darspa-section-title {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 0 12px;
  border-radius: 0;
}

/* هایلایت گرادیان داخل متن توضیحی (به جای زرد) */
.darspa-audience-highlight {
  background: linear-gradient(120deg, #a855f7, #6366f1, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* متن توضیحی این سکشن */
.darspa-audience-clean p {
  max-width: 36rem;
  margin: 14px auto 28px;
  font-size: 14px;
  line-height: 1.9;
  color: #e5e7eb;
  opacity: 0.95;
}

/* جداکننده ظریف بین متن و آیکن‌ها */
.darspa-audience-clean .audience-icons {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

/* هرگونه متن/هینت "برو پایین" قبلی رو خاموش کن اگه هنوز جایی هست */
.darspa-audience-scroll-hint {
  display: none !important;
}

/* موبایل: پدینگ کمتر برای بنر */
@media (max-width: 640px) {
  .darspa-audience-clean {
    padding: 32px 16px 36px;
  }

  .darspa-audience-pills {
    transform: scale(0.95);
  }
}

/* ردیف آیکن‌ها */
.audience-icons {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* هر آیتم مثل کارت کوچک */
.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    padding: 18px 14px;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.audience-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(129, 140, 248, 0.85);
}

.audience-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

/* سفید کردن آیکن‌های بخش مخاطب‌ها */
.audience-icon-img {
    width: 64px;
    max-width: 100%;
    height: auto;
    display: block;

    filter: brightness(0) invert(1)
        drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55));
}

.audience-label {
    font-size: 14px;
    font-weight: 600;
    color: #f9fafb;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* ---------- Special Features / قابلیت‌های ویژه ---------- */

.darspa-special-features {
    margin-top: 40px;
    margin-bottom: 40px;
}

.darspa-special-features .darspa-section-title {
    background:
        radial-gradient(circle at 0 0, rgba(236, 72, 153, 0.35), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.3), transparent 55%),
        rgba(15, 23, 42, 0.96);
}

.darspa-special-features .darspa-section-subtitle {
    font-size: 14px;
    max-width: 32rem;
}

/* دو ستونه: تصویر چپ، کارت‌های «پیل» راست */
.darspa-special-layout {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.darspa-special-illustration {
    flex: 1.1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 460px;
}

.darspa-special-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    border-radius: 32px;
    filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.9));
}

/* ستون راست: لیست کارت‌های خطی */
.darspa-special-right {
    flex: 1.2 1 0;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.darspa-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* کارت: آیکن دایره‌ای سمت راست، متن کنار آن */
.darspa-feature-card {
    position: relative;
    display: flex;
    flex-direction: row;   /* به‌خاطر rtl، آیکن سمت راست می‌مونه */
    align-items: center;
    justify-content: flex-start;
    gap: 16px;

    direction: rtl;
    text-align: right;

    padding: 14px 22px;
    border-radius: 999px;

    background:
        radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.32), transparent 60%),
        radial-gradient(circle at 100% 120%, rgba(236, 72, 153, 0.25), transparent 65%),
        rgba(15, 23, 42, 0.96);

    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(15, 23, 42, 0.95);

    backdrop-filter: blur(18px);
    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.darspa-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -40%, rgba(191, 219, 254, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.darspa-feature-card:hover::before {
    opacity: 1;
}

.darspa-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(191, 219, 254, 0.9);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(129, 140, 248, 0.95);
}

/* آیکن گرد - سمت راست پِل */
.darspa-feature-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at 30% 0, rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.98));
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.5),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.darspa-feature-icon svg {
    width: 22px;
    height: 22px;
}

.darspa-feature-icon svg * {
    stroke: #1e293b;
    stroke-width: 1.7;
}

/* متن داخل کارت */
.darspa-feature-body {
    flex: 1 1 auto;
    min-width: 0;
    direction: rtl;
    text-align: right;
}

.darspa-feature-title {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 700;
    color: #f9fafb;
}

.darspa-feature-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    color: #d1d5db;
    opacity: 0.96;
}

/* ریسپانسیو قابلیت‌های ویژه */
@media (max-width: 900px) {
    .darspa-special-layout {
        flex-direction: column-reverse;
        align-items: center;
        gap: 28px;
    }

    .darspa-special-illustration {
        max-width: 340px;
    }

    .darspa-special-right {
        max-width: 100%;
    }
}

/* دسکتاپ: تصویر چپ، لیست راست */
@media (min-width: 900px) {
    .darspa-special-layout {
        flex-direction: row-reverse; /* چون rtl هست، اینجا عکس میره چپ، لیست میاد راست */
    }
}

@media (max-width: 600px) {
    .darspa-feature-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .darspa-feature-title {
        font-size: 13px;
    }

    .darspa-feature-text {
        font-size: 11px;
    }

    .darspa-feature-icon {
        width: 38px;
        height: 38px;
    }
}

/* ---------- TESTIMONIALS / نظرات ---------- */

.darspa-testimonials {
    margin-top: 56px;
}

.darspa-testimonials-slider {
    margin-top: 28px;
    overflow: hidden;
    border-radius: 26px;
}

.darspa-testimonials-track {
    display: flex;
    gap: 0;
    transform: translateX(0);
    direction: ltr;
}

.darspa-testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;

    position: relative;
    padding: 20px 20px 18px;
    border-radius: 26px;
    text-align: right;
    direction: rtl;

    background: linear-gradient(
        180deg,
        rgba(24, 30, 54, 0.95) 0%,
        rgba(17, 22, 39, 0.96) 100%
    );
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.darspa-testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.darspa-testimonial-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ---------- آواتار (نسخه نهایی و اصلاح‌شده) ---------- */

.darspa-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    background: none;
    box-shadow: none;
    padding: 0;
}

.darspa-testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
}

.darspa-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.darspa-testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #f9fafb;
}

.darspa-testimonial-role {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px 3px;
    border-radius: 999px;
    font-size: 11px;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.darspa-testimonial-quote-mark {
    font-size: 24px;
    color: rgba(148, 163, 184, 0.7);
    align-self: flex-start;
}

.darspa-testimonial-quote {
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
    color: #d1d5db;
}

/* progress bar */
.darspa-testimonials-progress {
    margin-top: 16px;
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
    overflow: hidden;
}

.darspa-testimonials-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #6366f1, #38bdf8);
    border-radius: 999px;
}

.darspa-testimonials-progress-bar.is-animating {
    animation: darspa-testimonial-progress 4s linear forwards;
}

@keyframes darspa-testimonial-progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ---------- CTA نهایی (نسخه مینیمال و کاربرپسند) ---------- */

.darspa-final-cta-band {
    max-width: 960px;
    margin: 72px auto 88px;
    padding: 0 20px;
    position: relative;
}

/* خود کارت CTA */

.darspa-final-cta {
    position: relative;
    max-width: 680px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    text-align: center;

    padding: 24px 24px 22px;
    border-radius: 24px;

    background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.82), transparent 60%),
                rgba(15, 23, 42, 0.94);

    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.85),
        0 0 0 1px rgba(15, 23, 42, 0.9);

    backdrop-filter: blur(18px);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

/* محتوای متنی CTA */

.darspa-final-cta-content {
    flex: 1 1 auto;
}

/* بلاک تصویر داخل CTA */

.darspa-final-cta-illustration {
    flex: 0 0 auto;
    max-width: 190px;
}

.darspa-final-cta-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.75));
}

/* کمی زنده شدن روی hover خود کارت */
.darspa-final-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(191, 219, 254, 0.8);
    border-color: rgba(191, 219, 254, 0.8);
}

/* تیتر CTA */

.darspa-final-cta-title {
    margin: 0 0 10px;
    font-size: clamp(21px, 3.2vw, 28px);
    font-weight: 800;
    color: #f9fafb;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.8);
}

/* متن زیر تیتر */

.darspa-final-cta-subtitle {
    margin: 0 auto 18px;
    max-width: 30rem;
    font-size: 14px;
    line-height: 1.9;
    color: #e5e7eb;
    opacity: 0.95;
}

/* دکمهٔ CTA */

.primary-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 6px;
    padding: 10px 28px;
    border-radius: 999px;

    border: 1px solid rgba(191, 219, 254, 0.95);
    background: linear-gradient(135deg, #e0edff, #f9fbff);

    color: #111827;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.75),
        0 0 0 1px rgba(148, 163, 184, 0.4);

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease;

    /* نبض نرم */
    position: relative;
    animation: cta-ring-pulse 2.4s ease-out infinite;
}

.primary-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(59, 130, 246, 0.75);
    border-color: rgba(59, 130, 246, 0.9);
    background: linear-gradient(135deg, #dbeafe, #eef2ff);
}

/* اگه قبلاً pseudo-element برای پالس داشتیم */
.primary-cta-btn::before {
    content: none;
    animation: none;
}

/* نبض فقط روی حلقه‌ی دور دکمه، نه روشنایی زیرش */
@keyframes cta-ring-pulse {
    0%, 100% {
        box-shadow:
            0 12px 28px rgba(15, 23, 42, 0.75),
            0 0 0 0 rgba(129, 140, 248, 0);
    }
    50% {
        box-shadow:
            0 12px 28px rgba(15, 23, 42, 0.9),
            0 0 0 10px rgba(129, 140, 248, 0.35);
    }
}

/* موبایل: فاصله کمتر و کارت جمع‌وجورتر */

@media (max-width: 640px) {
    .darspa-final-cta-band {
        margin: 48px auto 64px;
        padding: 0 16px;
    }

    .darspa-final-cta {
        padding: 20px 16px 18px;
        border-radius: 20px;
    }

    .darspa-final-cta-subtitle {
        font-size: 13px;
    }
}

/* دسکتاپ: چیدمان افقی متن + تصویر */

@media (min-width: 720px) {
    .darspa-final-cta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: right;
    }

    .darspa-final-cta-content {
        text-align: right;
    }

    .darspa-final-cta-illustration {
        max-width: 210px;
    }
}

/* ---------- ریسپانسیو کلی ---------- */

@media (min-width: 480px) {
    .darspa-hero {
        padding-left: 20px;
    }

    .darspa-step-card {
        padding: 32px 24px;
    }

    .darspa-step-card h3 {
        font-size: 17px;
    }

    .darspa-step-card p {
        font-size: 14px;
    }

    .audience-label {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .darspa-hero {
        padding-left: 32px;
    }

    .darspa-hero-inner {
        gap: 32px;
    }

    .darspa-hero-illustration {
        max-width: 280px;
    }

    .darspa-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .darspa-section-subtitle {
        font-size: 14px;
    }

    .audience-icons {
        gap: 60px;
    }
}

@media (min-width: 900px) {
    .darspa-hero {
        padding-left: 6vw;
    }

    .darspa-hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        gap: 56px;
    }

    .darspa-hero-text {
        max-width: 540px;
        text-align: right;
        margin: 0;
    }

    .darspa-hero-illustration {
        max-width: 280px;
    }

    .darspa-steps {
        flex-direction: row;
        justify-content: center;
        gap: 26px;
    }

    .darspa-step-card {
        flex: 1 1 0;
    }
}

@media (min-width: 1100px) {
    .darspa-hero {
        margin-top: 190px !important;
    }

    .darspa-hero-text {
        max-width: 620px;
        text-align: right;
    }

    .darspa-hero-title {
        font-size: clamp(54px, 4.8vw, 76px);
        line-height: 1.2;
    }

    .darspa-hero-highlight {
        font-size: 44px;
        padding: 8px 16px 10px;
        white-space: nowrap;
    }

    .darspa-hero-subtitle {
        font-size: 20px;
        line-height: 2.1;
        max-width: 52rem;
    }

    .darspa-hero-illustration {
        max-width: 400px;
        margin-top: -50px !important;
    }
}

/* موبایل: سه تا آیکن تو یک خط */
@media (max-width: 640px) {
  .audience-icons {
    flex-wrap: nowrap;            /* نره خط بعدی */
    justify-content: space-between;
    gap: 16px;                    /* فاصله کمتر که جا بشن */
  }

  .audience-item {
    flex: 1 1 0;                  /* هر آیکن یه سهم مساوی از عرض بگیره */
  }

  .audience-icon-img {
    width: 48px;                  /* کمی کوچیک‌تر روی موبایل که راحت جا بشن */
  }
}
