/* ===== About hero ===== */
.about-hero {
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 76px 24px 56px;
  text-align: center;
}
.about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  background: var(--blue-pale-2);
  padding: 5px 14px;
  border-radius: 20px;
}
.about-title {
  margin-top: 20px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}
.about-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}

.about-stats-band {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Story section ===== */
.story-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
}
.story-text h2 {
  margin-top: 14px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}
.story-text p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

.story-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 28px;
  background: var(--bg-soft);
}
.story-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.story-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.story-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}

/* ===== Timeline ===== */
.timeline-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 24px 100px;
}
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 38px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-pale);
}
.timeline-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--blue);
}
.timeline-content h3 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}
.timeline-content p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 560px;
}

/* ===== About CTA ===== */
.about-cta-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.about-cta-card {
  background: linear-gradient(135deg, #1d4ed8, #2563eb 60%, #3b82f6);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.about-cta-card h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.about-cta-card p {
  margin-top: 12px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
}
.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.about-cta-buttons .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.about-cta-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.about-cta-buttons .btn-primary {
  background: #fff;
  color: var(--blue);
}
.about-cta-buttons .btn-primary:hover {
  background: #f1f5f9;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-stats-band { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .about-title { font-size: 28px; }
  .about-stats-band { grid-template-columns: 1fr 1fr; }
  .about-stat-num { font-size: 26px; }
  .story-text h2 { font-size: 22px; }
  .about-cta-card { padding: 40px 24px; }
  .about-cta-buttons { flex-direction: column; }
  .about-cta-buttons .btn { width: 100%; }
}
