/* GGD Download Gate – Style */

.ggd-btn-download {
    display: inline-block;
    background: #1E4B8E;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.ggd-btn-download:hover { background: #163a70; }

/* Modal Overlay */
.ggd-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ggd-modal-inner {
    background: #fff;
    border-radius: 6px;
    padding: 36px 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.ggd-modal-inner h3 {
    margin: 0 0 8px;
    color: #1E4B8E;
    font-size: 20px;
}

.ggd-modal-inner p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.ggd-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
}
.ggd-modal-close:hover { color: #333; }

.ggd-modal-inner input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.ggd-modal-inner input[type="email"]:focus {
    outline: none;
    border-color: #1E4B8E;
}

.ggd-btn-submit {
    width: 100%;
    background: #1E4B8E;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.ggd-btn-submit:hover { background: #163a70; }
.ggd-btn-submit:disabled { background: #aaa; cursor: not-allowed; }

.ggd-msg {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
    min-height: 20px;
}
.ggd-msg.success { color: #2a7a2a; }
.ggd-msg.error   { color: #c0392b; }
