/* CloudxBear — виджет ИИ-помощника + быстрая заявка */

html:not(.cookie-consent-given) .back-to-top {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

:root {
    --cx-ai-navy: #0a264e;
    --cx-ai-navy-soft: #1a3a6e;
    --cx-ai-accent: #4b8bdc;
    --cx-ai-accent-glow: rgba(75, 139, 220, 0.45);
    --cx-ai-surface: #ffffff;
    --cx-ai-muted: #5a6b85;
    --cx-ai-border: rgba(10, 38, 78, 0.1);
    --cx-ai-user-bg: linear-gradient(135deg, #dce8f8 0%, #c7d6ee 100%);
    --cx-ai-bot-bg: #f4f7fc;
    --cx-ai-shadow: 0 24px 64px rgba(10, 38, 78, 0.22), 0 8px 24px rgba(10, 38, 78, 0.12);
    --cx-ai-radius: 20px;
    --cx-ai-font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ── FAB ── */
.cx-assistant-fab {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--cx-ai-navy) 0%, var(--cx-ai-navy-soft) 100%);
    color: #fff;
    font-family: var(--cx-ai-font);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 28px rgba(10, 38, 78, 0.35);
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transform: translateZ(0);
    animation: cxFabEnter 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

body.cookie-notice-active .cx-assistant-fab {
    bottom: calc(150px + env(safe-area-inset-bottom, 0px));
}

.cx-assistant-fab::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--cx-ai-accent), transparent 60%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .cx-assistant-fab {
        transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease;
    }

    .cx-assistant-fab:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 14px 36px rgba(10, 38, 78, 0.42);
    }

    .cx-assistant-fab:hover::before {
        opacity: 0.5;
    }
}

.cx-assistant-fab i {
    font-size: 1.15rem;
}

@media (hover: hover) and (pointer: fine) {
    .cx-assistant-fab i {
        filter: drop-shadow(0 0 6px var(--cx-ai-accent-glow));
    }
}

.cx-assistant-panel.open ~ .cx-assistant-fab,
body:has(.cx-assistant-panel.open) .cx-assistant-fab {
    transform: scale(0.92);
    opacity: 0.85;
}

@keyframes cxFabEnter {
    from { opacity: 0; transform: translateY(16px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Panel ── */
.cx-assistant-panel {
    position: fixed;
    bottom: 96px;
    left: 28px;
    z-index: 9001;
    width: min(420px, calc(100vw - 20px));
    height: min(72vh, 620px);
    max-height: calc(100vh - 120px);
    background: var(--cx-ai-surface);
    border-radius: var(--cx-ai-radius);
    box-shadow: var(--cx-ai-shadow);
    border: 1px solid var(--cx-ai-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--cx-ai-font);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.94);
    transform-origin: left bottom;
    transition:
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
        visibility 0.32s;
    pointer-events: none;
}

.cx-assistant-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ── Header ── */
.cx-assistant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(120deg, var(--cx-ai-navy) 0%, #123566 55%, var(--cx-ai-navy-soft) 100%);
    color: #fff;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.cx-assistant-header::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(75, 139, 220, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.cx-assistant-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.cx-assistant-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.cx-assistant-brand-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.cx-assistant-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    line-height: 1;
    opacity: 0.85;
    margin-top: 4px;
}

.cx-assistant-status-dot {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5ee08a;
    box-shadow: 0 0 8px rgba(94, 224, 138, 0.8);
    animation: cxStatusPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.cx-assistant-status-label {
    display: block;
    line-height: 1;
    padding-top: 0;
}

@keyframes cxStatusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

#cx-assistant-close {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    color: #fff !important;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 1.2rem !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

#cx-assistant-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05);
}

/* ── Tabs ── */
.cx-assistant-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 10px;
    background: #eef2f8;
    border-bottom: 1px solid var(--cx-ai-border);
    flex-shrink: 0;
}

.cx-assistant-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cx-ai-muted);
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: inherit;
}

