.features-section {
  background: #eeece8;
  padding: 88px 80px 96px;
}

.features-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #111;
  text-align: center;
  margin-bottom: 72px;
  line-height: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 64px;
  column-gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feat-icon-wrap {
  width: 100px;
  height: 100px;
  background: rgba(0,0,0,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}

.feat-card:hover .feat-icon-wrap {
  background: rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.feat-icon-wrap svg {
  width: 44px;
  height: 44px;
  color: #111;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  margin-bottom: 12px;
}

.feat-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0,0,0,0.55);
  line-height: 1.75;
  max-width: 280px;
}

@media (max-width: 860px) {
  .features-section {
    padding: 64px 40px 72px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

@media (max-width: 540px) {
  .features-section {
    padding: 52px 24px 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }
}
