    /* ── Hero ── */
    .customers-hero {
      padding: 8rem 0 4rem;
      text-align: center;
    }
    .customers-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-bottom: 1.25rem;
    }
    .customers-hero p {
      font-size: 1.25rem;
      font-weight: 300;
      color: var(--grey);
      max-width: 36rem;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ── Case study grid ── */
    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 64rem;
      margin: 0 auto;
    }

    /* ── Case study card ── */
    .case-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-card);
      padding: 2.25rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      transition: border-color 0.2s, transform 0.2s;
    }
    .case-card:hover {
      border-color: var(--border-2);
      transform: translateY(-2px);
    }
    .case-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .case-card-company {
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--light-grey);
      line-height: 1.35;
    }
    .case-card-quote {
      font-size: 1.125rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.5;
      font-style: italic;
      border-left: 2px solid var(--salmon);
      padding-left: 1.25rem;
    }
    .case-card-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .metric {
      background: var(--dark-2);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      padding: 0.5rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
      flex: 1 1 auto;
      min-width: 8rem;
    }
    .metric-value {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--salmon);
      line-height: 1.2;
    }
    .metric-label {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.3;
    }
    .case-card-body {
      font-size: 0.9375rem;
      font-weight: 300;
      color: var(--grey);
      line-height: 1.65;
    }
    .case-card-use-case {
      font-size: 0.6875rem;
      font-weight: 500;
      color: var(--charcoal);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-top: auto;
      padding-top: 0.75rem;
      border-top: 1px solid var(--border);
    }

    /* ── Bottom CTA ── */
    .bottom-cta {
      text-align: center;
    }
    .bottom-cta h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 300;
      letter-spacing: -0.015em;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }
    .bottom-cta p {
      font-size: 1.125rem;
      font-weight: 300;
      color: var(--grey);
      max-width: 30rem;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }

    /* ── Responsive ── */
    @media (max-width: 767px) {
      .case-grid {
        grid-template-columns: 1fr;
        max-width: 32rem;
      }
      .case-card-metrics {
        gap: 0.5rem;
      }
      .metric {
        min-width: 6rem;
      }
    }
