/* Our Value Proposition - Figma node 1401:13605 */

.ib-value-prop {
  background: var(--grey-pure-white);
  padding: 64px 0;
}

.ib-value-prop__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ib-value-prop__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.ib-value-prop__heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--grey-dark-charcoal);
}

.ib-value-prop__heading p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-dark-grey);
}

.ib-value-prop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.ib-value-prop__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f5f8fb;
  border: 1px solid var(--grey-light-grey);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 260px;
}

.ib-value-prop__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.ib-value-prop__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid rgba(0, 89, 154, 0.16);
  border-radius: 12px;
}

.ib-value-prop__icon img {
  width: 28px;
  height: 28px;
}

.ib-value-prop__card h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--grey-dark-charcoal);
}

.ib-value-prop__card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-dark-grey);
}

@media (max-width: 1023px) {
  .ib-value-prop__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .ib-value-prop {
    padding: 48px 0;
  }

  .ib-value-prop__heading h2 {
    font-size: 30px;
  }

  .ib-value-prop__grid {
    grid-template-columns: 1fr;
  }
}
