/* =========================================================
   Values — How We Play in the Industry Section
   ========================================================= */

.val-play {
  background-color: #ffffff;
  padding: 80px 40px;
}

.val-play__container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.val-play__header {
  margin-bottom: 72px;
}

.val-play__title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.val-play__subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #404040;
}

/* Items: 3 columns */
.val-play__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
  margin-bottom: 56px;
}

.val-play__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.val-play__item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.val-play__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.val-play__item-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.val-play__item-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-body);
}

/* Closing sentence */
.val-play__closing {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #404040;
  margin-bottom: 56px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* CTA */
.val-play__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.val-play__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: gap var(--transition-base);
}

.val-play__cta:hover {
  gap: 22px;
}

.val-play__cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--color-text-primary);
  transition: color var(--transition-base);
}

.val-play__cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.val-play__cta-arrow svg {
  width: 64px;
  height: 64px;
  display: block;
}

.val-play__cta:hover .val-play__cta-arrow {
  transform: translateX(4px);
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .val-play {
    padding: 64px 24px;
  }

  .val-play__items {
    gap: 32px;
  }

  .val-play__title         { font-size: 38px; }
  .val-play__subtitle      { font-size: 24px; }
  .val-play__item-text     { font-size: 18px; }
  .val-play__closing       { font-size: 24px; }
}

@media (max-width: 768px) {
  .val-play__items {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .val-play__header {
    margin-bottom: 48px;
  }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .val-play {
    padding: 48px 20px;
  }

  .val-play__items {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .val-play__title         { font-size: 30px; }
  .val-play__subtitle      { font-size: 20px; }
  .val-play__item-text     { font-size: 16px; }
  .val-play__closing       { font-size: 18px; }

  .val-play__cta-text {
    font-size: clamp(22px, 7vw, 32px);
  }

  .val-play__cta-arrow svg {
    width: 36px;