* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #140004 url('../img/bg-body.jpg') center no-repeat;
    font-family: 'Inter', sans-serif;
    background-size: cover;
    background-attachment: fixed;
    color: #acacac;
    line-height: 1.5;
    overflow-x: hidden;
}


.lb_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


h1,
h2,
h3,
h4,
.lb_title_lg,
.lb_title_md {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.lb_subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(275deg, rgb(255, 108, 27) 0%, rgb(255, 41, 113) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 34px;
    padding: 6px 20px 6px 16px;
    backdrop-filter: blur(2px);
    width: fit-content;
}

.lb_subtitle::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../img/sub.svg') no-repeat center;
    background-size: contain;
    margin-right: 4px;
}

.lb_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.lb_section_header .lb_subtitle {
    margin: 0 auto 18px auto;
}

.lb_section_header h2 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.lb_section_header p {
    max-width: 650px;
    margin: 0 auto;
    color: #acacac;
}


.lb_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    text-decoration: none;
    background: linear-gradient(100deg, rgb(255, 41, 113) 0%, rgb(255, 108, 27) 100%);
    color: white !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.lb_btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    box-shadow: 0 12px 24px rgba(255, 41, 113, 0.3);
}


.lb_card {
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.3s;
}

.wrap {
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 10px;
    max-width: 1220px;
    margin: 14px auto;
    overflow: hidden;
    position: relative;
    background: #140004;
}

.lb_header {
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 5px;
    padding: 16px 28px;
    margin-top: 28px;
    backdrop-filter: blur(4px);
}

.lb_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lb_logo_area {
    display: flex !important;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.lb_logo_area img {
    height: 38px;
    width: auto;
}

.lb_brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.lb_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lb_nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.lb_nav a:hover {
    color: #ff6c1b;
}

.lb_menu_toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


.lb_banner {
    position: relative;
    text-align: center;
    padding: 90px 0 100px;
    background: url('../img/lines.jpg') no-repeat center top;
    background-size: cover;
    margin-bottom: 40px;
}

.lb_banner .lb_subtitle {
    margin: 0 auto 20px auto;
}

.lb_banner h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px;
}

.lb_banner p {
    font-size: 1.1rem;
    max-width: 780px;
    margin: 0 auto 36px;
    color: #acacac;
}

.lb_btn_group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.lb_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.lb_why_item {
    text-align: center;
}

.lb_why_item img {
    width: 40px;
    margin-bottom: 16px;
}

.lb_why_item h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}


.lb_what_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 48px;
    gap: 20px;
}

.lb_what_left {
    max-width: 60%;
}

.lb_what_right {
    max-width: 35%;
    text-align: right;
}

.lb_capabilities_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.lb_feature_big {
    grid-row: span 2;
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 28px;
    padding: 32px;
}

.lb_feature_small {
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 24px;
    padding: 26px;
}

.lb_feature_big img,
.lb_feature_small img {
    width: 45px;
    margin-bottom: 14px;
}

.lb_feature_big h4,
.lb_feature_small h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.lb_readmore {
    display: inline-block;
    margin-top: 18px;
    color: #ff6c1b;
    text-decoration: none;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 108, 27, 0.5);
}


.lb_about_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin: 70px 0;
}

.lb_about_img img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
}

.lb_about_img {
    line-height: 0;
}

.lb_list {
    list-style: none;
    margin: 28px 0 32px;
}

.lb_list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lb_list li::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url('../img/li.svg') no-repeat center;
    background-size: contain;
}


.lb_suit_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 50px 0 70px;
}


.lb_cta_section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    margin: 40px 0 60px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(rgba(230, 224, 220, 0.03) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.08);
}

.lb_cta_section::before,
.lb_cta_section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.4;
}

.lb_cta_section::before {
    background: #ff691f;
    top: -100px;
    left: -100px;
}

.lb_cta_section::after {
    background: #ff2971;
    bottom: -120px;
    right: -80px;
}

.lb_cta_section h2 {
    font-size: 2.6rem;
    margin: 15px 0 16px;
}

