
/* High contrast mode support */
@media (prefers-contrast: high) {
  body.dark-mode {
    --border-color: #fff;
    --text-secondary: #ffffff;
    --text-muted: #e5e7eb;
  }
}

/* ===== About Main ===== */
.about-main {
  direction: rtl;
  font-family: "Dana", sans-serif;
}

/* ===== Hero Section ===== */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 16px;
  isolation: isolate;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: url("../img/slide1.png") center/cover no-repeat;
  filter: blur(3px);
  transform: scale(1.08);
  z-index: -2;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 58, 144, 0.78) 0%,
    rgba(62, 99, 215, 0.64) 55%,
    rgba(93, 140, 255, 0.52) 100%
  );
  z-index: -1;
}

.about-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.about-hero__content {
  color: #fff;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.about-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.about-hero__desc {
  margin: 0 0 26px;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}

/* Buttons */
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  appearance: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--primary {
  background: #19C38F;
  color: #fff;
  box-shadow: 0 10px 24px rgba(25, 195, 143, 0.35);
}
.btn--primary:hover {
  background: #12A97B;
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Visual side */
.about-hero__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__shape {
  position: absolute;
  border-radius: 24px;
  filter: blur(2px);
}

.about-hero__shape--1 {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.14);
  top: 30px;
  right: 20px;
  transform: rotate(-14deg);
}

.about-hero__shape--2 {
  width: 180px;
  height: 180px;
  background: rgba(25, 195, 143, 0.28);
  bottom: 24px;
  left: 28px;
  transform: rotate(12deg);
}

.about-hero__card {
  position: relative;
  z-index: 2;
  width: min(300px, 90%);
  background: #fff;
  color: #1f2937;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.about-hero__card strong {
  display: block;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #183A90;
  line-height: 1.2;
}

.about-hero__card span {
  color: #4b5563;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-hero__container {
    grid-template-columns: 1fr;
  }

  .about-hero__visual {
    min-height: 240px;
  }

  .about-hero__desc {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .btn {
    width: 100%;
  }

  .about-hero__actions {
    gap: 10px;
  }
}
/* ===== About Story ===== */
.section-gap {
  padding: 72px 0;
}

.about-story {
  background: #ffffff;
  direction: rtl;
  font-family: "Dana", sans-serif;
}

.about-story .container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.about-story__wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 12px 32px rgba(62, 99, 215, 0.08);
}

.about-story__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3E63D7;
  background: #eef3ff;
  border: 1px solid #dbe8ff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.about-story__title {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.7;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 14px;
}

.about-story__text {
  color: #4b5563;
  line-height: 2.05;
  font-size: 1rem;
  margin: 0 0 12px;
  max-width: 64ch;
}

.about-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* Buttons (همسو با CTAهای پروژه) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #19C38F;
  color: #fff;
  box-shadow: 0 8px 20px rgba(25, 195, 143, 0.28);
}
.btn-primary:hover {
  background: #12A97B;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: #3E63D7;
  border-color: #d7e3ff;
}
.btn-ghost:hover {
  background: #f3f7ff;
  border-color: #c8d9ff;
}