.cx-assistant-tab.active {
    background: #fff;
    color: var(--cx-ai-navy);
    box-shadow: 0 2px 8px rgba(10, 38, 78, 0.08);
}

.cx-assistant-tab[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ── Body / panes ── */
.cx-assistant-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.cx-assistant-pane[data-pane="ai"] {
    position: relative;
}

.cx-assistant-pane {
    display: none;
    flex: 1;
    min-height: 0;
    flex-direction: column;
}

.cx-assistant-pane.active {
    display: flex;
}

/* ── Chat scroll area (THE scroll container) ── */
.cx-ai-chat-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 14px 12px 8px;
    overscroll-behavior: contain;
}

.cx-ai-chat-scroll::-webkit-scrollbar {
    width: 5px;
}

.cx-ai-chat-scroll::-webkit-scrollbar-thumb {
    background: rgba(10, 38, 78, 0.15);
    border-radius: 99px;
}

.cx-ai-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cx-ai-disclaimer {
    margin: 4px 0 0;
    padding: 8px 4px 2px;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--cx-ai-muted);
    opacity: 0.85;
    flex-shrink: 0;
}

/* ── Message rows ── */
.cx-ai-msg-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    animation: cxMsgEnter 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cx-ai-msg-row.user {
    flex-direction: row-reverse;
}

@keyframes cxMsgEnter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cx-ai-avatar {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cx-ai-navy), var(--cx-ai-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px var(--cx-ai-accent-glow);
}

.cx-ai-msg {
    max-width: 82%;
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

.cx-ai-msg-row.bot .cx-ai-msg {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.cx-ai-msg-body {
    padding: 11px 14px;
    white-space: pre-wrap;
    line-height: 1.5;
}

.cx-ai-msg-row.user .cx-ai-msg {
    white-space: pre-wrap;
}

.cx-ai-msg-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0 10px 10px;
    box-sizing: border-box;
}

.cx-ai-msg-actions:empty {
    display: none;
}

.cx-ai-msg-row.user .cx-ai-msg {
    background: var(--cx-ai-user-bg);
    color: var(--cx-ai-navy);
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(10, 38, 78, 0.06);
}

.cx-ai-msg-row.bot .cx-ai-msg {
    background: var(--cx-ai-bot-bg);
    border: 1px solid var(--cx-ai-border);
    color: var(--cx-ai-navy);
    border-bottom-left-radius: 4px;
}

.cx-ai-msg.bot.streaming .cx-ai-msg-body::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    vertical-align: text-bottom;
    background: var(--cx-ai-accent);
    animation: cxAiCursor 0.7s step-end infinite;
}

@keyframes cxAiCursor {
    50% { opacity: 0; }
}

/* ── Typing indicator ── */
.cx-ai-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0 8px;
    animation: cxMsgEnter 0.3s ease both;
}

.cx-ai-typing[hidden] {
    display: none !important;
}

.cx-ai-typing-dots {
    display: flex;
    gap: 4px;
    padding: 12px 14px;
    background: var(--cx-ai-bot-bg);
    border: 1px solid var(--cx-ai-border);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}

.cx-ai-typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cx-ai-accent);
    animation: cxTypingDot 1.2s ease-in-out infinite;
}

.cx-ai-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.cx-ai-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes cxTypingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

/* ── Scroll-to-bottom button ── */
.cx-ai-scroll-down {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    z-index: 2;
    border: none;
    background: #fff;
    color: var(--cx-ai-navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(10, 38, 78, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    font-family: inherit;
}

.cx-ai-scroll-down.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cx-ai-scroll-down i {
    margin-right: 4px;
    font-size: 0.7rem;
}

/* ── Show on site button ── */
.cx-ai-show-on-site {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cx-ai-accent) 0%, #3a7fd4 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px var(--cx-ai-accent-glow);
    box-sizing: border-box;
}

.cx-ai-show-on-site::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}

