* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.5;
    background: #000 url('../imgs/stars.jpg') center top no-repeat;
    background-size: 100%;
}

.cr_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.cr_title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
}

.cr_text {
    font-family: 'Inter', sans-serif;
    color: #999999;
    font-weight: 400;
    line-height: 1.55;
}


.cr_btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #2a2a2a 0%, #141414 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cr_btn-primary {
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cr_btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #444 0%, #222 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.cr_btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.cr_btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.45);
}


.cr_card {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.7)), url('../imgs/block.avif');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cr_card .cr_title {
    margin: 20px 0 10px 0;
}

.cr_card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.6);
}


.cr_icon_wrap {
    background: rgba(20, 20, 24, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 18px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.cr_icon_svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 1.3;
    fill: none;
}


.cr_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    flex-wrap: wrap;
}

.cr_logo_area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.cr_logo {
    height: 40px;
    width: auto;
}

.cr_brand {
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: #fff;
}

.cr_nav {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
}

.cr_nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 450;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.cr_nav a:hover {
    color: #fff;
}

.cr_mobile_toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}


.cr_banner {
    margin: 50px 0 110px;
}

.cr_banner_inner {
    text-align: center;
    position: relative;
}

.cr_banner_title {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px;
    letter-spacing: -0.03em;
}

.cr_banner_text {
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto 32px;
    color: #aaa;
}

.cr_dash_wrapper {
    background: url('../imgs/section.avif') center/cover no-repeat;
    border-radius: 28px;
    padding: 22px;
    margin-top: 48px;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.6);
}

.cr_dash_img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.cr_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 80px 0;
}


.cr_about {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 90px 0;
    flex-wrap: wrap;
}

.cr_about_left {
    flex: 1.2;
}

.cr_about_right {
    flex: 1;
}

.cr_about_img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cr_check_list {
    list-style: none;
    padding-left: 0;
    margin: 28px 0 32px;
}

.cr_check_list li {
    background: url('../imgs/check.svg') left center no-repeat;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #ccc;
    font-weight: 400;
}


.cr_capabilities_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 55px 0 80px;
}


.cr_cta {
    background: linear-gradient(115deg, rgba(0, 0, 0, 0.92) 0%, rgba(15, 15, 20, 0.9) 100%);
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    padding: 58px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 80px 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: brightness(1.1);
}


.cr_faq_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 70px 0 48px;
}

.cr_faq_questions {
    margin-bottom: 80px;
}

.cr_faq_item {
    background: rgba(12, 12, 16, 0.7);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.cr_faq_question {
    padding: 22px 28px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f0f0f0;
}

.cr_faq_answer {
    padding: 0 28px 28px 28px;
    color: #a0a0a0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: none;
    line-height: 1.6;
}

.cr_faq_item.active .cr_faq_answer {
    display: block;
}

.cr_faq_icon {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.7;
}


.cr_footer {
    padding: 70px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.cr_footer_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.cr_footer_col {
    min-width: 170px;
}

.cr_footer_menu a,
.cr_footer_links a {
    display: block;
    color: #9a9a9a;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.cr_footer_menu a:hover,
.cr_footer_links a:hover {
    color: #fff;
}

.cr_footer_contact {
    max-width: 220px;
}

.cr_footer_contact p {
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.85rem;
}

.cr_copyright {
    text-align: center;
    margin-top: 55px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: #6a6a6a;
    font-size: 0.75rem;
}

.cr_contact_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.cr_hero_center {
    text-align: center;
    padding: 60px 0 40px;
}

.cr_hero_title {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cr_breadcrumb {
    color: #999;
    font-size: 0.85rem;
}

.cr_breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.cr_breadcrumb a:hover {
    color: #fff;
}

.cr_breadcrumb span {
    color: #666;
    margin: 0 6px;
}

.cr_contacts_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 50px 0 70px;
}

.cr_contact_card {
    background: rgba(15, 15, 20, 0.7);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    transition: transform 0.2s, border-color 0.2s;
}

.cr_contact_card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(20, 20, 28, 0.8);
}

.cr_icon_svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 1.3;
    fill: none;
}

.cr_contact_label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 12px;
}

.cr_contact_value {
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    word-break: break-word;
}

.cr_form_section {
    background: rgba(8, 8, 12, 0.6);
    border-radius: 32px;
    padding: 48px 48px;
    margin: 40px 0 90px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cr_form_title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 32px;
    text-align: center;
}

