/*
 * Accolade Why Choose + Numbers
 * Version: 1.0.0
 */

.accolade-why-choose-stats,
.accolade-why-choose-stats * {
  box-sizing: border-box;
}

.accolade-why-choose-stats {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--awcs-section-bg, #f7f7f7);
  padding:
    var(--awcs-section-pad-top, 96px)
    var(--awcs-section-pad-right, 0px)
    var(--awcs-section-pad-bottom, 96px)
    var(--awcs-section-pad-left, 0px);
  font-family: "DM Sans", Arial, sans-serif;
  color: #848484;
}

.accolade-why-choose-stats__container {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: var(--awcs-content-width, 1340px);
  margin: 0 auto;
}

.accolade-why-choose-stats__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 64px;
}

.accolade-why-choose-stats--reversed .accolade-why-choose-stats__intro {
  order: 2;
}

.accolade-why-choose-stats--reversed .accolade-why-choose-stats__panel {
  order: 1;
}

.accolade-why-choose-stats__intro-inner {
  width: 100%;
  max-width: 570px;
}

.accolade-why-choose-stats__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #1d82ea;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.accolade-why-choose-stats__label-dots {
  position: relative;
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 14px;
}

.accolade-why-choose-stats__label-dots span {
  position: absolute;
  top: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.accolade-why-choose-stats__label-dots span:first-child {
  left: 0;
  background: #1d82ea;
}

.accolade-why-choose-stats__label-dots span:last-child {
  left: 10px;
  background: #10387e;
}

.accolade-why-choose-stats__heading {
  max-width: 640px;
  margin: 0;
  color: #062250;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.accolade-why-choose-stats__description {
  max-width: 590px;
  margin: 24px 0 0;
  color: #666f7d;
  font-size: 1rem;
  line-height: 1.68;
}

.accolade-why-choose-stats__trust-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.accolade-why-choose-stats__trust-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(6, 34, 80, 0.11);
}

.accolade-why-choose-stats__trust-item:last-child {
  border-bottom: 1px solid rgba(6, 34, 80, 0.11);
}

.accolade-why-choose-stats__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #e7f0ff;
  color: #1d82ea;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.accolade-why-choose-stats__trust-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.accolade-why-choose-stats__trust-item:hover .accolade-why-choose-stats__trust-icon {
  transform: translateY(-3px);
}

.accolade-why-choose-stats__trust-copy {
  display: block;
  min-width: 0;
}

.accolade-why-choose-stats__trust-title {
  display: block;
  margin: 0;
  color: #062250;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.accolade-why-choose-stats__trust-text {
  display: block;
  margin-top: 5px;
  color: #848484;
  font-size: 0.92rem;
  line-height: 1.5;
}

.accolade-why-choose-stats__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 15px 35px;
  border: 1px solid #10387e;
  border-radius: 0;
  background: #10387e;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.accolade-why-choose-stats__cta:hover,
.accolade-why-choose-stats__cta:focus-visible {
  border-color: #1d82ea;
  background: #1d82ea;
  color: #fff;
  transform: scale(0.96);
}

.accolade-why-choose-stats__cta:focus-visible {
  outline: 3px solid rgba(29, 130, 234, 0.34);
  outline-offset: 4px;
}

.accolade-why-choose-stats__cta-arrow {
  transition: transform 0.3s ease;
}

.accolade-why-choose-stats__cta:hover .accolade-why-choose-stats__cta-arrow,
.accolade-why-choose-stats__cta:focus-visible .accolade-why-choose-stats__cta-arrow {
  transform: translateX(4px);
}

.accolade-why-choose-stats__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  padding:
    var(--awcs-panel-pad-top, 44px)
    var(--awcs-panel-pad-right, 44px)
    var(--awcs-panel-pad-bottom, 44px)
    var(--awcs-panel-pad-left, 44px);
  border-radius: 0;
  background: var(--awcs-panel-bg, #062250);
  box-shadow: 0 22px 52px rgba(6, 34, 80, 0.17);
}

.accolade-why-choose-stats__panel::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  z-index: -1;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(24deg);
}

