.welcome {
  background: var(--white);
  padding-top: clamp(6rem, 12vw, 10rem);
}

.welcome__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  border: var(--clay-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-bounce), box-shadow var(--t-base);
  cursor: default;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 37, 64, 0.14), inset 0 1px 0 rgba(255,255,255,0.9);
}
.pillar-card:hover .pillar-icon { transform: rotate(-8deg) scale(1.1); }

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--t-bounce);
  flex-shrink: 0;
}
.pillar-icon--blue   { background: var(--blue-pale);  border: 2px solid rgba(43, 91, 168, 0.18); }
.pillar-icon--yellow { background: var(--yellow-pale); border: 2px solid rgba(245, 200, 66, 0.35); }
.pillar-icon--green  { background: var(--green-pale);  border: 2px solid rgba(58, 158, 111, 0.30); }

.pillar-icon svg { width: 30px; height: 30px; }
.pillar-icon--blue   svg { color: var(--blue); }
.pillar-icon--yellow svg { color: var(--yellow-dark); }
.pillar-icon--green  svg { color: var(--green); }

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}
.pillar-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Stats Strip */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 2px dashed var(--border-strong);
}

.stat-item { text-align: center; }
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}