.cr_form_grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cr_row_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cr_input_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cr_input_group label {
    font-size: 0.8rem;
    color: #bbb;
    letter-spacing: 0.3px;
}

.cr_input_group input,
.cr_input_group select,
.cr_input_group textarea {
    background: rgba(20, 20, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: 0.2s;
}

.cr_input_group input:focus,
.cr_input_group select:focus,
.cr_input_group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: #1a1a22;
}

.cr_error_msg {
    color: #ff7b72;
    font-size: 0.7rem;
    margin-top: 4px;
    display: none;
}

.cr_input_group.error input,
.cr_input_group.error textarea {
    border-color: #ff5a4a;
}

.cr_btn_submit {
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: 0.25s;
    width: 200px;
    margin-top: 10px;
}

.cr_btn_submit:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
    transform: translateY(-2px);
}

.cr_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.cr_popup_overlay.active {
    visibility: visible;
    opacity: 1;
}

.cr_popup {
    background: #0f0f14;
    border-radius: 32px;
    padding: 40px 48px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.5);
}

.cr_popup p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.cr_popup span {
    color: #aaa;
}

.cr_popup_close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
}

@media (max-width: 780px) {
    .cr_contacts_grid {
        grid-template-columns: 1fr;
    }

    .cr_row_2 {
        grid-template-columns: 1fr;
    }

    .cr_form_section {
        padding: 32px 24px;
    }

    .cr_hero_title {
        font-size: 2.2rem;
    }
}

.cr_legal_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.cr_legal_hero {
    text-align: center;
    padding: 30px 0 30px;
}

.cr_legal_title {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cr_legal_date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.cr_breadcrumb {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.cr_breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.cr_breadcrumb a:hover {
    color: #fff;
}

.cr_breadcrumb span {
    color: #666;
    margin: 0 6px;
}

.cr_legal_content {
    background: rgba(10, 10, 14, 0.5);
    border-radius: 28px;
    padding: 48px 52px;
    margin: 30px 0 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cr_legal_content h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 32px 0 16px;
    color: #fff;
}

.cr_legal_content h2:first-of-type {
    margin-top: 0;
}

.cr_legal_content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 24px 0 12px;
    color: #ddd;
}

.cr_legal_content p {
    color: #aaa;
    line-height: 1.65;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.cr_legal_content ul,
.cr_legal_content ol {
    margin: 16px 0 24px 28px;
    color: #aaa;
    line-height: 1.6;
}

.cr_legal_content li {
    margin-bottom: 8px;
}

.cr_legal_content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cr_legal_footer_contacts {
    background: rgba(20, 20, 28, 0.4);
    border-radius: 20px;
    padding: 28px 32px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cr_legal_footer_contacts p {
    margin-bottom: 8px;
    color: #ccc;
}

@media (max-width: 780px) {
    .cr_legal_content {
        padding: 28px 24px;
    }

    .cr_legal_title {
        font-size: 2rem;
    }
}




.cr_legal_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}



.cr_legal_title {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cr_legal_date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.cr_breadcrumb {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.cr_breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.cr_breadcrumb a:hover {
    color: #fff;
}

.cr_breadcrumb span {
    color: #666;
    margin: 0 6px;
}

.cr_legal_content {
    background: rgba(10, 10, 14, 0.5);
    border-radius: 28px;
    padding: 48px 52px;
    margin: 30px 0 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cr_legal_content h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 32px 0 16px;
    color: #fff;
}

.cr_legal_content h2:first-of-type {
    margin-top: 0;
}

.cr_legal_content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 24px 0 12px;
    color: #ddd;
}

.cr_legal_content p {
    color: #aaa;
    line-height: 1.65;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.cr_legal_content ul,
.cr_legal_content ol {
    margin: 16px 0 24px 28px;
    color: #aaa;
    line-height: 1.6;
}

.cr_legal_content li {
    margin-bottom: 8px;
}

.cr_legal_content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cr_legal_footer_contacts {
    background: rgba(20, 20, 28, 0.4);
    border-radius: 20px;
    padding: 28px 32px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cr_legal_footer_contacts p {
    margin-bottom: 8px;
    color: #ccc;
}

@media (max-width: 780px) {
    .cr_legal_content {
        padding: 28px 24px;
    }

    .cr_legal_title {
        font-size: 2rem;
    }
}

.cr_about_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.cr_section_center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cr_title_main {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cr_text_main {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cr_breadcrumb {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin: 30px 0 20px;
}

.cr_breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.cr_breadcrumb a:hover {
    color: #fff;
}

.cr_breadcrumb span {
    color: #666;
    margin: 0 6px;
}

.cr_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 60px 0 80px;
}

.cr_feature_card {
    background: rgba(12, 12, 16, 0.6);
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.25s, border-color 0.2s;
}

.cr_feature_card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 24, 0.7);
}


.cr_icon_svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 1.3;
    fill: none;
}

.cr_feature_title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.cr_feature_text {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.55;
}

.cr_long_text_section {
    background: rgba(8, 8, 12, 0.4);
    border-radius: 28px;
    padding: 50px 56px;
    margin: 40px 0 80px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cr_long_text_section h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 32px 0 16px;
    color: #fff;
}

.cr_long_text_section h3:first-of-type {
    margin-top: 0;
}

.cr_long_text_section p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 0.96rem;
}

.cr_long_text_section .cr_highlight {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 880px) {
    .cr_features_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cr_title_main {
        font-size: 2.2rem;
    }

    .cr_long_text_section {
        padding: 32px 24px;
    }
}



.cr_capabilities_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.cr_breadcrumb {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin: 30px 0 20px;
}

.cr_breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.cr_breadcrumb a:hover {
    color: #fff;
}

.cr_breadcrumb span {
    color: #666;
    margin: 0 6px;
}

.cr_section_center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.cr_subtitle {
    color: #aaa;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cr_title_main {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cr_text_main {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cr_cards_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.cr_feature_card {
    background: rgba(12, 12, 16, 0.6);
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.25s, border-color 0.2s;
}

.cr_feature_card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 24, 0.7);
}

