.msn-banner {
    --msn-gradient-start: #1e293b;
    --msn-gradient-end: #0f172a;
    --msn-accent: #22c55e;
    --msn-text: #fff;
    --msn-radius: 12px;
    --msn-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    background: linear-gradient(135deg, var(--msn-gradient-start), var(--msn-gradient-end));
    padding: 1.5rem;
    border-radius: var(--msn-radius);
    box-shadow: var(--msn-shadow);
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.msn-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(34, 197, 94, 0.15));
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
}

.msn-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.msn-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.msn-icon {
    background: var(--msn-accent);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.msn-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.msn-text {
    color: var(--msn-text);
}

.msn-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    color: white;
}

.msn-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.msn-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.msn-benefit svg {
    width: 16px;
    height: 16px;
    color: var(--msn-accent);
    flex-shrink: 0;
}

.msn-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.msn-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--msn-accent);
    color: white;
    border: none;
    border-radius: var(--msn-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.msn-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
    background: #16a34a;
}

.msn-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.msn-subtext {
    font-size: 0.75rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .msn-container {
        flex-direction: column;
        text-align: center;
    }

    .msn-content {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .msn-text h2 {
        font-size: 1.25rem;
    }

    .msn-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .msn-benefit {
        justify-content: center;
    }

    .msn-button-wrapper {
        width: 100%;
        align-items: center;
        padding: 0 1rem;
    }

    .msn-button {
        width: 90%;
        max-width: 300px;
        justify-content: center;
    }

    .msn-banner::before {
        width: 100%;
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 70%);
    }
}