/* ========================
   CSS VARIABLES
   ======================== */
:root {
    --bs-primary: #3b82f6;
    --bs-primary-rgb: 59, 130, 246;
    --bs-secondary: #8b5cf6;
    --bs-secondary-rgb: 139, 92, 246;
    --bs-success: #10b981;
    --bs-success-rgb: 16, 185, 129;
    --bs-info: #06b6d4;
    --bs-info-rgb: 6, 182, 212;
    --bs-warning: #f59e0b;
    --bs-warning-rgb: 245, 158, 11;
    --bs-danger: #ef4444;
    --bs-danger-rgb: 239, 68, 68;
    --bs-light: #f4f6fe;
    --bs-light-rgb: 248, 250, 252;
    --bs-dark: #1e293b;
    --bs-dark-rgb: 30, 41, 59;
    --bs-gray-50: #f8fafc;
    --bs-gray-100: #f1f5f9;
    --bs-gray-200: #e2e8f0;
    --bs-gray-300: #cbd5e1;
    --bs-gray-400: #94a3b8;
    --bs-gray-500: #64748b;
    --bs-gray-600: #475569;
    --bs-gray-700: #334155;
    --bs-gray-800: #1e293b;
    --bs-gray-900: #0f172a;
    --bs-header-link-color: rgb(84, 84, 84);
    --login-blue-bg: rgb(43, 86, 245);
    --site-bg-right-content: rgb(244, 246, 254);
    --login-blue-border-color: rgb(43, 86, 245);
    --login-blue-color: rgb(255, 255, 255);
    --hs-primary-txt: #545454;
    --bs-link-hover-color-rgb: 84, 84, 84;
    --brand: #2B56F5;
    --brand-2: #50A7FD;
    --grad-brand: linear-gradient(-33.42deg, var(--brand) 17.478%, var(--brand-2) 87.619%);
    --surface-100: #E0E6FD;
    --bs-heading-color: rgb(84, 84, 84);
    --bs-body-bg: rgb(244, 246, 254);
    --bs-header-bg: rgb(255, 255, 255);
    --bs-body-color: rgb(84, 84, 84);
    --transition-speed: 0.15s;
    --text-600: #545454;
    --bs-link-color: #fff;
}

/* ========================
   GLOBAL FONT OVERRIDE
   ======================== */
* {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    transition: 0.15s !important;
    scrollbar-color: var(--login-blue-bg) var(--site-bg-right-content);
    scrollbar-width: thin;
}

body,
html,
input,
textarea,
select,
button,
.btn,
.form-control,
.form-select,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
p, span, div, a, label {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    outline: none;
    text-decoration: none;
    border: none;
}

/* ========================
   BASE STYLES
   ======================== */
html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: rgb(84, 84, 84);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f4f6fe;
}

/* ========================
   TYPOGRAPHY
   ======================== */
p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