.cr_icon_wrap {
    background: rgba(30, 30, 38, 0.6);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cr_icon_svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 1.3;
    fill: none;
}

.cr_feature_title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.cr_feature_text {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.cr_feature_list {
    list-style: none;
    padding-left: 0;
}

.cr_feature_list li {
    color: #bbb;
    font-size: 0.85rem;
    padding-left: 22px;
    margin-bottom: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><polyline points="20 6 9 17 4 12"></polyline></svg>') left center no-repeat;
    background-size: 14px;
}

.cr_card_full {
    grid-column: span 2;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cr_card_full .cr_icon_wrap {
    margin-bottom: 0;
}

.cr_full_content {
    flex: 1;
}

.cr_full_content .cr_feature_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    margin-top: 16px;
}

@media (max-width: 880px) {
    .cr_cards_grid {
        grid-template-columns: 1fr;
    }

    .cr_card_full {
        grid-column: span 1;
        flex-direction: column;
    }

    .cr_full_content .cr_feature_list {
        grid-template-columns: 1fr;
    }

    .cr_title_main {
        font-size: 2rem;
    }
}

























@media (max-width: 880px) {

    .cr_grid_3,
    .cr_capabilities_grid {
        grid-template-columns: 1fr 1fr;
    }

    .cr_nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #0c0c0e;
        padding: 24px;
        border-radius: 24px;
        margin-top: 20px;
        gap: 20px;
    }

    .cr_nav.open {
        display: flex;
    }

    .cr_mobile_toggle {
        display: block;
    }

    .cr_about {
        flex-direction: column;
    }

    .cr_banner_title {
        font-size: 2.6rem;
    }

    .cr_cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 45px 30px;
    }

    .cr_faq_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 640px) {

    .cr_grid_3,
    .cr_capabilities_grid {
        grid-template-columns: 1fr;
    }

    .cr_container {
        padding: 0 20px;
    }

    .cr_title {
        font-size: 1.8rem !important;
    }

    .cr_footer_grid {
        gap: 30px;
    }

    .cr_card .cr_title {
        font-size: 1.5rem !important;
    }
    .cr_dash_wrapper{
        padding: 8px;
    }
    .cr_about_container, .cr_capabilities_container, .cr_legal_container{
        padding: 0 10px;
    }
    .cr_grid_3{
        margin-top: 50px;
    }
    .cr_hero_center{
        padding: 20px 0 0 0;
    }
    .cr_banner{
        margin-bottom: 40px;
    }
}

a,
button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

.cr_section_sub {
    display: none;
}