.about-story__media {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  min-height: 320px;
  background: linear-gradient(135deg, #183A90 0%, #3E63D7 100%);
}

.about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .about-story__wrapper {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .about-story__media {
    order: -1;
    min-height: 240px;
  }
  .about-story__media img {
    min-height: 240px;
  }
}

@media (max-width: 576px) {
  .section-gap {
    padding: 56px 0;
  }
  .about-story__wrapper {
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
  }
  .about-story__title {
    line-height: 1.9;
  }
  .about-story__text {
    font-size: 0.95rem;
    line-height: 2;
  }
}
/* ===== About Stats ===== */
.about-stats {
  background:
    radial-gradient(circle at top right, rgba(93, 140, 255, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  direction: rtl;
  font-family: "Dana", sans-serif;
}

.about-stats .container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.about-stats__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.about-stats__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3E63D7;
  background: #eef3ff;
  border: 1px solid #dbe8ff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.about-stats__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.8;
  color: #1f2937;
  font-weight: 700;
}

.about-stats__desc {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 2;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-stats__card {
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 30px 22px 26px;
  box-shadow: 0 10px 40px rgba(62, 99, 215, 0.10);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.about-stats__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #183A90 0%, #3E63D7 55%, #19C38F 100%);
  opacity: 0.95;
}

.about-stats__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgba(62, 99, 215, 0.18);
  border-color: #d7e3ff;
}

.about-stats__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #3E63D7;
  background: linear-gradient(135deg, rgba(62, 99, 215, 0.12), rgba(93, 140, 255, 0.18));
  border: 1px solid rgba(62, 99, 215, 0.14);
}

.about-stats__icon svg {
  width: 30px;
  height: 30px;
}

.about-stats__number {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #183A90;
  direction: ltr;
}

.about-stats__name {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1f2937;
  font-weight: 700;
  font-family: "Dana", sans-serif;
}

.about-stats__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .about-stats__head {
    margin-bottom: 24px;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-stats__card {
    border-radius: 18px;
    padding: 24px 18px 22px;
  }

  .about-stats__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .about-stats__desc,
  .about-stats__text {
    font-size: 0.92rem;
  }
}
/* ===== About Core Values ===== */
.about-values {
  background: #ffffff;
  direction: rtl;
  font-family: "Dana", sans-serif;
}

.about-values .container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.about-values__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.about-values__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3E63D7;
  background: #eef3ff;
  border: 1px solid #dbe8ff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.about-values__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.8;
  color: #1f2937;
  font-weight: 700;
}

.about-values__desc {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 2;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-values__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 26px 22px 24px;
  box-shadow: 0 10px 30px rgba(62, 99, 215, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-values__card:hover {
  transform: translateY(-6px);
  border-color: #d7e3ff;
  box-shadow: 0 16px 36px rgba(62, 99, 215, 0.14);
}

.about-values__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #3E63D7;
  background: linear-gradient(135deg, rgba(62, 99, 215, 0.10), rgba(93, 140, 255, 0.18));
  border: 1px solid rgba(62, 99, 215, 0.14);
}

.about-values__icon svg {
  width: 28px;
  height: 28px;
}

.about-values__name {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #1f2937;
  font-weight: 700;
  font-family: "Dana", sans-serif;
}

.about-values__text {
  margin: 0;
  color: #6b7280;
  font-size: 0.96rem;
  line-height: 2;
}

/* Responsive */
@media (max-width: 992px) {
  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .about-values__head {
    margin-bottom: 24px;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-values__card {
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .about-values__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .about-values__desc,
  .about-values__text {
    font-size: 0.92rem;
  }
}
/* ===== About Why Us - Redesigned ===== */
.about-why {
  direction: rtl;
  font-family: "Dana", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(93, 140, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-why .container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.about-why__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}

.about-why__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3E63D7;
  background: #eef3ff;
  border: 1px solid #dbe8ff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.about-why__title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.8;
  color: #1f2937;
  font-weight: 800;
}

.about-why__desc {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 2;
}

.about-why__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.about-why__visual-card,
.about-why__content-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  box-shadow: 0 14px 45px rgba(62, 99, 215, 0.10);
}

.about-why__visual-card {
  overflow: hidden;
}

.about-why__image-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfe8ff 0%, #f4f8ff 100%);
}

.about-why__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-why__image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.22) 100%);
}

.about-why__floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(24, 58, 144, 0.12);
  text-align: center;
}

.about-why__floating-badge strong {
  display: block;
  color: #183A90;
  font-size: 1.1rem;
  font-weight: 800;
  direction: ltr;
}

.about-why__floating-badge span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.82rem;
}

.about-why__visual-content {
  padding: 26px 24px 24px;
}

.about-why__mini-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #19C38F;
  font-size: 0.9rem;
  font-weight: 700;
}

