/* ============================================================
   PLACEMENTS PAGE — Rich & Beautiful Styles
   assets/css/pages/placements.css
   ============================================================ */

/* ── Placement Stats Strip ── */
.mm-stats-strip {
    background: #0f172a;
    padding: 48px clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
}

.mm-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.mm-stats-inner {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .mm-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mm-stat {
    text-align: center;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.mm-stat:hover {
    background: rgba(0, 82, 255, 0.14);
    border-color: rgba(0, 82, 255, 0.35);
    transform: translateY(-4px);
}

.mm-stat__number {
    font-family: 'Calistoga', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    background: linear-gradient(135deg, #0052ff, #4d7cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
}

.mm-stat__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ── Support Services Grid ── */
.mm-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.mm-feature-card {
    background: var(--mm-card, #ffffff);
    border: 1px solid var(--mm-border, #e2e8f0);
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.mm-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 82, 255, 0.12);
    border-color: rgba(0, 82, 255, 0.25);
}

.mm-icon--sm {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0052ff, #4d7cff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(0, 82, 255, 0.28);
    margin-bottom: 20px;
}

.mm-feature-card__title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--mm-fg, #0f172a);
    margin-bottom: 8px;
}

.mm-feature-card__body {
    font-size: 0.9rem;
    color: var(--mm-muted-fg, #64748b);
    line-height: 1.65;
}

/* ── Recruiting Companies Grid ── */
.mm-company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.mm-company-pill {
    background: var(--mm-card, #ffffff);
    border: 1px solid var(--mm-border, #e2e8f0);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.mm-company-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #0052ff, #4d7cff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mm-company-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 82, 255, 0.14);
    border-color: rgba(0, 82, 255, 0.25);
}

.mm-company-pill:hover::before {
    opacity: 1;
}

.mm-company-pill__name {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--mm-fg, #0f172a);
    margin-bottom: 4px;
}

.mm-company-pill__sub {
    font-size: 0.825rem;
    color: var(--mm-muted-fg, #64748b);
}
