.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(53, 58, 69, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-y: auto;
    padding-block: 30px;
}

.backdrop::-webkit-scrollbar {
    display: none;
}

.backdrop .modal {
    margin-top: 100px;
    background: #060918;
    border-radius: 10px;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: white;
    width: 90%;
    max-width: 500px;
}

.backdrop .modal .header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid #353A45;
    padding-bottom: 16px;
}

.backdrop .modal .header h2 {
    font-size: 16px;
}

.backdrop .modal .header p {
    font-size: 12px;
    color: #9CA0AB;
}

.backdrop .modal .price {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.backdrop .modal .benefits {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-block: 16px;
}

.backdrop .modal .benefits i {
    font-size: 18px;
    color: #E41827;
}

.backdrop .modal button.subscribe-btn {
    color: white;
    background: #E41827;
    border-radius: 8px;
    padding: 8px 10px;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.backdrop .modal button.subscribe-btn:hover {
    opacity: .5;
}

.backdrop .modal .close {
    text-align: center;
    color: #9CA0AB;
    cursor: pointer;
}

.backdrop .modal .form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.backdrop .modal .form .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.backdrop .modal .form .form-group label {
    color: #9CA0AB;
    font-size: 14px;
}

.backdrop .modal .form .form-group select {
    border: 1px solid #353A45;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    background: transparent;
    outline: none;
    padding: 10px;
    color: #9CA0AB;
}