.eac-form-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.eac-form-title {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}
.eac-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.eac-row .eac-field { flex: 1; }
.eac-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.eac-field label {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .3rem;
    color: #333;
}
.eac-field input[type="text"],
.eac-field input[type="email"],
.eac-field input[type="tel"],
.eac-field select,
.eac-field textarea {
    padding: .6rem .8rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: .95rem;
    background: #fafafa;
    transition: border-color .2s;
    width: 100%;
    box-sizing: border-box;
}
.eac-field input:focus,
.eac-field select:focus,
.eac-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
}
.eac-field--multicheck .eac-checks {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .3rem;
}
.eac-check {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .85rem;
    font-weight: 400 !important;
    cursor: pointer;
    background: #f3f4f6;
    padding: .3rem .6rem;
    border-radius: 4px;
}
.eac-check input { margin: 0; cursor: pointer; }
.eac-consent {
    margin: 1rem 0;
    font-size: .85rem;
}
.eac-consent label {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    cursor: pointer;
}
.eac-consent input { margin-top: 2px; flex-shrink: 0; }
.eac-btn {
    display: inline-block;
    padding: .75rem 2rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, opacity .2s;
    width: 100%;
}
.eac-btn:hover { background: #1d4ed8; }
.eac-btn:disabled { opacity: .6; cursor: not-allowed; }
.eac-form-msg {
    min-height: 1.5rem;
    margin-bottom: .75rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 5px;
    padding: 0;
    transition: all .3s;
}
.eac-form-msg.eac-success {
    color: #166534;
    background: #dcfce7;
    padding: .75rem 1rem;
}
.eac-form-msg.eac-error {
    color: #991b1b;
    background: #fee2e2;
    padding: .75rem 1rem;
}
@media (max-width: 600px) {
    .eac-row { flex-direction: column; gap: 0; }
    .eac-form-wrap { padding: 1.25rem; }
}

/* ── Floating Help Button ──────────────────────────────────────────────── */
.eac-help-btn {
    position: fixed;
    bottom: 102px;
    right: 30px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px 12px 14px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37,99,235,.4);
    font-size: .9rem;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.eac-help-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37,99,235,.5);
}
.eac-help-btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    animation: eac-heartbeat 2s ease-in-out infinite;
}
@keyframes eac-heartbeat {
    0%, 100% { transform: scale(1); }
    14%       { transform: scale(1.2); }
    28%       { transform: scale(1); }
    42%       { transform: scale(1.12); }
    70%       { transform: scale(1); }
}

/* ── Help Modal ────────────────────────────────────────────────────────── */
.eac-help-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.eac-help-modal.eac-modal-open {
    display: flex;
}
.eac-help-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(2px);
    animation: eac-fade-in .2s ease;
}
.eac-help-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: eac-slide-up .25s ease;
}
.eac-help-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #6b7280;
    line-height: 0;
    border-radius: 50%;
    transition: background .15s, color .15s;
}
.eac-help-modal__close:hover {
    background: #f3f4f6;
    color: #111;
}
.eac-help-modal__close svg {
    width: 20px;
    height: 20px;
}
.eac-help-modal .eac-form-wrap {
    box-shadow: none;
    border-radius: 0;
    padding-top: 2.5rem;
}
@keyframes eac-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes eac-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .eac-help-btn__label { display: none; }
    .eac-help-btn { padding: 15px; border-radius: 50%; bottom: 102px; right: 20px; }
    .eac-help-btn__icon { width: 22px; height: 22px; }
    .eac-help-modal { align-items: flex-end; padding: 0; }
    .eac-help-modal__box { max-height: 92vh; border-radius: 16px 16px 0 0; }
}

/* ── Lead form (multi-step) ──────────────────────────────────────────────── */
.eac-lead-wrap {
    padding: 1.5rem 2rem 2rem;
    background: #f5f0e7;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.eac-steps-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.eac-steps-bar__fill {
    height: 100%;
    background: #2563eb;
    border-radius: 2px;
    width: 50%;
    transition: width .35s ease;
}
.eac-step--hidden { display: none; }
.eac-lead-title {
    margin: 0 0 .25rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
}
.eac-lead-sub {
    margin: 0 0 1.25rem;
    font-size: .88rem;
    color: #6b7280;
}
.eac-choice-group {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}
.eac-choice {
    flex: 1;
    min-width: 80px;
    padding: .55rem .75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: .9rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
    text-align: center;
    font-family: inherit;
}
.eac-choice:hover {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1d4ed8;
}
.eac-choice.selected {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}
.eac-choice-group--4 .eac-choice {
    min-width: 70px;
    font-size: .82rem;
    padding: .45rem .5rem;
}
.eac-field__label {
    display: block;
    font-size: .83rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .3rem;
}
.eac-input,
.eac-select {
    width: 100%;
    padding: .6rem .8rem;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    font-size: .95rem;
    background: #fafafa;
    color: #111;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color .2s;
}
.eac-input:focus,
.eac-select:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
}
.eac-disclaimer {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 7px;
    padding: .75rem 1rem;
    font-size: .82rem;
    color: #78350f;
    margin-bottom: 1.1rem;
    line-height: 1.45;
}
.eac-submit-row {
    display: flex;
    gap: .75rem;
    margin: 1rem 0 .5rem;
}
.eac-btn--next {
    display: block;
    width: 100%;
    padding: .75rem 1.5rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}
.eac-btn--next:hover { background: #1d4ed8; }
.eac-btn--primary {
    flex: 1;
    padding: .7rem 1rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, opacity .2s;
}
.eac-btn--primary:hover { background: #1d4ed8; }
.eac-btn--primary:disabled { opacity: .6; cursor: not-allowed; }
.eac-btn--ghost {
    padding: .7rem 1rem;
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s, background .15s;
    white-space: nowrap;
}
.eac-btn--ghost:hover { border-color: #9ca3af; background: #f9fafb; }
.eac-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 100%;
    padding: .65rem 1rem;
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s, background .15s, color .15s;
    margin-top: .5rem;
    box-sizing: border-box;
}
.eac-btn-call:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}
.eac-btn-call:disabled { opacity: .6; cursor: not-allowed; }
.eac-step--success {
    text-align: center;
    padding: 2rem 1rem;
}
.eac-success-icon {
    width: 56px;
    height: 56px;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 56px;
    margin: 0 auto 1rem;
}
.eac-success-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #166534;
}
.eac-lead-wrap .eac-consent {
    margin: .75rem 0 0;
    font-size: .83rem;
}
.eac-lead-wrap .eac-consent label {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    cursor: pointer;
    color: #374151;
}
.eac-lead-wrap .eac-consent input { margin-top: 2px; flex-shrink: 0; }
.eac-lead-wrap .eac-form-msg {
    min-height: 0;
    margin-top: .5rem;
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .eac-lead-wrap { padding: 1.25rem 1.25rem 1.5rem; }
    .eac-choice-group--4 .eac-choice { font-size: .78rem; padding: .4rem .35rem; }
    .eac-submit-row { flex-direction: column-reverse; }
    .eac-btn--ghost, .eac-btn--primary { width: 100%; }
}
