
.sitemap-page { padding-top: var(--nav-h, 78px); padding-bottom: 120px; background: #F8F9FB; min-height: 80vh; }
.sm-hero { padding: 80px 0 60px; text-align: center; }
.sm-eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue, #2F6BFF); margin-bottom: 16px; }
.sm-hero h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink, #0B1020); margin-bottom: 16px; line-height: 1.1; }
.sm-hero p { font-size: 18px; color: var(--muted, #4B5563); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.sm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.sm-card { background: #fff; border: 1px solid var(--line, #E2E4E9); border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(11, 16, 32, 0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sm-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11, 16, 32, 0.06); border-color: rgba(47, 107, 255, 0.2); }
.sm-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(47, 107, 255, 0.08); color: var(--blue, #2F6BFF); border-radius: 12px; margin-bottom: 24px; }
.sm-icon svg { width: 24px; height: 24px; }
.sm-card h2 { font-size: 22px; font-weight: 700; color: var(--ink, #0B1020); margin-bottom: 20px; letter-spacing: -0.01em; }
.sm-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.sm-list a { text-decoration: none; color: var(--muted, #4B5563); font-size: 15px; font-weight: 500; display: flex; align-items: center; transition: color 0.2s; }
.sm-list a::before { content: "→"; margin-right: 8px; font-family: monospace; font-size: 14px; opacity: 0; transform: translateX(-4px); transition: all 0.2s ease; color: var(--blue, #2F6BFF); }
.sm-list a:hover { color: var(--blue, #2F6BFF); }
.sm-list a:hover::before { opacity: 1; transform: translateX(0); }

@media (max-width: 900px) {
  .sm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sm-grid { grid-template-columns: 1fr; }
  .sm-card { padding: 30px; }
}