.accolade-why-choose-stats__panel::after {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  z-index: -2;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(29, 130, 234, 0.22) 0%, rgba(29, 130, 234, 0) 68%);
}

.accolade-why-choose-stats__panel-pattern {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: -1;
  width: 92px;
  height: 92px;
  opacity: 0.34;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1.25px, transparent 1.25px);
  background-size: 12px 12px;
}

.accolade-why-choose-stats__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.accolade-why-choose-stats__stat {
  position: relative;
  min-width: 0;
  min-height: 218px;
  padding: 32px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.32s ease, background-color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.accolade-why-choose-stats__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: var(--awcs-accent, #1d82ea);
  transition: width 0.32s ease;
}

.accolade-why-choose-stats__stat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

.accolade-why-choose-stats__stat:hover::before {
  width: 100%;
}

.accolade-why-choose-stats__number {
  margin: 0;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.55rem, 4vw, 4.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.accolade-why-choose-stats__stat-title {
  margin: 20px 0 0;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.accolade-why-choose-stats__stat-description {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.52;
}

@media (max-width: 1024px) {
  .accolade-why-choose-stats {
    padding:
      var(--awcs-section-pad-tablet-top, 80px)
      var(--awcs-section-pad-tablet-right, 0px)
      var(--awcs-section-pad-tablet-bottom, 80px)
      var(--awcs-section-pad-tablet-left, 0px);
  }

  .accolade-why-choose-stats__container {
    width: 97%;
  }

  .accolade-why-choose-stats__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .accolade-why-choose-stats--reversed .accolade-why-choose-stats__intro,
  .accolade-why-choose-stats--reversed .accolade-why-choose-stats__panel {
    order: initial;
  }

  .accolade-why-choose-stats__intro-inner {
    max-width: 780px;
  }

  .accolade-why-choose-stats__panel {
    padding:
      var(--awcs-panel-pad-tablet-top, 38px)
      var(--awcs-panel-pad-tablet-right, 38px)
      var(--awcs-panel-pad-tablet-bottom, 38px)
      var(--awcs-panel-pad-tablet-left, 38px);
  }
}

@media (max-width: 767px) {
  .accolade-why-choose-stats {
    padding:
      var(--awcs-section-pad-mobile-top, 64px)
      var(--awcs-section-pad-mobile-right, 0px)
      var(--awcs-section-pad-mobile-bottom, 64px)
      var(--awcs-section-pad-mobile-left, 0px);
  }

  .accolade-why-choose-stats__container {
    width: 95%;
  }

  .accolade-why-choose-stats__layout {
    gap: 30px;
  }

  .accolade-why-choose-stats__intro-inner {
    max-width: 100%;
  }

  .accolade-why-choose-stats__label {
    margin-bottom: 15px;
  }

  .accolade-why-choose-stats__heading {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
    line-height: 1.02;
  }

  .accolade-why-choose-stats__description {
    margin-top: 20px;
    line-height: 1.6;
  }

  .accolade-why-choose-stats__trust-list {
    margin-top: 26px;
  }

  .accolade-why-choose-stats__trust-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .accolade-why-choose-stats__trust-icon {
    width: 38px;
    height: 38px;
  }

  .accolade-why-choose-stats__cta {
    width: 100%;
    margin-top: 28px;
  }

  .accolade-why-choose-stats__panel {
    padding:
      var(--awcs-panel-pad-mobile-top, 24px)
      var(--awcs-panel-pad-mobile-right, 20px)
      var(--awcs-panel-pad-mobile-bottom, 24px)
      var(--awcs-panel-pad-mobile-left, 20px);
  }

  .accolade-why-choose-stats__panel-pattern {
    top: 14px;
    right: 12px;
    width: 70px;
    height: 70px;
  }

  .accolade-why-choose-stats__stats-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }

  .accolade-why-choose-stats__stat {
    min-height: 0;
    padding: 28px 24px 26px;
  }

  .accolade-why-choose-stats__number {
    font-size: clamp(2.6rem, 14vw, 3.65rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .accolade-why-choose-stats *,
  .accolade-why-choose-stats *::before,
  .accolade-why-choose-stats *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
