.features {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 24px;
}

.features-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: transform .2s ease, border-color .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  box-shadow: 0 10px 28px var(--blue-dim);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dim);
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 14px;
}

[data-theme="dark"] .feature-icon {
  color: var(--blue-xl);
}

.feature-title {
  font-size: .96rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: .82rem;
  color: var(--text2);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .features,
  .pricing,
  .features-grid {
    grid-template-columns: 1fr;
  }
}