/* ═══════════════════════════════════════
   ABOUT PAGE STYLES
   ═══════════════════════════════════════ */

/* ── Active nav link ── */
.nav-active {
  color: var(--blue) !important;
}

/* ── About Hero ── */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
  background: var(--bg);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.about-hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 40px;
}

.about-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px 36px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Our Story ── */
.about-story {
  background: var(--bg-2);
  padding: 120px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-left p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-top: 16px;
}

.story-left p + p {
  margin-top: 14px;
}

.story-left strong {
  color: var(--text);
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.story-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateX(6px);
}

.story-card-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.story-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── What Makes Us Different ── */
.what-different {
  background: var(--bg);
  padding: 120px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.diff-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

.diff-icon {
  font-size: 28px;
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.diff-quote {
  margin-top: 48px;
  text-align: center;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.diff-quote p {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), #FFE08A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.diff-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Our Team ── */
.our-team {
  background: var(--bg-2);
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6366F1);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(79,142,247,0.3);
}

.team-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.team-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  color: var(--blue);
  border-radius: 50px;
}

/* ── For Employers ── */
.for-employers {
  background: var(--bg);
  padding: 120px 0;
}

.employers-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.employers-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 16px;
}

.employers-left p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.employers-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.emp-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.emp-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  min-width: 90px;
}

.emp-stat-label {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  padding-top: 6px;
}

.partner-logos-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.partner-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-logo-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-2);
  transition: var(--transition-fast);
  cursor: default;
}

.partner-logo-pill:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  color: var(--text);
}

/* ── About CTA ── */
.about-cta {
  background: var(--bg-2);
  padding: 100px 0;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.about-cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.about-cta-inner p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .employers-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .about-cta-inner { flex-direction: column; text-align: center; }
  .about-cta-btns { justify-content: center; }
}

@media (max-width: 768px) {
  .about-hero-stats { flex-direction: column; gap: 24px; padding: 28px; }
  .diff-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
