/* ── Custom Newsletter Bar ── */
.sio-newsletter {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 32px 0;
    border-bottom: 3px solid #f97316;
}
.sio-newsletter__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.sio-newsletter__text {
    flex: 1;
    min-width: 220px;
}
.sio-newsletter__text h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}
.sio-newsletter__text h3 i {
    color: #f97316;
    margin-right: 10px;
}
.sio-newsletter__text p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
.sio-newsletter__form {
    display: flex;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    border: 2px solid rgba(249,115,22,0.3);
}
.sio-newsletter__form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    color: #1e293b;
    font-family: inherit;
}
.sio-newsletter__form input[type="email"]::placeholder {
    color: #94a3b8;
}
.sio-newsletter__form button {
    padding: 14px 24px;
    background: #f97316;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sio-newsletter__form button:hover {
    background: #e06510;
}
.sio-newsletter__form button:disabled {
    opacity: 0.7;
    cursor: wait;
}
.sio-newsletter__msg {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    width: 100%;
    min-height: 18px;
}
.sio-newsletter__msg.success {
    color: #22c55e;
}
.sio-newsletter__msg.error {
    color: #f87171;
}
@media (max-width: 991px) {
    .sio-newsletter__inner {
        gap: 24px;
    }
}
@media (max-width: 767px) {
    .sio-newsletter {
        padding: 24px 0;
    }
    .sio-newsletter__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .sio-newsletter__form {
        max-width: 100%;
        min-width: 0;
    }
    .sio-newsletter__text h3 {
        font-size: 17px;
    }
}
