:root {
  --green:       #51be78;
  --green-dark:  #039237;
  --blue-dark:   #233d63;
  --blue-navy:   #31496b;
  --blue-light:  #0f457a;
  --red:         #AE2220;
  --text-body:   #7f8897;
  --bg-light:    #F7FAFD;
  --bg-card:     #ffffff;
  --border:      rgba(127,136,151,0.15);
  --shadow:      0 0 40px rgba(82,85,90,0.1);
}
.sitemap .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.sitemap .section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 14px;
}
.sitemap .section-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 44px; height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* ── GRID ────────────────────────────────────────────── */
.sitemap .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

/* ── CARD ────────────────────────────────────────────── */
.sitemap .card {
  background: var(--bg-card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sitemap .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(35,61,99,0.13);
}
.sitemap .card-header {
  background: var(--blue-dark);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sitemap .card-header i { font-size: 20px; color: var(--green); }
.sitemap .card-header h3 { font-size: 15px; font-weight: 600; }
.sitemap .card-body { padding: 6px 0; }
.sitemap .card-body ul { list-style: none; }
.sitemap .card-body ul li { border-bottom: 1px solid var(--border); }
.sitemap .card-body ul li:last-child { border-bottom: none; }
.sitemap .card-body ul li a {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
  padding: 11px 20px;
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.sitemap .card-body ul li a:hover {
  background: var(--bg-light);
  color: var(--blue-dark);
}
.sitemap .card-body ul li a i {
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
}
.sitemap .badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.sitemap .badge-green { background: #e8f8ef; color: var(--green-dark); }
.sitemap .badge-blue  { background: #e6edf6; color: var(--blue-light); }
.sitemap .badge-red   { background: #fde8e8; color: var(--red); }
.sitemap .badge-gray  { background: #f0f2f5; color: var(--text-body); }

/* ── HIGHLIGHT CARD (home / priority) ───────────────── */
.sitemap .card-highlight .card-header { background: var(--green); }
.sitemap .card-highlight .card-header i { color: #fff; }