/* -- PLATFORM FOUNDATION -- */
.platform-foundation {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 6rem 5vw;
}

.platform-foundation-inner {
  max-width: 960px;
  margin: 0 auto;
}

.platform-foundation .platform-section-text {
  margin-bottom: 3.5rem;
}

.foundation-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.foundation-pillar {
  padding: 2rem;
  border: 1.5px solid rgba(31, 35, 41, 0.07);
  border-radius: 18px;
  background: var(--gray-50);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.foundation-pillar:hover {
  border-color: rgba(49, 151, 149, 0.3);
  box-shadow: 0 8px 28px rgba(49, 151, 149, 0.08);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.foundation-pillar h3 {
  font-family: "Processity", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.foundation-pillar p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
}
