.about-success-section {
  padding: 70px 0 75px;
}

.about-success-content {
  max-width: 430px;
}

.about-success-content .sec-title {
  margin-bottom: 18px;
}

.about-success-content p {
  margin-bottom: 30px;
  color: #455762;
  font-size: 15px;
  line-height: 1.8;
}

.about-success-btn,
.about-finance-btn {
  display: inline-flex;
  align-items: center;
}

.about-success-btn {
  background: #b49cff;
}

.about-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-rate-card {
  position: relative;
  min-height: 165px;
  padding: 30px 34px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-rate-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -50px;
  bottom: -55px;
  border-radius: 50%;
  background: currentColor;
  opacity: .055;
}

.about-rate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(55, 72, 80, .07);
}

.about-rate-number {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  font-size: 60px;
  line-height: .95;
  font-weight: 600;
  letter-spacing: -2.5px;
}

.about-rate-label {
  position: relative;
  z-index: 2;
  color: #3f525c;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.rate-pink {
  color: #fc6779;
  background: #fff0f3;
}

.rate-green {
  color: #43ad83;
  background: #eaf8f3;
}

.rate-purple {
  color: #8971e8;
  background: #f3efff;
}

.rate-orange {
  color: #ff8970;
  background: #fff3ed;
}

.about-finance-section {
  padding: 35px 0 80px;
  background: #ffffff;
}

.about-finance-card {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 70px;
  background: #ffffff;
  border: 1px solid #e5eaec;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(50, 69, 78, .06);
}

.about-finance-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 160px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
  background: #e3e9eb;
}

.about-finance-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-finance-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 7px 14px 7px 7px;
  background: #f5f7f8;
  border: 1px solid #e5eaec;
  border-radius: 50px;
  color: #52666f;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.about-finance-badge-icon {
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 29px;
  border-radius: 50%;
  background: #eaf6f2;
  color: #4baf87;
  font-size: 11px;
}

.about-finance-content .sec-title {
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.about-finance-content .sec-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 20px auto 0;
  border-radius: 10px;
  background: #4baf87;
}

.about-finance-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #455762;
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 991px) {
  .about-success-section {
    padding: 55px 0 65px;
  }

  .about-success-content {
    max-width: 100%;
  }

  .about-rate-card {
    min-height: 150px;
    padding: 27px 28px;
  }

  .about-rate-number {
    font-size: 52px;
  }

  .about-finance-section {
    padding: 30px 0 65px;
  }

  .about-finance-card {
    padding: 52px 42px;
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  .about-success-section {
    padding: 45px 0 55px;
  }

  .about-rate-grid {
    gap: 10px;
  }

  .about-rate-card {
    min-height: 125px;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .about-rate-number {
    margin-bottom: 9px;
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .about-rate-label {
    font-size: 12px;
  }

  .about-finance-section {
    padding: 25px 0 55px;
  }

  .about-finance-card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .about-finance-badge {
    margin-bottom: 17px;
    padding: 6px 12px 6px 6px;
    font-size: 10px;
  }

  .about-finance-badge-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 10px;
  }

  .about-finance-content .sec-title {
    margin-bottom: 17px;
  }

  .about-finance-content .sec-title::after {
    width: 36px;
    margin-top: 16px;
  }

  .about-finance-content p {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.75;
  }

  .about-finance-card::after {
    width: 100px;
  }
}

@media (max-width: 390px) {
  .about-rate-grid {
    grid-template-columns: 1fr;
  }

  .about-rate-card {
    min-height: 115px;
  }
}
