* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #02021a;
    background-image: url('../img/hero-bg-canvas.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.4;
}


.qr_wrapper {
    max-width: 1150px;
    width: 98%;
    margin: 30px auto;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #02021a;
}


.qr_block {
    background: #0c0d25;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    backdrop-filter: blur(2px);
}

.qr_block_gradient {
    background: #0c0d25;
    border-radius: 28px;
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.qr_block_gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.25) 11.62%, rgba(255, 255, 255, 0) 50.7%, rgba(255, 255, 255, 0.25) 92.88%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.qr_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    gap: 8px;
    border: none;
}

.qr_btn-primary {
    background: #fff;
    color: #000;
}

.qr_btn-primary:hover {
    background: #e6e6e6;
    transform: translateY(-2px);
}

.qr_btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.qr_btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.qr_btn-gradient {
    background: linear-gradient(212deg, #0023ec 13.33%, #9746d8 55.74%, #d100eb 93.86%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 35, 236, 0.2);
}

.qr_btn-gradient:hover {
    opacity: 0.9;
    transform: scale(0.98);
}


h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.qr_subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 40px;
    margin-bottom: 10px;
    backdrop-filter: blur(4px);
}

.qr_text {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}


.qr_icon_orange {
    color: #fb6a15;
}

.qr_icon_cyan {
    color: #02d6e4;
}

.qr_icon_blue {
    color: #0094ff;
}

.qr_icon_purple {
    color: #c55eff;
}


.qr_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0 20px 0;
}

.qr_logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.qr_logo img {
    height: 38px;
    width: auto;
}

.qr_brand {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, #c0c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.qr_menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.qr_menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.qr_menu a:hover {
    color: #fff;
}

.qr_mobile_btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}


