/* ── Founders Hero ─────────────────────────────────────────────────────── */
.founders-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.founders-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.founders-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,29,58,.92), rgba(27,45,91,.80));
}
.founders-hero-content {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
  padding-top: 4rem;
}
.founders-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800; letter-spacing: -.02em;
  margin: .5rem 0 1rem;
  color: #fff;
}
.founders-hero-content p {
  font-size: 1.1rem; max-width: 640px;
  margin: 0 auto; line-height: 1.7;
  color: rgba(255,255,255,.9);
}

/* ── Intro ─────────────────────────────────────────────────────────────── */
.founders-intro-section {
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
.founders-intro {
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.founders-intro p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--navy);
}

/* ── Grid ──────────────────────────────────────────────────────────────── */
.founders-grid-section {
  background: var(--light-bg);
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* ── Founder Card ──────────────────────────────────────────────────────── */
.founder-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  transition: transform .2s, box-shadow .2s;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29,111,216,.12);
}
.founder-photo-wrap {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.founder-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-name {
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy);
  margin: 0 0 .3rem;
}
.founder-role {
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.founder-bio {
  font-size: .9rem; line-height: 1.75;
  color: #444;
  text-align: start;
}

/* ── Initials avatar (no photo) ─────────────────────────────────────────── */
.founder-photo-initials {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.founder-avatar {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,.8);
  user-select: none;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.founders-cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.founders-cta {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.founders-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.founders-cta p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}
.founders-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.founders-cta-section .btn-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.founders-cta-section .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .founders-hero { height: 340px; }
  .founders-grid { grid-template-columns: 1fr; }
  .founders-cta-actions { flex-direction: column; align-items: stretch; }
  .founders-cta-actions .btn { width: 100%; justify-content: center; }
}
