.lcf-consultation-panel {
    --lcf-navy: #071627;
    --lcf-navy-soft: #0d2034;
    --lcf-gold-a: #f7d985;
    --lcf-gold-b: #b77a22;
    --lcf-white: #ffffff;
    --lcf-muted: #c9d2df;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 34px 30px 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        var(--lcf-navy);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    box-sizing: border-box;
}

.lcf-consultation-form,
.lcf-consultation-form * {
    box-sizing: border-box;
}

.lcf-consultation-form {
    display: grid;
    gap: 15px;
    margin: 0;
}

.lcf-consultation-form h2 {
    margin: 0 0 12px;
    color: var(--lcf-white);
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
}

.lcf-consultation-form label {
    display: block;
    margin: 0;
}

.lcf-consultation-form label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.lcf-consultation-form input,
.lcf-consultation-form select,
.lcf-consultation-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    background: var(--lcf-white);
    color: #172132;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lcf-consultation-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #25344a 50%),
        linear-gradient(135deg, #25344a 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 22px,
        calc(100% - 16px) 22px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.lcf-consultation-form textarea {
    min-height: 128px;
    resize: vertical;
}

.lcf-consultation-form input:focus,
.lcf-consultation-form select:focus,
.lcf-consultation-form textarea:focus {
    border-color: var(--lcf-gold-a);
    box-shadow: 0 0 0 3px rgba(247, 217, 133, 0.32);
}

.lcf-consultation-form button {
    min-height: 54px;
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--lcf-gold-a) 0%, #d7a548 42%, var(--lcf-gold-b) 100%);
    color: #111827;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: filter 160ms ease, transform 160ms ease;
}

.lcf-consultation-form button:hover,
.lcf-consultation-form button:focus {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.lcf-consultation-form button:disabled {
    cursor: wait;
    filter: grayscale(0.2) brightness(0.9);
    transform: none;
}

.lcf-confidentiality {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 2px 0 0;
    color: var(--lcf-muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

.lcf-confidentiality span {
    flex: 0 0 auto;
    font-size: 0;
}

.lcf-confidentiality span::before {
    content: "\1F512";
    font-size: 13px;
}

.lcf-status {
    min-height: 20px;
    margin: 0;
    color: var(--lcf-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.lcf-status.is-error {
    color: #ffd0d0;
}

.lcf-status.is-success {
    color: #d9f8de;
}

.lcf-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 520px) {
    .lcf-consultation-panel {
        max-width: none;
        padding: 28px 20px 24px;
    }

    .lcf-consultation-form h2 {
        font-size: 24px;
    }
}
