.nav a.active { color: var(--green); }

.footer__links li {
  color: var(--text-muted);
  font-size: 14px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 32px;
  align-items: end;
  padding: 56px;
  background: linear-gradient(180deg, var(--green-light), #fff);
}

.about-eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 720px;
  margin: 10px 0 14px;
  font-size: 44px;
  line-height: 1.08;
}

.about-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.about-hero__stats {
  display: grid;
  gap: 14px;
}

.about-hero__stats div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.about-hero__stats strong,
.about-hero__stats span {
  display: block;
}

.about-hero__stats strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.about-hero__stats span {
  color: var(--text-muted);
  font-size: 14px;
}

.about-story,
.about-section {
  padding: 56px;
  border-top: 1px solid var(--border);
}

.about-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-copy {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.about-copy--highlight,
.about-section--soft {
  background: #fafafa;
}

.about-copy h2,
.section-headline h2,
.about-cta h2 {
  margin: 8px 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.about-copy p,
.section-headline p,
.about-card p,
.feature-list p,
.about-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.about-copy p + p {
  margin-top: 14px;
}

.section-headline {
  max-width: 720px;
  margin-bottom: 28px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-card,
.feature-list article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.about-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.about-card h3,
.feature-list h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 56px 56px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--green);
  color: #fff;
}

.about-cta h2 { margin-top: 0; }
.about-cta p { color: rgba(255,255,255,0.86); }

.about-cta .btn-primary {
  flex: 0 0 auto;
  background: #fff;
  color: var(--text);
}

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

  .about-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 20px 24px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .about-hero,
  .about-story,
  .about-section {
    padding: 32px 24px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-card-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 24px 32px;
    padding: 28px 24px;
  }
}
