/* ========================================
   ABOUT
======================================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
  align-items: center;
}

.about-panel {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  right: -110px;
  top: -110px;
}

html[dir="rtl"] .about-panel::before {
  right: auto;
  left: -110px;
}

.about-panel::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.08);
  left: -60px;
  bottom: -60px;
}

html[dir="rtl"] .about-panel::after {
  left: auto;
  right: -60px;
}

.about-panel-logo {
  width: 80px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.about-panel h3 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.8;
}

.about-text .section-kicker {
  text-align: left;
}

html[dir="rtl"] .about-text .section-kicker {
  text-align: right;
}

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 800;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-card strong {
  color: var(--primary);
  font-size: 36px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}