.features {
  padding: 50px 50px;
  background: var(--off-white);
}
.stats-wrap {
  grid-template-columns: repeat(5, 1fr);
}

.testimonials {
  background: var(--white);
}

/* ════════════════════════════ AWARDS + PROMISE ════════════════════════════ */
.awards-section {
  padding: 50px 50px;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.award-box {
  background: var(--navy);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.award-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 60%);
  opacity: 0.14;
}

.award-inner {
  position: relative;
  z-index: 1;
  padding: 32px 30px;
}

.award-inner h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.award-inner h3 span {
  color: var(--orange);
}

.award-inner p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.award-badges-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.award-badge {
  background: rgba(240, 90, 40, 0.14);
  border: 1px solid rgba(240, 90, 40, 0.35);
  color: var(--orange-light);
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.award-badge .ab-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.promise-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.promise-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.promise-box h3 span {
  color: var(--orange);
}

.promise-box p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
}

.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

.p-check {
  width: 20px;
  height: 20px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

@media screen and (max-width: 768px) {
  .awards-section {
    padding: 50px 30px;
    grid-template-columns: 1fr;
  }
}