small, .small {
    font-size: 0.875rem;
    font-weight: 400;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ========================
   LINKS
   ======================== */
a {
    color: var(--hs-primary-txt);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
    text-decoration: none;
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn:hover {
    color: #fff;
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary {
    background-color: var(--login-blue-bg);
    border-color: var(--login-blue-bg);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(43, 86, 245, 0.25);
}

.btn-secondary:hover {
    box-shadow: 0 0 0 5px rgba(43, 86, 245, 0.25);
}

/* ========================
   UTILITIES
   ======================== */
.warning-red-text {
    color: #EB3939;
}

.green-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor-pointer {
    cursor: pointer;
}

/* ========================
   BREADCRUMBS
   ======================== */
.container-breadcrumbs {
    margin-top: 34px;
    margin-bottom: 50px;
}

.container-breadcrumbs ol {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.container-breadcrumbs li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.container-breadcrumbs a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: rgb(203, 203, 203);
    text-decoration: none;
}

.container-breadcrumbs a:hover {
    opacity: 0.75;
}

.bread-crumbs.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item.active {
    leading-trim: both;
    text-edge: cap;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--grad-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(203, 203, 203);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: none;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: rgb(203, 203, 203);
}

.container-breadcrumbs svg path {
    fill: rgb(203, 203, 203);
}

/* ========================
   CONTAINER
   ======================== */
@media (min-width: 1300px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1254px !important;
    }
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1254px !important;;
    }
}

.container.container-800 {
    max-width: 800px !important;
}

/* ========================
   HEADER
   ======================== */
.site-header {
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.header-navbar {
    width: 100%;
    padding-right: 10%;
}

.header-navbar .nav-item {
    margin-left: auto;
}

.header-navbar .nav-link {
    text-decoration: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    padding: 0 !important;
    color: var(--bs-header-link-color);
}

.primary-log-in.bth-bg-one {
    width: 128px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: var(--login-blue-color) !important;;
    border: 1px solid var(--login-blue-border-color) !important;
    box-sizing: border-box;
    border-radius: 24px !important;
    background: var(--login-blue-bg) !important;;
    cursor: pointer;
    box-shadow: 0 0 24px 0 rgba(43, 86, 245, 0.1) !important;;
    opacity: 1;
    font-weight: 400;
}

.primary-log-in:hover {
    box-shadow: 0 0 0 5px rgba(43, 86, 245, 0.25) !important;;
}

/* ========================
   FOOTER
   ======================== */
footer#siteFooter {
    display: flex;
    padding: 32px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer__logo {
    max-width: 171px;
    max-height: 25px;
}

.footer-primary-navbar {
    width: auto;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
}

.footer-primary-navbar .navbar {
    width: 100%;
    background: none !important;
}

.footer-primary-navbar .navbar-nav {
    width: 100%;
}

.footer-primary-navbar .nav-item {
    margin-left: auto;
}

.footer-soc-nav .soc-nav-mail {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: linear-gradient(-33.42deg, rgb(43, 86, 245),rgb(80, 167, 253));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-soc-nav .soc-nav-but {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.soc-nav-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-primary-navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    padding: 0 !important;
    color: var(--hs-primary-txt);
}

.footer-bot {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.footer-bot-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
}

.footer-bot-1-top {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--hs-primary-txt);
}

.footer-bot-1-bot {
    align-self: stretch;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--hs-primary-txt);
}

.footer-bot-2 {
    flex: 1 0 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: right;
    color: var(--hs-primary-txt);
}

.footer-bot-2 span, .footer-bot-2 a {
    background: var(--grad-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================
   HOME SLIDE
   ======================== */
.home-slide .hs-top-txt {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 12px 20px 12px 20px;
    box-sizing: border-box;
    border-radius: 32px;
    backdrop-filter: blur(32px);
    background: var(--surface-100);
    color: rgb(43, 86, 245);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
    width: auto;
    margin: 0 auto 32px auto;
    white-space: nowrap;
}

.home-slide .hs-primary-txt {
    background-clip: text;
    text-fill-color: transparent;
    font-style: normal;
    color: var(--hs-primary-txt);
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    line-height: 87px;
    letter-spacing: 1%;
}

.home-slide .hs-primary-bg {
    padding-bottom: 49px;
}

/* ========================
   CHAT / NEURAL NETWORK FORM
   ======================== */
.neural-network-container {
    position: relative;
}

.neural-network-container .form-block {
    max-width: 800px;
    margin: 0 auto;
}

.nn-guest-form {
    position: relative;
}

.nn-guest-form-comment {
    border-radius: 32px;
    backdrop-filter: blur(32px);
    background: var(--surface-100) !important;
    color: var(--bs-heading-color) !important;
    display: block;
    padding: 0.5rem 5rem 0.5rem 1.5rem;
    font-style: normal;
    outline: none;
    box-shadow: 0 0 0;
    height: 64px;
    min-height: 0;
    border: none !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    box-sizing: border-box;
}

.form-control, .form-control:focus, .form-control:active {
    border: none !important;
    outline: 0 !important;;
    box-shadow: 0 0 0 !important;
}

.bth-bg-one {
    backdrop-filter: blur(12px) !important;
    background: linear-gradient(-33.42deg, var(--login-blue-bg) 9.158%,rgb(80, 167, 253) 93.512%) !important;
    color: var(--bs-header-bg) !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    outline: none;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 9px 4px;
    margin: 0;
    border-radius: 12px !important;
    box-shadow: 0 0 24px 0 rgba(43, 86, 245, 0.1);
    border: none !important;
}

.bth-bg-one:active, .bth-bg-one:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.bth-bg-one:hover, .bth-bg-one:active {
    box-shadow: 0 0 0 5px rgba(43, 86, 245, 0.25) !important;
}

.bth-bg-one path {
    fill: var(--bs-body-bg);
}

.submit-but-neuralnetworkform {
    position: absolute;
    bottom: 12px;
    right: 22px;
    top: 12px;
}

/* ========================
   CAN DO IT LIST
   ======================== */
.list-home-container.list-home-can-do-it {
    padding: 54px 0;
}

.list-home-container.list-home-can-do-it.list-home-can-do-it-home {
    margin-bottom: 36px;
}

.can-do-it-block {
    display: flex;
}

.can-do-it-item {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 20px;
    border: 1px solid rgba(43, 86, 245, 0.12);
    background: rgba(43, 86, 245, 0.04);
    backdrop-filter: blur(6px);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 144%;
    width: 100%;
}

.can-do-it-top {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    max-width: 100%;
    width: 100%;
}

.can-do-it-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    flex: 1 0 100%;
    width: 100%;
}

.can-do-it-ico {
    display: flex;
    width: 60px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    right: -20px;
    top: 0;
    border-radius: 16px 0 0 16px;
    background: rgba(43, 86, 245, 0.08);
    margin-left: -60px;
}

.can-do-it-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 144%;
    opacity: 0.75;
}

/* ========================
   NEURAL NETWORK / ASSISTANTS LIST
   ======================== */
.list-home-container.list-home-neural-network {
    margin-top: -70px;
    padding-bottom: 36px;
}

#neiroseti, #assistenti {
    padding-top: 72px;
}

