/* ============================================================
   Packagly — about/about.css
   Depends on: common.css, shared/page.css
   ============================================================ */

/* ---- our story ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.story-title {
  margin: 12px 0 16px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: #15241b;
}
.story-title .accent {
  color: var(--green);
}
.story-grid p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #5d6b62;
}
.mvp-card {
  background: radial-gradient(ellipse at 20% 0%, #14351f 0%, #061a11 75%);
  border: 1px solid rgba(112, 174, 19, 0.22);
  border-radius: 16px;
  padding: 8px 28px;
}
.mvp {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mvp:last-child {
  border-bottom: none;
}
.mvp h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}
.mvp p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--white-70);
}

/* ---- core values ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 20px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.value-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.value-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(112, 174, 19, 0.15);
  border: 1px solid rgba(112, 174, 19, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-ico img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(63%) saturate(508%) hue-rotate(40deg) brightness(94%) contrast(89%);
}
.value-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.value-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-70);
}

/* ---- stats strip ---- */
.stats-strip {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
}
.stat b .accent {
  color: var(--green);
}
.stat span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--white-50);
}

/* ---- why choose ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.why-grid .ph {
  min-height: 320px;
  border-radius: 16px;
}
.why-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef1ee;
}
.why-list li:last-child {
  border-bottom: none;
}
.why-ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef5e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-ico img {
  width: 20px;
  height: 20px;
}
.why-list h4 {
  margin: 0 0 3px;
  font-size: 15px;
  color: #15241b;
}
.why-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5d6b62;
}

/* ---- team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-ava {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #eef5e3;
  border: 2px solid #dce8cb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.team-ava img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(63%) saturate(508%) hue-rotate(40deg) brightness(94%) contrast(89%);
}
.team-card h4 {
  margin: 0 0 3px;
  font-size: 16px;
  color: #15241b;
}
.team-role {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.team-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #7a877e;
  max-width: 210px;
}

/* ---- manufacturing ---- */
.mf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.mf-grid .ph {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-50);
}
.mf-grid .ph img {
  filter: brightness(0) invert(1);
  opacity: 0.4;
}
.mf-actions {
  text-align: center;
}

/* real image inside a .ph box (full-bleed cover) */
.ph.ph-img {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.ph.ph-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

/* ---- testimonials ---- */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tst-card {
  background: #fff;
  border: 1px solid #e7ebe7;
  border-radius: 14px;
  padding: 24px;
}
.tst-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tst-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tst-head h4 {
  margin: 0;
  font-size: 14px;
  color: #15241b;
}
.tst-head span {
  font-size: 12px;
  color: #8a988e;
}
.tst-stars {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.tst-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #5d6b62;
}

@media (max-width: 991.98px) {
  .story-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .mf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tst-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .values-grid,
  .team-grid,
  .mf-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
