.about-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 3.2rem 4%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 12%, rgba(255, 255, 255, 0) 52%),
    url("../img/OptiSaver-by-Alpro-Brand-Story.webp") 20% center / cover no-repeat;
}

.about-hero-panel {
  margin-left: auto;
  margin-right: clamp(0.2rem, 2.2vw, 2.4rem);
  width: min(560px, 100%);
  background: rgba(248, 251, 248, 0.82);
  border: 1px solid rgba(208, 220, 211, 0.85);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 1.5rem 1.35rem;
}

.about-hero-panel h1 {
  margin: 0 0 0.65rem;
  font-family: "Muli", var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

.about-hero-panel h1 span {
  color: #0f4b25;
}

.about-hero-panel h1 span,
.about-value h2 span {
  color: var(--brand);
}

.about-hero-panel p {
  margin: 0 0 0.75rem;
  line-height: 1.4;
  color: #14351f;
}

.about-subtitle {
  margin-top: -0.2rem;
  color: #5d6d60;
}

.about-value {
  background: #fff;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.about-value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-value-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.about-value-card p {
  margin: 0;
  color: #394a3d;
  line-height: 1.35;
}

.mission-vision {
  background: #194621;
  color: #f4f9f6;
  padding: 2.1rem 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mv-card {
  border: 1px solid rgba(202, 223, 207, 0.2);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.95rem 0.95rem;
}

.mv-card h3 {
  margin-bottom: 0.4rem;
  color: #ffe27a;
}

.mv-card p {
  margin: 0;
  line-height: 1.35;
}

.test-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.test-item {
  background: #f0f5f1;
  border: 1px solid #d6e1d7;
  border-radius: 8px;
  padding: 0.75rem 0.82rem;
  font-weight: 500;
}

.team-preview {
  background: #fff;
  border-top: 1px solid #dce6de;
}

.team-preview h2 span {
  color: #194621;
}

.team-preview-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-preview-card {
  display: block;
  text-decoration: none;
  border: 1px solid #d6e1d8;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 58, 23, 0.08);
}

.team-preview-card img {
  width: 100%;
  aspect-ratio: 812 / 492;
  object-fit: cover;
}

.team-preview-meta {
  text-align: center;
  padding: 0.75rem 0.5rem 0.95rem;
  border-top: 1px solid #e7efea;
}

.team-preview-meta h3 {
  margin: 0;
  font-size: 1.6rem;
}

.team-preview-meta p {
  margin: 0.2rem 0 0;
  color: #31473a;
  font-weight: 600;
}

.team-preview-cta {
  display: block;
  width: fit-content;
  margin: 1.1rem auto 0;
}

@media (max-width: 900px) {
  .about-value-grid,
  .mission-vision-grid,
  .test-grid,
  .team-preview-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-position: center;
  }

  .about-hero-panel {
    margin-right: auto;
    margin-left: auto;
  }
}
