.benefitcards {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.benefitcards-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 90%;
    max-height: 50%;
    pointer-events: none;
    background: none;
    z-index: 1;
}

.benefitcards-deco img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top center;
}

.benefitcards-deco-stripe {
    position: absolute;
    bottom: 0;
    right: 98px;
    width: 22px;
    height: 65%;
    background: #FF8200;
    transform: skewX(-10deg);
    transform-origin: top;
    border-top-left-radius: 4px;
    z-index: 2;
}

.benefitcards-inner {
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.benefitcards-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.benefitcards-eyebrow {
  display: block;
  margin-bottom: 12px;
}

.benefitcards-heading {
  margin-bottom: 16px;
  color: var(--color-foreground);
}

.benefitcards-body {
  color: var(--color-foreground);
  margin: 0;
}

.benefitcards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  gap: 32px;
  justify-content: center;
}

.benefitcards-card {
  border-radius: var(--border-radius-default, 4px);
  border: 1px solid var(--Everflow-Brand-Primary-50, #e2e7ee);
  background: var(--background, #fff);
  box-shadow:
    0 4px 6px 1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: var(--container-gap-default, 32px) var(--spacing-8, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefitcards-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(105deg, #003087 22%, #418fde 100%);
  flex-shrink: 0;
  margin-bottom: 30px;
}

.benefitcards-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.benefitcards-card-title {
  margin-bottom: 10px;
  color: var(--primary, #00205B);
  font-family: var(--type-role-label, Inter);
  font-size: var(--font-size-lg, 18px);
  font-style: normal;
  font-weight: var(--type-role-weight-label, 600);
  line-height: 120%;
}

.benefitcards-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefitcards-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
}

.benefitcards-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-navy);
}

.benefitcards-list-item .body-sm {
  color: var(--primary, #00205B);
  font-family: var(--type-role-paragraph, Inter);
  font-size: var(--font-size-sm, 14px);
  font-style: normal;
  font-weight: var(--type-role-weight-paragraph, 300);
  line-height: 120%;
  letter-spacing: 0.28px;
}

.benefitcards-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .benefitcards-grid {
    grid-template-columns: 1fr;
  }

  .benefitcards-deco {
    display: none;
  }
}
