/* section9.css */
.section9 {
  position: relative;
  background:
    radial-gradient(38% 42% at 92% 88%, rgba(11, 23, 37, 0.05), rgba(11, 23, 37, 0) 70%),
    radial-gradient(30% 32% at 62% 62%, rgba(11, 23, 37, 0.04), rgba(11, 23, 37, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #eef1f4 100%);
  border-radius: 0 0 0 clamp(60px, 8vw, 160px);
  overflow: hidden;
  padding-top: clamp(48px, 5vw, 90px);
  padding-bottom: clamp(48px, 5vw, 90px);
}

.section9__inner {
  position: relative;
  z-index: 1;
  max-width: 1298px;
  margin: 0 auto;
}

.section9__head {
  margin-bottom: clamp(36px, 4vw, 74px);
}

.section9__title {
  font-weight: 700;
  font-size: clamp(26px, 3.18vw, 61px);
  line-height: 1.16;
  margin-bottom: clamp(18px, 2.14vw, 41px);
}

.section9__subtitle {
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.45;
}

.section9__list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.14vw, 41px);
  margin-bottom: clamp(32px, 3.85vw, 74px);
}

.section9__item {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.14vw, 41px);
}

.section9__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 10.57vw, 203px);
  height: clamp(64px, 5.42vw, 104px);
  font-weight: 700;
  font-size: clamp(24px, 2.19vw, 42px);
  color: var(--color-green);
  border: 2px solid #c3ccd3;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(11, 23, 37, 0.06);
  background: rgba(255, 255, 255, 0.6);
}

.section9__item-text {
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.45;
  color: var(--color-ink);
}

.section9__note {
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.45;
  color: var(--color-ink);
}

@media (max-width: 640px) {
  .section9__badge {
    width: 96px;
    height: 54px;
    font-size: 22px;
  }
}
