/* =========================
   HERO (2026)
========================= */

.hero {
  position: relative;
  padding: 120px 20px 100px;
  background: radial-gradient(circle at top, #eef2ff, #ffffff);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(99,102,241,.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(14,165,233,.15), transparent 40%);
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  z-index: 1;
}

.hero-title {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  font-weight: 700;
  direction: rtl;
  color: #4f46e5;
}

.hero-sub {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.6;
  color: #444;
}

.hero-stats {
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 700px;
}

.hero-stats div {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.hero-stats strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #4f46e5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   FEATURES
========================= */

.features {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: #555;
  line-height: 1.6;
}












