/* header */
header{
    padding: 10px 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    background: transparent;
}
/* Inner pages: brand purple header (home stays transparent over hero) */
body.page-inner header {
    background: var(--grad-band);
    background-size: 180% 180%;
    animation: grad-shift 14s ease infinite;
    box-shadow: 0 4px 24px rgba(30, 11, 58, 0.18);
}
.header_blck{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px, 1.5vw, 20px);
    width: 100%;
}
.header_nav_drawer {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_bar.nav_bar_main {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    margin: 0;
    width: 100%;
    min-width: 0;
}
.nav_bar.nav_bar_main > .nav_alink:nth-child(-n+3) {
    text-align: left;
    justify-self: stretch;
    min-width: 0;
}
.nav_bar.nav_bar_main > .nav_alink:nth-child(-n+3)::after {
    transform-origin: left center;
}
.nav_bar.nav_bar_main > .nav_alink:nth-child(n+5) {
    text-align: right;
    justify-self: stretch;
    min-width: 0;
}
.nav_bar.nav_bar_main > .nav_alink:nth-child(n+5)::after {
    transform-origin: right center;
}
.nav_bar.nav_bar_main > .logo_head {
    justify-self: center;
    align-self: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_bar.nav_bar_main .nav_alink {
    white-space: nowrap;
}
.logo_head{
    flex: 0 0 auto;
    max-width: min(400px, 56vw);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo_head_bar_mobile {
    display: none;
}
.logo_head img{
    width: auto;
    max-width: 100%;
    max-height: 112px;
    height: auto;
    object-fit: contain;
    display: block;
}
.height_line{
    height: 24px;
    border-right: 1px solid var(--white);
}
header .height_line{
    display: none;
}
/* Inner pages: nav row spans full viewport width (content inset only) */
body.page-inner header > .wrapper {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
}
.header_blck .nav_alink {
    margin-left: 0;
}
.nav_alink{
    font-size: var(--eighteen);
    color: var(--white);
    font-family: 'Inter-SemiBold';
    margin-left: 26px;
    position: relative;
}
.nav_alink::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 2px;
    background: var(--grad-cta);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.95;
}
.nav_alink:hover{
    color: #fef3c7;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}
.nav_alink:hover::after {
    transform: scaleX(1);
}
.nav_item_has_subnav{
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav_item_has_subnav .nav_alink_dropdown_toggle{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav_arrow{
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.nav_item_has_subnav:hover .nav_arrow{
    transform: rotate(180deg);
}
.nav_submenu{
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 240px;
    padding: 8px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
    border-radius: var(--radiusSm);
    box-shadow: 0 16px 48px rgba(30, 11, 58, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 30;
}
.nav_item_has_subnav:hover .nav_submenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav_sublink{
    display: block;
    padding: 10px 18px;
    margin-left: 0;
    font-size: var(--sixteen);
    font-family: 'Inter-SemiBold';
    color: var(--brandGrayBold);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.nav_sublink:hover{
    opacity: 1;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.08));
    transform: translateX(4px);
}
.applay_btn{
    color: var(--white);
    gap: 10px;
    cursor: pointer;
    border: 1px solid var(--white);
    border-radius: 90px;
    font-size:  var(--eighteen);
    padding: 14px 20px;
}
.applay_btn:hover{
    background-color: var(--white);
    color: var(--brandGrayBold);
}
.applay_btn:hover svg path{
    stroke: var(--brandGrayBold);
}
.burger_svg{
    display: none;
    cursor: pointer;
}
/* end header */

/* contact & inner pages: heading inside content (below header) */
.page_heading_section {
    padding-top: clamp(96px, 12vw, 140px);
    padding-bottom: 8px;
}
.page_heading_panel {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: var(--shadow);
    padding: 20px 28px 26px;
}
.page_heading_toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 14px;
}
.page_heading_phone {
    font-size: var(--eighteen);
    font-family: 'Inter-SemiBold', sans-serif;
    color: var(--brandGray);
    text-decoration: none;
    white-space: nowrap;
}
.page_heading_phone:hover {
    text-decoration: underline;
    color: var(--brandGrayBold);
}
.page_heading_breadcrumbs {
    width: 100%;
}
.page_heading_crumb_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.page_heading_crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--eighteen);
}
.page_heading_crumb:not(:last-child)::after {
    content: "/";
    color: rgba(40, 40, 40, 0.35);
    font-weight: 500;
    margin-left: 2px;
}
.page_heading_crumb_link {
    color: var(--brandGray);
    text-decoration: none;
    font-family: 'Inter-SemiBold', sans-serif;
}
.page_heading_crumb_link:hover {
    text-decoration: underline;
    color: var(--brandGrayBold);
}
.page_heading_crumb_text {
    color: rgba(40, 40, 40, 0.55);
    font-family: 'Inter-SemiBold', sans-serif;
}
.page_heading_crumb_current {
    color: var(--black);
    font-family: 'Inter-SemiBold', sans-serif;
}
.page_heading_title.general_title {
    margin: 16px 0 0;
    color: var(--black);
    text-align: left;
}
.general_title{
    color: var(--white);
    font-family: 'Inter-SemiBold';
    font-size: var(--titleFont);
}
.contactus_form{
    margin: 100px 0 100px 0;
    background: linear-gradient(165deg, #ffffff 0%, #faf5ff 55%, #ede9fe 100%);
    border-radius: var(--radius);
    padding: 40px;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.contactus_form:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadowHover);
}
.form_title_descrip{
    gap: 20px;
}
.title_conts{
    font-size: 30px;
    font-family: 'Inter-SemiBold';
    max-width: 316px;
}
.descrip_forms{
    color: rgba(40, 40, 40, 0.60);
    font-size: var(--eighteen);
    max-width: 778px;
    width: 55%;
}
.email_phone_block{
    margin: 28px 0;
    gap: 14px;
}
.inp_lab{
    flex-direction: column;
    align-items: start;
    gap: 14px;
    padding: 10px;
    border-radius: 4px;
    background: #F6F6F6;
    width: 50%;
}
.label_sp{
    font-size: var(--eighteen);
    font-family: 'Inter-Bold';
    gap: 12px;
}
.transparent_inp{
    color: rgba(40, 40, 40, 0.60);
    font-size: var(--eighteen);
}
.transparent_inp:hover{
    color: rgba(40, 40, 40, 1);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.inps_{
    background-color: transparent;
    padding: 18px 20px;
    font-size: var(--forteen);
    border-radius: 4px;
    border: 1px solid rgba(40, 40, 40, 0.20);
}
.inps_::placeholder{
    color: var(--black);
}
textarea{
    resize: none;
}
.send_btn{
    cursor: pointer;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--grad-cta);
    background-size: 200% auto;
    border-radius: 999px;
    color: var(--c-ink);
    font-size: var(--forteen);
    font-family: 'Inter-Bold';
    border: none;
    box-shadow: 0 6px 24px rgba(234, 88, 12, 0.35);
    position: relative;
    overflow: hidden;
}
.send_btn:hover{
    transform: translateY(-3px) scale(1.02);
    animation: grad-shift 4s ease infinite;
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.45);
}
.send_btn svg path {
    stroke: var(--c-ink);
}
.review_block{
    margin-bottom: 100px;
    align-items: stretch;
    background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 40%, #f0fdfa 100%);
    border-radius: var(--radius);
    padding: 10px 10px 10px 40px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow: var(--shadow);
}
.review_block .revs_descrip_titles{
    flex: 0 0 30%;
    max-width: 30%;
}
.review_block .review_block_swiper{
    flex: 0 0 70%;
    max-width: 70%;
}
.revs_descrip_titles{
    padding: 30px 0;
    flex-direction: column;
    align-items: start;
    gap: 28px;
    max-width: 316px;
}
.stroke_wtitle{
    gap: 20px;
    font-size: var(--eighteen);
}
.stroke_img{
    max-width: 60px;
}
.revs_descrip_titles .title_conts{
    margin-bottom: auto;
    color: var(--black);
}
.revs_descrip{
    font-size: var(--eighteen);
    color: rgba(40, 40, 40, 0.60);
}
.review_block_swiper{
    margin: 0 0 0 auto !important;
    min-width: 0;
}
.pagination_navigation{
    width: 44%;
    position: absolute;
    gap: 10px;
    bottom: 20px;
    left: 20px;
}
.pagination_navigation .swiper-pagination, .pagination_navigation .swiper-button-next,
.pagination_navigation .swiper-button-prev{
    position: static;
}
.review_window{
    justify-content: space-between;
    height: auto !important;
    padding: 20px;
    border-radius: 8px;
    background: #F6F6F6;
    display: flex !important;
    flex-direction: column;
    gap: 108px;
}
.review_text{
    font-size: var(--eighteen);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.review_text_svg{
    flex-direction: column;
    gap: 10px;
}
.string_end{
    text-align: end;
}
.revs_name_date{
    flex-direction: column;
    align-items: start;
}
.revs_name{
    font-size: 30px;
    font-family: 'Inter-SemiBold';
}
.revs_date{
    color: rgba(40, 40, 40, 0.60);
    font-size: var(--eighteen);
}
.rev_svg{
    font-size: 30px;
    font-family: 'Inter-SemiBold';
}
.review_block_swiper .swiper-slide-active{
    background: var(--grad-band);
    background-size: 200% 200%;
    animation: grad-shift 12s ease infinite;
    padding-bottom: 45px;
}
.review_block_swiper .swiper-slide-active .review_text,
.review_block_swiper .swiper-slide-active .rev_svg,
.review_block_swiper .swiper-slide-active .revs_name{
    color: var(--white);
}
.review_block_swiper .swiper-slide-active .revs_date{
    color: rgba(255, 255, 255, 0.60);
}
.swiper-pagination {
    display: flex !important;
    gap: 8px;
}
.swiper-pagination-bullet{
    cursor: pointer;
    margin: 0 !important;
    width: 30px !important;
    height: 4px !important;
    border-radius: 1px !important;
    background: rgba(255, 255, 255, 0.20);
}
.swiper-pagination-bullet-active{
    background: var(--grad-cta) !important;
    background-size: 200% auto !important;
    animation: grad-shift 4s ease infinite !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
    content: '' !important;
}
.swiper-button-next svg, .swiper-button-prev svg{
    width: 8px !important;
    height: 16px !important;
}
.swiper-button-next, .swiper-button-prev{
    min-width: 40px;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.20);
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    border-color: var(--white);
}
.faq_block{
    margin-bottom: 100px;
    gap: 20px;
    align-items: stretch;
}
.faq_contact_section{
    margin: 0 auto;
    padding: 80px 0 100px;
    text-align: center;
}
.faq_contact_columns{
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    text-align: left;
}
.faq_column,
.contact_column{
    flex: 1;
    min-width: 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq_column .faq_acc_blcks{
    flex-direction: column;
    gap: 16px;
    padding-top: 0;
}
.contact_column .contactus_form{
    margin: 0;
    height: 100%;
}
.contact_column .descrip_forms{
    width: 100%;
    max-width: none;
}
.contact_column .email_phone_block{
    flex-wrap: wrap;
}
.contact_column .inp_lab{
    flex: 1;
    min-width: 200px;
}
.faq_acc_blcks{
    flex-direction: column;
    gap: 16px;
    padding-top: 52px;
}
.acc_block{
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #faf5ff);
    border-radius: var(--radiusSm);
    flex-direction: column;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.acc_block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(124, 58, 237, 0.25);
}
.title_svg_acc{
    cursor: pointer;
    gap: 10px;
}
.acc_title{
    font-size: var(--eighteen);
    font-family: 'Inter-SemiBold';
}
.plus_minus_svg{
    width: 30px;
    height: 30px;
    justify-content: center;
    border: 1px solid black;
    border-radius: 50%;
}
.minus_acc{
    display: none;
}
.hidden_acc{
    color: rgba(40, 40, 40, 0.60);
    height: 0;
    overflow: hidden;
    line-height: 140%;
    font-size: var(--eighteen);
}
.acc_block_active .minus_acc{
    display: flex;
}
.acc_block_active .plus_acc{
    display: none;
}
.acc_block_active .hidden_acc{
    height: auto;
    padding-top: 20px;
}
.title_svg_acc:hover .acc_title{
    color: var(--brandGray);
}
.title_svg_acc:hover .plus_minus_svg{
    border-color: var(--brandGray);
}
.title_svg_acc:hover .plus_minus_svg svg path{
    stroke: var(--brandGray);
}
.contacts_window{
    margin: 100px auto;
}
.contacts_window .review_block {
    margin: 0;
}
.about_reviews{
    margin-top: 150px;
}
.revs_descrip_titles .inp_lab{
    width: 100%;
}
.aboutus_section{
    align-items: start;
    margin: 100px 0;
    gap: 20px;
    flex-direction: column;
}
.aboutus_section .step_statistic{
    max-width: none;
    width: 100%;
    gap: 24px;
}
.aboutus_section .about_text_blck{
    max-width: none;
    width: 100%;
}
.step_statistic{
    max-width: 522px;
    flex-direction: column;
    gap: 78px;
}
.step_statistic .title_conts, .revs_descrip_titles .title_conts{
    max-width: none;
}
.aboutus_section .general_title{
    color: var(--black);
}
.statistic_winds{
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
}
.statistic_numbers{
    padding: 20px;
    align-items: start;
    background-color: var(--white);
    border-radius: 8px;
    flex-direction: column;
    gap: 15px;
    width: calc(100% / 2 - 10px);
}
.statistic_num{
    font-family: 'Inter-Bold';
    font-size: 30px;
}
.statistic_title{
    font-size: var(--eighteen);
    color: rgba(40, 40, 40, 0.60);
}
.about_text_blck{
    flex-direction: column;
    gap: 18px;
}
.about_text{
    font-size: var(--eighteen);
    color: rgba(40, 40, 40, 0.60);
    line-height: 140%;
}
.second_blck{
    max-width: 778px;
    width: 52%;
}
.whych_us_four{
    gap: 20px;
    align-items: stretch;
    justify-content: start;
    flex-wrap: wrap;
}
.why_choose_reasons{
    width: calc(100% / 2 - 10px);
    background-color: #F6F6F6;
    gap: 100px;
    padding: 20px;
    flex-direction: column;
    align-items: start;
    border-radius: 8px;
}
.title_reason{
    font-size: 30px;
    font-family: 'Inter-SemiBold';
}
.serv_inf{
    font-size: var(--eighteen);
    font-family: 'Inter-Medium';
    line-height: 140%;
    color: rgba(40, 40, 40, 0.60);
}
/* end contact */

/* footer */
footer{
    max-width: 1900px;
    width: 99%;
    background: var(--grad-band);
    background-size: 200% 200%;
    animation: grad-shift 18s ease infinite;
    border-radius: var(--radius);
    padding: 40px 0;
    margin: 0 auto 10px auto;
    box-shadow: 0 -8px 40px rgba(30, 11, 58, 0.15);
}
.footer_block{
    gap: 20px;
    align-items: start;
}
.f_logo_descrip{
    flex-direction: column;
    gap: 20px;
    align-items: start;
}
.f_descrip{
    font-size: var(--eighteen);
    max-width: 390px;
    color: var(--white);
    font-family: 'Inter-Regular';
}
.f_nav_bar{
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.f_alink{
    font-family: 'Inter-Regular';
    color: var(--white);
    font-size: var(--eighteen);
}
.f_alink:hover{
    color: #fef3c7;
    transform: translateX(4px);
}
.f_title{
    font-family: 'Inter-Bold';
    font-optical-sizing: var(--eighteen);
    color: var(--white);
}
.tel_round{
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--white);
    padding: 5px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.35);
}
.f_contacts:hover .tel_round {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.55), 0 0 20px rgba(245, 158, 11, 0.35);
}
.f_contacts{
    font-size: var(--eighteen);
    color: var(--white);
    gap: 10px;
}
.gray_line{
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    margin: 40px 0 20px 0;
}
.right_reserved, .year_{
    font-size: var(--eighteen);
    color: var(--white);
    gap: 3px;
    font-family: 'Inter-Regular';
}
.right_cards{
    gap: 10px;
}
.payment_details_blck{
    gap: 20px;
    color: var(--white);
    font-size: var(--eighteen);
}
.card_imgs_blck{
    gap: 14px;
}
/* end footer */

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid rgba(245, 243, 255, 0.5);
    border-top-color: var(--c-amber);
    border-right-color: var(--c-teal);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.85s linear infinite;
}
.text-center{
    text-align: center;
}

.mt-3{
    margin-top: 30px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.site_dev_blck{
    gap: 2px;
    color: var(--white);
    font-size: var(--eighteen);
}
