/* Reset and base styles */
:root {
    --bg-outline-light-outline: #CACFD8;
    --text-icons-white: #FFFFFF;
    --Primary-Default: #273B09;
    --bg-outline-white-bg: #FFFFFF;
    --text-icons-secondary: #313A4E;
    --text-icons-primary: #0D1321;
    --primary-color: #ff7f11;       /* Основной цвет кнопок и акцентов */
    --primary-hover: #273b09;       /* Цвет при наведении */
    --bg-section: #fcfcfd;          /* Фон всей секции */
    --bg-card: #ffffff;             /* Фон основной карточки */
    --bg-feature: #f8fafc;          /* Фон маленьких карточек с функциями */
    --text-main: #273b09;           /* Цвет заголовков */
    --text-muted: #64748b;          /* Цвет описаний */
    --border-color: #e2e8f0;        /* Цвет границ */
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Horizontal clip on html only — overflow-x on both html+body breaks position:sticky for descendants */
html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: visible;
}

html {
    font-family: "IBM Plex Sans", sans-serif;
}

body {
    line-height: 1.5;
    font-family: "IBM Plex Sans", sans-serif;
    color: #4A5F71;
}

#languageSwitcher {
    display: none;
}
/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-full {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/* Grid system */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}




/* Mobile first (sm) */
@media (min-width: 600px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; padding: 0 15px; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; padding: 0 15px; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0 15px; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0 15px; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; padding: 0 15px; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; padding: 0 15px; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
}

/* Responsive breakpoints */
@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; padding: 0 15px; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; padding: 0 15px; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0 15px; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0 15px; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; padding: 0 15px; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; padding: 0 15px; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
}
/*!* Desktop (lg) *!*/
@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; padding: 0 15px; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; padding: 0 15px; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0 15px; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0 15px; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; padding: 0 15px; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; padding: 0 15px; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
}

a,
a:hover,
a:visited,
a:active {
    text-decoration: none !important;
    outline: none !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
}

