.wrs-why-us {
  position: relative;
  padding-bottom: clamp(48px, 7vw, 88px);
  padding-top: clamp(120px, 18vw, 250px);
  overflow: hidden;
  isolation: isolate;
}

.wrs-why-us-leaves {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -30%);
  width: min(1100px, 92%);
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.wrs-why-us-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .wrs-why-us-leaves {
    width: 95%;
    transform: translate(-50%, -35%);
  }
}

@media (max-width: 900px) {
  .wrs-why-us {
    padding-top: clamp(80px, 20vw, 160px);
  }
  .wrs-why-us-leaves {
    width: 130%;
    transform: translate(-50%, -55%);
  }
}

@media (max-width: 600px) {
  .wrs-why-us {
    padding-top: 90px;
  }
  .wrs-why-us-leaves {
    width: 160%;
    transform: translate(-50%, -60%);
  }
}

@media (max-width: 380px) {
  .wrs-why-us {
    padding-top: 70px;
  }
  .wrs-why-us-leaves {
    width: 200%;
    transform: translate(-50%, -65%);
  }
}

.wrs-why-us-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.wrs-why-us-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}

.wrs-why-us-text {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wrs-text-muted);
  max-width: 360px;
}

.wrs-why-us-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wrs-why-card {
  background: var(--wrs-surface);
  border: 1px solid var(--wrs-green);
  border-radius: var(--wrs-radius);
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.wrs-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(29, 224, 72, 0.15);
}

.wrs-why-card-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--wrs-green);
  color: var(--wrs-near-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.wrs-why-card-title {
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
  margin-bottom: 10px;
}

.wrs-why-card-text {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wrs-text-muted);
}

@media (max-width: 900px) {
  .wrs-why-us-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .wrs-why-us-text {
    margin-inline: auto;
  }
  .wrs-why-us-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .wrs-why-us-inner {
    grid-template-columns: 1fr;
  }
}