.about-why__visual-title {
  margin: 0 0 12px;
  color: #1f2937;
  font-size: 1.45rem;
  line-height: 1.9;
  font-weight: 800;
}

.about-why__visual-text {
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 0.97rem;
  line-height: 2;
}

.about-why__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.about-why__stat {
  padding: 16px 14px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e1eaf8;
  text-align: center;
}

.about-why__stat strong {
  display: block;
  margin-bottom: 4px;
  color: #183A90;
  font-size: 1.25rem;
  font-weight: 800;
  direction: ltr;
}

.about-why__stat span {
  color: #64748b;
  font-size: 0.88rem;
}

.about-why__primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #19C38F 0%, #12A97B 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 12px 28px rgba(25, 195, 143, 0.22);
}

.about-why__primary-btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.about-why__content-card {
  padding: 22px;
}

.about-why__items {
  display: grid;
  gap: 14px;
  height: 100%;
}

.about-why__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 16px 15px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-why__item:hover {
  transform: translateY(-4px);
  border-color: #d7e3ff;
  box-shadow: 0 12px 28px rgba(62, 99, 215, 0.10);
}

.about-why__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #19C38F;
  background: rgba(25, 195, 143, 0.10);
  border: 1px solid rgba(25, 195, 143, 0.18);
}

.about-why__icon svg {
  width: 20px;
  height: 20px;
}

.about-why__item-body h3 {
  margin: 0 0 6px;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
}

.about-why__item-body p {
  margin: 0;
  color: #6b7280;
  font-size: 0.93rem;
  line-height: 1.95;
}

