.signup-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}

.signup-form .input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    color: #1a1a1a;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.signup-form .input::placeholder {
    color: #a0aec0;
}

.signup-form .input:focus {
    background-color: #ffffff;
    border-color: #01568c;
}

.signup-form .btn {
    width: 100%;
    height: 50px;
    margin-top: 4px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #01568c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.signup-form .btn:hover {
    opacity: 0.9;
}

.signup-form .btn:active {
    transform: scale(0.99);
}
.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.lead-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 25, .72);
    backdrop-filter: blur(2px);
}

.lead-popup__box {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    color: #111827;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
    animation: leadPopupIn .28s ease-out;
}

@keyframes leadPopupIn {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
}

.lead-popup__close:hover { color: #4b5563; }

.lead-popup__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f79e1b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-popup__icon svg { width: 34px; height: 34px; fill: #fff; }

.lead-popup__title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
}

.lead-popup__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
}

.lead-popup__cta {
    display: inline-block;
    margin-top: 22px;
    padding: 13px 26px;
    border-radius: 10px;
    background: #f79e1b;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.lead-popup__cta:hover { background: #e58a05; }
