/* ===== About Page ===== */


/* ===== Hero ===== */

.about-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--bg-soft),
    var(--bg-light)
  );
}

.about-hero .container {
  max-width: 760px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.about-hero p {
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.9;
  color: var(--text-soft);
}


/* ===== Story Section ===== */

.about-grid {
  max-width: 920px;
  margin: 0 auto;
}

.about-text {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-text:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.9;
  color: var(--text-soft);
}

.about-text p:last-child {
  margin-bottom: 0;
}


/* ===== Values ===== */

.section.light {
  background: var(--bg-soft);
}

.section.light h2 {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 42px;
  color: var(--text-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.value-item p {
  line-height: 1.8;
  color: var(--text-soft);
}


/* ===== Process Section ===== */

.section h2 {
  text-align: center;
  color: var(--text-dark);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 42px;
  list-style: none;
  padding: 0;
}

.process-list li {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.process-list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);

  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.process-list p {
  margin: 0;
  line-height: 1.8;
  color: var(--text-soft);
}


/* ===== CTA ===== */

.cta {
  text-align: center;
  padding: 72px 0;
  background: var(--bg-soft);
}

.cta h2 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cta p {
  margin-bottom: 24px;
  color: var(--text-soft);
  line-height: 1.8;
}


/* ===== Tablet ===== */

@media (max-width: 1023px) {
  /* Tablet and below */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }
}


/* ===== Mobile ===== */

@media (max-width: 767px) {
  .about-hero {
    padding: 60px 0;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-text,
  .value-item,
  .process-list li {
    padding: 22px;
    border-radius: 18px;
  }

  .values-grid,
  .process-list {
    gap: 18px;
  }
}


/* ===== Small Mobile ===== */

@media (max-width: 479px) {
  /* Small mobile (below 480px) */
  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }

  .process-list span {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
  }
}
