/* KWCS impact-band styles — extracted from _assets/kwcs-homepage-v4.html */

/* ─── IMPACT BAND ─── */
  .impact-band {
  
    padding: 72px 80px;
    overflow: hidden;
  }

.impact-band .face-pattern { opacity: 0.5; }

.impact-intro {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 620px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
  }

.impact-title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: clamp(32px, 3.6vw, 48px);
    color: white;
    line-height: 1.05;
    margin-bottom: 0;
  }

.impact-title .gold { color: var(--gold-light); }

.impact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 48px auto 0;
  }

.impact-item {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s;
  }

.impact-item:hover {
    transform: translateY(-4px);
    background: rgba(245,166,35,0.12);
    border-color: rgba(245,166,35,0.35);
  }

.impact-num {
    font-family: 'Chewy', cursive;
    font-size: 64px;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 10px;
  }

.impact-label {
    font-size: 13.5px;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-weight: 600;
  }

@media (max-width: 1024px) {
  .impact-band { padding: 56px 32px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-num { font-size: 52px; }
}

@media (max-width: 768px) {
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .impact-item { padding: 24px 16px; }
  .impact-num { font-size: 44px; }
}
