/* ===== Reason Section ===== */
#reason {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets_revamp/Background-Pattern2.svg') no-repeat bottom right;
}

#reason .reason-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

#reason .reason-container .benefit,
#reason .reason-container .services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

#reason .reason-container .benefit h2,
#reason .reason-container .services h2 {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

#reason .reason-container .benefit .cards {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

#reason .reason-container .benefit .cards .card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background-color: var(--color-bg-light);
  border-radius: 16px;
  border: 1px solid var(--color-bg-gray);
  padding: 42px 41px;
  width: 100%;
  min-height: 348px;
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08);
}

#reason .reason-container .benefit .cards .card .number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-warm);
}

#reason .reason-container .benefit .cards .card .number p {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--color-font-accent);
}

#reason .reason-container .benefit .cards .card h3 {
  max-width: 90%;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  color: var(--color-font-deep);
}

#reason .reason-container .benefit .cards .card p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-font-deep-muted);
}

#reason .reason-container .services .score-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 40px 80px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-bg-gray);
  border-radius: 16px;
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08);
}

#reason .reason-container .services .score-card .score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 275px;
}

#reason .reason-container .services .score-card .score .number {
  display: flex;
}

#reason .reason-container .services .score-card .score .number p {
  font-family: 'Sora', sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 52px;
  color: var(--color-font-accent);
}

#reason .reason-container .services .score-card .score #counter-1 {
  width: 100%;
}

#reason .reason-container .services .score-card .score #counter-1 p:first-child {
  text-align: right;
  width: 80px;
}

#reason .reason-container .services .score-card .score #counter-1 p:nth-child(2) {
  text-align: left;
  width: 40px;
}

#reason .reason-container .services .score-card .score #counter-2 {
  width: 100%;
}

#reason .reason-container .services .score-card .score #counter-2 p:first-child {
  text-align: right;
  width: 50px;
}

#reason .reason-container .services .score-card .score #counter-2 p:nth-child(2) {
  width: 75px;
}

#reason .reason-container .services .score-card .score #counter-3 {
  width: 100%;
  justify-content: end;
}

#reason .reason-container .services .score-card .score #counter-3 p:nth-child(3) {
  width: 100px;
}

#reason .reason-container .services .score-card .score p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: var(--color-font-ink);
}

@media (max-width: 767px) {
  #reason {
    background-size: 375px auto;
    background-position: top 110px left -100px;
  }

  #reason .reason-container {
    width: 100%;
    padding: 56px 24px 38px;
    gap: 40px;
  }

  #reason .reason-container .benefit,
  #reason .reason-container .services {
    justify-content: center;
    gap: 24px;
  }

  #reason .reason-container .benefit h2,
  #reason .reason-container .services h2 {
    font-size: 20px;
    line-height: 28px;
    max-width: 95%;
  }

  #reason .reason-container .benefit .cards {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  #reason .reason-container .benefit .cards .card {
    gap: 10px;
    justify-content: center;
    max-width: 100%;
    min-height: 320px;
  }

  #reason .reason-container .benefit .cards .card h3 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.15px;
  }

  #reason .reason-container .benefit .cards .card p {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.25px;
  }

  #reason .reason-container .services .score-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 42px 41px;
  }

  #reason .reason-container .services .score-card .score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #reason .reason-container .services .score-card .score .number p {
    font-size: 24px;
    line-height: 32px;
  }

  #reason .reason-container .services .score-card .score p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.25px;
  }

  #reason .reason-container .services .score-card .score #counter-1 p:first-child {
    width: 37%;
  }

  #reason .reason-container .services .score-card .score #counter-1 p:nth-child(2) {
    width: 24px;
  }

  #reason .reason-container .services .score-card .score #counter-2 p:first-child {
    width: 30%;
  }

  #reason .reason-container .services .score-card .score #counter-2 p:nth-child(2) {
    width: 44px;
  }

  #reason .reason-container .services .score-card .score #counter-3 p:nth-child(3) {
    width: 44%;
  }
}

/* ===== Tablet or iPad ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  #reason {
    min-height: auto;
    padding: 56px 0 72px;
    background-size: 70%;
    background-position: top 100px right -20%;
  }

  #reason .reason-container {
    width: 90%;
    gap: 40px;
  }

  #reason .reason-container .benefit h2,
  #reason .reason-container .services h2 {
    font-size: 20px;
    line-height: 28px;
  }

  #reason .reason-container .benefit .cards .card {
    max-width: 300px;
    padding: 32px 28px;
    max-height: 280px;
  }

  #reason .reason-container .benefit .cards .card h3 {
    font-size: 16px;
    line-height: 22px;
  }

  #reason .reason-container .benefit .cards .card p {
    font-size: 14px;
    line-height: 20px;
  }

  #reason .reason-container .benefit .cards {
    gap: 16px;
  }

  #reason .reason-container .services .score-card {
    padding: 32px 48px;
  }

  #reason .reason-container .services .score-card .score {
    min-width: 180px;
  }

  #reason .reason-container .services .score-card .score .number p {
    font-size: 28px;
    line-height: 32px;
  }

  #reason .reason-container .services .score-card .score p {
    font-size: 14px;
    line-height: 20px;
  }

  #reason .reason-container .services .score-card .score #counter-1 p:first-child {
    width: 50px;
  }

  #reason .reason-container .services .score-card .score #counter-1 p:nth-child(2) {
    width: 30px;
  }

  #reason .reason-container .services .score-card .score #counter-2 p:first-child {
    width: 30px;
  }

  #reason .reason-container .services .score-card .score #counter-2 p:nth-child(2) {
    width: 50px;
  }

  #reason .reason-container .services .score-card .score #counter-3 p:nth-child(3) {
    width: 80px;
  }
}

@media (min-width: 1025px) and (max-width: 1254px) {
  #reason .reason-container .services .score-card .score .number p {
    font-size: 28px;
    line-height: 32px;
  }

  #reason .reason-container .services .score-card .score p {
    font-size: 14px;
    line-height: 20px;
  }

  #reason .reason-container .services .score-card .score {
    min-width: 120px;
  }

  #reason .reason-container .services .score-card .score #counter-1 p:first-child {
    width: 20px;
  }

  #reason .reason-container .services .score-card .score #counter-1 p:nth-child(2) {
    width: 30px;
  }

  #reason .reason-container .services .score-card .score #counter-2 p:first-child {
    width: 30px;
  }

  #reason .reason-container .services .score-card .score #counter-2 p:nth-child(2) {
    width: 50px;
  }

  #reason .reason-container .services .score-card .score #counter-3 p:nth-child(3) {
    width: 70px;
  }
}