.list-home-item {
    display: flex;
    padding: 20px;
    gap: 20px;
    border-radius: 12px;
    backdrop-filter: blur(32px);
    background: rgb(255, 255, 255);
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}

.list-home-item:hover {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.list-home-item-left {
    display: flex;
}

.list-home-item-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-home-item-img img {
    width: 64px;
    height: auto;
    border-radius: 0.5rem;
}

.list-home-container.list-home-assistants .list-home-item-img img {
    width: 40px;
}

.list-home-item-right {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.list-home-item-title {
    margin: 0;
    color: var(--bs-heading-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0;
}

.list-home-item-txt {
    color: var(--bs-heading-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 144%;
    letter-spacing: 0;
}

.summary-container {
    margin-top: 24px;
}

.summary-container .lv-pager {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--bs-header-link-color);
    margin: 0 auto;
    display: block;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    cursor: pointer;
}

.summary-container .summary {
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--bs-header-link-color);
    margin: 0;
}

.home-neural-network {
    margin-bottom: 24px;
}

/* ========================
   GAC (Gallery Arrow Controls)
   ======================== */
.gac-content {
    position: relative;
}

.gac-content .gac-list {
    gap: 16px !important;
    overflow-x: auto;
    scrollbar-width: none;
}

.gac-content .gac-left, .gac-content .gac-right {
    display: flex;
    width: 30px;
    height: 48px;
    border-radius: 0;
    background: var(--bs-body-bg);
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    z-index: 5;
}

.gac-content .gac-left {
    top: 0;
    left: -5px;
    box-shadow: 10px 0 10px var(--bs-body-bg);
}

.gac-content .gac-right {
    top: 0;
    right: -5px;
    box-shadow: -10px 0 10px var(--bs-body-bg);
}

.gac-content .gac-left svg, .gac-content .gac-right svg {
    width: auto;
    height: 20px;
}

.gac-content .gac-left path, .gac-content .gac-right path {
    fill: var(--login-blue-bg);
}

/* ========================
   ASSISTANTS NAVIGATION
   ======================== */
.login-menu-assistants {
    position: relative;
}

.login-sub-menu-assistants {
    position: relative;
}

.login-sub-menu-assistants li {
    flex: 1 0 auto;
}

.login-sub-menu-assistants a,
.login-sub-menu-assistants button {
    display: flex;
    gap: 12px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    padding: 14px 20px;
    align-items: center;
    cursor: pointer;
    font-style: normal;
    height: 48px;
    width: 100%;
    text-align: center;
    justify-content: center;
    border: none;
    color: rgb(43, 86, 245);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 10px;
    background: var(--surface-100);
    white-space: nowrap;
}

.login-sub-menu-assistants a:hover,
.login-sub-menu-assistants button:hover {
    color: #ffffff;
    background: #4067f6;
    box-shadow: none !important;
}

.login-sub-menu-assistants a.active,
.login-sub-menu-assistants button.active {
    color: #ffffff;
    background: #4067f6;
}

.ass-li {
    flex: 1 0 auto;
}

.grid-assistants-category {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

/* ========================
   ASSISTANTS - LIST HOME
   ======================== */
.list-home-container.list-home-assistants {
    padding: 0 0 92px 0;
}

.list-row-assistants {
    margin-bottom: 24px;
}

/* ========================
   ASSISTANTS CONTENT PAGE
   ======================== */
.assistants-content-page {
    padding-top: 54px;
    margin-bottom: 92px;
}

.typography-block {
    font-size: 16px;
    line-height: 1.7;
}

.typography-block-chat {
    max-width: 800px;
    margin: 0 auto;
}

/* ========================
   REVIEW ITEM
   ======================== */
.review-item {
    display: flex;
    padding: 32px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
    height: 100%;
    border-radius: 20px;
    border: none;
    backdrop-filter: blur(32px);
    background: rgb(255, 255, 255);
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
    transition: box-shadow .15s;
}

.review-item:hover {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.review-item-top {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 100%;
}

.review-item-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
}

.review-item-name {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--bs-heading-color);
}

.review-item-id {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-item-data {
    color: var(--bs-heading-color);
}

.review-item-star {
    display: flex;
    gap: 3px;
    margin-left: 12px;
}

.review-item-star span {
    background-image: url("/images/star_rev.svg");
    width: 17px;
    height: 16px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.review-item-content {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 144%;
    opacity: 0.75;
    color: var(--bs-heading-color);
}

/* ========================
   NAV BOT SECTION
   ======================== */
.nav-bot-section {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.nav-bot-section-reviews {
    margin-top: 24px;
}

.button-green-black {
    display: flex;
    height: 64px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 32px;
    background: var(--grad-brand);
    color: var(--bs-body-bg);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    box-shadow: 0 0 24px rgba(43, 86, 245, 0.1);
    text-decoration: none;
}

.button-green-black:hover {
    box-shadow: 0 0 0 5px rgba(43, 86, 245, 0.25);
    color: var(--bs-body-bg);
}

/* ========================
   FAQ
   ======================== */
.list-home-faq {
    padding: 54px 0;
}

.list-faq-faq {
    padding-bottom: 92px;
}

.accordion.faq-accordion {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.accordion-item {
    display: flex;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 24px !important;
    border: 1px solid var(--login-blue-bg) !important;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
}

.accordion-header {
    display: flex;
    width: 100%;
}

.accordion-button {
    padding: 0;
    box-shadow: none !important;
    background: none !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    justify-content: center;
    letter-spacing: 0.8px;
    line-height: 28.8px;
    color: var(--bs-header-link-color) !important;
    gap: 12px;
}

.accordion-button.collapsed {
    color: var(--bs-header-link-color) !important;
}

.accordion-button::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--bs-header-link-color) !important;
}

.accordion-collapse {
    width: 100%;
}

/* ========================
   BLOG
   ======================== */
.lv-summary-pager.row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
}

a.blog-card.js-blog-card {
    color: var(--bs-body-bg);
    text-decoration: none;
    display: block;
}

.blog-card__container {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.blog-card__overlay-img {
    position: relative;
}

.blog-card__overlay-img::before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-card__overlay-img img {
    width: 100%;
    height: auto;
}

.blog-card__overlay {
    position: absolute;
    z-index: 1;
    bottom: 25px;
    left: 25px;
    width: calc(100% - 50px);
}

.blog-card__overlay-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.blog-card__date {
    display: inline-flex;
    padding: 12px 20px;
    align-items: center;
    gap: 16px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--bs-body-bg);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.page-content-blog {
    padding-bottom: 92px;
}

.page-content-reviews {
    padding-bottom: 92px;
}

.page-content-blog .home-page__title-repeats {
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.92px;
    background: var(--grad-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.home-page__title-repeats {
    color: var(--hs-primary-txt);
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -1.92px;
    margin-bottom: 40px;
}

.container-blog-info {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    color: var(--hs-primary-txt);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 70px;
}

.container-blog-info .blog-inf-d,
.container-blog-info .blog-inf-t,
.container-blog-info .blog-inf-v {
    display: flex;
    gap: 16px;
    align-items: center;
}

.blog-inf-gap {
    width: 2px;
    align-self: stretch;
    height: 24px;
    border-radius: 8px;
    background: #3A3A3A;
}

.article-block {
    margin-bottom: 24px;
}

.article-block-img {
    display: block;
    margin-bottom: 90px;
}

.article-block-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================
   ASSISTANTS PAGE
   ======================== */
.assistants-view-container {
    padding: 0 15px;
}

.assistants-top-title {
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    margin-bottom: 48px;
}

.green-top-title {
    background: var(--grad-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.assistants-title-block {
    display: flex;
    padding: 24px 24px 92px 24px;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    background: #fff;
    max-width: 800px;
    margin: 0 auto 24px auto;
    flex-wrap: wrap;
    position: relative;
}

.trial-chat-wrapper {
    width: 100%;
    flex: 1 0 100%;
}

.assistants-title-block:has(.trial-chat-wrapper) {
    padding-bottom: 24px;
}

.assistants-title {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    width: 100%;
    flex: 1 0 100%;
    position: relative;
    flex-wrap: wrap;
}

.assistants-image {
    display: flex;
    width: 100%;
    height: auto;
    padding: 0;
    align-items: center;
    border-radius: 0;
    justify-content: center;
    flex: 1 0 100%;
}

.assistants-image img {
    width: 150px;
    height: auto;
}

.assistants-mini-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1 0 100%;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
}

.assistants-mi-title {
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    width: 100%;
}

.assistants-mi-description {
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 144%;
    opacity: 0.55;
    text-align: center;
    display: block;
    width: 100%;
    flex: 1 0 100%;
}

.assistants-mi-like {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.click-add-favorite {
    cursor: pointer;
}

.chat-container-neural-network {
    display: block;
    width: 100%;
    flex: 1 0 100%;
    position: relative;
}

.chat-container {
    max-width: 800px;
    margin: 0 auto 42px auto;
}

.chat-container-height {
    padding: 2rem 0;
}

.assistants-view-container .chat-container-height {
    padding: 0;
}

.form-neural-network-container {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 10px;
    padding: 24px 24px 0 24px;
    z-index: 5;
    background-color: #fff;
    background-clip: content-box;
}

.form-block {
    position: relative;
}

.field-neuralnetworkguestform-comment {
    position: relative;
}

.list-home-container.list-items-assistant {
    padding: 54px 0;
}

.is-more-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.list-home-container.list-items-assistant .lia-link {
    width: auto;
    height: auto;
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 24px;
    color: rgb(43, 86, 245);
    border: none;
    background: var(--surface-100);
    box-sizing: border-box;
    border-radius: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: color .15s, background-color .15s;
}

.list-home-container.list-items-assistant .lia-link:hover {
    color: #ffffff;
    background: #4067f6;
}

/* ========================
   CONTACTS PAGE
   ======================== */
.page-title {
    padding: 24px 0;
}

.container-h1 {
    margin-bottom: 24px;
    text-align: center;
}

.page-title .h1 {
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -1.92px;
    margin: 0 0 35px 0;
    padding: 0;
}

.page-title .h1 span {
    background: var(--grad-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.for-h1 {
    gap: 16px;
}

.for-h1 img {
    width: 48px;
    height: auto;
}

.button-green-black-small {
    width: fit-content;
    display: flex;
    height: 52px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    background: var(--grad-brand);
    color: var(--login-blue-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    box-shadow: 0 0 24px 0 rgba(43, 86, 245, 0.1);
    text-decoration: none;
    transition: box-shadow .15s;
}

.button-green-black-small:hover {
    box-shadow: 0 0 0 5px rgba(43, 86, 245, 0.25);
    color: var(--bs-body-bg);
}

.button-transparent-green-small {
    width: fit-content;
    display: flex;
    height: 52px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid var(--login-blue-border-color);
    box-shadow: 0 0 24px 0 rgba(43, 86, 245, 0.1);
    text-decoration: none;
    transition: box-shadow .15s;
}

.button-transparent-green-small:hover {
    box-shadow: 0 0 0 5px rgba(43, 86, 245, 0.25);
}

.contact-useful {
    margin-top: 48px;
}

.info-contact-block {
    flex: 1;
}

.info-contact-block .top-part {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 30px;
}

.info-contact-block .bottom-part {
    padding-top: 10px;
}

.info-contact-block .top-part p {
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.03em;
    color: var(--hs-primary-txt);
}

.social-network {
    gap: 16px;
}

.social-network a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .15s;
}

.social-network a:hover {
    opacity: 0.7;
}

.social-network img {
    width: 40px;
    height: 40px;
}

.contact-warning {
    margin-top: 80px;
    padding-bottom: 80px;
}

.title-warning h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
    margin-bottom: 24px;
}

.contact-warning p {
    text-wrap: balance;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--hs-primary-txt);
    opacity: 0.6;
}

.contact-warning .green-text {
    opacity: 1;
}

.log-in-open-model {
    cursor: pointer;
}

/* ========================
   MAIN PUBLIC
   ======================== */
main.home-main--public,
.home-main--public {
    padding-top: 58px;
}

.home-page {
    min-height: 100vh;
}

/* ========================
   SCROLLBAR
   ======================== */
::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}

.title-h1-blue {
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.92px;
    background: var(--grad-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

/* ========================
   RESPONSIVE STYLES
   ======================== */
@media (min-width: 992px) {
    .lv-summary-pager.row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .page-title .h1,
    .home-page__title-repeats {
        font-size: 48px;
        line-height: 56px;
    }

    .contact-warning {
        margin-top: 60px;
        padding-bottom: 60px;
    }

}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1, .h1 { font-size: 2.25rem; }
    h2, .h2 { font-size: 1.875rem; }
    h3, .h3 { font-size: 1.5rem; }
    h4, .h4 { font-size: 1.25rem; }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .page-content-blog .home-page__title-repeats {
        font-size: 32px;
    }

    .container-blog-info {
        font-size: 18px;
        flex-direction: column;
    }

    .blog-inf-gap {
        display: none;
    }
}

@media (max-width: 767px) {
    .page-title .h1,
    .home-page__title-repeats {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .for-h1 img {
        width: 32px;
        height: auto;
    }

    .info-contact-block .top-part p {
        font-size: 18px;
        line-height: 24px;
    }

    .button-green-black-small,
    .button-transparent-green-small {
        width: 100%;
        justify-content: center;
    }

    .social-network {
        justify-content: center !important;
    }

    .review-item {
        padding: 24px 16px;
    }

    .review-item-name {
        font-size: 20px;
    }

    .review-item-id {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .review-item-star {
        margin-left: 0;
    }
}

.list-home-container.list-home-how-works {
    padding: 0 0 54px 0;
    margin-bottom: 92px;
}

.list-home-how-works h1, .list-home-how-works .h1 {
    font-size: 3rem !important;
}

.how-works-h1 span {
    background: var(--grad-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-works-content-left.p-4 {
    padding: 2rem !important;
}

.how-works-content-left {
    max-width: 440px;
}

.list-home-how-works .how-works-left-logo.mb-4 {
    margin-bottom: 32px !important;
    height: 79px;
}

.how-works-left-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.list-home-how-works ul.list-group.gap-4 {
    gap: 32px !important;
}

.list-home-how-works ul.list-group li {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--bs-heading-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.list-home-how-works ul.list-group li::before {
    content: '';
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(43, 86, 245, 0.24);
    background-color: rgba(43, 86, 245, 0.06);
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    background-image: url("/images/check.svg");
    background-position: center center;
    background-repeat: no-repeat;
}

.how-works-content-right.p-4 {
    padding: 2rem !important;
}

.how-works-right-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.list-home-how-works .how-works-right-logo.mb-4 {
    margin-bottom: 32px !important;
}

.how-works-right-logos-list {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.how-works-right-logos-list li {
    margin: 0 -8px;
}

.list-home-how-works ul.list-group.gap-4 {
    gap: 32px !important;
}

.list-home-how-works ul.list-group li {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--bs-heading-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.list-home-how-works .how-works-content-right ul.list-group li::before {
    background-image: url("/images/xmark.svg");
}

.list-home-container.list-home-can-do-it2 {
    padding: 54px 0;
    margin-bottom: 92px;
}

.can-do-it2-top {
    display: flex;
    padding: 20px 20px 16px 20px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.can-do-it2-title {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.can-do-it2-text {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.can-do-it2-ico {
    width: 100%;
}

.can-do-it2-ico img {
    width: 100%;
    height: auto;
}

.list-home-container.assistants-content-page {
    padding-top: 0;
    margin-bottom: 92px;
}

#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 99;
    margin-top: 0;
    transition: none;
    background: var(--bs-header-bg);
    padding: 0 !important;
}

a.header-logo, .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.primary-navbar {
    width: auto;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
}

.primary-navbar .navbar {
    width: 100%;
    background: none !important;
}

header .navbar-toggler.collapsed {
    transform: rotate(0deg);
}

header .navbar-toggler span {
    background: var(--login-blue-bg);
    width: 100%;
    height: 2px;
    border-radius: 3px;
    display: block;
    position: relative;
    opacity: 1;
}

.primary-navbar .navbar-nav {
    width: 100%;
}

.primary-navbar .nav-item {
    margin-left: auto;
}

.primary-navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    padding: 0 !important;
    color: var(--bs-header-link-color);
}

.primary-navbar .nav-item.nav-profile .dropdown-menu {
    display: flex !important;
    position: relative !important;
    border: none;
    border-radius: 0;
    background: none;
    padding: 0 !important;
}

.primary-navbar .log-in-open-model, .primary-navbar .log-in {
    width: 128px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: var(--login-blue-color);
    border: 1px solid var(--login-blue-border-color);
    box-sizing: border-box;
    border-radius: 24px;
    background: var(--login-blue-bg);
    cursor: pointer;
    box-shadow: 0 0 24px 0 rgba(43, 86, 245, 0.1);
}

.primary-navbar .log-in-open-model:hover {
    box-shadow: 0 0 0 5px rgba(43, 86, 245, 0.25);
}

header .navbar-toggler {
    border-radius: 5px;
    border: 1px solid rgba(43, 86, 245, 0.40);
    background: rgba(43, 86, 245, 0.12);
    width: 48px;
    height: 36px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 0;
    justify-content: space-between;
    position: relative;
}

header .navbar-toggler:focus, header .navbar-toggler:active {
    box-shadow: none;
}

header .navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

header .navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

header .navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
}

@media (max-width: 991px) {
    body {
        position: relative;
    }
    .navbar-nav-pse {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }
    header .navbar-collapse {
        position: absolute;
        top: 53px;
        left: auto;
        z-index: 5;
        right: 0;
        width: 100%;
        padding: 12px 0;
    }
    header .navbar-collapse:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bs-body-bg);
        z-index: -1;
    }
    .how-works-content {
        flex-direction: column;
        align-items: center;
    }
    .home-slide .hs-primary-txt {
        font-size: 42px;
        margin-bottom: 166px;
        line-height: normal;
    }
    .home-slide .hs-top-txt {
        font-size: 12px;
        white-space: normal;
    }
    footer .navbar-nav {
        flex-wrap: nowrap !important;
        flex-direction: row;
    }
    header .navbar-collapse .nav-item {
        margin-bottom: 12px;
    }
}
@media (max-width: 768px) {
    footer .navbar-nav {
        flex-direction: column;
    }
    .primary-navbar .nav-item {
        margin-left: 0;
        margin-right: auto;
    }
    .footer-bot {
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }
    .footer-bot-1 {
        margin-bottom: 15px;
        width: 100%;
        flex: 1 0 100%;
    }
    .footer-bot-2 {
        width: 100%;
        flex: 1 0 100%;
        text-align: left;
    }
    footer {
        margin-top: 30px;
    }
    .error-page-left {
        max-width: 200px;
    }
    .error-page-left-1 {
        font-size: 200px;
        line-height: 253px;
        letter-spacing: -9px;
    }
    .error-page-left-2 {
        font-size: 80px;
        line-height: 90px;
        letter-spacing: -4px;
        margin-left: -25px;
    }
    .error-page-left-3 {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -1px;
        margin-left: auto;
        margin-top: -101px;
        margin-right: 10px;
    }
    .error-page-left-4 {
        display: none !important;
    }
    .error-page-right-txt {
        font-size: 14px;
        letter-spacing: 0;
        text-align: center;
    }
    .button-green-black {
        text-align: center;
        font-size: 14px;
        padding: 14px 20px;
        height: auto;
    }
    .error-page-container {
        padding: 35px 0;
        gap: 35px;
    }
    .home-page__title-repeats {
        font-size: 32px;
        line-height: 1.2;
    }
    .home-slide.for-business-slide .hs-primary-txt {
        font-size: 32px;
    }
    .home-slide.for-business-slide {
        padding-bottom: 300px;
        min-height: 800px;
    }
    .main-products-primary-txt {
        font-size: 32px;
    }
    .for-business-main-products {
        padding-bottom: 0;
    }
    .page-content-blog .home-page__title-repeats {
        font-size: 32px;
    }
    .container-blog-info {
        font-size: 18px;
        flex-direction: column;
    }
    .blog-inf-gap {
        display: none;
    }
}

.title-warning h3:before {
    display: none;
}

