/* ========== Telco United Lead Form (replaces builder forms) ========== */
.tu-form-wrap {
    max-width: 560px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 46, 91, 0.12);
    padding: 36px 32px;
    border: 1px solid #e5ebf2;
    font-family: 'Lato', 'Open Sans', sans-serif;
    position: relative;
    z-index: 2;
}
.tu-form-wrap h3 {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #002e5b;
    margin: 0 0 6px;
    line-height: 1.3;
}
.tu-form-wrap .tu-form-sub {
    font-size: 14px;
    color: #6b7a8b;
    margin: 0 0 22px;
    line-height: 1.5;
}
.tu-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.tu-form-row > * {
    flex: 1;
    min-width: 0;
}
.tu-form-wrap input:not([type="checkbox"]):not([type="radio"]),
.tu-form-wrap textarea,
.tu-form-wrap select {
    width: 100%;
    padding: 13px 15px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    background: #f6f9fc;
    border: 1px solid #d8e0ea;
    border-radius: 6px;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.tu-form-wrap input:not([type="checkbox"]):not([type="radio"]):focus,
.tu-form-wrap textarea:focus,
.tu-form-wrap select:focus {
    outline: none;
    border-color: #188bf6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(24, 139, 246, 0.12);
}
.tu-form-wrap input::placeholder,
.tu-form-wrap textarea::placeholder {
    color: #9aa6b4;
}
.tu-form-wrap textarea {
    min-height: 100px;
    resize: vertical;
    font-family: 'Lato', sans-serif;
}
.tu-form-wrap .tu-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 16px;
    font-size: 12px;
    color: #6b7a8b;
    line-height: 1.5;
}
.tu-form-wrap .tu-consent input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
    width: 16px !important;
    height: 16px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #188bf6;
    background: initial;
    border: initial;
    box-shadow: none;
}
.tu-form-wrap .tu-consent label {
    cursor: pointer;
    user-select: none;
}
.tu-form-wrap .tu-consent a {
    color: #188bf6;
    text-decoration: underline;
}
.tu-form-wrap button[type="submit"] {
    width: 100%;
    padding: 14px 20px;
    background: #188bf6;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    margin-top: 4px;
}
.tu-form-wrap button[type="submit"]:hover {
    background: #104CBA;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(24, 139, 246, 0.3);
}
.tu-form-wrap button[type="submit"]:disabled {
    background: #9aa6b4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.tu-form-wrap .tu-success {
    text-align: center;
    padding: 30px 10px;
    color: #002e5b;
}
.tu-form-wrap .tu-success .tu-check {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: #e8f4ff;
    color: #188bf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.tu-form-wrap .tu-success h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #002e5b;
    margin: 0 0 8px;
}
.tu-form-wrap .tu-success p {
    font-size: 14px;
    color: #6b7a8b;
    margin: 0;
    line-height: 1.5;
}
.tu-form-wrap .tu-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 12px;
}
@media (max-width: 600px) {
    .tu-form-wrap { padding: 24px 20px; }
    .tu-form-row { flex-direction: column; gap: 0; }
}
