/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */

/* ── WHO WE ARE ── */
.about-who {
  background: #fff;
  padding: 80px 120px;
  display: flex;
  justify-content: center;
}
.about-who__inner {
  max-width: 1280px; width: 100%;
  display: flex; flex-direction: column; gap: 40px;
}
.about-who__header .section-title { font-size: 32px; font-weight: 700; color: #0b1795; line-height: 1.25; }
.about-who__content { display: flex; gap: 56px; align-items: flex-start; }
.about-who__img { width: 420px; flex-shrink: 0; border-radius: 14px; height: 320px; object-fit: cover; box-shadow: 0 8px 32px rgba(11,23,149,0.1); }
.about-who__text { flex: 1; display: flex; flex-direction: column; gap: 16px; color: #52525b; font-size: 14.5px; font-weight: 500; line-height: 1.75; }

/* ── OUR VALUES ── */
.about-values { background: #fff; padding: 0 120px 80px; display: flex; justify-content: center; }
.about-values__inner { max-width: 1280px; width: 100%; display: flex; flex-direction: column; gap: 40px; }
.about-values__header .section-title { font-size: 32px; font-weight: 700; color: #0b1795; }
.about-values__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-value-card { display: flex; flex-direction: column; gap: 14px; }
.about-value-card__num { width: 44px; height: 44px; border-radius: 10px; background: #0b1795; color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: none; cursor: default; }
.about-value-card__text { display: flex; flex-direction: column; gap: 8px; }
.about-value-card__title { font-size: 15px; font-weight: 700; color: #111827; line-height: 1.4; border-bottom: 2px solid #0b1795; padding-bottom: 12px; }
.about-value-card__desc { font-size: 13.5px; color: #52525b; font-weight: 500; line-height: 1.65; }
.about-values__photo { width: 100%; }
.about-values__photo img { width: 100%; height: 320px; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

/* ── AGILE PROCESS ── */
.about-process { background: linear-gradient(175deg, #0b1795 0%, #070f5e 100%); padding: 80px 120px; display: flex; justify-content: center; }
.about-process__inner { max-width: 1280px; width: 100%; display: flex; flex-direction: column; gap: 56px; align-items: center; }
.about-process__header { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.about-process__label { display: inline-flex; padding: 4px 14px; border: 1px solid rgba(255,255,255,0.35); border-radius: 9999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.85); background: transparent; cursor: default; }
.about-process__title { font-size: 36px; font-weight: 700; color: #fff; line-height: 1.2; }
.about-process__subtitle { color: rgba(219,234,254,0.85); font-size: 16px; font-weight: 500; line-height: 1.6; max-width: 480px; }
.about-process__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }
.about-process-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.about-process-card__img { width: 100%; height: 160px; object-fit: cover; display: block; }
.about-process-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-process-card__num-row { display: flex; align-items: center; justify-content: space-between; }
.about-process-card__num { font-size: 32px; font-weight: 700; color: rgba(255,255,255,0.35); line-height: 1; }
.about-process-card__icon { width: 28px; height: 28px; }
.about-process-card__title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
.about-process-card__desc { font-size: 13px; color: rgba(219,234,254,0.8); font-weight: 500; line-height: 1.6; }

@media (max-width: 1100px) { .about-who, .about-values, .about-process { padding-inline: 48px; } }
@media (max-width: 768px) {
  .about-who, .about-values { padding: 48px 24px; }
  .about-process { padding: 48px 24px; }
  .about-who__content { flex-direction: column; }
  .about-who__img { width: 100%; height: 220px; }
  .about-values__cards { grid-template-columns: 1fr; }
  .about-process__cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-process__title { font-size: 26px; }
}
@media (max-width: 480px) { .about-process__cards { grid-template-columns: 1fr; } }

/* ── ABOUT PILL LABEL ── */
.about-pill {
  display: inline-flex;
  padding: 3px 14px 5px;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  background: #fff;
  align-self: flex-start;
}

.about-who__title {
  font-size: 28px;
  font-weight: 700;
  color: #0b1795;
  line-height: 1.25;
  max-width: 700px;
}

/* value card overrides */
.about-value-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-value-card__num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0b1795;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-value-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  border-bottom: 2px solid #0b1795;
  padding-bottom: 12px;
}
.about-value-card__desc {
  font-size: 13.5px;
  color: #52525b;
  font-weight: 500;
  line-height: 1.65;
}
.about-values__photo { width: 100%; margin-top: 8px; }
.about-values__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Agile process fixes */
.about-process {
  background: linear-gradient(175deg, #0b1795 0%, #070f5e 100%);
  padding: 80px 0;
  display: block;
}
.about-process__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.about-process__pill {
  display: inline-flex;
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  background: transparent;
}
.about-process__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.about-process__subtitle {
  color: rgba(219,234,254,0.85);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 480px;
}
.about-process__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.about-process-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-process-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.about-process-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-process-card__num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-process-card__num {
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  line-height: 1;
}
.about-process-card__icon { width: 28px; height: 28px; }
.about-process-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.about-process-card__desc {
  font-size: 13px;
  color: rgba(219,234,254,0.8);
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 1100px) { .about-process__inner { padding-inline: 48px; } }
@media (max-width: 768px) { .about-process__inner { padding-inline: 24px; } .about-process__cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .about-process__cards { grid-template-columns: 1fr; } }
