/* ─────────────────────────────────────────────
   migration-modernization.css
   BNSPIRE Technologies – Migration & Modernization Page
   ───────────────────────────────────────────── */

/* Banner */


.mm-highlight {
    color: #7c3aed;
}

/* State comparison cards */
.mm-state-card {
    padding: 28px;
    border-radius: 14px;
}

.mm-state-card--before {
    border-left: 4px solid #ef4444;
}

.mm-state-card--after {
    border-left: 4px solid #22c55e;
}

.mm-state-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ef4444;
    margin-bottom: 8px;
}

.mm-state-label--after {
    color: #22c55e;
}

.mm-state-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.mm-state-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #374151;
}

/* Arrow block */
.mm-arrow-block {
    font-size: 2rem;
    color: #7c3aed;
    opacity: 0.6;
}

/* Service section */
.mm-service-section {
    background: #fdf4ff;
}

.mm-area-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mm-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
}

.mm-area-icon {
    width: 50px;
    height: 50px;
    background: #ede9fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #7c3aed;
}

/* Roadmap */
.mm-roadmap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 60px;
}

.mm-roadmap::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #e9d5ff;
}

.mm-phase {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.mm-phase-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    left: -60px;
    top: 12px;
    z-index: 1;
}

.mm-phase-content {
    flex: 1;
    padding: 16px 20px;
}

.mm-phase-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 4px;
}

/* CTA */
.mm-cta-section {
    background: linear-gradient(135deg, #fae8ff 0%, #fdf4ff 100%);
    border-top: 1px solid #e9d5ff;
}