/* Phase 2N-L About page foundation.
   Static CSS only: no runtime, backend, form, portal, payment, or vendor changes. */

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 94px) 5%;
}

.about-hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.about-hero h1 {
  max-width: 920px;
  text-wrap: balance;
}

.about-hero-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(14, 31, 36, 0.16);
}

.about-hero-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #edf7f3;
  font-size: 17px;
  line-height: 1.55;
}

.about-section {
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(46px, 6vw, 76px);
}

.muted-section {
  background: #eef8f4;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1380px;
  margin: 30px auto 0;
}

.about-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card {
  padding: clamp(22px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 31, 36, 0.05);
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-wrap: balance;
}

.about-card p {
  margin: 0;
  color: var(--muted);
}

.about-boundary {
  max-width: 1280px;
  margin: clamp(34px, 5vw, 60px) auto;
  padding: clamp(24px, 4vw, 34px) 5%;
  border: 1px solid #cde8de;
  border-left: 6px solid rgba(22, 164, 119, 0.55);
  border-radius: 20px;
  background: #f4fbf8;
}

.about-boundary h2 {
  margin-bottom: 10px;
  text-wrap: balance;
}

.about-boundary p:last-child {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.about-final-cta {
  margin-top: 0;
}

.about-final-cta .button.primary {
  min-width: 230px;
  box-shadow: 0 20px 38px rgba(14, 31, 36, 0.24);
}

@media (max-width: 1050px) {
  .about-hero,
  .about-grid,
  .about-grid.four-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .about-hero {
    padding-top: 34px;
  }

  .about-card,
  .about-hero-card {
    padding: 20px;
  }

  .about-boundary {
    margin-left: 5%;
    margin-right: 5%;
    padding: 22px;
  }

  .about-final-cta .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .about-hero h1 {
    font-size: clamp(36px, 11vw, 44px);
  }
}
