.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    padding: 20px;
    z-index: var(--z-modal);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-contact);
    padding: 45px 35px;
    text-align: center;
    animation: fadeInUp 0.35s ease;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.12);
    color: var(--color-primary);
    font-size: 34px;
}

.modal-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--color-heading-dark);
}

.modal-box p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.modal-box p strong {
    color: var(--color-primary);
}