.lb_cta_section .lb_btn {
    margin-top: 24px;
    position: relative;
    z-index: 2;
}


.lb_footer {
    border-top: 1px solid rgba(230, 224, 220, 0.1);
    padding: 60px 0 30px;
    margin-top: 40px;
}

.lb_footer_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.lb_footer_col {
    flex: 1;
    min-width: 180px;
}

.lb_footer_logo img {
    height: 40px;
}

.lb_footer_logo p {
    margin-top: 12px;
    font-size: 0.85rem;
    max-width: 240px;
}

.lb_footer_col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.lb_footer_col a {
    display: block;
    color: #acacac;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.lb_footer_col a:hover {
    color: #ff6c1b;
}

.lb_copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(230, 224, 220, 0.05);
    font-size: 0.85rem;
}

.lb_breadcrumbs {
    margin-bottom: 20px;
}

.lb_breadcrumbs a {
    color: #acacac;
    text-decoration: none;
    font-size: 0.9rem;
}

.lb_breadcrumbs a:hover {
    color: #ff6c1b;
}

.lb_breadcrumbs span {
    color: #ff6c1b;
}

.lb_page_header {
    text-align: center;
    margin-bottom: 60px;
}

.lb_page_header h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.lb_contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0 80px;
}

.lb_contact_info h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.lb_contact_info>p {
    margin-bottom: 40px;
    line-height: 1.6;
}

.lb_contact_blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.lb_contact_block {
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    transition: 0.2s;
}

.lb_contact_block h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
    opacity: 0.8;
}

.lb_contact_block p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.lb_form_card {
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 32px;
    padding: 40px 36px;
}

.lb_form_group {
    margin-bottom: 22px;
}

.lb_form_group input,
.lb_form_group textarea,
.lb_form_group select {
    width: 100%;
    background: rgba(20, 0, 4, 0.6);
    border: 1px solid rgba(230, 224, 220, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
    transition: 0.2s;
}

.lb_form_group input:focus,
.lb_form_group textarea:focus,
.lb_form_group select:focus {
    border-color: #ff6c1b;
}

.lb_form_group textarea {
    resize: vertical;
    min-height: 110px;
}

.lb_btn_submit {
    background: linear-gradient(100deg, rgb(255, 41, 113) 0%, rgb(255, 108, 27) 100%);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.lb_btn_submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.lb_thanks_msg {
    margin-top: 20px;
    padding: 14px;
    background: rgba(255, 108, 27, 0.15);
    border-radius: 12px;
    color: #ffb085;
    text-align: center;
    font-weight: 500;
    display: none;
}

.lb_page_header {
    text-align: center;
    margin: 40px 0 32px;
}

.lb_page_header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.lb_last_updated {
    color: #ff6c1b;
    font-size: 0.9rem;
    font-weight: 500;
}

.lb_breadcrumbs {
    margin-bottom: 20px;
    margin-top: 20px;
}

.lb_breadcrumbs a {
    color: #acacac;
    text-decoration: none;
    font-size: 0.9rem;
}

.lb_breadcrumbs a:hover {
    color: #ff6c1b;
}

.lb_breadcrumbs span {
    color: #ff6c1b;
}

.lb_legal_content {
    background: linear-gradient(rgba(230, 224, 220, 0.03) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.08);
    border-radius: 32px;
    padding: 48px 52px;
    margin: 30px 0 60px;
}

.lb_legal_content h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

.lb_legal_content h2:first-of-type {
    margin-top: 0;
}

.lb_legal_content h3 {
    color: #ffb085;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 24px 0 12px 0;
}

.lb_legal_content p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.lb_legal_content ul,
.lb_legal_content ol {
    margin: 16px 0 20px 32px;
}

.lb_legal_content li {
    margin-bottom: 10px;
}

.lb_legal_content a {
    color: #ff6c1b;
    text-decoration: none;
}

.lb_legal_content a:hover {
    text-decoration: underline;
}

.lb_contact_ref {
    background: rgba(255, 108, 27, 0.08);
    padding: 20px 28px;
    border-radius: 10px;
    margin: 32px 0 16px;
}

.lb_contact_ref p {
    margin-bottom: 8px;
}


.lb_tools_grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 40px 0 80px;
}

.lb_tool_card {
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 32px;
    padding: 40px 42px;
    transition: 0.25s ease;
}

.lb_tool_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.lb_tool_header img {
    width: 34px;
    height: 34px;
}

.lb_tool_header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

.lb_tool_desc {
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
    color: #c0c0c0;
}

.lb_feature_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lb_feature_list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
}

