.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.values-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,205,0,.08), transparent 34%),
    linear-gradient(180deg, var(--white), var(--warm));
}
.value-item {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 32px 29px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16,32,42,.13);
  color: var(--white);
}
.value-item::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -95px;
  bottom: -110px;
  border: 36px solid rgba(255,205,0,.07);
  border-radius: 50%;
}
.value-item__number {
  display: block;
  margin-bottom: 58px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .14em;
}
.value-item h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.25;
}
.value-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}
.process-step {
  position: relative;
  min-height: 225px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  counter-increment: process;
  box-shadow: var(--shadow-sm);
}
.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 48px;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 70px;
  width: 46px;
  height: 2px;
  background: var(--yellow);
}
.process-step h3 { font-size: 1.08rem; line-height: 1.38; }
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.about-hero__media { position: absolute; inset: 0; }
.about-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,22,31,.95), rgba(8,22,31,.74) 58%, rgba(8,22,31,.32)),
    linear-gradient(0deg, rgba(8,22,31,.84), transparent 70%);
}
.about-hero__content { position: relative; z-index: 2; width: 100%; padding: 118px 0 68px; }
.about-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.5rem, 5vw, 4.85rem); }
.about-hero p { max-width: 720px; color: rgba(255,255,255,.82); font-size: clamp(1.04rem,1.5vw,1.22rem); }
.about-facts {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  margin-top: -44px;
  position: relative;
  z-index: 4;
}
.about-fact {
  min-height: 150px;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-right: 0;
  box-shadow: var(--shadow-sm);
}
.about-fact:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.about-fact:last-child { border-right: 1px solid var(--gray-200); border-radius: 0 var(--radius) var(--radius) 0; }
.about-fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem,3vw,3rem);
  line-height: 1;
}
.about-fact span { color: var(--ink-soft); font-size: .88rem; }
.integrator-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px,5vw,64px);
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.integrator-panel::after {
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-120px;
  bottom:-180px;
  border:62px solid rgba(255,205,0,.07);
  border-radius:50%;
}
.integrator-panel h2 { color: var(--white); }
.integrator-panel .lead { color: rgba(255,255,255,.72); }
.integrator-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
  margin-top: 36px;
}
.integrator-card {
  padding: 25px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
}
.integrator-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .09em;
}
.integrator-card h3 { margin-bottom: 10px; color: var(--white); font-size: 1.2rem; }
.integrator-card p { margin: 0; color: rgba(255,255,255,.68); font-size: .92rem; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-card {
  min-height: 330px;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.mission-card--dark { background: var(--navy); border-color: var(--navy); }
.mission-card--dark h2 { color: var(--white); }
.mission-card--dark p { color: rgba(255,255,255,.72); }
.mission-card__mark {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mission-card--dark .mission-card__mark { color: var(--yellow); }
