.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--card);
    border: 1px solid var(--orange);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(255, 158, 27, .2);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 158, 27, .05);
}

.modal-header h3 {
    margin: 0;
    font-family: var(--fd);
    font-size: .75rem;
    letter-spacing: 3px;
}

.modal-close {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.modal-close:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 158, 27, .1);
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body strong {
    font-family: var(--fm);
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-q {
    font-family: var(--fd) !important;
    color: var(--orange) !important;
    font-size: .7rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
    text-transform: uppercase;
}

.faq-a {
    margin: 0 !important;
    color: #a0a5ab;
}