.lb_feature_list li::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url('../img/li.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .lb_tool_card {
        padding: 28px 24px;
    }

    .lb_tool_header h2 {
        font-size: 1.5rem;
    }

    .lb_page_header h1 {
        font-size: 2.2rem;
    }


}


.lb_two_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin: 40px 0 60px;
}

.lb_two_cols_reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin: 60px 0;
}

.lb_about_img img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
}

.lb_section_title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.lb_rich_text p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.lb_metrics_row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0 70px;
    flex-wrap: wrap;
}

.lb_metric_item {
    flex: 1;
    background: linear-gradient(rgba(230, 224, 220, 0.05) 0%, rgba(230, 224, 220, 0) 100%);
    border: 1px solid rgba(230, 224, 220, 0.1);
    border-radius: 28px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.2s;
}

.lb_metric_number {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6c1b, #ff2971);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.lb_metric_content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.lb_metric_content p {
    font-size: 0.9rem;
    color: #acacac;
}

.lb_list {
    list-style: none;
    margin: 28px 0 20px;
}

.lb_list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lb_list li::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url('../img/li.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

@media (max-width: 900px) {

    .lb_two_cols,
    .lb_two_cols_reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lb_two_cols_reverse .lb_about_img {
        order: 1;
    }

    .lb_two_cols_reverse .lb_rich_text {
        order: 2;
    }

    .lb_metrics_row {
        flex-direction: column;
    }

    .lb_section_title {
        font-size: 2rem;
    }

    .lb_metric_item {
        padding: 20px;
    }
}











@media (max-width: 768px) {
    .lb_legal_content {
        padding: 28px 24px;
    }

    .lb_page_header h1 {
        font-size: 2rem;
    }

    .lb_legal_content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .lb_contact_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lb_page_header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .lb_container {
        padding: 0 20px;
    }

    .lb_banner h1 {
        font-size: 3rem;
    }

    .lb_grid_3,
    .lb_suit_grid {
        gap: 20px;
    }

    .lb_what_left,
    .lb_what_right {
        max-width: 100%;
        text-align: left;
    }

    .lb_capabilities_grid {
        grid-template-columns: 1fr;
    }

    .lb_feature_big {
        grid-row: auto;
    }

    .lb_about_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lb_nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(20, 0, 4, 0.95);
        backdrop-filter: blur(12px);
        padding: 24px;
        border-radius: 24px;
        margin-top: 20px;
        gap: 18px;
    }

    .lb_nav.lb_show {
        display: flex;
    }

    .lb_menu_toggle {
        display: block;
    }

    .lb_header_inner {
        flex-wrap: wrap;
    }

    .lb_grid_3,
    .lb_suit_grid {
        grid-template-columns: 1fr;
    }

    .lb_what_left,
    .lb_what_right {
        max-width: 100%;
    }

    .lb_banner h1 {
        font-size: 2.2rem;
    }

    .lb_section_header h2 {
        font-size: 2rem;
    }
}

@media(max-width: 550px) {
    .lb_cta_section {
        padding: 40px 20px;
        border-radius: 14px;
    }

    .lb_cta_section h2 {
        font-size: 2.2rem;
    }

    .lb_about_grid {
        margin: 50px 0;
    }

    .lb_brand {
        font-size: 1.3rem;
    }

    .lb_logo_area img {
        height: 32px;
    }

    .lb_header {
        padding: 15px 20px;
    }

    .lb_footer_grid {
        gap: 30px;
    }

    .lb_metric_number {
        font-size: 2.5rem;
    }
}