/* ---- Intro tagline ---- */
.intro-section { background: var(--white); padding: 72px 0 64px; }
.intro-quote { font-family: var(--font-head); font-size: clamp(1.45rem, 2.8vw, 2rem); font-weight: 700; color: var(--blue-dark); line-height: 1.35; border-left: 5px solid var(--blue-accent); padding-left: 28px; }

/* ---- Story section ---- */
.story-section { background: var(--off-white); padding: 80px 0; }
.story-img-wrap { position: relative; }
.story-img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: top; display: block; }
.story-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--blue-accent); color: var(--white); font-family: var(--font-oswald); font-size: 1.1rem; font-weight: 600; padding: 20px 28px; text-align: center; line-height: 1.2; }
.story-img-badge span { display: block; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.story-text { padding-left: 20px; }
.story-text p { margin-bottom: 1.1rem; font-size: 0.97rem; }
.story-text p:last-child { margin-bottom: 0; }

/* ---- Metrics strip ---- */
.metrics-strip { background: var(--blue-dark); padding: 56px 0; }
.metric-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.metric-item:last-child { border-right: none; }
.metric-num { font-family: var(--font-oswald); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; color: var(--white); line-height: 1; }
.metric-num sup { font-size: 50%; vertical-align: super; }
.metric-label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ---- Strengths ---- */
.strengths-section { background: var(--white); padding: 80px 0; }
.strength-card { background: var(--off-white); border: 1px solid #dde6f0; border-top: 4px solid var(--blue-accent); padding: 36px 28px; height: 100%; transition: transform 0.25s, box-shadow 0.25s; }
.strength-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,59,110,0.1); }
.strength-icon { width: 56px; height: 56px; background: var(--blue-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.strength-icon i { font-size: 1.5rem; color: var(--blue-light); }
.strength-card h4 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; }
.strength-card p { font-size: 0.91rem; margin: 0; }

/* ---- Leadership ---- */
.leadership-section { background: var(--off-white); padding: 80px 0; }
.leader-card { background: var(--white); border: 1px solid #dde6f0; overflow: hidden; height: 100%; transition: transform 0.25s, box-shadow 0.25s; }
.leader-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,59,110,0.12); }
.leader-photo { width: 100%; height: auto; display: block; }
.leader-body { padding: 24px 22px; }
.leader-body h4 { font-family: var(--font-oswald); font-size: 1.15rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 2px; }
.leader-role { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-accent); margin-bottom: 10px; display: block; }
.leader-bio { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.55; }
.leader-edu { border-top: 1px solid #eef2f8; padding-top: 10px; margin-top: 2px; }
.leader-edu li { font-size: 0.82rem; color: var(--text-muted); list-style: none; padding: 2px 0; padding-left: 16px; position: relative; }
.leader-edu li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-accent); }

/* ---- CTA banner (solid accent background, differs from homepage) ---- */
.cta-section { background: var(--blue-accent); padding: 60px 0; }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); text-transform: uppercase; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.btn-cta-white { display: inline-block; background: var(--white); color: var(--blue-accent); font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 36px; text-decoration: none; border: 2px solid var(--white); transition: all 0.25s; }
.btn-cta-white:hover { background: transparent; color: var(--white); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .story-img-badge { right: 0; bottom: 0; }
  .story-text { padding-left: 0; margin-top: 48px; }
}
@media (max-width: 767px) {
  .metric-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
  .metric-item:last-child { border-bottom: none; }
  .intro-quote { font-size: 1.2rem; padding-left: 18px; }
}
