/* Trial warning modal - intercepts free trial CTA clicks */
.sg-trial-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.sg-trial-overlay.active {
    display: flex;
}
.sg-trial-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
}
.sg-trial-box h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #097C87;
}
.sg-trial-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}
.sg-trial-cta {
    display: inline-block;
    background: #FCA47C;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
}
.sg-trial-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.sg-trial-cancel {
    display: block;
    margin: 12px auto 0;
    font-size: 14px;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.sg-trial-cancel:hover {
    color: #555;
}
