/* section7.css */
.section7 {
  position: relative;
  margin-top: clamp(-60px, -3vw, -20px);
  background:
    radial-gradient(70% 60% at 92% 45%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #5cb39a 0%, #3c977d 60%, #63bda3 100%);
  border-radius: clamp(80px, 11.2vw, 215px) clamp(30px, 3vw, 48px) clamp(80px, 11.2vw, 215px) clamp(80px, 11.2vw, 215px);
  overflow: hidden;
  padding-top: clamp(56px, 6vw, 120px);
  padding-bottom: clamp(56px, 6vw, 120px);
  color: var(--color-ink);
  z-index: 10;
}

.section7__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section7__decor img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: none;
  height: auto;
  opacity: 0.9;
}

.section7__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 60px);
}

.section7__text {
  flex: 1 1 52%;
}

.section7__head {
  margin-bottom: clamp(20px, 2vw, 32px);
}

.section7__title {
  font-weight: 700;
  font-size: clamp(26px, 3.18vw, 61px);
  line-height: 1.16;
  margin-bottom: clamp(14px, 1.2vw, 22px);
}

.section7__rule {
  display: block;
  width: 100%;
  max-width: 1609px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.section7__lead {
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.45;
  max-width: 649px;
  margin-bottom: clamp(20px, 2vw, 34px);
}

.section7__sublead {
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.45;
  margin-bottom: clamp(18px, 1.7vw, 32px);
}

.section7__list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.67vw, 32px);
  max-width: 751px;
}

.section7__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.67vw, 32px);
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.45;
}

.section7__item::before {
  content: "";
  flex-shrink: 0;
  width: clamp(9px, 0.83vw, 13px);
  height: clamp(9px, 0.83vw, 13px);
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--color-ink);
}

.section7__phone {
  flex: 0 0 38%;
  display: flex;
  justify-content: center;
}

.section7__phone img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 9px 25px rgba(11, 23, 37, 0.25));
}

/* Tablet + mobile: stack, phone centered below */
@media (max-width: 1024px) {
  .section7__inner {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(32px, 5vw, 48px);
  }

  .section7__phone {
    flex: none;
    width: 100%;
  }

  .section7__phone img {
    max-width: 360px;
  }

  .section7__decor img {
    width: 130%;
  }

  /* keep the decor strictly behind the mob2 phone image */
  .section7__decor {
    z-index: 0;
  }

  .section7__phone {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 640px) {
  .section7 {
    border-radius: 60px 24px 60px 60px;
  }
}