/* === CLAIR CALLBACK WIDGET — RechtsErmittlung === */
.callback-widget {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #0a1628 100%);
    border-radius: 16px;
    border: 1px solid rgba(201,168,76,0.3);
    position: relative;
    overflow: hidden;
}
.callback-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.callback-widget .callback-icon {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.callback-widget h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.callback-widget .callback-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.callback-widget .cb-field {
    margin-bottom: 0.75rem;
}
.callback-widget input[type="text"],
.callback-widget input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.callback-widget input:focus {
    outline: none;
    border-color: #c9a84c;
    background: rgba(255,255,255,0.1);
}
.callback-widget input::placeholder {
    color: rgba(255,255,255,0.4);
}
.cb-lang-select {
    margin: 1rem 0;
}
.cb-lang-select > span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}
.cb-lang-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.cb-lang-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.cb-lang-btn input[type="radio"] {
    display: none;
}
.cb-lang-btn span {
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.3);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all 0.2s;
    background: rgba(255,255,255,0.03);
}
.cb-lang-btn input:checked + span {
    background: rgba(201,168,76,0.2);
    border-color: #c9a84c;
    color: #c9a84c;
    font-weight: 600;
}
.cb-lang-btn:hover span {
    border-color: rgba(201,168,76,0.6);
    color: rgba(255,255,255,0.9);
}
.cb-notice {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.7rem 0.9rem;
    background: #ffe066;
    border-radius: 8px;
    border-left: 4px solid #e6b800;
    line-height: 1.5;
    text-align: center;
}
.cb-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #c9a84c, #b8963f);
    color: #0a1628;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.cb-submit-btn:hover {
    background: linear-gradient(135deg, #d4b35a, #c9a84c);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.cb-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.cb-msg {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.cb-msg-success {
    background: rgba(46,125,50,0.15);
    color: #a5d6a7;
    border: 1px solid rgba(46,125,50,0.3);
}
.cb-msg-error {
    background: rgba(183,28,28,0.15);
    color: #ef9a9a;
    border: 1px solid rgba(183,28,28,0.3);
}
