:root {
  --primary: #3b82f6;
  --dark: #0f172a;
  --gray: #64748b;
  --bg: #f8fafc;
  --border: #e2e8f0;
}

body {
  background: var(--bg);
  font-family: "Poppins", sans-serif;
  color: var(--dark);
}

/* Hero */
.about-hero {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.about-hero p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  padding: 20px;
}
.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.story-content .badge {
  background: #eff6ff;
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}
.story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.story-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}
.stat-item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
}
.stat-item span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Features */
.features-section {
  margin-bottom: 100px;
  padding: 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.section-title p {
  color: var(--gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: 0.3s;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.icon-box {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Process Timeline */
.process-section {
  margin-bottom: 100px;
  padding: 20px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
  padding: 20px;
}
.step::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: -1;
}
.step:last-child::after {
  display: none;
}

.step-num {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.step p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--primary);
  color: white;
  padding: 60px;
  margin: 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-banner p {
  margin-bottom: 30px;
  opacity: 0.9;
}
.btn-cta {
  background: white;
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  display: inline-block;
}
.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .story-section {
    grid-template-columns: 1fr;
  }
  .story-image {
    order: -1;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step::after {
    width: 2px;
    height: 100%;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
}
