/* ── SITEMAP GRID ── */
.sitemap-wrap { background: var(--bg); padding: 64px 40px 88px; }
.sitemap-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sm-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 28px 26px;
  transition: box-shadow .25s, transform .25s;
}
.sm-card:hover { box-shadow: 0 12px 40px rgba(26,110,245,.08); transform: translateY(-4px); }

.sm-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.sm-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px;
  background: #eef3fe; display: flex; align-items: center; justify-content: center;
}
.sm-icon svg { width: 19px; height: 19px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sm-title { font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }

.sm-links { display: flex; flex-direction: column; gap: 2px; }
.sm-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 0; font-size: 13.5px; font-weight: 600; color: var(--muted);
  border-top: 1px solid var(--border);
  transition: color .15s, padding-left .15s;
}
.sm-links .sm-link:first-child { border-top: none; }
.sm-link:hover { color: var(--blue); padding-left: 4px; }
.sm-link svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .15s, transform .15s;
  flex-shrink: 0;
}
.sm-link:hover svg { opacity: 1; transform: translateX(0); }

/* ── CTA ── */
.cta-wrap { background: var(--white); padding: 0 40px 88px; text-align: center; }
.cta-wrap h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -.02em; }
.cta-wrap p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .sitemap-wrap { padding: 48px 20px 64px; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .cta-wrap { padding: 0 20px 64px; }
}
@media (max-width: 560px) {
  .sitemap-grid { grid-template-columns: 1fr; }
}
