/* /tools/ landing page */
.tools-index { background: #fff; padding-top: 52px; }
.tools-index .container { max-width: 900px; }

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .tools-grid { grid-template-columns: 1fr 1fr; } }

.tool-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.tool-card:hover {
  border-color: var(--navy);
  box-shadow: 0 20px 45px -28px rgba(15, 23, 42, .35);
  transform: translateY(-2px);
}
.tool-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #EFF4FF;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tool-card h2 { font-size: 1.2rem; margin: 0 0 8px; }
.tool-card p { color: var(--text-muted); font-size: .95rem; margin: 0 0 14px; line-height: 1.55; }
.tool-card__go { font-weight: 600; font-size: .9rem; color: var(--orange); }

.tools-cta {
  margin-top: 34px;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
}
.tools-cta h3 { color: #fff; font-size: 1.25rem; margin-bottom: 8px; }
.tools-cta p { color: #CBD5E1; font-size: .96rem; margin: 0 auto 18px; max-width: 460px; }