@media (max-width: 992px) {
  .about-why__layout {
    grid-template-columns: 1fr;
  }

  .about-why__image-wrap {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .about-why__head {
    margin-bottom: 26px;
  }

  .about-why__visual-card,
  .about-why__content-card {
    border-radius: 22px;
  }

  .about-why__image-wrap {
    height: 220px;
  }

  .about-why__floating-badge {
    top: 14px;
    right: 14px;
    min-width: 96px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .about-why__visual-content,
  .about-why__content-card {
    padding: 18px;
  }

  .about-why__visual-title {
    font-size: 1.2rem;
  }

  .about-why__stats {
    gap: 10px;
  }

  .about-why__stat {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .about-why__item {
    padding: 14px;
    border-radius: 16px;
  }

  .about-why__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .about-why__desc,
  .about-why__visual-text,
  .about-why__item-body p {
    font-size: 0.92rem;
  }

  .about-why__primary-btn {
    min-height: 50px;
    border-radius: 16px;
  }
}
.faq-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top right, rgba(107, 140, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
}

.faq-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(62, 99, 215, 0.08);
  color: #3e63d7;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-title {
  margin: 0 0 14px;
  font-size: 2rem;
  font-weight: 800;
  color: #14213d;
}

.faq-subtitle {
  margin: 0;
  color: #667085;
  line-height: 1.95;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(210, 220, 245, 0.95);
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(62, 99, 215, 0.1);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(62, 99, 215, 0.14);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: right;
  font: inherit;
  color: #101828;
  font-size: 1rem;
  font-weight: 700;
}

.faq-question span {
  flex: 1;
  line-height: 1.9;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(62, 99, 215, 0.08);
  color: #3e63d7;
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-question.active .faq-icon {
  background: #3e63d7;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: #667085;
  line-height: 2;
  font-size: 0.96rem;
}

.faq-answer.open {
  max-height: 260px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 16px;
  }

  .faq-title {
    font-size: 1.55rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 0.92rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}
/* =========================================================
   ABOUT PAGE - PROFESSIONAL DARK MODE
   scope: body.dark-mode .about-main
   نکته:
   - هدر و فوتر عمداً استایل‌دهی نشده‌اند
   - لیبل‌ها و badgeها عمداً background ندارند
   - دارک مود هر سکشن جداگانه تنظیم شده
========================================================= */

body.dark-mode .about-main {
  --about-bg: #081120;
  --about-surface: #0f1b31;
  --about-surface-soft: #13213b;
  --about-surface-glass: rgba(15, 27, 49, 0.78);
  --about-border: rgba(148, 163, 184, 0.18);
  --about-border-strong: rgba(148, 163, 184, 0.28);
  --about-title: #f8fbff;
  --about-title-strong: #ffffff;
  --about-text: #c7d2e3;
  --about-muted: #94a3b8;
  --about-primary: #8fb4ff;
  --about-primary-soft: transparent;
  --about-primary-border: rgba(143, 180, 255, 0.32);
  --about-success: #34d399;
  --about-success-hover: #10b981;
  --about-success-soft: rgba(52, 211, 153, 0.12);
  --about-success-border: rgba(52, 211, 153, 0.24);
  --about-shadow: rgba(2, 6, 23, 0.42);
  --about-shadow-strong: rgba(0, 0, 0, 0.52);
  --about-gradient-bg:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 30%),
    linear-gradient(180deg, #081120 0%, #0b1426 100%);
  --faq-bg:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.10), transparent 28%),
    linear-gradient(180deg, #081120 0%, #0d172a 100%);
  --faq-card-bg: rgba(15, 27, 49, 0.84);
  --faq-card-border: rgba(148, 163, 184, 0.18);
  --faq-card-shadow: rgba(2, 6, 23, 0.38);
  --faq-icon-bg: rgba(143, 180, 255, 0.12);
  --faq-icon-color: #8fb4ff;
  --faq-icon-active-bg: #3e63d7;
  --faq-icon-active-color: #ffffff;
  --faq-title-color: #f8fbff;
  --faq-question-color: #eef4ff;
  --faq-text-color: #b8c4d9;
}

/* ===== About Main ===== */
body.dark-mode .about-main {
  background: var(--about-bg);
  color: var(--about-text);
}

/* ===== Hero Section ===== */
body.dark-mode .about-main .about-hero {
  background: linear-gradient(135deg, #091224 0%, #10203b 45%, #13284a 100%);
}

body.dark-mode .about-main .about-hero::after {
  background: linear-gradient(
    135deg,
    rgba(8, 17, 32, 0.78) 0%,
    rgba(16, 32, 59, 0.68) 50%,
    rgba(30, 64, 175, 0.42) 100%
  );
}

body.dark-mode .about-main .about-hero__content {
  color: var(--about-title);
}

body.dark-mode .about-main .about-hero__badge {
  color: #dbeafe;
  background: rgba(15, 27, 49, 0.48);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

body.dark-mode .about-main .about-hero__title {
  color: var(--about-title-strong);
}

body.dark-mode .about-main .about-hero__desc {
  color: rgba(239, 246, 255, 0.86);
}

body.dark-mode .about-main .about-hero__shape--1 {
  background: rgba(255, 255, 255, 0.06);
}

body.dark-mode .about-main .about-hero__shape--2 {
  background: rgba(52, 211, 153, 0.16);
}

body.dark-mode .about-main .about-hero__card {
  background: rgba(15, 27, 49, 0.72);
  color: var(--about-title);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 55px var(--about-shadow-strong);
  backdrop-filter: blur(16px);
}

body.dark-mode .about-main .about-hero__card strong {
  color: #a5c4ff;
}

body.dark-mode .about-main .about-hero__card span {
  color: var(--about-muted);
}

body.dark-mode .about-main .btn--primary {
  background: linear-gradient(135deg, var(--about-success) 0%, var(--about-success-hover) 100%);
  color: #04111f;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.28);
}

body.dark-mode .about-main .btn--primary:hover {
  background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
}

body.dark-mode .about-main .btn--ghost {
  background: rgba(15, 27, 49, 0.42);
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.18);
}

body.dark-mode .about-main .btn--ghost:hover {
  background: rgba(30, 41, 59, 0.72);
}

/* ===== Story Section ===== */
body.dark-mode .about-main .about-story {
  background: var(--about-bg);
}

body.dark-mode .about-main .about-story__wrapper {
  background: var(--about-surface);
  border-color: var(--about-border);
  box-shadow: 0 12px 36px var(--about-shadow);
}

body.dark-mode .about-main .about-story__label {
  background: transparent;
  color: var(--about-primary);
  border-color: transparent;
}

body.dark-mode .about-main .about-story__title {
  color: var(--about-title);
}

body.dark-mode .about-main .about-story__text {
  color: var(--about-text);
}

body.dark-mode .about-main .btn-primary {
  background: linear-gradient(135deg, var(--about-success) 0%, var(--about-success-hover) 100%);
  color: #04111f;
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.24);
}

body.dark-mode .about-main .btn-primary:hover {
  background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
}

body.dark-mode .about-main .btn-ghost {
  background: rgba(15, 27, 49, 0.78);
  color: var(--about-primary);
  border-color: var(--about-border-strong);
}

body.dark-mode .about-main .btn-ghost:hover {
  background: rgba(19, 33, 59, 0.98);
  border-color: rgba(143, 180, 255, 0.28);
}

body.dark-mode .about-main .about-story__media {
  border-color: var(--about-border);
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

/* ===== Stats Section ===== */
body.dark-mode .about-main .about-stats {
  background: var(--about-gradient-bg);
}

body.dark-mode .about-main .about-stats__label {
  background: transparent;
  color: var(--about-primary);
  border-color: transparent;
}

body.dark-mode .about-main .about-stats__title {
  color: var(--about-title);
}

body.dark-mode .about-main .about-stats__desc {
  color: var(--about-text);
}

body.dark-mode .about-main .about-stats__card {
  background: var(--about-surface-glass);
  border-color: var(--about-border);
  box-shadow: 0 10px 40px var(--about-shadow);
  backdrop-filter: blur(12px);
}

body.dark-mode .about-main .about-stats__card::before {
  background: linear-gradient(90deg, #60a5fa 0%, #8b5cf6 55%, #34d399 100%);
}

body.dark-mode .about-main .about-stats__card:hover {
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.52);
  border-color: rgba(143, 180, 255, 0.28);
}

body.dark-mode .about-main .about-stats__icon {
  color: #93c5fd;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.14), rgba(139, 92, 246, 0.18));
  border-color: rgba(96, 165, 250, 0.18);
}

body.dark-mode .about-main .about-stats__number {
  color: #dbeafe;
}

body.dark-mode .about-main .about-stats__name {
  color: var(--about-title);
}

body.dark-mode .about-main .about-stats__text {
  color: var(--about-text);
}

/* ===== Values Section ===== */
body.dark-mode .about-main .about-values {
  background: var(--about-bg);
}

body.dark-mode .about-main .about-values__label {
  background: transparent;
  color: var(--about-primary);
  border-color: transparent;
}

body.dark-mode .about-main .about-values__title {
  color: var(--about-title);
}

body.dark-mode .about-main .about-values__desc {
  color: var(--about-text);
}

body.dark-mode .about-main .about-values__card {
  background: var(--about-surface);
  border-color: var(--about-border);
  box-shadow: 0 10px 30px var(--about-shadow);
}

body.dark-mode .about-main .about-values__card:hover {
  border-color: rgba(143, 180, 255, 0.28);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.48);
}

body.dark-mode .about-main .about-values__icon {
  color: #93c5fd;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), rgba(139, 92, 246, 0.18));
  border-color: rgba(96, 165, 250, 0.18);
}

body.dark-mode .about-main .about-values__name {
  color: var(--about-title);
}

body.dark-mode .about-main .about-values__text {
  color: var(--about-text);
}

/* ===== Why Us Section ===== */
body.dark-mode .about-main .about-why {
  background: var(--about-gradient-bg);
}

body.dark-mode .about-main .about-why__label {
  background: transparent;
  color: var(--about-primary);
  border-color: transparent;
}

body.dark-mode .about-main .about-why__title,
body.dark-mode .about-main .about-why__visual-title,
body.dark-mode .about-main .about-why__item-body h3 {
  color: var(--about-title);
}

body.dark-mode .about-main .about-why__desc,
body.dark-mode .about-main .about-why__visual-text,
body.dark-mode .about-main .about-why__item-body p {
  color: var(--about-text);
}

body.dark-mode .about-main .about-why__visual-card,
body.dark-mode .about-main .about-why__content-card {
  background: var(--about-surface-glass);
  border-color: var(--about-border);
  box-shadow: 0 14px 45px var(--about-shadow);
  backdrop-filter: blur(14px);
}

body.dark-mode .about-main .about-why__image-wrap {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .about-main .about-why__image-wrap::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(2, 6, 23, 0.56) 100%);
}

body.dark-mode .about-main .about-why__floating-badge {
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 12px 30px var(--about-shadow-strong);
  border: 1px solid var(--about-border);
}

body.dark-mode .about-main .about-why__floating-badge strong {
  color: #dbeafe;
}

body.dark-mode .about-main .about-why__floating-badge span {
  color: var(--about-muted);
}

body.dark-mode .about-main .about-why__mini-label {
  color: #6ee7b7;
}

body.dark-mode .about-main .about-why__stat {
  background: var(--about-surface-soft);
  border-color: var(--about-border);
}

body.dark-mode .about-main .about-why__stat strong {
  color: #dbeafe;
}

body.dark-mode .about-main .about-why__stat span {
  color: var(--about-muted);
}

body.dark-mode .about-main .about-why__primary-btn {
  background: linear-gradient(135deg, var(--about-success) 0%, var(--about-success-hover) 100%);
  color: #04111f;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.24);
}

body.dark-mode .about-main .about-why__item {
  background: var(--about-surface);
  border-color: var(--about-border);
}

body.dark-mode .about-main .about-why__item:hover {
  border-color: rgba(143, 180, 255, 0.28);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.42);
}

