/* ============================================================
   Packagly — why-choose-us.css  (split from style.css)
   Depends on: common.css (variables, reset, icon helpers)
   Responsive @media rules live in responsive.css
   ============================================================ */

/* ============================================================
   WHY CHOOSE US (features strip)
============================================================ */
.features-section {
  background: #ffffff;
  padding: 20px 0 20px;
}
.features-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #e7ece8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 40, 30, 0.05);
}
.feature-col {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-left: 1px solid #e7ece8;
}
.feature-col:nth-child(5n + 1) {
  border-left: none; /* first cell of each row */
}
.f-ico {
  flex: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.f-ico .icon {
  width: 28px;
  height: 28px;
}
.f-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #16241c;
  line-height: 1.15;
}
.feature-sub {
  font-size: 12px;
  color: #7d8a82;
  line-height: 1.3;
}

/* responsive: 5 -> 3 -> 2 columns */
