/* About page — sections not already covered by main.css (hero override, mission, values, team, bottom CTA card variant). */

.hero-sub { max-width: 600px; }
.hero-sub strong { color: var(--slate-700); font-weight: 600; }

/* ════════════════════════════════════════
   MISSION — 96px 24px padding, max-width 1200px
════════════════════════════════════════ */
.mission {
  padding: 96px 24px;
  background: var(--white);
}
.mission-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 72px; align-items: center;
}
.mission-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -.022em; color: var(--slate-900);
  margin-bottom: 20px;
}
.mission-left h2 span {
  background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mission-body {
  font-size: 16px; color: var(--slate-500);
  line-height: 1.78; margin-bottom: 14px;
}
.mission-body + .mission-body { margin-bottom: 36px; }
.mission-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--slate-200);
  padding-top: 28px;
}
.mission-stat {
  flex: 1; text-align: center; padding: 4px 16px;
  border-right: 1px solid var(--slate-200);
}
.mission-stat:first-child { padding-left: 0; text-align: left; }
.mission-stat:last-child  { border-right: none; }
.ms-val {
  font-size: 42px; font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 5px;
}
.ms-lbl { font-size: 14px; color: var(--slate-500); font-weight: 500; }

/* dark card */
.mission-card {
  background: linear-gradient(145deg, var(--blue-900) 0%, #1e2d6b 60%, #1a1b5e 100%);
  border-radius: 28px; padding: 44px 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 64px rgba(30,58,138,.35);
}
.mission-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  pointer-events: none;
}
.mission-card::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 70%);
  pointer-events: none;
}
.mc-shield {
  width: 72px; height: 72px;
  border: 2.5px solid rgba(255,255,255,.25); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; background: rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.mc-shield svg { width: 38px; height: 38px; stroke: rgba(255,255,255,.85); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mc-tag { font-size: 11px; font-weight: 700; color: var(--blue-400); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; position: relative; z-index: 1; }
.mc-title { font-size: 26px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; letter-spacing: -.02em; position: relative; z-index: 1; }
.mc-sub { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.72; margin-bottom: 28px; position: relative; z-index: 1; }
.mc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius-md); color: #fff;
  font-size: 13.5px; font-weight: 600;
  background: rgba(255,255,255,.08); font-family: var(--font);
  transition: background .2s, border-color .2s, transform .15s;
  position: relative; z-index: 1; cursor: pointer;
}
.mc-btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); transform: translateY(-1px); }
.mc-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.mc-dots { position: absolute; bottom: 28px; right: 28px; display: grid; grid-template-columns: repeat(4, 6px); gap: 5px; opacity: .18; z-index: 1; }
.mc-dots span { width: 6px; height: 6px; border-radius: 50%; background: #fff; display: block; }

/* ════════════════════════════════════════
   VALUES — 96px 24px, max-width 1200px
════════════════════════════════════════ */
.values {
  padding: 96px 24px;
  background: var(--slate-50);
}
.values-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: default;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-200); }
.val-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.val-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vi-purple { background: var(--violet-100); } .vi-purple svg { stroke: var(--violet-600); }
.vi-teal   { background: var(--teal-100);   } .vi-teal svg   { stroke: var(--teal-600);   }
.vi-orange { background: var(--orange-100); } .vi-orange svg { stroke: var(--orange-600); }
.vi-blue   { background: var(--blue-100);   } .vi-blue svg   { stroke: var(--blue-700);   }
.vi-indigo { background: var(--indigo-100); } .vi-indigo svg { stroke: var(--indigo-700,#4338ca); }
.vi-red    { background: var(--red-100);    } .vi-red svg    { stroke: var(--red-600);     }
.val-title { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.val-desc  { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ════════════════════════════════════════
   TEAM — 96px 24px, max-width 1200px
════════════════════════════════════════ */
/* ════════════════════════════════════════
   BOTTOM CTA — About uses a card-on-tinted-bg variant, overrides main.css's gradient-section variant
════════════════════════════════════════ */
.bottom-cta {
  padding: 60px 24px;
  background: var(--slate-50);
}
.bottom-cta::before { content: none; }
.bottom-cta-card {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #9333ea 100%);
  border-radius: 20px; padding: 80px 48px;
  position: relative; overflow: hidden;
}
.bottom-cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 70%, rgba(255,255,255,.09) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(139,92,246,.25) 0%, transparent 50%);
  pointer-events: none;
}
.bottom-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-tag {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}
.cta-tag svg { opacity: .85; flex-shrink: 0; }
.bottom-cta h2 { margin-bottom: 16px; }
.bottom-cta h2 span { color: #facc15; }
.bottom-cta p { margin-bottom: 32px; }
.cta-buttons { margin-bottom: 28px; }
.cta-btn-white,
.cta-btn-ghost { padding: 13px 26px; font-size: 14.5px; }
.cta-trust { font-size: 12.5px; color: rgba(255,255,255,.45); letter-spacing: .01em; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mission-inner { grid-template-columns: 1fr; gap: 48px; max-width: 700px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr; }
  .mission-stats { flex-direction: column; gap: 20px; }
  .mission-stat {
    border-right: none;
    border-bottom: 1px solid var(--slate-200);
    padding: 0 0 16px;
    text-align: center;
  }
  .mission-stat:first-child {
    padding-left: 0;
    text-align: center;
  }
  .mission-stat:last-child { border-bottom: none; padding-bottom: 0; }
}