body.dark-mode .about-main .about-why__icon {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.10);
  border-color: rgba(52, 211, 153, 0.22);
}

/* ===== FAQ Section ===== */
body.dark-mode .about-main .faq-section {
  background: var(--faq-bg);
}

body.dark-mode .about-main .faq-badge {
  background: transparent;
  color: var(--about-primary);
  border: none;
}

body.dark-mode .about-main .faq-title {
  color: var(--faq-title-color);
}

body.dark-mode .about-main .faq-subtitle {
  color: var(--faq-text-color);
}

body.dark-mode .about-main .faq-item {
  background: var(--faq-card-bg);
  border-color: var(--faq-card-border);
  box-shadow: 0 10px 34px var(--faq-card-shadow);
}

body.dark-mode .about-main .faq-item:hover {
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.46);
}

body.dark-mode .about-main .faq-question {
  color: var(--faq-question-color);
}

body.dark-mode .about-main .faq-question span {
  color: inherit;
}

body.dark-mode .about-main .faq-icon {
  background: var(--faq-icon-bg);
  color: var(--faq-icon-color);
}

body.dark-mode .about-main .faq-question.active .faq-icon {
  background: var(--faq-icon-active-bg);
  color: var(--faq-icon-active-color);
}

body.dark-mode .about-main .faq-answer p {
  color: var(--faq-text-color);
}

/* ===== High Contrast ===== */
@media (prefers-contrast: high) {
  body.dark-mode .about-main {
    --about-border: rgba(255, 255, 255, 0.82);
    --about-border-strong: #ffffff;
    --about-text: #ffffff;
    --about-muted: #e5e7eb;
    --faq-card-border: #ffffff;
    --faq-question-color: #ffffff;
    --faq-text-color: #ffffff;
  }
}
/* Theme transition */
body,
body *,
body *::before,
body *::after {
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    fill 0.35s ease,
    stroke 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  body,
  body *,
  body *::before,
  body *::after {
    transition: none !important;
  }
}
body.dark-mode .about-story__media img {
    filter: drop-shadow(0 0 20px rgba(143, 180, 255, 0.15));
    transition: filter 0.3s ease;
}