/** Header **/
/* header-area-start */
.header {
    padding: 20px 0;
}
.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.header__manu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.header__manu a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: var(--text-icons-secondary, #313A4E);
    transition: .3s;
}
.header__manu a:hover {
    color: #FF7F11;
}
.header__manu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.header__select select {
    border-radius: 10px;
    border: 1px solid var(--bg-outline-light-outline, #CACFD8);
    display: flex;
    height: 48px;
    padding: 0 14px;
    align-items: center;
    width: 96px;
    background: #fff;
}
.header__btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.header__btn a {
    border-radius: 10px;
    border: 1px solid var(--Primary-Default, #273B09);
    background: var(--bg-outline-white-bg, #FFF);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    height: 48px;
    color: var(--text-icons-secondary, #313A4E);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    transition: .3s;
}
.header__btn a.active {
    border-radius: 10px;
    background: var(--Primary-Default, #273B09);
}
.header__btn a.active_btn {
    border-radius: 10px;
    background: var(--Primary-Default, #273B09);
    color: var(--text-icons-white, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
/* ofcanvas   */
.header-off-btn.menu-trigger {
    display: block;
    background: rgb(88,165,254);
    background: -moz-linear-gradient(45deg, rgba(88,165,254,1) 20%, rgba(88,165,254,1) 20%, rgba(32,209,253,1) 99%);
    background: -webkit-linear-gradient(45deg, rgba(88,165,254,1) 20%,rgba(88,165,254,1) 20%,rgba(32,209,253,1) 99%);
    background: linear-gradient(45deg, rgba(88,165,254,1) 20%,rgba(88,165,254,1) 20%,rgba(32,209,253,1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58a5fe', endColorstr='#20d1fd',GradientType=1 );
    text-align: center;
    height: 40px;
    line-height: 40px;
    width: 40px;
    z-index: 9;
    position: absolute;
    right: 23px;
    top: 50%;
    border-radius: 5px;
    transform: translateY(-50%);
}


.header-off-btn.menu-trigger.right {
    display: block !important;
}
.off-canvas-menu {
    width: 330px;
    background: #fff;
    position: fixed;
    height: 100%;
    z-index: 99999;
    top: 0;
    left: -100%;
    transition: .3s;
    padding: 20px;
    overflow-y: scroll;
}
.off-canvas-menu .header-btn {
    margin-top: 30px;
    text-align: center;
    margin-left: 0;
}
.header-btn.off a {
    margin: 0;
}
.close-menu {
    display: flex;
    justify-content: end;
}
.close-menu a {
    /*! position: absolute; */
    right: 20px;
    /*! height: 32px; */
    color: #31285F;
    text-align: center;
    /*! line-height: 32px; */
    /*! border-radius: 50%; */
    top: 15px;
    /*! background: #AAE1F5; */
    /*! width: 32px; */
    margin-bottom: 4px;
}
.off-canvas-menu.active {
    left: 0;
}
.off-btn a:hover {
    background: #273B09;
    color: #fff;
}
.off-btn a.off-active:hover {
    background: #fff;
    color: #273B09;
}
.off-canvas-menu ul li a {
    display: block;
    padding: 10px 0;
    color: var(--text-icons-primary, #0D1321);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.off-canvas-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #313A4ECC;
    z-index: -1;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;

}
.off-canvas-overlay.active {
    opacity: .6;
    z-index: 999;
    cursor: pointer;
}

.header__select-off a {
    height: 48px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--bg-outline-light-outline, #CACFD8);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-icons-primary, #0D1321);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.off-canvas-menu ul {
    margin-top: 48px;
    padding: 0;
    list-style: none;
    margin-bottom: 48px;
}
.off-canvas-menu2.active {
    left: 0;
}
.off-canvas-menu2 {
    position: fixed;
    width: 330px;
    height: 100%;
    z-index: 999999;
    background: #fff;
    padding: 20px;
    left: -100%;
    transition: .3s;
}
.off__back a {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: var(--text-icons-primary, #0D1321);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    gap: 8px;
}
.off__back {
    margin-bottom: 32px;
}
.off-canvas-menu2 ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.off-canvas-menu2 li a {
    color: var(--text-icons-primary, #0D1321);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    padding: 10px 0;
    gap: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-off-btn span {
    background: #283B91;
    height: 4px;
    width: 30px;
    display: block;
    border-radius: 14px;
    margin-bottom: 4px;
}
.header-off-btn {
    position: absolute;
    left: auto;
    z-index: 2;
    width: 30px;
    height: 22px;
    cursor: pointer;
    right: 70px;
}


.off-canvas-menu ul li {
    margin: 0;
}
.off-canvas-menu {
    display: block;
}

.header-off-btn.menu-trigger a {
    color: #31285F;
    font-size: 18px;
}

.ofcanvas a {
    display: block;
    padding: 7px 20px;
    color: #fff;
}


.header__select .nice-select {
    border-radius: 10px;
    border: 1px solid var(--bg-outline-light-outline, #CACFD8);
    height: 48px;
    display: flex;
    align-items: center;
    color: var(--text-icons-primary, #0D1321);
    font-feature-settings: 'salt' on;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    padding-right: 32px;
    margin-right: 5px;
}

.header__select ul li a {
    height: auto !important;
}
.header__select ul {
    display: block;
}

.off-canvas-overlay.active {
    opacity: .9;
    visibility: visible;
}

.header-btn.of-log {
    display: flex;
    height: auto;
    justify-content: center;
    margin-top: 50px;
}

.header-mainmenu-2 .header-off-btn.menu-trigger a {
    color: #2F6F76;
}

.header-off-btn.menu-trigger.right {
    display: none !important;
}


.menu-trigger {
    /*! position: absolute; */
    top: 50%;
    /*! transform: translateY(-50%); */
    right: 18px;
    z-index: 999;
}
.menu-trigger a{
    /*! color: #fff; */
    height: 48px;
    width: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*! background: #005DC7; */
    padding: 0 25px;
    background: transparent !important;
    padding: 0;
    width: 63px;
}

.off-btn a {
    border-radius: 10px;
    border: 1px solid var(--Primary-Default, #273B09);
    background: var(--bg-outline-white-bg, #FFF);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--Primary-Default, #273B09);
    background: var(--bg-outline-white-bg, #FFF);
    color: var(--text-icons-secondary, #313A4E);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    transition: .3s;
}
.off-btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}
.off-btn a.off-active {
    border-radius: 10px;
    background: var(--Primary-Default, #273B09);
    color: #fff;
}
.header__select-off {
    display: flex;
    margin-bottom: 48px;
}
.header__select-off .nice-select {
    display: flex;
    width: 100%;
    height: 48px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--bg-outline-light-outline, #CACFD8);
}
.off__last-text a {
    gap: 20px;
    color: var(--text-icons-secondary, #313A4E);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.off__last-text {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer styles (migrated from public/lp/css/style.css) */
#main-footer.footer {
    position: relative;
    z-index: 10;
}

footer.footer .footer-widget-wrapper {
    padding: 40px 0;
}

footer.footer .footer-widget img {
    width: 200px;
}

.footer .footer-widget .title {
    margin-bottom: 15px;
}

.footer .footer-widget .title h3 {
    margin: 0;
    color: #1a0a37;
    font-size: 20px;
    font-weight: 600;
}

.footer .footer-widget p {
    color: #1a0a37;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    font-weight: 500;
}

footer.footer .footer-widget.about-widget p {
    margin-top: 25px;
    margin-bottom: 15px;
}

footer.footer .footer-widget.contact-widget p {
    color: #656565;
}

footer.footer .footer-widget.contact-widget p span {
    color: #170b35;
    font-weight: 500;
    padding-right: 4px;
}

footer.footer .footer-widget.contact-widget p + p {
    margin-top: 5px;
}

footer.footer .footer-widget.links-widget {
    padding-right: 0;
}

footer.footer .footer-widget.links-widget ul {
    margin: 0 -5px;
    padding: 0;
    list-style: none;
}

.footer-widget .link-list li {
    margin: 0 3px;
}

.scrollup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #273b09;
    color: #fff;
    font-size: 17px;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    -webkit-box-shadow: 0 23px 42px rgba(0, 0, 0, 0.2);
    box-shadow: 0 23px 42px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

footer.footer .footer-widget.links-widget ul.link-list li a {
    color: #656565;
    font-size: 14px;
    transition: all 0.4s ease;
    font-weight: 500;
}

footer.footer .footer-widget.links-widget ul.link-list li a:hover {
    color: #4d07a0;
}

footer.footer .footer-pages-widget .link-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (max-width: 767px) {
    footer.footer .footer-widget-wrapper .container,
    .footer-bottom .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    footer.footer .footer-widget-wrapper .row.masonary-layout {
        margin-left: -8px;
        margin-right: -8px;
    }
    footer.footer .footer-widget-wrapper .row.masonary-layout > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    footer.footer .footer-widget {
        margin-bottom: 18px;
    }
}

.footer-bottom .footer-copyright {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 26px 0;
    border-top: 1px solid #d2d1d2;
}

.footer-bottom .footer-copyright .left-content,
.footer-bottom .footer-copyright .right-content {
    display: inline-block;
}

.footer-bottom .left-content p a {
    color: #656565;
    display: inline-block;
    border-bottom: 1px solid #656565;
    line-height: 1em;
    vertical-align: middle;
}

.footer-bottom .right-content p,
.footer-bottom .left-content p {
    margin: 0;
    font-size: 14px;
    line-height: 26px;
    color: #383838;
    letter-spacing: 0.025em;
}
.menu-trigger {
    display: none;
}



.header__btn a:hover {
    background: #273B09;
    color: #fff;
}
.header__btn a.active_btn:hover {
    background: #fff;
    color: #273B09;
}
.header__btn a.login {
    padding: 10px 15px;
}
.legal h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    color: #120309;
}
.legal h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #120309;
}
.legal p {
    margin: 0.75rem 0;
    color: #120309;
}
.legal ol {
    padding-left: 1.5rem;
}
.legal ul {
    padding-left: 1.5rem;
}
.legal ul li {
    color: #120309;
}
.legal li {
    margin-bottom: 0.15rem;
}
.legal ul li::marker {
    font-size: 1.1rem;
    color: #120309;
}
.legal ol li::marker {
    font-size: 1.25rem;
    color: #120309;
}
.legal a {
    color: #273b09;
    text-decoration: none;
}
.legal a:hover {
    text-decoration: underline;
}
.legal table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    color: #120309;
}
.legal th, td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: left;
}
.legal th {
    background-color: #f0f0f0;
}
.mt--5 {
    margin-top: -5px;
}
