    /* ═══════════════════════════════════════
       WHY US  — 3-tile band (dark background)
    ═══════════════════════════════════════ */
    .why-band {
      background: var(--ink); padding: 70px 0;
    }
    .why-band .section-label { color: rgba(245,242,235,0.4); }
    .why-band .section-label::before { background: rgba(245,242,235,0.4); }
    .why-band .section-title { color: var(--paper); margin-bottom: 50px; }

    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    }
    @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

    .why-tile {
      background: rgba(255,255,255,0.04); padding: 40px 32px;
      transition: background 0.22s;
    }
    .why-tile:hover { background: rgba(200,242,58,0.12); }

    .why-tile__num {
      font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime);
      margin-bottom: 16px;
    }
    .why-tile h3 {
      font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
      letter-spacing: -0.02em; color: var(--paper); margin-bottom: 12px;
    }
    .why-tile p { font-size: 0.88rem; line-height: 1.75; color: rgba(245,242,235,0.6); }

    /* ─── TESTIMONIALS ───────────────────────────── */
    .testimonials-section { background: var(--cream); overflow: hidden; }
    .t-header { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
    .t-stat {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.04em;
      color: var(--ink);
    }
    .t-stat small { font-size: 0.9rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }

    .testimonials-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .t-card {
      background: var(--paper); padding: 36px 32px;
      display: flex; flex-direction: column; justify-content: space-between;
      gap: 24px;
    }
    .t-quote {
      font-size: 0.95rem; line-height: 1.8; color: var(--ink);
      font-style: italic; font-weight: 300;
    }
    .t-author {
      font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
      text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
    }
    .t-bar { width: 32px; height: 2px; background: var(--lime); }

    @media (max-width: 900px) { .testimonials-row { grid-template-columns: 1fr; } }