/* ================================
   PRIMARY NETWORK SCAN HERO
================================ */

.scan-hero {
  max-width: 960px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.scan-hero-inner h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.scan-hero-desc {
  max-width: 640px;
  margin: 0.6rem auto 1.6rem;
  color: #555;
  font-size: 1rem;
}

.scan-cta {
  display: inline-block;
  margin: 1.2rem 0;
  padding: 0.9rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.scan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.scan-hero-points {
  list-style: none;
  padding: 0;
  margin: 1.6rem auto 0;
  max-width: 520px;
  text-align: left;
  color: #444;
  line-height: 1.7;
}

.scan-hero-points li {
  margin-bottom: 0.4rem;
}

.scan-hero-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #777;
}

/* ================================
   SECONDARY TOOLS (DE-EMPHASISED)
================================ */

.secondary-tools {
  max-width: 960px;
  margin: 3rem auto 2rem;
  text-align: center;
}

.secondary-tools h3 {
  margin-bottom: 0.3rem;
}

.tool-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.tool-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tool-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transform: translateY(-2px);
  text-decoration: none;
}

.tool-card-icon { font-size: 28px; line-height: 1; }
.tool-card-title { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0; }
.tool-card-desc { font-size: 14px; color: #64748b; line-height: 1.5; margin: 0; flex: 1; }
.tool-card-cta { font-size: 13px; font-weight: 600; color: #1d4ed8; margin-top: 4px; }
