#ioe7319-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12,12,12,.96);
    color: white;
    z-index: 9999;
    font-family: Arial, sans-serif;
    border-top: 1px solid rgba(255,255,255,.08);
}

.ioe7319-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 7vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ioe7319-label {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.ioe7319-signatures {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.ioe7319-actions {
    display: flex;
    gap: 12px;
}

.ioe7319-footer-btn {
    min-height: 48px;
    border-radius: 7px;
    padding: 0 24px;
    border: 1px solid transparent;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.ioe7319-red {
    background: #d51f1f;
    color: white;
}

.ioe7319-dark {
    background: linear-gradient(#3b3b3b, #232323);
    border-color: #545454;
    color: white;
}

.ioe7319-date {
    font-weight: 700;
    font-size: 14px;
}

.ioe7319-countdown {
    display: flex;
    gap: 10px;
}

.ioe7319-timebox {
    min-width: 64px;
    padding: 7px 8px;
    border-radius: 7px;
    background: #171717;
    border: 1px solid #303030;
    text-align: center;
}

.ioe7319-timebox span {
    display: block;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.ioe7319-timebox small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    text-transform: uppercase;
}

#ioe7319-sign-modal-overlay,
#ioe7319-paper-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 24px;
}

.ioe7319-modal {
    position: relative;
    max-width: 560px;
    width: 100%;
    background: white;
    color: #111827;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.ioe7319-paper-modal {
    max-width: 750px;
}

.ioe7319-close {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: white;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
}

.ioe7319-kicker {
    color: #b91c1c;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .24em;
    font-size: 12px !important;
}

.ioe7319-modal h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-top: 0;
}

.ioe7319-modal p {
    font-size: 15px;
    line-height: 1.55;
}

.ioe7319-modal-btn {
    width: 100%;
    margin-top: 10px;
    padding: 13px 16px;
    border-radius: 10px;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

.ioe7319-light {
    background: white;
    border: 1px solid #d1d5db;
    color: #111827;
}

.ioe7319-pink {
    background: #fee2e2;
    border: 1px solid #b91c1c;
    color: #991b1b;
}

.ioe7319-black {
    background: #111827;
    color: white;
}

#ioe7319-form {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#ioe7319-form input {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
}

.ioe7319-hidden {
    display: none !important;
}

.ioe7319-circle-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px auto;
}

.ioe7319-ring {
    transform: rotate(-90deg);
    width: 120px;
    height: 120px;
}

.ioe7319-ring-bg,
.ioe7319-ring-progress {
    fill: none;
    stroke-width: 8;
}

.ioe7319-ring-bg {
    stroke: #e5e7eb;
}

.ioe7319-ring-progress {
    stroke: #b91c1c;
    stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 326.7;
    animation: ioe7319Ring 10s linear forwards;
}

@keyframes ioe7319Ring {
    to { stroke-dashoffset: 0; }
}

#ioe7319-popup-countdown {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
}

.ioe7319-paper-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: #b91c1c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.ioe7319-address {
    background: #f3f4f6;
    border-left: 5px solid #b91c1c;
    border-radius: 10px;
    padding: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.55;
    text-align: center;
}

.ioe7319-free-mail {
    font-weight: 900;
    font-style: italic;
}

.ioe7319-small {
    font-size: 12px !important;
    color: #6b7280;
}

@media (max-width: 900px) {
    .ioe7319-footer-inner {
        flex-wrap: wrap;
        padding: 12px 18px;
    }

    .ioe7319-actions {
        width: 100%;
    }

    .ioe7319-footer-btn {
        flex: 1;
    }

    .ioe7319-countdown {
        width: 100%;
        justify-content: space-between;
    }
}
