.why {
  height: auto;
  padding: 36px 0;
  background: #fff;
}

.why .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.why .section-title h2 {
  margin: 0;
  font-size: clamp(26px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: #20252a;
}

.why .section-title h2:after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 4px;
  margin-left: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f0cd4c 0 78%, #60ac64 78%);
  vertical-align: .18em;
}

.why .featuregrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why .feature {
  min-width: 0;
  min-height: 130px;
  padding: 17px;
  border: 1px solid #e1e4e6;
  border-radius: 6px;
  background: #fff;
  transition: border-color .18s ease, transform .18s ease;
}

.why .feature:hover {
  border-color: #cbd0d3;
  transform: translateY(-1px);
}

.why .featuretop {
  display: flex;
  align-items: center;
  gap: 11px;
}

.why .featureicon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.why svg.featureicon {
  fill: none;
  stroke: #62ae65;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why .featureicon--custom {
  object-fit: contain;
}

.why .feature h3 {
  min-width: 0;
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.why .feature p {
  margin: 11px 0 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  color: #62696e;
  font-size: 13px;
  line-height: 1.52;
}

@media (max-width: 900px) {
  .why .featuregrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .why { padding: 28px 0; }
  .why .section-title { align-items: flex-start; gap: 14px; margin-bottom: 18px; }
  .why .section-title h2 { font-size: 20px; }
  .why .section-title h2:after { width: 42px; height: 3px; margin-left: 8px; }
  .why .featuregrid { grid-template-columns: minmax(0, 1fr); }
  .why .feature { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .why .feature { transition: none; }
  .why .feature:hover { transform: none; }
}
