/* ===== ABOUT PAGE STYLES ===== */

.page-hero-title em {
  font-style: italic;
  opacity: 0.45;
}

/* ---- INTRO ---- */
.about-intro-section {
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}
.about-intro-section .body-text { max-width: 100%; }

/* ---- MISSION / VISION ---- */
.mv-section {
  background: var(--black);
  border-bottom: 1px solid var(--black-border);
}
.mv-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 3rem 2.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.mv-card--right::before { background: rgba(200,16,46,0.35); }
.mv-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.mv-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ---- HOW WE THINK ---- */
.think-section {
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}
.think-card {
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  height: 100%;
  transition: var(--transition);
}
.think-card:hover { border-color: rgba(200,16,46,0.2); transform: translateY(-3px); }
.think-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.think-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.think-text { font-size: 0.86rem; color: var(--white-mute); line-height: 1.7; }

/* ---- WHAT MAKES US DIFFERENT ---- */
.diff-section { background: var(--black); border-bottom: 1px solid var(--black-border); }
.diff-item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--black-border);
  height: 100%;
  transition: var(--transition);
}
.diff-item--center {
  background: var(--black-card);
  border-color: rgba(200,16,46,0.15);
}
.diff-item:hover { border-color: rgba(200,16,46,0.25); }
.diff-icon-bar {
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.4rem;
}
.diff-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.diff-text { font-size: 0.88rem; color: var(--white-mute); line-height: 1.7; }

/* ---- APPROACH ---- */
.approach-section { background: var(--black-soft); border-bottom: 1px solid var(--black-border); }
.approach-stats { border: 1px solid var(--black-border); }
.stat-row {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem 1.8rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  min-width: 60px;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.88rem; color: var(--white-mute); line-height: 1.6; padding-top: 0.3rem; }

/* ---- ABOUT WHO ---- */
.about-who-section { background: var(--black); border-bottom: 1px solid var(--black-border); }
.about-who-section .body-text { max-width: 680px; }
.about-who-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: var(--transition);
}
.about-who-card:hover { border-color: rgba(200,16,46,0.2); transform: translateY(-3px); }
.awc-line {
  width: 24px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.2rem;
}
.awc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.awc-text { font-size: 0.86rem; color: var(--white-mute); line-height: 1.7; }

/* ---- CTA (reused from home) ---- */
.final-cta-section {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.cta-sub {
  font-size: 0.975rem;
  color: var(--white-mute);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.cta-trust-note { font-size: 0.78rem; color: var(--white-mute); letter-spacing: 0.04em; }
