.cu-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8,15,26,.94), rgba(11,21,36,.92));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
    color: #eef5ff;
}
.cu-form__header h3 {
    margin: 6px 0 6px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.cu-form__header p,
.cu-form__note,
.cu-field small,
.cu-location-box small {
    color: #aeb7c7;
}
.cu-form__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    color: #32d8ff;
}
.cu-form__status i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #32d8ff;
    box-shadow: 0 0 12px #32d8ff;
}
.cu-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.cu-field {
    display: grid;
    gap: 8px;
}
.cu-field span,
.cu-location-box strong {
    font-weight: 700;
}
.cu-field input,
.cu-field select,
.cu-field textarea,
.cu-location-button {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    padding: 14px 15px;
    outline: none;
}
.cu-field input::placeholder,
.cu-field textarea::placeholder {
    color: #8f9db2;
}
.cu-field input:focus,
.cu-field select:focus,
.cu-field textarea:focus,
.cu-location-button:focus {
    border-color: rgba(50,216,255,.55);
    box-shadow: 0 0 0 3px rgba(50,216,255,.12);
}
.cu-location-box {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
}
.cu-location-button {
    max-width: 240px;
    background: linear-gradient(135deg, #32d8ff, #7767ff);
    color: #05101c;
    font-weight: 800;
    cursor: pointer;
}
.cu-location-result {
    margin: 0;
    color: #d6e4ff;
}
.cu-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #d6e4ff;
}
.cu-consent input {
    margin-top: 4px;
}
.cu-submit {
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #16b866, #10a157);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 14px 40px rgba(16,161,87,.22);
}
.cu-submit:hover {
    transform: translateY(-2px);
}
.cu-submit[disabled] {
    opacity: .7;
    cursor: wait;
}
.cu-message {
    min-height: 24px;
    font-weight: 700;
}
.cu-message.is-error {
    color: #ff9d9b;
}
.cu-message.is-success {
    color: #8ff0bf;
}
@media (max-width: 680px) {
    .cu-form {
        padding: 22px 18px;
    }
    .cu-form__grid {
        grid-template-columns: 1fr;
    }
    .cu-location-button {
        max-width: 100%;
    }
}
