/* =========================================================
   About Page
   ========================================================= */

.about-page {
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.15), transparent 28rem),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 30rem),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 45%, #ffffff 100%);
  padding: 3rem 1rem 4rem;
}

.about-hero,
.about-section {
  width: min(1120px, 100%);
  margin: 0 auto 2rem;
}

.about-hero {
  background:
    linear-gradient(rgba(11, 18, 32, 0.78), rgba(17, 28, 52, 0.9)),
    url("/static/img/home/home_hero_normal.avif");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 30px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24);
}

.about-hero-content {
  max-width: 850px;
}

.about-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.18);
  color: #facc15;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-hero p {
  max-width: 800px;
  margin: 0;
  color: #dbeafe;
  font-size: 1.1rem;
  line-height: 1.75;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: #facc15;
  color: #0f172a;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.24);
}

.primary-button:hover {
  background: #eab308;
  transform: translateY(-2px);
}

.secondary-button {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
}

.secondary-button:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.about-section {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dbeafe;
  border-radius: 26px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.about-section h2 {
  margin: 0 0 0.85rem;
  color: #1e40af;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.about-section p {
  color: #475569;
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-grid,
.steps-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.step-card,
.about-list-item {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.about-card h3,
.step-card h3,
.about-list-item h3 {
  margin: 0 0 0.65rem;
  color: #0f172a;
  font-size: 1.2rem;
}

.about-card p,
.step-card p,
.about-list-item p {
  margin: 0;
}

.about-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: #1e40af;
  font-weight: 800;
  text-decoration: none;
}

.about-card a:hover {
  color: #f59e0b;
}

.about-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-card span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: #facc15;
  color: #0f172a;
  font-weight: 900;
}

.about-final {
  text-align: center;
}

.about-final p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-final .primary-button {
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .about-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-page {
    padding: 2rem 1rem 3rem;
  }

  .about-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}