.cx-ai-show-on-site:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--cx-ai-accent-glow);
}

.cx-ai-leave-application {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a7a4c 0%, #2ea86a 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(46, 168, 106, 0.35);
    box-sizing: border-box;
}

.cx-ai-leave-application::before {
    content: '\f1d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}

.cx-ai-leave-application:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(46, 168, 106, 0.45);
}

/* ── Consent ── */
.cx-ai-consent {
    margin: 0 12px 8px;
    padding: 14px;
    background: linear-gradient(135deg, #f8fafd 0%, #eef3fa 100%);
    border-radius: 14px;
    border: 1px solid var(--cx-ai-border);
    font-size: 0.86rem;
    color: var(--cx-ai-muted);
    line-height: 1.45;
    flex-shrink: 0;
}

.cx-ai-consent a {
    color: var(--cx-ai-accent);
    text-decoration: underline;
}

.cx-ai-consent a:hover {
    color: var(--cx-ai-navy);
}

.cx-ai-consent button {
    margin-top: 12px;
    width: 100%;
}

/* ── Toolbar ── */
.cx-ai-toolbar {
    display: flex;
    justify-content: flex-end;
    padding: 4px 12px 8px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.cx-ai-toolbar button {
    background: none;
    border: none;
    color: var(--cx-ai-muted);
    cursor: pointer;
    opacity: 0.7;
    font-family: inherit;
    transition: opacity 0.2s ease;
}

.cx-ai-toolbar button:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ── Input form ── */
.cx-ai-form {
    display: none;
    gap: 8px;
    padding: 10px 12px 14px;
    border-top: 1px solid var(--cx-ai-border);
    background: #fafbfd;
    flex-shrink: 0;
    align-items: flex-end;
}

.cx-ai-form.visible {
    display: flex;
}

.cx-ai-form textarea {
    flex: 1;
    resize: none;
    min-height: 44px;
    max-height: 120px;
    padding: 11px 14px;
    border: 1.5px solid #d6dded;
    border-radius: 14px;
    font-size: 0.9rem;
    font-family: inherit;
    line-height: 1.4;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cx-ai-form textarea:focus {
    outline: none;
    border-color: var(--cx-ai-accent);
    box-shadow: 0 0 0 3px rgba(75, 139, 220, 0.15);
}

.cx-ai-form button {
    align-self: flex-end;
    border: none;
    background: linear-gradient(135deg, var(--cx-ai-accent) 0%, #3a7fd4 100%);
    color: #fff;
    border-radius: 14px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px var(--cx-ai-accent-glow);
    flex-shrink: 0;
}

.cx-ai-form button:hover:not(:disabled) {
    transform: scale(1.05);
}

.cx-ai-form button:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}

.cx-ai-form button.sending {
    animation: cxSendPulse 0.8s ease-in-out infinite;
}

@keyframes cxSendPulse {
    0%, 100% { box-shadow: 0 4px 12px var(--cx-ai-accent-glow); }
    50% { box-shadow: 0 4px 20px rgba(75, 139, 220, 0.7); }
}

/* ── Navigation toast (не перекрывает чат) ── */
.cx-ai-nav-toast {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 10px 0;
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: linear-gradient(90deg, rgba(10, 38, 78, 0.94), rgba(59, 110, 190, 0.92));
    color: #fff;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    transition: opacity 0.22s ease, max-height 0.25s ease, padding 0.25s ease, margin 0.25s ease;
    pointer-events: none;
}

.cx-ai-nav-toast.active {
    opacity: 1;
    max-height: 40px;
    padding: 8px 12px;
    margin-bottom: 4px;
}

.cx-ai-nav-toast[hidden] {
    display: none !important;
}

.cx-ai-nav-toast i {
    font-size: 0.72rem;
    opacity: 0.9;
    animation: cxNavToastArrow 0.9s ease-in-out infinite;
}

@keyframes cxNavToastArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

#cx-ai-nav-path {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Quick request form ── */
.cx-quick-form {
    padding: 14px 12px;
    overflow-y: auto;
}

.cx-quick-form .form-group {
    margin-bottom: 12px;
}

.cx-quick-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--cx-ai-navy);
    font-size: 0.86rem;
}

.cx-quick-form input,
.cx-quick-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d6dded;
    border-radius: 12px;
    font-size: 0.9rem;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.cx-quick-form input:focus,
.cx-quick-form textarea:focus {
    outline: none;
    border-color: var(--cx-ai-accent);
}

.cx-quick-form .form-checkbox {
    display: flex;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--cx-ai-muted);
    margin: 10px 0 14px;
    line-height: 1.4;
}

