/* ===== Tools showcase cards on home ===== */
.tools-section { padding: 70px 24px; background: #fff; }
.tool-card-link { text-decoration: none; color: inherit; display: block; }
.tool-card-promo {
  background: #fff; border: 1px solid var(--border);
  padding: 32px; border-radius: 20px;
  transition: .28s; height: 100%;
  position: relative; overflow: hidden;
}
.tool-card-promo::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(25,135,84,.08), transparent 70%);
  border-radius: 50%; transform: translate(40%, -40%);
  transition: .35s;
}
.tool-card-link:hover .tool-card-promo {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.1);
  border-color: transparent;
}
.tool-card-link:hover .tool-card-promo::before { transform: translate(20%, -20%) scale(1.4); }
.tool-card-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  font-size: 28px; color: #fff; margin-bottom: 18px;
}
.tool-card-icon.green { background: linear-gradient(135deg, #198754, #20c997); }
.tool-card-icon.purple { background: linear-gradient(135deg, #6366f1, #ec4899); }
.tool-card-promo h4 { font-weight: 800; margin-bottom: 8px; }
.tool-card-promo p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.tool-card-cta { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
