/* ============================================================
   امرتات استور — About page (درباره ما)
   Uses :root tokens + .page-head + .features-grid/.feature + .stats
   ============================================================ */

.eyebrow { white-space: nowrap; }

/* ---- Story (intro two-column) ---- */
.story-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center;
}
.story-copy .eyebrow { margin-bottom: 18px; }
.story-copy h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 18px; letter-spacing: -0.02em; }
.story-copy p { font-size: 16px; line-height: 2; color: var(--text-2); margin-bottom: 16px; }
.story-copy p strong { color: var(--text); font-weight: 700; }
.story-copy .est {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 8px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  background: var(--primary-soft); padding: 9px 16px; border-radius: 100px;
}
.story-copy .est i { font-size: 18px; }

/* visual: framed image-slot with floating badge */
.story-visual { position: relative; }
.story-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4; background: var(--surface-2);
}
.story-frame image-slot { width: 100%; height: 100%; display: block; }
.story-badge {
  position: absolute; bottom: -22px; right: -18px; z-index: 3;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 13px;
}
.story-badge .sb-ico {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-primary);
}
.story-badge .sb-ico i { font-size: 24px; }
.story-badge .sb-num { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.story-badge .sb-lab { font-size: 12.5px; color: var(--text-2); margin-top: 4px; }
.story-visual .aura {
  position: absolute; inset: 18px; border-radius: var(--r-xl); z-index: -1;
  background: radial-gradient(circle at 70% 30%, rgba(108,99,255,0.22), transparent 60%);
  filter: blur(40px);
}

/* ---- Stats band ---- */
.stats-band { background: var(--surface); border-block: 1px solid var(--border); }
.stats-band .sb-head { text-align: center; margin-bottom: 40px; }
.stats-band .sb-head .eyebrow { margin-bottom: 14px; }
.stats-band .sb-head h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
.stats-band .sb-head p { color: var(--text-2); font-size: 15.5px; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 24px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.stat-card .sc-ico {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px;
  background: var(--primary-soft); display: grid; place-items: center;
}
.stat-card .sc-ico i { font-size: 28px; color: var(--primary); }
.stat-card .sc-num { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-card .sc-lab { font-size: 14px; color: var(--text-2); margin-top: 10px; }

/* ---- Values / differentiators ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.value .v-ico {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 20px;
  background: var(--primary-soft); display: grid; place-items: center;
}
.value .v-ico i { font-size: 32px; color: var(--primary); }
.value h3 { font-size: 19px; margin-bottom: 10px; }
.value p { font-size: 14.5px; color: var(--text-2); line-height: 1.85; }
.value .v-mark {
  position: absolute; top: 18px; left: 22px; font-family: var(--font-en);
  font-size: 44px; font-weight: 800; color: var(--surface-2); line-height: 1; z-index: 0;
}
.value > * { position: relative; z-index: 1; }

/* ---- Tech / platform highlight ---- */
.tech { background: var(--surface); }
.tech-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.tech-copy .eyebrow { margin-bottom: 16px; }
.tech-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; letter-spacing: -0.02em; }
.tech-copy p { font-size: 15.5px; line-height: 2; color: var(--text-2); }
.tech-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tech-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 20px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tech-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.tech-item .ti-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; margin-bottom: 14px; }
.tech-item .ti-ico i { font-size: 25px; color: var(--primary); }
.tech-item h4 { font-size: 15.5px; margin-bottom: 7px; }
.tech-item p { font-size: 13.5px; color: var(--text-2); line-height: 1.8; }

/* ---- Owner / signature strip ---- */
.owner-strip {
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; margin-top: 44px;
}
.owner-avatar {
  width: 96px; height: 96px; border-radius: var(--r-lg); object-fit: cover;
  border: 2px solid var(--primary); box-shadow: var(--shadow-sm); flex-shrink: 0;
  display: block;
}
.owner-content { flex: 1; }
.owner-content blockquote {
  margin: 0 0 12px; font-size: 15px; font-weight: 500; line-height: 1.8;
  color: var(--text); font-style: italic; border: none; padding: 0; background: transparent;
}
.owner-meta { font-size: 13.5px; color: var(--text-2); font-weight: 500; }
.owner-meta strong { color: var(--text); font-weight: 700; }
.owner-meta .sep { margin-inline: 8px; color: var(--border-strong); }

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .owner-strip { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 24px; }
}
@media (max-width: 1024px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .tech-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .story-badge { right: 16px; }
}
@media (max-width: 560px) {
  .stat-cards { grid-template-columns: 1fr; }
  .tech-list { grid-template-columns: 1fr; }
}