.qr_grid_3 {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.qr_card {
    flex: 1;
    min-width: 240px;
    padding: 32px 24px;
    transition: all 0.2s;
}

.qr_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.qr_service_item {
    background: #0c0d25;
    border-radius: 24px;
    padding: 28px 22px;
    transition: 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.qr_service_item h3 {
    margin-bottom: 10px;
}

.qr_service_item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.qr_icon_large {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}

.qr_service_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 4px;
}

.custom h3 {
    margin-bottom: 12px;
}

.qr_list_styled {
    list-style: none;
    padding: 0;
}

.qr_list_styled li:before {
    content: '';
    width: 17px;
    height: 17px;
    background: url('../img/check.png') center no-repeat;
    background-size: contain;
    display: inline-block;
}

.qr_list_styled li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.qr_footer {
    margin-top: 80px;
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.qr_footer_col {
    flex: 1;
    min-width: 160px;
}

.qr_footer_col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.qr_footer_col a:hover {
    color: white;
}

.qr_copyright {
    width: 100%;
    text-align: left;
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.qr_contact_section {
    max-width: 1150px;
    margin: 40px auto 60px;
    padding: 0 20px;
}


.qr_contact_header {
    text-align: center;
    margin-bottom: 56px;
}

.qr_contact_breadcrumb {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.qr_contact_breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.qr_contact_breadcrumb a:hover {
    color: #fff;
}

.qr_contact_breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
}

.qr_contact_title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFF, #bfbfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.qr_contact_sub {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}


.qr_contact_grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.qr_contact_info {
    flex: 1.1;
    min-width: 260px;
}

.qr_contact_form_wrapper {
    flex: 1.8;
    min-width: 320px;
}


.qr_contact_card {
    background: #0c0d25;
    border-radius: 24px;
    padding: 28px 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
    backdrop-filter: blur(2px);
    position: relative;
    box-sizing: border-box;
}

.qr_contact_card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.qr_contact_icon {
    margin-bottom: 20px;
    display: inline-block;
}

.qr_contact_icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.qr_contact_card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.qr_contact_card p,
.qr_contact_card a {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.qr_contact_card a:hover {
    color: #fff;
    text-decoration: underline;
}


.qr_form_glass {
    background: #0c0d25;
    border-radius: 28px;
    padding: 38px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.qr_form_glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.2) 11.62%, rgba(255, 255, 255, 0) 50.7%, rgba(255, 255, 255, 0.15) 92.88%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.qr_input_group {
    margin-bottom: 24px;
}

.qr_input_group input,
.qr_input_group textarea,
.qr_input_group select {
    width: 100%;
    background: rgba(10, 12, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 14px 20px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    color: #fff;
    transition: all 0.2s;
    outline: none;
}

.qr_input_group textarea {
    resize: vertical;
    min-height: 110px;
}

.qr_input_group input:focus,
.qr_input_group textarea:focus,
.qr_input_group select:focus {
    border-color: #0094ff;
    box-shadow: 0 0 0 2px rgba(0, 148, 255, 0.2);
}

.qr_input_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
}

.qr_submit_btn {
    background: linear-gradient(212deg, #0023ec 13.33%, #9746d8 55.74%, #d100eb 93.86%);
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    box-shadow: 0 5px 18px rgba(0, 35, 236, 0.3);
}

.qr_submit_btn:hover {
    opacity: 0.92;
    transform: scale(0.98);
}

.qr_thankyou_msg {
    margin-top: 20px;
    background: rgba(0, 148, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 12px 20px;
    text-align: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    color: #b3e4ff;
    border: 1px solid rgba(0, 148, 255, 0.4);
    transition: all 0.2s;
}


@media (max-width: 800px) {
    .qr_contact_grid {
        flex-direction: column;
    }

    .qr_contact_title {
        font-size: 2.2rem;
    }

    .qr_form_glass {
        padding: 28px 22px;
    }
}


.qr_icon_mail {
    color: #fb6a15;
}

.qr_icon_phone {
    color: #02d6e4;
}

.qr_icon_location {
    color: #0094ff;
}


.qr_about_section {
    max-width: 1150px;
    margin: 40px auto 60px;
    padding: 0 20px;
}


.qr_about_header {
    text-align: center;
    margin-bottom: 56px;
}

.qr_about_breadcrumb {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.qr_about_breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.qr_about_breadcrumb a:hover {
    color: #fff;
}

.qr_about_breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
}

.qr_about_title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFF, #bfbfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.qr_about_sub {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}


.qr_about_two_cols {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.qr_about_text_col {
    flex: 1;
    min-width: 280px;
}

.qr_about_image_col {
    flex: 1;
    min-width: 280px;
}

.qr_about_image {
    line-height: 0;
}

.qr_about_image img {
    max-width: 100%;
    width: 100%;
}

.qr_about_image:hover {
    transform: scale(1.02);
}

.qr_about_badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter Tight', sans-serif;
}

.qr_about_text_col h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.qr_about_description {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.qr_about_list {
    list-style: none;
    padding: 0;
    margin: 28px 0 20px;
}

.qr_about_list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.85);
}

.qr_about_list svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.qr_icon_check_orange {
    color: #fb6a15;
}

.qr_icon_check_cyan {
    color: #02d6e4;
}

.qr_icon_check_blue {
    color: #0094ff;
}


.qr_stats_section {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0 20px;
}

.qr_stat_card {
    flex: 1;
    min-width: 200px;
    background: #0c0d25;
    border-radius: 28px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.qr_stat_card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.2) 11.62%, rgba(255, 255, 255, 0) 50.7%, rgba(255, 255, 255, 0.15) 92.88%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.qr_stat_card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.qr_stat_number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fff, #a0a0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 12px;
}

.qr_stat_label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.qr_stat_desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}


@media (max-width: 850px) {
    .qr_about_two_cols {
        flex-direction: column;
    }

    .qr_about_title {
        font-size: 2.2rem;
    }

    .qr_stat_number {
        font-size: 2.5rem;
    }

    .qr_stats_section {
        gap: 18px;
    }
}

.qr_services_section {
    max-width: 1150px;
    margin: 40px auto 60px;
    padding: 0 20px;
}


.qr_services_header {
    text-align: center;
    margin-bottom: 56px;
}

.qr_services_breadcrumb {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.qr_services_breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.qr_services_breadcrumb a:hover {
    color: #fff;
}

.qr_services_breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
}

.qr_services_title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFF, #bfbfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.qr_services_sub {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}


.qr_services_grid_detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin: 40px 0 20px;
}

.qr_service_detailed {
    background: #0c0d25;
    border-radius: 28px;
    padding: 34px 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.qr_service_detailed::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.2) 11.62%, rgba(255, 255, 255, 0) 50.7%, rgba(255, 255, 255, 0.15) 92.88%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.qr_service_detailed:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.qr_service_icon {
    margin-bottom: 24px;
    display: inline-block;
}

.qr_service_icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.qr_service_detailed h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.qr_service_desc_full {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.qr_service_feature_list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.qr_service_feature_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.qr_service_feature_list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.qr_service_link_detailed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.qr_service_link_detailed:hover {
    gap: 12px;
    border-bottom-color: #0094ff;
    color: #0094ff;
}


.qr_icon_services_orange {
    color: #fb6a15;
}

.qr_icon_services_cyan {
    color: #02d6e4;
}

.qr_icon_services_blue {
    color: #0094ff;
}

.qr_icon_services_purple {
    color: #c55eff;
}

.qr_icon_services_green {
    color: #2ecc71;
}

.qr_icon_services_pink {
    color: #ff6b9d;
}

.qr_check_mark {
    color: #02d6e4;
}


@media (max-width: 800px) {
    .qr_services_title {
        font-size: 2.2rem;
    }

    .qr_services_grid_detailed {
        grid-template-columns: 1fr;
    }

    .qr_service_detailed {
        padding: 26px 22px;
    }

    .qr_service_detailed h3 {
        font-size: 1.4rem;
    }
}






.qr_content_card {
    background: #0c0d25;
    border-radius: 28px;
    padding: 48px 52px;
    margin: 20px 0 60px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.qr_content_card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.25) 11.62%, rgba(255, 255, 255, 0) 50.7%, rgba(255, 255, 255, 0.25) 92.88%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.qr_page_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFF, #bfbfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.qr_update_date {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.qr_legal_text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 28px 0 16px;
    color: #fff;
}

.qr_legal_text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: rgba(255, 255, 255, 0.95);
}

.qr_legal_text p {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.6;
}

.qr_legal_text ul,
.qr_legal_text ol {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0 20px 24px;
    line-height: 1.6;
}

.qr_legal_text li {
    margin-bottom: 8px;
}

.qr_legal_text a {
    color: #0094ff;
    text-decoration: none;
}

.qr_legal_text a:hover {
    text-decoration: underline;
}

.qr_legal_text strong {
    color: rgba(255, 255, 255, 0.95);
}


.qr_contact_footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.qr_contact_info_block p {
    font-family: 'Inter Tight', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.qr_breadcrumb {
    margin: 20px 0 30px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.qr_breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.qr_breadcrumb a:hover {
    color: #fff;
}

.qr_breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
}




.qr_table_cookies {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Inter Tight', sans-serif;
}

.qr_table_cookies th,
.qr_table_cookies td {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
}

.qr_table_cookies th {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
}



































@media (max-width: 850px) {
    .qr_menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #0c0d25dd;
        backdrop-filter: blur(12px);
        border-radius: 28px;
        padding: 24px;
        margin-top: 20px;
        gap: 18px;
        text-align: center;
    }

    .qr_menu.active {
        display: flex;
    }

    .qr_mobile_btn {
        display: block;
    }

    .qr_header {
        position: relative;
    }

    .qr_grid_3,
    .qr_services_grid {
        flex-direction: column;
    }

    .qr_footer {
        flex-direction: column;
    }
}


.qr_hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: url('../img/hero-bg-canvas.png') center no-repeat;
    background-size: cover;
}

.qr_hero_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}


.qr_two_cols {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
}

.qr_two_cols>div {
    flex: 1;
}

.qr_image_placeholder {
    line-height: 0;
}

.qr_image_placeholder img {
    max-width: 100%;
    width: 100%;
}


.heroicon {
    width: 35px;
    height: 35px;
    stroke-width: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

svg.heroicon {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.qr_icon_big .heroicon {
    width: 42px;
    height: 42px;
}

.center {
    text-align: center;
}

.mt-4 {
    margin-top: 20px;
}

.mb-2 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 28px;
}

.rounded-full {
    border-radius: 999px;
}

@media(max-width: 600px) {
    .qr_wrapper {
        margin: 15px auto;
    }

    .qr_two_cols {
        flex-direction: column;
    }

    .cta h2 {
        font-size: 2rem !important;
    }

    .qr_hero h1 {
        font-size: 2.2rem !important;
    }

    .service h2 {
        font-size: 2rem !important;
    }

    .qr_contact_info,
    .qr_contact_form_wrapper {
        min-width: auto;
        flex: auto;
    }

    .qr_content_card {
        padding: 40px 20px;
    }

    .qr_table_cookies th,
    .qr_table_cookies td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}