/* =========================
   ABOUT HERO
========================= */

.about-hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.center {
  text-align: center;
}

.hero-sub {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--text-muted);
}

/* =========================
   SECTIONS
========================= */

.about-section {
  padding: 90px 0;
}

.section-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.divider {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--brand-orange);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-text {
  max-width: 820px;
  margin: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================
   SPLIT SECTIONS (MISSION / VISION)
========================= */

.split-section {
  padding: 80px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.floating-card {
  background: white;
  padding: 50px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  text-align: center;
}

.split-text p {
  font-size: 16px;
  color: var(--text-muted);
}

/* =========================
   ROADMAP
========================= */

.roadmap {
  max-width: 600px;
  margin: auto;
  position: relative;
}

/* Vertical line behind the circles */
.roadmap::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--brand-teal);
  transform: translateX(-50%);
  z-index: 0;
}

.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.roadmap-step span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: var(--brand-teal);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.roadmap-step > div {
  flex: 1;
  padding-top: 2px;
}

.roadmap-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--brand-dark);
}

.roadmap-step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* =========================
   WHAT SETS US APART
========================= */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 28px;
}

.outline-card {
  padding: 30px;
  border-radius: 18px;
  border: 2px solid rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.outline-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-orange);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .roadmap::before {
    left: 16px;
    transform: translateX(-50%);
  }
}
