/* ── Hero ── */
.ms-hero-sm {
background: var(--brand);
padding: 48px 0 56px;
text-align: center;
}
.ms-hero-sm__eyebrow {
display: inline-flex; align-items: center; gap: 6px;
background: rgba(255,255,255,0.12); color: #c8d8f0;
font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.ms-hero-sm__title {
font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: #fff;
line-height: 1.15; margin-bottom: 10px;
}
.ms-hero-sm__title span { color: var(--gold); }
.ms-hero-sm__sub { color: #9db8d8; font-size: 15px; margin-bottom: 28px; }

.ms-stats-bar { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.ms-stats-bar__item { text-align: center; }
.ms-stats-bar__num { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--gold); }
.ms-stats-bar__label { font-size: 12px; color: #9db8d8; margin-top: 2px; }

/* ── Card Grid (keeping original design) ── */
.ms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.ms-type-card {
background: var(--white); border: 1px solid var(--border); border-radius: 16px;
padding: 24px; transition: all 0.3s ease; text-decoration: none; color: inherit;
display: flex; flex-direction: column;
}
.ms-type-card:hover {
transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); border-color: #000;
}

/* Icon box */
.ms-type-card__icon {
width: 120px; height: 120px; border-radius: 12px;
background: #f5f5f5; display: flex; align-items: center; justify-content: center;
margin-bottom: 16px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.ms-type-card:hover .ms-type-card__icon { background: #1a3c6e; color: #fff; }

.ms-type-card__icon-img {
width: 90px; height: 90px; object-fit: cover; border-radius: 8px;
opacity: 0; transition: opacity 0.3s ease; position: relative; z-index: 1;
}
.ms-type-card__icon-img.loaded { opacity: 1; }

.ms-type-card__icon i {
font-size: 24px; color: #525252; transition: color 0.3s ease; position: relative; z-index: 1;
}
.ms-type-card:hover .ms-type-card__icon i { color: #fff; }

/* Skeleton - only inside icon box */
.ms-type-card__icon-skeleton {
position: absolute; inset: 0; z-index: 0;
background: linear-gradient(90deg, #e8e8e8 25%, #dcdcdc 50%, #e8e8e8 75%);
background-size: 200% 100%; animation: ms-shimmer 1.4s infinite;
}
@keyframes ms-shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}

/* Card body */
.ms-type-card__title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ms-type-card__desc {
font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px;
flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ms-type-card__footer {
display: flex; align-items: center; justify-content: space-between;
padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px;
}
.ms-type-card__count { color: var(--muted); display: flex; align-items: center; gap: 6px; }
.ms-type-card__arrow { color: #000; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ── Info Section ── */
.ms-info-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.ms-info-card {
background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
padding: 24px; text-align: center;
}
.ms-info-card__icon {
width: 48px; height: 48px; border-radius: 10px; background: var(--brand-light);
color: var(--brand); display: flex; align-items: center; justify-content: center;
margin: 0 auto 16px; font-size: 20px;
}
.ms-info-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.ms-info-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Empty ── */
.ms-empty {
text-align: center; padding: 64px 20px; background: var(--surface);
border-radius: var(--radius-xl); border: 1px dashed var(--border);
}
.ms-empty i { font-size: 48px; color: #cbd5e1; margin-bottom: 16px; display: block; }
.ms-empty h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.ms-empty p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* ── CTA ── */
.ms-cta-bar {
background: var(--brand); padding: 56px 20px; text-align: center;
margin: 48px 0; border-radius: var(--radius-xl);
}
.ms-cta-bar h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ms-cta-bar p { color: #9db8d8; font-size: 15px; margin-bottom: 24px; }

.ms-btn {
display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
border-radius: 100px; font-family: 'Sora', sans-serif; font-size: 14px;
font-weight: 600; text-decoration: none; transition: all 0.2s; border: none;
}
.ms-btn--white { background: #fff; color: var(--brand); }
.ms-btn--white:hover { background: var(--brand-light); }
.ms-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.ms-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.ms-btn--accent { background: var(--accent); color: #fff; }
.ms-btn--accent:hover { background: #c73030; }
.ms-btn--dark { background: #000; color: #fff; }
.ms-btn--dark:hover { background: #1a1a1a; }

@media (max-width: 768px) {
.ms-hero-sm { padding: 36px 0 40px; }
.ms-grid { grid-template-columns: 1fr; }
.ms-stats-bar { gap: 24px; }
.ms-stats-bar__num { font-size: 20px; }
}