/* ============================================
   ORION IPJ — Our Team Page (team.css)
   ============================================ */

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover;
  opacity: 0.15;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  font-family: Montserrat;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}

.page-header p {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  animation: fadeUp 0.8s ease 0.15s both;
}

/* ─── INTRO SECTION ─── */
.intro-section {
  background: var(--light-gray);
  padding: 60px 0;
}

.intro-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.intro-block p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ─── STRENGTHS SECTION ─── */
.strengths-section {
  background: var(--white);
  padding: 80px 0;
}

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

/* ─── STRENGTH CARD ─── */
.strength-card {
  padding: 32px 28px;
  border: 1px solid #e8eef2;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(14,85,125,0.1);
}

.strength-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.strength-icon svg {
  width: 100%;
  height: 100%;
}

.strength-card h3 {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── CERTIFICATIONS SECTION ─── */
.certs-section {
  background: var(--navy);
  padding: 80px 0;
}

.certs-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.cert-title {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cert-sub {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.55);
}

.cert-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ─── RESPONSIVE — TABLET (max 900px) ─── */
@media (max-width: 900px) {
  .page-header { padding: 120px 0 60px; }

  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cert-divider { display: none; }

  .certs-grid {
    justify-content: center;
    gap: 32px;
  }

  .cert-item { min-width: 140px; }
}

/* ─── RESPONSIVE — MOBILE (max 600px) ─── */
@media (max-width: 600px) {
  .page-header { padding: 110px 0 48px; }

  .intro-section { padding: 40px 0; }

  .strengths-section { padding: 56px 0; }

  .certs-section { padding: 56px 0; }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-card { padding: 24px 20px; }

  .certs-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cert-item { align-items: flex-start; text-align: left; }
}