.cx-quick-form .primary-btn {
    width: 100%;
}

/* ── Page highlight (agentic) ── */
.ai-highlight {
    outline: 3px solid var(--cx-ai-accent);
    outline-offset: 4px;
    animation: aiHighlightPulse 1.2s ease-in-out 3;
    scroll-margin-top: 100px;
}

@keyframes aiHighlightPulse {
    0%, 100% { outline-color: var(--cx-ai-accent); }
    50% { outline-color: #7eb3f0; }
}

#contact-form.ai-form-prefilled .ai-prefilled,
#contact-form.ai-form-prefilled .ai-prefilled:focus {
    background: rgba(75, 139, 220, 0.08);
    border-color: var(--cx-ai-accent, #4b8bdc);
    box-shadow: 0 0 0 1px rgba(75, 139, 220, 0.25);
}

#contact-form.ai-form-prefilled::before {
    content: 'Поля заполнены ИИ-помощником — проверьте и отправьте';
    display: block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(75, 139, 220, 0.12);
    color: #0a264e;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cx-assistant-fab {
        bottom: 18px;
        left: 18px;
        animation: none;
        opacity: 1;
        transform: translateZ(0);
    }

    body.cookie-notice-active .cx-assistant-fab {
        bottom: calc(170px + env(safe-area-inset-bottom, 0px));
    }

    body.cookie-notice-active .cx-assistant-panel:not(.cx-keyboard-open) {
        bottom: calc(250px + env(safe-area-inset-bottom, 0px));
    }

    .cx-assistant-fab::before {
        display: none;
    }

    .cx-assistant-fab:active {
        transform: scale(0.96);
    }

    .cx-assistant-panel {
        left: 10px;
        right: 10px;
        width: auto;
    }

    .cx-assistant-panel.open:not(.cx-keyboard-open) {
        top: max(10px, env(safe-area-inset-top));
        bottom: max(76px, calc(68px + env(safe-area-inset-bottom, 0px)));
        height: auto;
        max-height: none;
    }

    .cx-assistant-panel.open.cx-keyboard-open {
        top: var(--cx-panel-top, 8px);
        left: 10px;
        right: 10px;
        bottom: auto !important;
        width: auto;
        height: var(--cx-panel-height, calc(100dvh - 16px));
        max-height: var(--cx-panel-height, calc(100dvh - 16px));
        transform: none;
        transition: none;
    }

    body.cx-assistant-keyboard-open .cx-assistant-fab {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .cx-assistant-panel.cx-keyboard-open .cx-ai-form {
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    }

    /* iOS не зумит поля ≥16px — иначе «прыгает» весь виджет при фокусе */
    .cx-ai-form textarea,
    .cx-quick-form input,
    .cx-quick-form textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cx-assistant-fab span {
        display: none;
    }
    .cx-assistant-fab {
        padding: 15px;
        border-radius: 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cx-assistant-panel,
    .cx-ai-msg-row,
    .cx-ai-nav-toast,
    .cx-assistant-fab,
    .cx-ai-nav-icon {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    .cx-ai-chat-scroll {
        scroll-behavior: auto;
    }
}
