/* ============================================================
   Estimate Florida – Chatbot Widget Styles  v1.0.1
   Fully scoped under #efc-chatbot-root.
   Professional dark-navy + orange construction brand.
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
#efc-chatbot-root {
    --efc-primary:       #e8630a;
    --efc-primary-dark:  #c4520a;
    --efc-primary-light: #fff3ec;
    --efc-navy:          #0f172a;
    --efc-navy-mid:      #1e3a5f;
    --efc-navy-light:    #1e293b;
    --efc-bg:            #ffffff;
    --efc-surface:       #f8fafc;
    --efc-border:        #e2e8f0;
    --efc-text:          #1e293b;
    --efc-muted:         #64748b;
    --efc-bot-bg:        #ffffff;
    --efc-bot-shadow:    0 1px 4px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.04);
    --efc-radius:        16px;
    --efc-shadow:        0 20px 60px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.12);
    --efc-z:             2147483647;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--efc-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Positioning ──────────────────────────────────────────── */
#efc-chatbot-root {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: var(--efc-z);
    /* flex keeps the launcher button from stretching full-width;
       overflow:visible lets the absolutely-positioned chat window
       render above the launcher without being clipped. */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow: visible;
}
#efc-chatbot-root.efc-position-bottom-left {
    right: auto;
    left: 24px;
}
#efc-chatbot-root.efc-position-bottom-center {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

/* ── Launcher Button ──────────────────────────────────────── */
.efc-launcher {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--efc-navy);
    color: #fff;
    border: none;
    border-radius: 56px;
    padding: 12px 20px 12px 16px;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(15,23,42,.40), 0 1px 4px rgba(15,23,42,.20);
    transition: transform .22s ease, box-shadow .22s ease, background .2s;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.efc-launcher:hover {
    background: var(--efc-navy-mid);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(15,23,42,.45), 0 2px 8px rgba(15,23,42,.25);
}
.efc-launcher:active { transform: translateY(-1px); }

.efc-launcher-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: var(--efc-primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform .2s;
}
.efc-launcher:hover .efc-launcher-icon { transform: scale(1.08); }

.efc-launcher-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.efc-launcher-label { font-size: 14px; font-weight: 700; letter-spacing: -.1px; }
.efc-launcher-sub   { font-size: 10px; color: rgba(255,255,255,.6); font-weight: 400; letter-spacing: .2px; }

.efc-launcher-close { display: none; font-size: 16px; opacity: .8; }

#efc-chatbot-root.efc-open .efc-launcher-text,
#efc-chatbot-root.efc-open .efc-launcher-icon { display: none; }
#efc-chatbot-root.efc-open .efc-launcher-close { display: flex; align-items: center; }
#efc-chatbot-root.efc-open .efc-launcher {
    padding: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    justify-content: center;
}

/* Pulse ring for new state */
.efc-launcher::before {
    content: '';
    position: absolute;
    top: -4px; right: -4px;
    width: 12px; height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: efcPulse 2.5s infinite;
}
#efc-chatbot-root.efc-open .efc-launcher::before { display: none; }

@keyframes efcPulse {
    0%,100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    50%      { transform: scale(1.15); opacity: .85; box-shadow: 0 0 0 5px rgba(34,197,94,.0); }
}

/* ── Chat Window ──────────────────────────────────────────── */
/* Absolutely positioned above the launcher so it never
   participates in layout — fixes the launcher being pushed
   off-screen on mobile (the old flex sibling approach added
   590 px of invisible space below the launcher).              */
.efc-chat-window {
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    width: 390px;
    max-width: calc(100vw - 20px);
    height: 590px;
    max-height: calc(100vh - 110px);
    background: var(--efc-bg);
    border-radius: 22px;
    box-shadow: var(--efc-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(.97);
    pointer-events: none;
    transition: opacity .28s cubic-bezier(.16,1,.3,1), transform .28s cubic-bezier(.16,1,.3,1);
    border: 1px solid rgba(255,255,255,.08);
}
/* Bottom-left: open to the left of the launcher */
#efc-chatbot-root.efc-position-bottom-left .efc-chat-window {
    right: auto;
    left: 0;
}
/* Bottom-center: centre the window over the launcher */
#efc-chatbot-root.efc-position-bottom-center .efc-chat-window {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(16px) scale(.97);
}
#efc-chatbot-root.efc-open .efc-chat-window {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
#efc-chatbot-root.efc-position-bottom-center.efc-open .efc-chat-window {
    transform: translateX(-50%) translateY(0) scale(1);
}
#efc-chatbot-root.efc-minimized .efc-chat-window {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* ── Header ───────────────────────────────────────────────── */
.efc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--efc-navy) 0%, var(--efc-navy-mid) 100%);
    color: #fff;
    flex-shrink: 0;
    position: relative;
}
/* Subtle top border accent */
.efc-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--efc-primary), #f97316, var(--efc-primary));
    border-radius: 22px 22px 0 0;
}

