/* ── ABOUT PAGE ──────────────────────────────────────────────── */

/* ── Hero ── */
.about-hero {
  background: #0f172a;
  padding: 80px 24px 72px;
  text-align: center;
}

.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.15;
  max-width: 640px;
  margin: 0 auto 20px;
}

.about-hero h1 em {
  font-style: normal;
  color: #60a5fa;
}

.about-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .88; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .15s, border-color .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }

/* ── Shared section layout ── */
.ab-section {
  padding: 72px 24px;
}

.ab-section.alt {
  background: #fff;
}

.ab-inner {
  max-width: 960px;
  margin: 0 auto;
}

.ab-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.ab-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -.035em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ab-sub {
  font-size: .97rem;
  color: #64748b;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── Mission card ── */
.mission-card {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(37,99,235,.08);
  border-radius: 50%;
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #2563eb;
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.mission-card blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: #1e3a8a;
  line-height: 1.55;
  letter-spacing: -.02em;
  margin: 0 auto 16px;
  max-width: 680px;
  font-style: normal;
}

.mission-card p {
  font-size: .93rem;
  color: #3b5ea6;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: border-color .15s, box-shadow .15s;
}

.value-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 16px rgba(37,99,235,.07);
}

.value-icon {
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: block;
  color: #2563eb;
}

.value-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -.015em;
}

.value-card p {
  font-size: .875rem;
  color: #64748b;
  line-height: 1.65;
}

/* ── Story two-col ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-text h2 { margin-bottom: 16px; }

.story-text p {
  font-size: .93rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.story-text p:last-child { margin-bottom: 0; }

.story-visual {
  background: #0f172a;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}

.story-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}

.story-stat-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
  max-width: 100px;
}

.story-stat-bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: #60a5fa;
}

/* ── Team grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  border: 3px solid #eff6ff;
}

.team-name {
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: -.015em;
}

.team-role {
  font-size: .78rem;
  color: #2563eb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 10px;
}

.team-bio {
  font-size: .84rem;
  color: #64748b;
  line-height: 1.6;
}

/* ── CTA section ── */
.about-cta {
  background: #0f172a;
  padding: 80px 24px;
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}

.about-cta p {
  font-size: .97rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .story-grid  { grid-template-columns: 1fr; gap: 32px; }
  .mission-card { padding: 32px 24px; }
  .ab-section  { padding: 52px 20px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .about-hero  { padding: 56px 20px 52px; }
}