.efc-header-info { display: flex; align-items: center; gap: 12px; }
.efc-avatar {
    width: 40px; height: 40px;
    background: var(--efc-primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(232,99,10,.4);
}
.efc-header-text { display: flex; flex-direction: column; gap: 2px; }
.efc-header-name { font-size: 14px; font-weight: 700; letter-spacing: -.1px; }
.efc-header-sub  {
    font-size: 11px;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Online status dot */
.efc-online-dot {
    width: 7px; height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: efcGlow 2s ease-in-out infinite;
}
@keyframes efcGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    50%      { box-shadow: 0 0 0 4px rgba(34,197,94,.0); }
}

.efc-header-actions { display: flex; gap: 4px; }
.efc-btn-icon {
    background: rgba(255,255,255,.12);
    border: none;
    color: rgba(255,255,255,.85);
    width: 30px; height: 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
    padding: 0;
}
.efc-btn-icon:hover { background: rgba(255,255,255,.22); color: #fff; }
/* Force SVG visibility – some WordPress/Elementor themes override SVG with fill/display rules */
.efc-btn-icon svg {
    pointer-events: none;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    overflow: visible;
}

/* ── Offline banner ───────────────────────────────────────── */
.efc-offline-banner {
    background: #1e293b;
    color: #94a3b8;
    font-size: 12px;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: center;
    flex-shrink: 0;
}

/* ── Progress bar ─────────────────────────────────────────── */
.efc-progress-bar {
    height: 2px;
    background: var(--efc-border);
    flex-shrink: 0;
    overflow: hidden;
}
.efc-progress-fill {
    height: 2px;
    background: linear-gradient(90deg, var(--efc-primary), #f97316);
    transition: width .4s ease;
}

/* ── Messages ─────────────────────────────────────────────── */
.efc-messages {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* momentum scroll on iOS */
    padding: 18px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scroll-behavior: smooth;
    background: var(--efc-surface);
}
.efc-messages::-webkit-scrollbar { width: 4px; }
.efc-messages::-webkit-scrollbar-track { background: transparent; }
.efc-messages::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

/* Bubbles */
.efc-bubble-wrap { display: flex; align-items: flex-end; gap: 8px; max-width: 88%; }
.efc-bubble-wrap.efc-bot  { align-self: flex-start; }
.efc-bubble-wrap.efc-user { align-self: flex-end; flex-direction: row-reverse; }

.efc-bubble {
    padding: 10px 14px;
    border-radius: var(--efc-radius);
    font-size: 13.5px;
    line-height: 1.55;
    word-wrap: break-word;
    animation: efcFadeUp .2s ease both;
    max-width: 100%;
}
.efc-bubble-wrap.efc-bot .efc-bubble {
    background: var(--efc-bot-bg);
    color: var(--efc-text);
    border-bottom-left-radius: 4px;
    box-shadow: var(--efc-bot-shadow);
    border: 1px solid var(--efc-border);
}
.efc-bubble-wrap.efc-user .efc-bubble {
    background: var(--efc-navy-mid);
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(30,58,95,.3);
}

.efc-bubble-avatar {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--efc-navy) 0%, var(--efc-navy-mid) 100%);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    margin-bottom: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.efc-bubble-wrap.efc-user .efc-bubble-avatar { display: none; }

/* Typing indicator */
.efc-typing {
    display: flex; align-items: center; gap: 5px;
    padding: 12px 16px;
    background: var(--efc-bot-bg);
    border-radius: var(--efc-radius);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--efc-border);
    box-shadow: var(--efc-bot-shadow);
    align-self: flex-start;
    width: 56px;
}
.efc-typing span {
    width: 6px; height: 6px;
    background: #94a3b8;
    border-radius: 50%;
    display: block;
    animation: efcBounce 1.3s infinite;
}
.efc-typing span:nth-child(2) { animation-delay: .16s; }
.efc-typing span:nth-child(3) { animation-delay: .32s; }

@keyframes efcBounce {
    0%,60%,100% { transform: translateY(0);  opacity: .5; }
    30%          { transform: translateY(-6px); opacity: 1; }
}
@keyframes efcFadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Input Area ───────────────────────────────────────────── */
.efc-input-area {
    padding: 12px 14px 16px;
    border-top: 1px solid var(--efc-border);
    background: var(--efc-bg);
    flex-shrink: 0;
}

/* Button grid (choices) */
.efc-btn-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.efc-choice-btn {
    background: #fff;
    border: 1.5px solid var(--efc-border);
    color: var(--efc-navy-light);
    padding: 9px 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .14s, background .14s, color .14s, box-shadow .14s, transform .1s;
    text-align: left;
    line-height: 1.35;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.efc-choice-btn:hover {
    border-color: var(--efc-primary);
    background: var(--efc-primary-light);
    color: var(--efc-primary);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(232,99,10,.15);
}
.efc-choice-btn.efc-selected {
    border-color: var(--efc-primary);
    background: var(--efc-primary-light);
    color: var(--efc-primary);
}
.efc-choice-btn:active { transform: translateY(0); }

/* Multi-select prefix */
.efc-choice-btn.efc-multi::before { content: '☐  '; font-size: 13px; }
.efc-choice-btn.efc-multi.efc-selected::before { content: '☑  '; color: var(--efc-primary); }

/* Confirm button */
.efc-confirm-multi {
    background: var(--efc-navy);
    color: #fff;
    border: none;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    width: 100%;
    transition: background .15s, transform .1s;
    letter-spacing: .2px;
}
.efc-confirm-multi:hover { background: var(--efc-navy-mid); }
.efc-confirm-multi:active { transform: scale(.99); }

/* Text / Phone / Email inputs */
.efc-text-row { display: flex; gap: 8px; }
.efc-text-input {
    flex: 1;
    height: 46px;
    border: 1.5px solid var(--efc-border);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    color: var(--efc-text);
    background: var(--efc-surface);
    outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
    -webkit-appearance: none;
    appearance: none;
}
.efc-text-input:focus {
    border-color: var(--efc-navy-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30,58,95,.12);
}
.efc-text-input.efc-error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.efc-error-msg { color: #ef4444; font-size: 11.5px; margin-top: 5px; display: block; }

.efc-send-btn {
    width: 46px; height: 46px;
    background: var(--efc-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .15s, transform .12s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(232,99,10,.35);
}
.efc-send-btn:hover { background: var(--efc-primary-dark); box-shadow: 0 4px 12px rgba(232,99,10,.45); }
.efc-send-btn:active { transform: scale(.94); }
.efc-send-btn svg {
    pointer-events: none;
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: #ffffff !important;
    stroke-width: 2.5 !important;
    flex-shrink: 0;
    overflow: visible;
}

/* Textarea */
.efc-textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid var(--efc-border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--efc-text);
    background: var(--efc-surface);
    resize: vertical;
    min-height: 82px;
    outline: none;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.efc-textarea:focus {
    border-color: var(--efc-navy-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30,58,95,.1);
}

/* Date input */
.efc-date-input {
    height: 46px;
    border: 1.5px solid var(--efc-border);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    color: var(--efc-text);
    background: var(--efc-surface);
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;
}
.efc-date-input:focus {
    border-color: var(--efc-navy-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30,58,95,.1);
}

/* File upload */
.efc-upload-area {
    border: 2px dashed var(--efc-border);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    background: var(--efc-surface);
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.efc-upload-area:hover, .efc-upload-area.efc-drag-over {
    border-color: var(--efc-primary);
    background: var(--efc-primary-light);
    box-shadow: 0 0 0 4px rgba(232,99,10,.08);
}
.efc-upload-icon { font-size: 30px; margin-bottom: 8px; }
.efc-upload-text { font-size: 13px; color: var(--efc-muted); line-height: 1.6; }
.efc-upload-text strong { color: var(--efc-primary); cursor: pointer; }
.efc-file-input  { position: absolute; opacity: 0; width: 0; height: 0; }
.efc-upload-progress { background: #e2e8f0; border-radius: 99px; height: 5px; margin-top: 12px; overflow: hidden; display: none; }
.efc-upload-bar { height: 5px; background: linear-gradient(90deg, var(--efc-primary), #f97316); border-radius: 99px; width: 0; transition: width .3s; }
.efc-upload-skip { color: var(--efc-muted); font-size: 12px; margin-top: 9px; cursor: pointer; text-decoration: underline; display: block; transition: color .15s; }
.efc-upload-skip:hover { color: var(--efc-navy-light); }

/* Consent */
.efc-consent-box {
    background: var(--efc-surface);
    border: 1.5px solid var(--efc-border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12.5px;
    color: var(--efc-muted);
    margin-bottom: 10px;
    max-height: 76px;
    overflow-y: auto;
    line-height: 1.55;
}
.efc-consent-check-row {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px;
}
.efc-consent-check-row input[type="checkbox"] {
    width: 17px; height: 17px;
    cursor: pointer; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--efc-primary);
}
.efc-consent-check-row label { font-size: 13px; cursor: pointer; line-height: 1.45; }

.efc-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--efc-primary) 0%, var(--efc-primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s, transform .12s, box-shadow .15s;
    letter-spacing: .2px;
    box-shadow: 0 4px 14px rgba(232,99,10,.35);
}
.efc-submit-btn:hover:not(:disabled) {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232,99,10,.45);
}
.efc-submit-btn:active:not(:disabled) { transform: translateY(0); }
.efc-submit-btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }

/* Confirmation screen */
.efc-confirmation { text-align: center; padding: 6px 0 2px; }
.efc-confirm-actions { display: flex; gap: 8px; flex-direction: column; margin-top: 4px; }
.efc-confirm-wa {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .15s, transform .1s;
    box-shadow: 0 2px 8px rgba(37,211,102,.3);
}
.efc-confirm-wa:hover { background: #1ebe5d; transform: translateY(-1px); }

/* ── Footer ───────────────────────────────────────────────── */
.efc-footer {
    text-align: center;
    font-size: 10px;
    color: #cbd5e1;
    padding: 7px 10px;
    border-top: 1px solid var(--efc-border);
    flex-shrink: 0;
    background: var(--efc-bg);
}
.efc-footer a { color: #94a3b8; text-decoration: none; transition: color .15s; }
.efc-footer a:hover { color: var(--efc-navy-light); text-decoration: underline; }

/* ── Mobile – bottom sheet ────────────────────────────────── */
@media (max-width: 600px) {

    /* Root: nudge in from the edge */
    #efc-chatbot-root {
        bottom: 16px;
        right: 14px;
    }
    #efc-chatbot-root.efc-position-bottom-left  { right: auto; left: 14px; }
    #efc-chatbot-root.efc-position-bottom-center { left: 50%; right: auto; transform: translateX(-50%); }

    /* Bottom sheet panel.
       IMPORTANT: never use the `inset` shorthand here — it is unsupported in
       iOS Safari < 14.1 and Chrome < 87.  Without it the browser falls back to
       the desktop rule `bottom: calc(100% + 14px)` which places the window
       off-screen above the viewport.  Use explicit longhand properties.       */
    .efc-chat-window {
        position: fixed !important;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;               /* anchor to viewport bottom */
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 90vh !important;            /* vh fallback for old iOS */
        height: 90dvh !important;           /* dvh = accounts for browser chrome */
        max-height: 90vh !important;
        max-height: 90dvh !important;
        border-radius: 22px 22px 0 0 !important;
        box-shadow: 0 -8px 40px rgba(0,0,0,.25) !important;
        /* Slide-up animation: hidden below viewport when closed */
        opacity: 1 !important;
        transform: translateY(100%) !important;
        transition: transform .32s cubic-bezier(.16,1,.3,1) !important;
        /* Safe-area for notched phones (iPhone X+) */
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    #efc-chatbot-root.efc-open .efc-chat-window {
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    /* Drag handle indicator */
    .efc-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 4px;
        background: rgba(255,255,255,.25);
        border-radius: 99px;
    }

    /* Momentum scroll in message list */
    .efc-messages {
        -webkit-overflow-scrolling: touch;
    }

    /* Larger tap targets (Apple HIG ≥ 44 pt) */
    .efc-launcher          { padding: 11px 16px 11px 14px; }
    .efc-launcher-label    { font-size: 13px; }
    .efc-choice-btn        { font-size: 13px; padding: 10px 12px; min-height: 44px; }
    .efc-text-input        { height: 48px; font-size: 16px; } /* 16px prevents iOS zoom */
    .efc-send-btn          { height: 48px; width: 48px; }
    .efc-btn-icon          { width: 36px; height: 36px; }
    .efc-confirm-multi     { padding: 13px 18px; }
    .efc-submit-btn        { padding: 15px; }
}

/* ── Accessibility ────────────────────────────────────────── */
.efc-chat-window:focus { outline: none; }
.efc-choice-btn:focus-visible { outline: 2px solid var(--efc-primary); outline-offset: 2px; }
.efc-text-input:focus-visible  { border-color: var(--efc-navy-mid); }
.efc-submit-btn:focus-visible  { outline: 2px solid var(--efc-primary); outline-offset: 3px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
