/*Header local color styles*/

.header_w .header_logo {
	background: #EDF3F5;
}

.header_w .header_nav {
	background: #EDF3F5;
}

.header_w .header_nav nav{
	background: #EDF3F5;
}

.header_contact_container a{
	background: #000;
	color: #fff;
}
.header_contact_container a:hover{
	background: #39AEC2;
}
.header_w nav{
	background: #fff;
}
.header_logo{
	background: #fff;
}
.header_nav{
	background: #fff;
}
.header_logo svg .logo_path{
	fill:#000;
}

@media screen and (max-width: 1080px) {
    .header_w, .home .header_w {
        background: #EDF3F5;
    }
}


/**********SERVICE DESCRIPTION**********/

.service_desc_block{
	display: grid;
	grid-template-columns: 50px repeat(12, 1fr) 50px;
	grid-column-gap: 30px;
	grid-template-areas: 
	". . . service_desc service_desc service_desc service_desc service_desc service_desc service_desc service_desc . . ."
}

.service_desc{
	grid-area: service_desc;
	display: grid;
	grid-row-gap: 30px;
}

.service_intro{
	display: grid;
	margin: 35px 0;
	grid-template-columns: repeat(8, 1fr);
	grid-column-gap: 30px;
	grid-template-areas: 
	". service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow ."
	". service_h1 service_h1 service_h1 service_h1 service_h1 service_h1 ."
	". service_points service_points service_points service_points service_points service_points .";
}
.service_intro .a_arrow{
	grid-area: service_a_arrow;
	text-align: center;

	color: rgba(0,0,0,.7);
	font-size: .8em;
}

.service_intro .a_arrow span{
	margin-left: 0;
	margin-right: 10px;
}
.service_intro .a_arrow:hover span{
	transform: translateX(-10px);
}


.service_intro h1{
	grid-area: service_h1;
	text-align: center;

	margin-bottom: 50px;
}
.service_intro .service_points{
	display: grid;
	grid-column-gap: 30px;
	grid-area: service_points;
	grid-template-columns: 1fr 1fr;
}

.service_point{
	display: grid;
	grid-template-columns: 30px 200px;
	grid-template-rows: max-content max-content;

	grid-gap: 10px 20px;
	grid-template-areas: 
	"service_point_icon service_point_h3"
	"service_point_icon service_point_p";
}

.service_point:last-child{
	justify-self: start;	
}
.service_point:first-child{
	justify-self: end;
}
.service_point .icon, .service_point svg, .service_point img {
	grid-area: service_point_icon;
}
.service_point img, .service_point svg, .service_point svg path, .service_point svg polygon {
    width: auto;
    height: 32px;
    fill: #111 !important;
}
.service_point svg path, .service_point svg circle,  .service_point svg #Solid rect {
    fill: #111 !important;
}
.service_point h3{
	grid-area: service_point_h3;
}
.service_point p{
	grid-area: service_point_p;
	font-size: .8em;
	line-height: 1.6em;
	color: rgba(0,0,0,.8);
}

/*Service description blocks*/


/*Rudimentary*/
.service_nums, .service_img_s,  .service_img_m{
	display: grid;
	grid-template-columns: repeat(8,1fr);
	grid-column-gap: 30px;
}
.service_desc{
	display: grid;
	grid-row-gap: 20px;
}
/* ./Rudimnentary */
.service_edit{
	display: grid;
	grid-row-gap:20px;
}

.service_edit span.bold, .service_edit strong {
	font-variation-settings: 'wght' 600;
	color: #000;
}
.service_edit span.highlighted, .service_edit span {
	background: rgba(255,177,3,.7); 
	padding: 0 5px;
	color: #000;
	text-decoration: none!important;
}
.service_desc_block em, .service_edit em {
	font-family: "IBM Plex Mono";
}

.service_text, .service_edit p{
	width: calc((6 * 100% - 2 * 30px) / 8);
	margin: 0 auto 30px auto;
	
	color: rgba(0,0,0,.7);
	font-size: 1em;
	line-height: 1.5em;
}

/*FIX THE FONT SIZE → SET THE PROPER IDENTIFIER*/
.service_edit .service_title, .service_edit h2{
	width: calc((6 * 100% - 2 * 30px) / 8);

	margin: 70px auto 0 auto;
	font-size: 1.4em;
	line-height: 1.4em;
}

.service_nums{
	display: grid;
	grid-template-columns: repeat(8,1fr);
	grid-column-gap: 30px;

	margin:20px 0 20px 0;
	display: grid;
	grid-row-gap: 30px;
	grid-template-areas: 
	". service_sub service_sub service_sub service_sub service_sub service_sub ."
	". service_num_container service_num_container service_num_container service_num_container service_num_container service_num_container .";
}

.service_nums .sub_italic{
	grid-area: service_sub;
	text-align: center;
}

.service_num_container{
	grid-area: service_num_container;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}

.service_num{
	border: 2px solid #39AEC2;
	background: #EDF3F5;
	padding: 10px 50px 20px 50px;
}
.service_num h3{
	font-family: "IBM Plex Sans";
	font-size: 2em;
	line-height: 1.2em;
	text-align: center;
	font-weight: 500;
	margin-bottom: 10px;
}
.service_num p{
	text-align: center;
	font-size: .8em;
	line-height: 1.5em;
	font-variation-settings: 'wght' 350;
}

.service_quote, .service_edit blockquote p {
	width: calc((6 * 100% - 2 * 30px) / 8);
	margin: 0 auto 0 auto;

	text-align: center;
	font-family: "IBM Plex Sans";
	font-size: 1.4em;
	line-height: 1.4em;
	font-weight: 500;
	color: #000;
}

.service_list_ol, .service_edit ol{
	width: calc((6 * 100% - 2 * 30px) / 8);
	margin: 20px auto;

	counter-reset: my-awesome-counter;
}
.service_list_ol li, .service_edit ol li{
	color: rgba(0,0,0,.7);
	list-style: none;
	font-size: 1em;
	line-height: 1.5em;
	margin-bottom: 50px;
	padding-left: 50px;
    counter-increment: my-awesome-counter;
	position: relative;
}
.service_list_ol li:last-child, .service_edit ol li:last-child {
	margin-bottom: 0;
}
.service_list_ol li::before, .service_edit ol li::before{
	content: counter(my-awesome-counter) ".";
	font-weight: 700;
 	font-family: "IBM Plex Mono";
	color: #FFB103;
	list-style: none;
	font-size: 1em;
	line-height: 1.5em;
	position: absolute;
	left: 0;
}

.service_list_ul, .service_edit ul {
	width: calc((6 * 100% - 2 * 30px) / 8);
	margin: 20px auto;
}
.service_list_ul li, .service_edit ul li {
color: rgba(0,0,0,.7);
position: relative;
font-size: 1em;
line-height: 1.5em;
margin-bottom: 50px;
padding-left: 50px;
}
.service_list_ul li:last-child, .service_edit ul li:last-child {
margin-bottom: 0;
}
.service_list_ul li::before, .service_edit ul li:before {
display: block;
content: '';
position: absolute;
top: 0.5em;
left: 0;
width: 10px;
height: 10px;
border-radius: 50%;
background: #FFB103;
}



.service_img_s{
	grid-template-areas: 
	". si_s_img si_s_img si_s_img si_s_img si_s_img si_s_img ."
	". si_s_p si_s_p si_s_p si_s_p si_s_p si_s_p .";	
}

.service_img_s img, .service_img_l img{
	width: 100%;
  object-fit: cover;
}
.service_img_s img{
	grid-area: si_s_img;
}
.service_img_l img{
	grid-area: si_l_img;
}

.service_img_s p, .service_img_l p{
	font-size: .8em;
	line-height: 1.5em;
	font-family: "Spectral";
	font-style: italic;
	text-align: center;
	color: rgba(0,0,0,.5);
	margin: 10px auto 30px auto;
}

.service_img_s p{
	grid-area: si_s_p;
}
.service_img_l p{
	grid-area: si_s_l;
}

.service_img_l{
	grid-template-areas: 
	"si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img"
	". si_l_p si_l_p si_l_p si_l_p si_l_p si_l_p .";	
}





.still_question_block{
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-column-gap: 30px;
	grid-template-areas: ". still_qbc still_qbc still_qbc still_qbc still_qbc still_qbc .";
}
.still_question_block_container{
	grid-area: still_qbc;
}

.button_split{
	margin: 50px 0 100px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 30px;
}

.split_link{
	display: grid;
	grid-template-rows: max-content;
	grid-template-areas: 
	"b_l_a"
	"b_l_p";
}
.blog_link .a_arrow{
	grid-area: b_l_a;
	text-align:center;
	border: 3px solid #39AEC2;
	padding: 20px 0;
	font-size: 1.4em;
}
.blog_link .a_arrow span{
	margin: 0;
}
.blog_link .a_arrow:hover{
	text-decoration: none;
}

.blog_link .a_arrow:hover span{
	transform: translateX(-10px);
	transition: .2s ease-in-out;
}
.contact_link .a_arrow{
	grid-area: b_l_a;
	text-align: center;
    display: block;
    padding: 20px 0;
    background: #FFB103;
    border: 3px solid #FFB103;
    color: #000;
    text-decoration: none;
    font-family: "IBM Plex Mono";
    font-weight: 500;
    font-size: 1.4em;
}
.contact_link .a_arrow:hover{
    border: 3px solid #000;
}
.blog_link p, .contact_link p{
	margin-top: 10px;
	color: rgba(0,0,0,.5);
	grid-area: b_l_p;
	text-align: center;
	font-size: 0.7em;
}
.contact_link p{
	color: rgba(0,0,0,.8);
}


@media screen and (max-width: 1300px){
	.service_point{
    display: grid;
    grid-template-columns: 30px auto;
    grid-template-rows: max-content max-content;
    grid-gap: 10px 20px;
    grid-template-areas: "service_point_icon service_point_h3" "service_point_icon service_point_p";
	}
	.still_question_block{
    	grid-template-areas: "still_qbc still_qbc still_qbc still_qbc still_qbc still_qbc still_qbc still_qbc";
	}
}


@media screen and (max-width: 1080px){

.service_desc_block{
	display: grid;
	grid-template-columns: 10px repeat(12, 1fr) 10px;
}
.service_intro{
	grid-template-areas: 
	"service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow"
	"service_h1 service_h1 service_h1 service_h1 service_h1 service_h1 service_h1 service_h1"
	"service_points service_points service_points service_points service_points service_points service_points service_points";
}
.service_text, .service_edit p, .service_edit .service_title, .service_edit h2, .service_nums, .service_quote, .service_edit blockquote p, .service_list_ol, .service_edit ol, .service_list_ul, .service_edit ul {
	width: 100%;
}

.service_nums{
	margin:20px 0 20px 0;
	display: grid;
	grid-row-gap: 30px;
	grid-template-areas: 
	"service_sub service_sub service_sub service_sub service_sub service_sub service_sub service_sub"
	"service_num_container service_num_container service_num_container service_num_container service_num_container service_num_container service_num_container service_num_container";
}
.service_img_s{
	grid-template-areas: 
	"si_s_img si_s_img si_s_img si_s_img si_s_img si_s_img si_s_img si_s_img"
	"si_s_p si_s_p si_s_p si_s_p si_s_p si_s_p si_s_p si_s_p";	
}

.service_img_l{
	grid-template-areas: 
	"si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img"
	"si_l_p si_l_p si_l_p si_l_p si_l_p si_l_p si_l_p si_l_p";	
}
}

@media screen and (max-width: 800px){

.service_desc_block{
	display: grid;
	grid-template-columns: 10px repeat(6, 1fr) 10px;
	grid-template-areas: ". service_desc service_desc service_desc service_desc service_desc service_desc .";
}
.service_point:first-child {
	justify-self: start;
}


.service_nums, .service_img_s,  .service_img_m{
	display: grid;
	grid-template-columns: repeat(6,1fr);
	grid-column-gap: 30px;
}
.service_text, .service_edit p, .service_title, .service_edit h2, .service_quote, .service_edit blockquote p, .service_list_ul, .service_edit ul, .service_list_ol, .service_edit ol{
	width: 100%;
}

.service_intro{
    grid-template-columns: repeat(6, 1fr);
	grid-template-areas: 
	"service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow"
	"service_h1 service_h1 service_h1 service_h1 service_h1 service_h1"
	"service_points service_points service_points service_points service_points service_points";
}
.service_nums{
	margin:20px 0 20px 0;
	display: grid;
	grid-row-gap: 30px;
	grid-template-areas: 
	". service_sub service_sub service_sub service_sub ."
	". service_num_container service_num_container service_num_container service_num_container .";
}

.service_img_s{
	grid-template-areas: 
	". si_s_img si_s_img si_s_img si_s_img ."
	". si_s_img si_s_p si_s_p si_s_img .";	
}

.service_img_l{
	grid-template-areas: 
	"si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img"
	"si_l_p si_l_p si_l_p si_l_p si_l_p si_l_p";	
}

.service_num{
    padding: 10px;
}
}

@media screen and (max-width: 600px){
	
.service_desc_block{
	display: grid;
	grid-template-columns: 0 repeat(4, 1fr) 0;
	grid-gap: 20px;
	grid-template-areas: ". service_desc service_desc service_desc service_desc service_desc service_desc .";
}

.service_nums, .service_img_s,  .service_img_m{
	display: grid;
	grid-template-columns: repeat(6,1fr);
	grid-column-gap: 30px;
}


.service_intro{

    grid-template-columns: repeat(6, 1fr);
	grid-template-areas: 
	"service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow service_a_arrow"
	"service_h1 service_h1 service_h1 service_h1 service_h1 service_h1"
	"service_points service_points service_points service_points service_points service_points";
}
.service_nums{
	margin:20px 0 20px 0;
	display: grid;
	grid-row-gap: 30px;
	grid-template-areas: 
	"service_sub service_sub service_sub service_sub service_sub service_sub"
	"service_num_container service_num_container service_num_container service_num_container service_num_container service_num_container";
}

.service_img_s{
	grid-template-areas: 
	"si_s_img si_s_img si_s_img si_s_img si_s_img si_s_img"
	"si_s_p si_s_p si_s_p si_s_p si_s_p si_s_p";	
}

.service_img_l{
	grid-template-areas: 
	"si_l_img si_l_img si_l_img si_l_img si_l_img si_l_img"
	"si_l_p si_l_p si_l_p si_l_p si_l_p si_l_p";	
}
.service_intro .service_points{
	grid-template-columns: 1fr;
	grid-template-rows: max-content max-content;
	grid-row-gap: 30px;
}
.service_num_container {
    grid-area: service_num_container;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}

	.still_question_block{
	    grid-template-columns: 0 repeat(4, 1fr) 0;
	    grid-column-gap: 20px;
	    grid-template-areas: ". still_qbc still_qbc still_qbc still_qbc .";
	}
	.button_split{
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
		grid-row-gap: 50px;
	}
}

.service_desc_block{
	display: grid;
	grid-template-columns: 50px repeat(12, 1fr) 50px;
	grid-column-gap: 30px;
	grid-template-areas: 
	"service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap service_wrap"
}

.service_desc.service_wrapper {
	grid-area: service_wrap;
}


/**********SERVICE FIRST SCREEN**********/

.service_fs {
	background: #EDF3F5;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-column-gap: 30px;
	grid-template-areas:
	". service_fs_c service_fs_c service_fs_c service_fs_c service_fs_c service_fs_c .";
	align-content: center;
	margin-bottom: 60px;
}

.service_fs_container {
	grid-area: service_fs_c;
	padding: 100px 0 35px;
}

h1.service_fs_title {
	font-family: "IBM Plex Sans";
	font-weight: 700;
	font-size: 40px;
	line-height: 113%;
	color: #000;
	text-align: center;
	margin-bottom: 8px;
}

p.service_fs_subtitle {
	font-family: "IBM Plex Sans";
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: #000;
	margin-bottom: 6px;
}

.service_fs_desc {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #000;
	max-width: 370px;
	margin: 0 auto 34px;
}

.service_fs_buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 40px;
	max-width: 640px;
	margin: 0 auto 100px auto;
}

.service_fs_btn_back {
	font-family: "IBM Plex Mono";
	border: 2px solid #39AEC2;
	padding: 10px 54px;
	font-weight: 700;
	font-size: 28px;
	color: #39AEC2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all .2s ease-in-out;
	text-decoration: none;
}

.service_fs_btn_back:hover {
	border-color: #000;
}

.service_fs_btn_cta {
	font-family: "IBM Plex Mono";
	background: #FFB103;
	border: 2px solid #FFB103;
	padding: 18px 0;
	text-align: center;
	color: #000;
	text-decoration: none;
	font-weight: 700;
	font-size: 28px;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: border-color .2s ease-in-out;
}
.service_fs_btn_cta:hover {
	border-color: #000;
	text-decoration: none;
}

.service_fs_tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
}

.service_fs_tag {
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 14px;
	color: #000;
	border-radius: 25px;
	padding: 12px 43px;
	background: #fff;
}


/**********SERVICE WHO**********/

.service_why {
	margin-bottom: 68px;
}

.service_who {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-column-gap: 30px;
	grid-template-areas:
	". service_who_t service_who_t service_who_t service_who_t service_who_t service_who_t ."
	". service_who_c service_who_c service_who_c service_who_c service_who_c service_who_c .";
	margin-bottom: 165px;
}

h2.service_who_title {
	grid-area: service_who_t;
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 40px;
	line-height: 113%;
	text-align: center;
	color: #000;
	margin-bottom: 24px;
}

.service_who_cards {
	grid-area: service_who_c;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 40px;
}

.service_who_card {
	background: #fff;
	border: 3px solid #edf3f5;
	padding: 22px 26px;
	display: grid;
	grid-row-gap: 10px;
	align-content: start;
}

.service_who_card_header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.service_who_card_header_icon {
    display: inline-flex;
}

.service_who_card_header h3 {
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.service_who_list {
	list-style: none;
	display: grid;
	grid-row-gap: 7px;
}

.service_who_item {
	display: flex;
	align-items: flex-start;
	align-items: center;
	gap: 18px;
	font-weight: 400;
	font-size: 16px;
	color: #000;
}

.service_who_item--check::before {
	content: url(../img/service_page/done.svg);
}

.service_who_item--cross::before {
	content: url(../img/service_page/close.svg);
}

/**********SERVICE PAIN**********/

.service_pain {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-column-gap: 30px;
	grid-template-areas:
	". service_pain_img service_pain_img service_pain_list service_pain_list service_pain_list service_pain_list .";
	align-items: flex-start;
	margin-bottom: 135px;
}

.service_pain_img {
	grid-area: service_pain_img;
}

.service_pain_img svg {
	width: 100%;
	display: block;
}

.service_pain_list {
	grid-area: service_pain_list;
	display: grid;
	grid-row-gap: 36px;
}

.service_pain_item {
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 40px;
	line-height: 113%;
	color: #000;
}


/**********SERVICE INCLUDES**********/

.service_inc {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 40px;
	grid-template-areas:
	". service_inc_t service_inc_t service_inc_t service_inc_t service_inc_t service_inc_t ."
	". service_inc_i service_inc_i service_inc_i service_inc_i service_inc_i service_inc_i .";
	margin-bottom: 135px;
}

h2.service_inc_title {
	grid-area: service_inc_t;
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 40px;
	line-height: 113%;
	text-align: center;
	color: #000;
	margin-bottom: 26px;
}

.service_inc_items {
	grid-area: service_inc_i;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 20px;
}

.service_inc_item {
	display: grid;
	grid-row-gap: 12px;
	justify-items: center;
	align-content: start;
	text-align: center;
}

.service_inc_item_icon {
	width: 35px;
	height: 35px;
}

.service_inc_item p {
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: #000;
	max-width: 185px;
	line-height: 125%;
}


/**********SERVICE TARIFFS**********/

.service_tariffs {
	display: grid;
	grid-template-columns: 80px repeat(10, 1fr) 80px;
	grid-template-areas:
	". service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t ."
	". service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c .";
	margin-bottom: 34px;
}

h2.service_tariffs_title {
	grid-area: service_tariffs_t;
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 38px;
	text-align: center;
	color: #000;
	margin-bottom: 14px;
}

.service_tariffs_cards {
	grid-area: service_tariffs_c;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 370px;
	gap: 57px;
}

.service_tariff_card {
	background: #edf3f5;
	padding: 20px;
}

.service_tariff_small {
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 16px;
	color: #000;
	margin-bottom: 70px;
	max-width: 240px;
	line-height: 130%;
	margin-bottom: 56px;
}

.service_tariff_price {
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 28px;
	color: #000;
	margin-bottom: 10px;
}

.service_tariff_desc {
	font-weight: 400;
	font-size: 16px;
	color: #000;
	line-height: 145%;
}

/**********SERVICE REVIEWS**********/

.service_reviews {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: 30px;
	row-gap: 30px;
	grid-template-areas:
	"service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t service_reviews_t"
	"service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c service_reviews_c"
	"service_reviews_ctrl . . . . . . . . . . .";
	margin-bottom: 0;
	padding: 0 23px;
}

.service_post_reviews_cta {
	padding: 48px 23px 72px;
	box-sizing: border-box;
}

.service_fs_buttons--post_reviews {
	margin: 0 auto;
}

h2.service_reviews_title {
	grid-area: service_reviews_t;
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 38px;
	line-height: 1.2em;
	text-align: center;
	color: #000;
}

.service_reviews_scroller {
	grid-area: service_reviews_c;
	overflow: hidden;
	container-type: inline-size;
	container-name: service-reviews;
	cursor: grab;
	touch-action: pan-y;
}

.service_reviews_scroller.is-dragging {
	cursor: grabbing;
	touch-action: none;
	user-select: none;
}

.service_reviews_track {
	--reviews-gap: 22px;
	display: flex;
	flex-wrap: nowrap;
	gap: var(--reviews-gap);
	max-width: none;
	will-change: transform;
	transition: transform 0.35s ease;
}

.service_reviews_scroller.is-dragging .service_reviews_track {
	transition: none;
}

.service_review_card {
	flex: 0 0 calc((100% - 3 * var(--reviews-gap)) / 4);
	max-width: calc((100% - 3 * var(--reviews-gap)) / 4);
	min-width: 0;
	box-sizing: border-box;
	background: #edf3f5;
	padding: 34px 15px;
}

.service_review_card_box {
	display: grid;
	grid-template-columns: 81px 1fr;
	grid-template-rows: auto auto;
	column-gap: 14px;
	margin-bottom: 23px;
}

.service_review_card_box > * {
	min-width: 0;
}

.service_review_avatar {
	grid-area: 1 / 1 / 3 / 2;
	width: 81px;
	height: 81px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 2px;
}

.service_review_name {
	grid-area: 1 / 2 / 2 / 3; 
	font-family: "IBM Plex Sans";
	font-weight: 700;
	font-size: 16px;
	color: #000;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.service_review_job {
	grid-area: 2 / 2 / 3 / 3;
	font-family: "IBM Plex Mono";
	font-weight: 400;
	font-size: 16px;
	color: #000;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.service_review_text {
	font-weight: 400;
	font-size: 16px;
	color: #000;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.service_reviews_controls {
	grid-area: service_reviews_ctrl;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.service_reviews_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #edf3f5;
	border-radius: 50%;
	border: none;
	width: 49px;
	height: 49px;
	cursor: pointer;
}

.service_reviews_btn:hover {
	opacity: 0.9;
}

.service_reviews_btn:active {
	transform: translateY(1px);
}

.service_reviews_btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

/* 3 карточки: планшеты и узкий десктоп */
@media screen and (max-width: 1100px) and (min-width: 801px) {
	.service_reviews_track {
		--reviews-gap: 20px;
	}
	.service_review_card {
		flex: 0 0 calc((100% - 2 * var(--reviews-gap)) / 3);
		max-width: calc((100% - 2 * var(--reviews-gap)) / 3);
	}
}

@media screen and (max-width: 800px) {
	.service_reviews_track {
		--reviews-gap: 20px;
	}
	.service_review_card {
		flex: 0 0 calc((100% - var(--reviews-gap)) / 2);
		max-width: calc((100% - var(--reviews-gap)) / 2);
	}
}

@media screen and (max-width: 600px) {
	.service_reviews {
		grid-template-columns: 1fr;
		grid-template-areas:
			"service_reviews_t"
			"service_reviews_c"
			"service_reviews_ctrl";
		row-gap: 20px;
		margin-top: 60px;
		padding: 0 14px;
	}
	.service_reviews_title {
		font-size: 1.6em;
		margin-bottom: 20px;
	}
	.service_review_card {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		padding: 20px 18px;
	}
	.service_reviews_controls {
		justify-content: center;
		gap: 30px;
	}
	.service_review_card_box {
		grid-template-columns: 64px 1fr;
		column-gap: 10px;
	}
	.service_review_avatar {
		width: 64px;
		height: 64px;
	}
	.service_review_name,
	.service_review_job,
	.service_review_text {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service_reviews_track {
		transition: none;
	}
}


/**********SERVICE HOW**********/

.service_how {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.service_how_left {
	background: #FFB103;
	padding: 250px 0;
	display: grid;
	grid-template-rows: auto 1fr;
	grid-row-gap: 90px;
	justify-content: center;
}

.service_how_title {
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 38px;
	color: #000;
}

.service_how_img svg {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.service_how_steps {
	display: grid;
    grid-template-rows: repeat(5, 1fr);
	padding: 36px 27px;
	background: #edf3f5;
}

.service_how_step_num {
	display: inline-block;
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 20px;
	color: #000;
	margin-bottom: 15px;
}

h3.service_how_step_title {
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.service_how_step_desc {
	font-weight: 400;
	font-size: 16px;
	color: #000;
	max-width: 440px;
}

/**********SERVICE WHY**********/

.service_why {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.service_why_left {
	background: #edf3f5;
	padding: 45px 80px 38px 56px;
	display: grid;
	align-content: start;
}

h2.service_why_title {
	font-family: "IBM Plex Mono";
	font-weight: 700;
	font-size: 40px;
	line-height: 113%;
	color: #000;
}

.service_why_acc {
	display: grid;
}

.service_why_acc_item {
	border-top: 1px solid #d9d9d9;
}

.service_why_acc_item:first-child {
	border-top: none;
}

.service_why_acc_item:last-child {
	border-bottom: 1px solid #d9d9d9;
}

.service_why_acc_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 34px 0;
	cursor: pointer;
	user-select: none;
}

.service_why_acc_title {
	font-family: "IBM Plex Sans";
	font-weight: 700;
	font-size: 20px;
	color: #000;
}

.service_why_acc_arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	min-width: 36px;
	height: 36px;
	background: #fff;
	transition: transform .2s ease-in-out;
}

.service_why_acc_item.active .service_why_acc_arrow_icon {
	transform: rotate(180deg);
	transform-origin: center;
}

.service_why_acc_arrow_icon {
	width: 24px;
	height: 24px;
	transition: transform .2s ease-in-out;
}

.service_why_acc_body {
	display: none;
	padding-bottom: 18px;
	font-weight: 400;
	font-size: 16px;
	color: #000;
	max-width: 600px;
}

.service_why_acc_item.active .service_why_acc_body {
	display: block;
}

.service_why_right {
	background: #FFB103;
	display: flex;
	align-items: flex-end;
    justify-content: flex-end;
}

.service_why_right svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: brightness(0);
}

/**********SERVICE IMG**********/

.service_img {
	background-image: url(../img/service_page/calc-bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 53px;
    margin-bottom: 83px;
}

.service_img svg {
	transform: translateX(100%);
}

/* MEDIA */

@media screen and (max-width: 1080px) {
	.service_fs {
		grid-template-columns: 10px repeat(6, 1fr) 10px;
		grid-template-areas:
		". service_fs_c service_fs_c service_fs_c service_fs_c service_fs_c service_fs_c .";
	}
	.service_fs_title {
		font-size: 2.4em;
	}
	.service_fs_buttons {
		width: 100%;
	}
	.service_pain_list {
		grid-row-gap: 24px;
	}
	.service_pain_item {
		font-size: 26px;
	}
	.service_inc_items {
		grid-template-columns: repeat(3, 1fr);
		grid-row-gap: 30px;
	}
	.service_who {
		margin-bottom: 100px;
	}
	.service_tariffs_cards {
		grid-template-columns: 1fr;
	}
	
	.service_img svg {
	transform: translateX(0);
	}
}

@media screen and (max-width: 800px) {
	.service_fs_title {
		font-size: 2em;
	}

	.service_fs_buttons {
		margin-bottom: 50px;
	}
	.service_who {
		grid-template-columns: repeat(6, 1fr);
		grid-template-areas:
		"service_who_t service_who_t service_who_t service_who_t service_who_t service_who_t"
		"service_who_c service_who_c service_who_c service_who_c service_who_c service_who_c";
		padding: 0 23px;
	}
	.service_who_cards {
		grid-template-columns: 1fr;
		grid-row-gap: 20px;
	}
	.service_who_card {	
		border-left: none;
		border-right: none;
		padding: 30px 0;
	}

	.service_pain {
		grid-template-columns: 1fr;
		grid-row-gap: 30px;
	}
	.service_pain_img {
		max-width: 240px;
		margin: 0 auto;
	}

	.service_how,
	.service_why {
		grid-template-columns: 1fr;
	}

	.service_img img {
		transform: translateX(0);
	}
	.service_why_right {
		padding: 50px 30px;
		order: -1;
	}
}

@media screen and (max-width: 600px) {
	.service_fs {
		grid-template-columns: 20px repeat(4, 1fr) 20px;
		grid-template-areas:
		". service_fs_c service_fs_c service_fs_c service_fs_c .";
	}
	.service_info {
		grid-row-gap: 40px;
	}

	.service_fs_title {
		font-size: 1.6em;
	}
	.service_fs_buttons {
		grid-template-columns: 1fr;
		grid-row-gap: 15px;
	}
	.service_post_reviews_cta {
		padding: 32px 20px 48px;
	}
	.service_fs_tags {
		flex-direction: column;
		align-items: center;
	}

	.service_who {
		grid-template-columns: repeat(4, 1fr);
		grid-template-areas:
		"service_who_t service_who_t service_who_t service_who_t"
		"service_who_c service_who_c service_who_c service_who_c";
		margin-bottom: 60px;
	}
	
	.service_tariffs {
		display: grid;
		grid-template-columns: 20px repeat(4, 1fr) 20px;
		grid-template-areas:
		". service_tariffs_t service_tariffs_t service_tariffs_t service_tariffs_t ."
		". service_tariffs_c service_tariffs_c service_tariffs_c service_tariffs_c .";
		margin-bottom: 34px;
	}
	
	.service_tariffs_cards {
		grid-template-rows: auto;
		gap: 27px;
	}
	
	.seo_block {
		display: grid;
		padding: 30px 0 30px 0;
		grid-template-columns: 20px repeat(4, 1fr) 20px;
		grid-template-areas:         
			". c_t c_t c_t c_t ."        
			". c_l c_l c_l c_l .";
	}

	.service_inc_items {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 20px;
	}
	.service_how,
	.service_why {
		grid-template-columns: 1fr;
	}
	.service_how_left {
		padding: 50px 30px;
	}
	.service_how_step {
		padding: 20px 30px;
	}
	.service_why_left {
		padding: 50px 30px;
	}
	
		.service_pain {
		grid-template-columns: 1fr;
		grid-template-areas:
			"service_pain_img"
			"service_pain_list";
		grid-row-gap: 24px;
		margin-bottom: 60px;
			padding: 0 14px;
	}
	.service_pain_img {
		grid-area: service_pain_img;
		max-width: 200px;
		margin: 0 auto;
	}
	.service_pain_list {
		grid-area: service_pain_list;
		grid-row-gap: 20px;
	}
}

.service_page .faq_container {
    margin: 0 0 100px 0;
}


/*single-services-buhgalterskoe-soprovozhdenie*/

.service_page-buh .service_fs {
	background: none;
	display: block;
	margin-bottom: 60px;
	grid-template-columns: none;
	grid-template-areas: none;
}

.service_page-buh .service_fs_inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: 520px;
}

.service_page-buh .service_fs_left {
	background: #EDF3F5;
	padding: 72px 80px 72px 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.service_page-buh .service_fs_back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 40px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: #39AEC2;
	text-decoration: none;
	border: none;
	padding: 0;
}

.service_page-buh .service_fs_back:hover {
	color: #000;
	text-decoration: none;
}

.service_page-buh .service_fs_back span {
	font-size: 18px;
	line-height: 1;
}

.service_page-buh .service_fs_tagline {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	color: #000;
	margin: 0 0 12px;
	text-align: left;
}

.service_page-buh h1.service_fs_title {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 56px;
	line-height: 1.1;
	color: #000;
	text-align: left;
	margin: 0 0 20px;
	max-width: 520px;
}

.service_page-buh .service_fs_desc {
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.45;
	color: #666;
	text-align: left;
	max-width: 460px;
	margin: 0;
}

.service_page-buh .service_fs_right {
	background: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 72px 40px 48px;
	overflow: hidden;
}

.service_page-buh .service_fs_cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	text-align: center;
}

.service_page-buh .service_fs_btn_cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 320px;
	min-height: 64px;
	padding: 16px 24px;
	background: #FFB103;
	border: 2px solid #FFB103;
	font-family: "IBM Plex Mono", monospace;
	font-weight: 700;
	font-size: 28px;
	line-height: 1;
	color: #000;
	text-decoration: none;
	transition: border-color .2s ease-in-out;
	box-sizing: border-box;
	cursor: pointer;
}

.service_page-buh .service_fs_btn_cta:hover {
	border-color: #000;
	text-decoration: none;
	color: #000;
}

.service_page-buh .service_fs_price {
	margin: 16px 0 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: #666;
}

.service_page-buh .service_fs_price_highlight {
	text-decoration: underline;
	text-underline-offset: 3px;
	color: #666;
}

.service_page-buh .service_fs_pain {
	position: relative;
	width: 100%;
	max-width: 560px;
	min-height: 170px;
	margin-top: 24px;
	flex-shrink: 0;
}

.service_page-buh .service_fs_pain_item {
	position: absolute;
	display: inline-block;
	padding: 12px 24px;
	background: #fff;
	border: 1px solid #D9E2E8;
	border-radius: 25px;
	font-family: "IBM Plex Mono", monospace;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.25;
	color: #000;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service_page-buh .service_fs_pain_item--1 {
	left: 0;
	top: 8px;
	transform: rotate(-8deg);
}

.service_page-buh .service_fs_pain_item--2 {
	left: 8%;
	bottom: 0;
	transform: rotate(-10deg);
}

.service_page-buh .service_fs_pain_item--3 {
	right: 0;
	top: 0;
	transform: rotate(8deg);
}

.service_page-buh .service_fs_pain_item--4 {
	right: 4%;
	bottom: 8px;
	transform: rotate(-6deg);
}

@media screen and (max-width: 1280px) {
	.service_page-buh .service_fs_left {
		padding: 60px 56px 60px 80px;
	}

	.service_page-buh h1.service_fs_title {
		font-size: 48px;
		max-width: 100%;
	}

	.service_page-buh .service_fs_desc {
		max-width: 100%;
	}
}

@media screen and (max-width: 1080px) {
	.service_page-buh .service_fs_inner {
		min-height: 480px;
	}

	.service_page-buh .service_fs_left {
		padding: 48px 40px;
	}

	.service_page-buh .service_fs_right {
		padding: 48px 32px 40px;
	}

	.service_page-buh h1.service_fs_title {
		font-size: 42px;
	}

	.service_page-buh .service_fs_btn_cta {
		font-size: 24px;
		min-height: 58px;
	}

	.service_page-buh .service_fs_pain {
		max-width: 100%;
		min-height: 160px;
	}

	.service_page-buh .service_fs_pain_item {
		font-size: 13px;
		padding: 10px 18px;
	}
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_fs {
		margin-bottom: 40px;
	}

	.service_page-buh .service_fs_inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.service_page-buh .service_fs_left {
		padding: 36px 30px 32px;
	}

	.service_page-buh .service_fs_back {
		margin-bottom: 24px;
		font-size: 15px;
	}

	.service_page-buh .service_fs_tagline {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.service_page-buh h1.service_fs_title {
		font-size: 36px;
		margin-bottom: 16px;
	}

	.service_page-buh .service_fs_desc {
		font-size: 16px;
	}

	.service_page-buh .service_fs_right {
		padding: 32px 30px 36px;
		min-height: 0;
		justify-content: flex-start;
		gap: 28px;
	}

	.service_page-buh .service_fs_cta {
		flex: 0 0 auto;
		max-width: 100%;
	}

	.service_page-buh .service_fs_btn_cta {
		max-width: 100%;
		font-size: 22px;
		min-height: 56px;
	}

	.service_page-buh .service_fs_pain {
		position: static;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: stretch;
		gap: 12px;
		min-height: 0;
		margin-top: 0;
	}

	.service_page-buh .service_fs_pain_item {
		position: static;
		transform: none;
		max-width: calc(50% - 6px);
		white-space: normal;
		text-align: center;
		flex: 1 1 calc(50% - 6px);
	}
}

@media screen and (max-width: 600px) {
	.service_page-buh .service_fs_left {
		padding: 28px 20px 24px;
	}

	.service_page-buh .service_fs_right {
		padding: 28px 20px 32px;
	}

	.service_page-buh .service_fs_back {
		margin-bottom: 20px;
	}

	.service_page-buh .service_fs_tagline {
		font-size: 16px;
	}

	.service_page-buh h1.service_fs_title {
		font-size: 28px;
		line-height: 1.15;
	}

	.service_page-buh .service_fs_desc {
		font-size: 15px;
		line-height: 1.4;
	}

	.service_page-buh .service_fs_btn_cta {
		font-size: 20px;
		min-height: 52px;
		padding: 14px 20px;
	}

	.service_page-buh .service_fs_price {
		font-size: 14px;
		margin-top: 12px;
	}

	.service_page-buh .service_fs_pain {
		gap: 10px;
	}

	.service_page-buh .service_fs_pain_item {
		flex: 1 1 100%;
		max-width: 100%;
		font-size: 12px;
		padding: 10px 14px;
		border-radius: 20px;
	}
}

@media screen and (max-width: 400px) {
	.service_page-buh h1.service_fs_title {
		font-size: 24px;
	}

	.service_page-buh .service_fs_btn_cta {
		font-size: 18px;
	}
}

.service_page-buh .service_fs {
	margin-bottom: 0;
}

.service_page-buh .service_features {
	background: #fff;
	border-top: 1px solid #EDF3F5;
	padding: 64px;
}

.service_page-buh .service_features_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 28px 120px;
	box-sizing: border-box;
}

.service_page-buh .service_features_items {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px 32px;
}

.service_page-buh .service_features_item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
}

.service_page-buh .service_features_icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 35px;
	height: 35px;
	flex-shrink: 0;
}

.service_page-buh .service_features_icon svg,
.service_page-buh .service_features_icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.service_page-buh .service_features_text {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.35;
	color: #333;
	text-align: left;
}

@media screen and (max-width: 1280px) {
	.service_page-buh .service_features_inner {
		padding: 28px 80px;
	}

	.service_page-buh .service_features_items {
		gap: 24px 24px;
	}
}

@media screen and (max-width: 1080px) {
	.service_page-buh .service_features_inner {
		padding: 24px 40px;
	}

	.service_page-buh .service_features_items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.service_page-buh .service_features_text {
		font-size: 15px;
	}
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_features {
		margin-bottom: 40px;
	}

	.service_page-buh .service_features_inner {
		padding: 24px 30px;
	}

	.service_page-buh .service_features_items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 24px;
	}
}

@media screen and (max-width: 600px) {
	.service_page-buh .service_features_inner {
		padding: 20px 20px;
	}

	.service_page-buh .service_features_items {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.service_page-buh .service_features_item {
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
	}

	.service_page-buh .service_features_text {
		font-size: 14px;
		padding-top: 4px;
	}
}

.service_page-buh .service_work {
	background: #EDF3F5;
	margin-bottom: 60px;
}

.service_page-buh .service_work_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 56px 120px 48px;
	box-sizing: border-box;
}

.service_page-buh .service_work_head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
	margin-bottom: 40px;
}

.service_page-buh .service_work_title {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.15;
	color: #000;
	max-width: 520px;
}

.service_page-buh .service_work_graphic {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-width: 0;
}

.service_page-buh .service_work_graphic img,
.service_page-buh .service_work_graphic svg {
	display: block;
	max-width: 220px;
	max-height: 100px;
	width: auto;
	height: auto;
}

.service_page-buh .service_work_steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px 20px;
	position: relative;
	padding-top: 36px;
}

.service_page-buh .service_work_mobile_progress {
	display: none;
}

.service_page-buh .service_work_steps::before {
	content: "";
	position: absolute;
	top: 13px;
	left: 14px;
	right: 14px;
	height: 1px;
	background: #000;
}

.service_page-buh .service_work_step {
	position: relative;
	min-width: 0;
	padding-top: 28px;
}

.service_page-buh .service_work_step_num {
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	z-index: 1;
}

.service_page-buh .service_work_step_title {
	margin: 0 0 10px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: #000;
}

.service_page-buh .service_work_step_desc {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.45;
	color: #333;
}

.service_page-buh .service_work_step_link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: #39AEC2;
	text-decoration: none;
}

.service_page-buh .service_work_step_link:hover {
	color: #000;
	text-decoration: none;
}

.service_page-buh .service_work_alert {
	background: #FFB103;
}

.service_page-buh .service_work_alert_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 18px 120px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 32px;
}

.service_page-buh .service_work_alert_title {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: #000;
	flex-shrink: 0;
}

.service_page-buh .service_work_alert_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service_page-buh .service_work_alert_item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.35;
	color: #000;
}

.service_page-buh .service_work_alert_item::before {
	content: "×";
	font-weight: 700;
	flex-shrink: 0;
}

@media screen and (max-width: 1280px) {
	.service_page-buh .service_work_inner {
		padding: 48px 80px 40px;
	}

	.service_page-buh .service_work_alert_inner {
		padding-left: 80px;
		padding-right: 80px;
	}

	.service_page-buh .service_work_title {
		font-size: 36px;
	}
}

@media screen and (max-width: 1080px) {
	.service_page-buh .service_work_inner {
		padding: 40px 40px 36px;
	}

	.service_page-buh .service_work_alert_inner {
		padding-left: 40px;
		padding-right: 40px;
	}

	.service_page-buh .service_work_steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 32px;
	}

	.service_page-buh .service_work_steps::before {
		display: none;
	}

	.service_page-buh .service_work_step {
		padding-top: 0;
		padding-left: 40px;
	}

	.service_page-buh .service_work_step_num {
		left: 0;
		top: 2px;
	}
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_work {
		margin-bottom: 40px;
	}

	.service_page-buh .service_work_inner {
		padding: 32px 30px 28px;
	}

	.service_page-buh .service_work_head {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 32px;
	}

	.service_page-buh .service_work_title {
		font-size: 32px;
		max-width: none;
	}

	.service_page-buh .service_work_graphic {
		justify-content: flex-start;
		width: 100%;
	}

	.service_page-buh .service_work_graphic img,
	.service_page-buh .service_work_graphic svg {
		width: 100%;
		max-width: 100%;
		max-height: none;
		height: auto;
	}

	.service_page-buh .service_work_steps {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 0;
		padding-left: 0;
	}

	.service_page-buh .service_work_mobile_progress {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		position: relative;
		margin: 0 0 32px;
	}

	.service_page-buh .service_work_mobile_progress::before {
		content: "";
		position: absolute;
		top: 14px;
		left: 14px;
		right: 14px;
		height: 1px;
		background: #000;
	}

	.service_page-buh .service_work_mobile_progress span {
		position: relative;
		z-index: 1;
		justify-self: center;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		background: #000;
		color: #fff;
		font-family: "IBM Plex Sans", sans-serif;
		font-size: 14px;
		font-weight: 700;
		line-height: 1;
	}

	.service_page-buh .service_work_step {
		padding-left: 0;
		border-left: 0;
		margin-left: 0;
		padding-bottom: 4px;
	}

	.service_page-buh .service_work_step:last-child {
		border-left-color: transparent;
	}

	.service_page-buh .service_work_step_num {
		display: none;
	}

	.service_page-buh .service_work_alert_inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 30px;
		gap: 12px;
	}

	.service_page-buh .service_work_alert_list {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

@media screen and (max-width: 600px) {
	.service_page-buh .service_work_inner {
		padding: 28px 20px 24px;
	}

	.service_page-buh .service_work_title {
		font-size: 28px;
	}

	.service_page-buh .service_work_step_title {
		font-size: 15px;
	}

	.service_page-buh .service_work_step_desc,
	.service_page-buh .service_work_step_link {
		font-size: 13px;
	}

	.service_page-buh .service_work_alert_inner {
		padding: 18px 20px;
	}

	.service_page-buh .service_work_alert_title,
	.service_page-buh .service_work_alert_item {
		font-size: 13px;
	}
}

.service_page-buh .service_buh_why {
	background: #fff;
	margin-bottom: 60px;
}

.service_page-buh .service_buh_why_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 60px 120px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
	gap: 40px 48px;
	align-items: start;
}

.service_page-buh .service_buh_why_intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
	min-width: 0;
}

.service_page-buh .service_buh_why_label {
	display: inline-block;
	padding: 6px 12px;
	background: #FFB103;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	color: #000;
	margin-bottom: 20px;
	transform: rotate(-6deg);
	transform-origin: left center;
}

.service_page-buh .service_buh_why_title {
	margin: 0 0 16px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.2;
	color: #000;
}

.service_page-buh .service_buh_why_desc {
	margin: 0 0 32px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.45;
	color: #666;
}

.service_page-buh .service_buh_why_graphic {
	margin-top: auto;
	width: 100%;
}

.service_page-buh .service_buh_why_graphic img,
.service_page-buh .service_buh_why_graphic svg {
	display: block;
	max-width: 280px;
	width: 100%;
	height: auto;
}

.service_page-buh .service_buh_why_graphic .st0 {
	fill: #FFB83E;
}

.service_page-buh .service_buh_why_cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.service_page-buh .service_buh_why_card {
	border: 1px solid #D9E2E8;
	background: #fff;
	padding: 24px;
	box-sizing: border-box;
	min-height: 100%;
}

.service_page-buh .service_buh_why_card--highlight {
	background: #EDF3F5;
	border-color: #EDF3F5;
}

.service_page-buh .service_buh_why_card_icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
}

.service_page-buh .service_buh_why_card_icon img,
.service_page-buh .service_buh_why_card_icon svg {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.service_page-buh .service_buh_why_card_title {
	margin: 0 0 10px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: #000;
}

.service_page-buh .service_buh_why_card_desc {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.45;
	color: #333;
}

@media screen and (max-width: 1280px) {
	.service_page-buh .service_buh_why_inner {
		padding: 48px 80px;
		grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
		gap: 32px 40px;
	}

	.service_page-buh .service_buh_why_title {
		font-size: 28px;
	}
}

@media screen and (max-width: 1080px) {
	.service_page-buh .service_buh_why_inner {
		padding: 40px 40px;
		grid-template-columns: 1fr;
	}

	.service_page-buh .service_buh_why_graphic {
		margin-top: 0;
	}

	.service_page-buh .service_buh_why_graphic img {
		max-width: 220px;
	}
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_buh_why {
		margin-bottom: 40px;
	}

	.service_page-buh .service_buh_why_inner {
		padding: 32px 30px;
		gap: 28px;
	}

	.service_page-buh .service_buh_why_cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.service_page-buh .service_buh_why_card {
		padding: 20px;
	}
}

@media screen and (max-width: 600px) {
	.service_page-buh .service_buh_why_inner {
		padding: 28px 20px;
	}

	.service_page-buh .service_buh_why_title {
		font-size: 24px;
	}

	.service_page-buh .service_buh_why_desc {
		font-size: 15px;
		margin-bottom: 24px;
	}

	.service_page-buh .service_buh_why_card_title {
		font-size: 15px;
	}

	.service_page-buh .service_buh_why_card_desc {
		font-size: 13px;
	}
}

.service_page-buh .service_buh_tariffs {
	background: #EDF3F5;
}

.service_page-buh .service_buh_tariffs_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 48px 120px 56px;
	box-sizing: border-box;
}

.service_page-buh .service_buh_tariffs_head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px 32px;
	margin-bottom: 32px;
}

.service_page-buh .service_buh_tariffs_head_left {
	min-width: 0;
}

.service_page-buh .service_buh_tariffs_head_title_row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.service_page-buh .service_buh_tariffs_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
}

.service_page-buh .service_buh_tariffs_icon svg,
.service_page-buh .service_buh_tariffs_icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.service_page-buh .service_buh_tariffs_title {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.2;
	color: #000;
}

.service_page-buh .service_buh_tariffs_subtitle {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: #666;
}

.service_page-buh .service_buh_tariffs_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-shrink: 0;
	min-height: 56px;
	padding: 14px 28px;
	background: #FFB103;
	border: 2px solid #FFB103;
	font-family: "IBM Plex Mono", monospace;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	color: #000;
	text-decoration: none;
	transition: border-color .2s ease-in-out;
	box-sizing: border-box;
	cursor: pointer;
}

.service_page-buh .service_buh_tariffs_btn:hover {
	border-color: #000;
	text-decoration: none;
	color: #000;
}

.service_page-buh .service_buh_tariffs_cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.service_page-buh .service_buh_tariffs_card {
	display: flex;
	flex-direction: column;
	min-height: 220px;
	padding: 24px;
	background: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
}

.service_page-buh .service_buh_tariffs_features {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.service_page-buh .service_buh_tariffs_feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.35;
	color: #000;
}

.service_page-buh .service_buh_tariffs_feature:last-child {
	margin-bottom: 0;
}

.service_page-buh .service_buh_tariffs_feature_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 15px;
	height: 11px;
	margin-top: 5px;
}

.service_page-buh .service_buh_tariffs_price {
	margin: auto 0 0;
	font-family: "IBM Plex Mono", monospace;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: #000;
}

@media screen and (max-width: 1280px) {
	.service_page-buh .service_buh_tariffs_inner {
		padding: 40px 80px 48px;
	}

	.service_page-buh .service_buh_tariffs_title {
		font-size: 28px;
	}

	.service_page-buh .service_buh_tariffs_btn {
		font-size: 22px;
	}
}

@media screen and (max-width: 1080px) {
	.service_page-buh .service_buh_tariffs_inner {
		padding: 36px 40px 40px;
	}

	.service_page-buh .service_buh_tariffs_cards {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.service_page-buh .service_buh_tariffs_card {
		min-height: 0;
	}
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_buh_tariffs {
		margin-bottom: 40px;
	}

	.service_page-buh .service_buh_tariffs_inner {
		padding: 32px 30px 36px;
	}

	.service_page-buh .service_buh_tariffs_head {
		flex-direction: column;
		align-items: stretch;
		margin-bottom: 24px;
	}

	.service_page-buh .service_buh_tariffs_btn {
		width: 100%;
		max-width: 100%;
	}

	.service_page-buh .service_buh_tariffs_cards {
		max-width: none;
	}
}

@media screen and (max-width: 600px) {
	.service_page-buh .service_buh_tariffs_inner {
		padding: 28px 20px 32px;
	}

	.service_page-buh .service_buh_tariffs_title {
		font-size: 24px;
	}

	.service_page-buh .service_buh_tariffs_subtitle {
		font-size: 14px;
	}

	.service_page-buh .service_buh_tariffs_btn {
		font-size: 20px;
		min-height: 52px;
		padding: 12px 20px;
	}

	.service_page-buh .service_buh_tariffs_feature {
		font-size: 14px;
	}

	.service_page-buh .service_buh_tariffs_price {
		font-size: 24px;
	}

	.service_page-buh .service_buh_tariffs_card {
		padding: 20px;
	}
}

.service_page-buh .service_buh_reviews {
	margin-bottom: 60px;
}

.service_page-buh .service_buh_reviews_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 48px 120px 56px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 20px;
	align-items: stretch;
}

.service_page-buh .service_buh_reviews_col {
	min-width: 0;
}

.service_page-buh .service_buh_reviews_col--left,
.service_page-buh .service_buh_reviews_col--center,
.service_page-buh .service_buh_reviews_col--right {
	display: flex;
	flex-direction: column;
}

.service_page-buh .service_buh_reviews_col--left {
	background: #fff;
	border: 1px solid #D9E2E8;
	padding: 28px 24px;
	box-sizing: border-box;
}

.service_page-buh .service_buh_reviews_col--center {
	background: #E3EBEF;
	padding: 28px 24px;
	box-sizing: border-box;
}

.service_page-buh .service_buh_reviews_col--right {
	background: #fff;
	border: 1px solid #D9E2E8;
	box-sizing: border-box;
}

.service_page-buh .service_buh_reviews_text {
	margin: 0 0 24px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: #333;
}

.service_page-buh .service_buh_reviews_col--left .service_buh_reviews_text,
.service_page-buh .service_buh_reviews_col--center .service_buh_reviews_text {
	flex: 1 1 auto;
}

.service_page-buh .service_buh_reviews_text--short {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.45;
}

.service_page-buh .service_buh_reviews_center_top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(120px, 42%);
	gap: 16px;
	align-items: start;
	margin-bottom: 20px;
}

.service_page-buh .service_buh_reviews_center_image {
	display: block;
	width: 100%;
	max-height: 160px;
	object-fit: cover;
	object-position: center;
}

.service_page-buh .service_buh_reviews_meta {
	margin-top: auto;
}

.service_page-buh .service_buh_reviews_meta--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-top: 0;
}

.service_page-buh .service_buh_reviews_person {
	min-width: 0;
}

.service_page-buh .service_buh_reviews_logo {
	display: block;
	max-width: 120px;
	max-height: 40px;
	width: auto;
	height: auto;
	margin-bottom: 12px;
	object-fit: contain;
	object-position: left center;
}

.service_page-buh .service_buh_reviews_logo--right {
	margin-bottom: 0;
	max-width: 90px;
	max-height: 36px;
	margin-left: auto;
}

.service_page-buh .service_buh_reviews_logo_text {
	display: block;
	margin-bottom: 12px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1;
	color: #000;
}

.service_page-buh .service_buh_reviews_logo_text--right {
	margin-bottom: 0;
	font-size: 22px;
	text-align: right;
}

.service_page-buh .service_buh_reviews_logo_text--accent {
	color: #C45C8A;
}

.service_page-buh .service_buh_reviews_name {
	margin: 0 0 4px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
	color: #000;
}

.service_page-buh .service_buh_reviews_company {
	margin: 0;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.35;
	color: #666;
}

.service_page-buh .service_buh_reviews_stack_item {
	padding: 22px 24px;
	border-bottom: 1px solid #D9E2E8;
}

.service_page-buh .service_buh_reviews_stack_item:last-child {
	border-bottom: none;
}

@media screen and (max-width: 1280px) {
	.service_page-buh .service_buh_reviews_inner {
		padding: 40px 80px 48px;
	}
}

@media screen and (max-width: 1080px) {
	.service_page-buh .service_buh_reviews_inner {
		grid-template-columns: 1fr;
		padding: 36px 40px 40px;
		gap: 16px;
	}

	.service_page-buh .service_buh_reviews_center_top {
		grid-template-columns: 1fr 180px;
	}
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_buh_reviews {
		margin-bottom: 40px;
	}

	.service_page-buh .service_buh_reviews_inner {
		padding: 32px 30px 36px;
	}

	.service_page-buh .service_buh_reviews_col--left,
	.service_page-buh .service_buh_reviews_col--center {
		padding: 24px 20px;
	}

	.service_page-buh .service_buh_reviews_center_top {
		grid-template-columns: 1fr;
	}

	.service_page-buh .service_buh_reviews_center_image {
		max-height: 200px;
	}

	.service_page-buh .service_buh_reviews_stack_item {
		padding: 20px;
	}
}

@media screen and (max-width: 600px) {
	.service_page-buh .service_buh_reviews_inner {
		padding: 28px 20px 32px;
	}

	.service_page-buh .service_buh_reviews_text {
		font-size: 14px;
	}

	.service_page-buh .service_buh_reviews_text--short {
		font-size: 13px;
	}

	.service_page-buh .service_buh_reviews_logo_text {
		font-size: 24px;
	}
}

/* Figma desktop layout (frame 4047:4699, 1440 px). */
@media screen and (min-width: 1281px) {
	.service_page-buh .service_fs_inner {
		grid-template-columns: 43.75% 56.25%;
		min-height: 600px;
	}

	.service_page-buh .service_fs_left {
		justify-content: flex-start;
		padding: 116px 40px 40px 80px;
		box-sizing: border-box;
	}

	.service_page-buh .service_fs_back {
		margin-bottom: 56px;
		font-family: "IBM Plex Mono", monospace;
		font-weight: 500;
	}

	.service_page-buh .service_fs_tagline {
		margin-bottom: 6px;
		font-family: "PTRootUI", sans-serif;
		font-size: 18px;
		line-height: 23px;
	}

	.service_page-buh h1.service_fs_title {
		max-width: 510px;
		margin-bottom: 24px;
		font-weight: 500;
		font-size: 40px;
		line-height: 48px;
	}

	.service_page-buh .service_fs_desc {
		max-width: 510px;
		font-family: "PTRootUI", sans-serif;
		font-size: 20px;
		line-height: 28px;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_fs_right {
		padding: 0;
		overflow: hidden;
	}

	.service_page-buh .service_fs_cta {
		position: absolute;
		top: 223px;
		left: 220px;
		width: 510px;
		max-width: none;
		margin: 0;
		align-items: flex-start;
		text-align: left;
	}

	.service_page-buh .service_fs_btn_cta {
		width: 340px;
		max-width: none;
		height: 73px;
		min-height: 73px;
		gap: 16px;
		padding: 8px 24px;
		justify-content: space-between;
		font-weight: 500;
		font-size: 28px;
		line-height: 36px;
		white-space: nowrap;
	}

	.service_page-buh .service_fs_btn_cta span {
		font-size: 40px;
		line-height: 52px;
	}

	.service_page-buh .service_fs_price {
		margin-top: 12px;
		font-family: "PTRootUI", sans-serif;
		font-size: 18px;
		line-height: 28px;
		white-space: nowrap;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_fs_pain {
		position: absolute;
		inset: 0;
		width: 100%;
		max-width: none;
		height: 600px;
		min-height: 0;
		margin: 0;
	}

	.service_page-buh .service_fs_pain_item {
		padding: 12px 24px;
		font-weight: 500;
		font-size: 14px;
		box-shadow: none;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 4px;
		top: 451px;
		transform: rotate(8deg);
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: 209px;
		top: 547px;
		bottom: auto;
		transform: rotate(-8deg);
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: 503px;
		right: auto;
		top: 478px;
		transform: rotate(8deg);
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: 571px;
		right: auto;
		top: 514px;
		bottom: auto;
		transform: rotate(-8deg);
	}

	.service_page-buh .service_features {
		height: 235px;
		padding: 64px 80px;
		box-sizing: border-box;
	}

	.service_page-buh .service_features_inner {
		max-width: 1280px;
		padding: 0;
	}

	.service_page-buh .service_features_items {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 24px;
	}

	.service_page-buh .service_features_item {
		gap: 16px;
	}

	.service_page-buh .service_features_text {
		font-family: "PTRootUI", sans-serif;
		font-size: 20px;
		line-height: 28px;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_work {
		min-height: 702px;
		margin-bottom: 0;
		background: #EDF3F5;
	}

	.service_page-buh .service_work_inner {
		min-height: 702px;
		padding: 80px;
	}

	.service_page-buh .service_work_head {
		grid-template-columns: 400px minmax(0, 1fr);
		gap: 42px;
		min-height: 182px;
		margin-bottom: 120px;
	}

	.service_page-buh .service_work_title {
		max-width: 400px;
		font-weight: 500;
		font-size: 40px;
		line-height: 52px;
	}

	.service_page-buh .service_work_graphic img,
	.service_page-buh .service_work_graphic svg {
		width: 100%;
		max-width: 838px;
		height: 182px;
		max-height: none;
		object-fit: contain;
	}

	.service_page-buh .service_work_steps {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 24px;
		padding-top: 0;
	}

	.service_page-buh .service_work_steps::before {
		top: 19px;
		left: 1px;
		right: 203px;
		height: 2px;
		background: #edf3f5;
	}

	.service_page-buh .service_work_step {
		padding-top: 56px;
	}

	.service_page-buh .service_work_step_num {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.service_page-buh .service_work_step_title {
		margin-bottom: 16px;
		font-family: "PTRootUI", sans-serif;
		font-weight: 500;
		font-size: 16px;
		line-height: 21px;
	}

	.service_page-buh .service_work_step_desc {
		font-family: "PTRootUI", sans-serif;
		font-size: 16px;
		line-height: 22px;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_work_step_link {
		font-family: "PTRootUI", sans-serif;
		font-size: 16px;
		line-height: 21px;
	}

	.service_page-buh .service_work_alert_inner {
		height: 56px;
		padding: 0 80px;
		flex-wrap: nowrap;
		gap: 32px;
	}

	.service_page-buh .service_work_alert_list {
		flex-wrap: nowrap;
		gap: 28px;
	}

	.service_page-buh .service_buh_why {
		margin-bottom: 0;
	}

	.service_page-buh .service_buh_why_inner {
		min-height: 1632px;
		padding: 80px;
		grid-template-columns: 400px minmax(0, 1fr);
		gap: 42px;
		align-items: stretch;
	}

	.service_page-buh .service_buh_why_intro {
		height: 1472px;
		overflow: hidden;
	}

	.service_page-buh .service_buh_why_label {
		padding: 4px 8px;
		margin-bottom: 32px;
		font-weight: 500;
		font-size: 16px;
		line-height: 21px;
	}

	.service_page-buh .service_buh_why_title {
		margin-bottom: 32px;
		font-weight: 500;
		font-size: 40px;
		line-height: 48px;
	}

	.service_page-buh .service_buh_why_desc {
		max-width: 380px;
		margin-bottom: 0;
		font-family: "PTRootUI", sans-serif;
		font-size: 16px;
		line-height: 22px;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_buh_why_graphic {
		width: 637px;
		margin-top: 40px;
		margin-left: -80px;
	}

	.service_page-buh .service_buh_why_graphic img,
	.service_page-buh .service_buh_why_graphic svg {
		width: 637px;
		max-width: none;
		height: 648px;
	}

	.service_page-buh .service_buh_why_cards {
		grid-template-rows: repeat(3, 464px);
		gap: 40px;
	}

	.service_page-buh .service_buh_why_card {
		padding: 40px;
		min-height: 464px;
		border: 2px solid #EDF3F5;
	}

	.service_page-buh .service_buh_why_card_icon {
		width: 120px;
		height: 120px;
		margin-bottom: 32px;
	}

	.service_page-buh .service_buh_why_card_title {
		margin-bottom: 24px;
		font-weight: 500;
		font-size: 28px;
		line-height: 36px;
	}

	.service_page-buh .service_buh_why_card_desc {
		font-family: "PTRootUI", sans-serif;
		font-size: 16px;
		line-height: 24px;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_buh_tariffs_inner {
		min-height: 442px;
		padding: 64px 80px 80px;
	}

	.service_page-buh .service_buh_tariffs_head {
		margin-bottom: 40px;
	}

	.service_page-buh .service_buh_tariffs_title {
		font-weight: 500;
		font-size: 40px;
		line-height: 48px;
	}

	.service_page-buh .service_buh_tariffs_btn {
		width: 340px;
		height: 73px;
		padding: 8px 24px;
		justify-content: space-between;
		font-weight: 500;
		font-size: 28px;
		white-space: nowrap;
	}

	.service_page-buh .service_buh_tariffs_cards {
		gap: 40px;
	}

	.service_page-buh .service_buh_tariffs_card {
		min-height: 180px;
		padding: 32px 40px;
	}

	.service_page-buh .service_buh_reviews {
		min-height: 728px;
		margin-bottom: 0;
	}

	.service_page-buh .service_buh_reviews_inner {
		min-height: 728px;
		padding: 80px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}
}

/* The coin fan is intentionally clipped so that exactly half remains visible. */
.service_page-buh .service_buh_why_intro,
.service_page-buh .service_buh_why_graphic {
	overflow: hidden;
}

.service_page-buh .service_buh_why_graphic {
	margin-left: 0;
}

.service_page-buh .service_buh_why_graphic img,
.service_page-buh .service_buh_why_graphic svg {
	transform: translateX(-50%);
}

/* Process timeline: vertical below 600 px, horizontal from 600 px. */
@media screen and (max-width: 599px) {
	.service_page-buh .service_work_mobile_progress {
		display: none;
	}

	.service_page-buh .service_work_steps {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0;
	}

	.service_page-buh .service_work_steps::before {
		display: none;
	}

	.service_page-buh .service_work_step {
		min-height: 40px;
		margin-left: 19px;
		padding: 0 0 32px 37px;
		border-left: 2px solid #000;
	}

	.service_page-buh .service_work_step:last-child {
		padding-bottom: 0;
		border-left-color: transparent;
	}

	.service_page-buh .service_work_step_num {
		display: flex;
		top: 0;
		left: -21px;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

@media screen and (min-width: 600px) and (max-width: 1280px) {
	.service_page-buh .service_work_mobile_progress {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		position: relative;
		margin: 0 0 32px;
	}

	.service_page-buh .service_work_mobile_progress::before {
		content: "";
		position: absolute;
		top: 19px;
		left: 20px;
		right: 20px;
		height: 2px;
		background: #000;
	}

	.service_page-buh .service_work_mobile_progress span {
		position: relative;
		z-index: 1;
		justify-self: center;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #000;
		color: #fff;
		font-family: "IBM Plex Sans", sans-serif;
		font-size: 16px;
		font-weight: 700;
		line-height: 1;
	}

	.service_page-buh .service_work_steps {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 24px 20px;
		padding: 0;
	}

	.service_page-buh .service_work_steps::before {
		display: none;
	}

	.service_page-buh .service_work_step {
		margin: 0;
		padding: 0;
		border-left: 0;
	}

	.service_page-buh .service_work_step_num {
		display: none;
	}
}

@media screen and (min-width: 1281px) {
	.service_page-buh .service_work_steps::before {
		background: #000;
	}
}

/* Mobile Hero: keep the pain-point stickers scattered as in the Figma layout. */
.service_page-buh .service_fs_pain--mobile {
	display: none;
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_fs_pain {
		position: relative;
		display: block;
		width: 100%;
		max-width: none;
		height: 230px;
		min-height: 230px;
		margin-top: 0;
		overflow: visible;
	}

	.service_page-buh .service_fs_pain_item {
		position: absolute;
		display: block;
		width: max-content;
		max-width: calc(100% - 8px);
		padding: 10px 16px;
		flex: none;
		white-space: nowrap;
		text-align: center;
		transform-origin: center;
		box-sizing: border-box;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 4px;
		top: 8px;
		transform: rotate(8deg);
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: auto;
		right: 4px;
		top: 94px;
		bottom: auto;
		transform: rotate(-8deg);
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: 10%;
		right: auto;
		top: 168px;
		transform: rotate(8deg);
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: auto;
		right: 10%;
		top: 48px;
		bottom: auto;
		transform: rotate(-8deg);
	}

	.service_page-buh .service_fs_pain--mobile {
		display: block;
		margin-top: 24px;
	}

	.service_page-buh .service_fs_pain--desktop {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.service_page-buh .service_fs_pain_item {
		max-width: calc(100% - 4px);
		padding-right: 12px;
		padding-left: 12px;
		font-size: 11px;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 2px;
	}

	.service_page-buh .service_fs_pain_item--2 {
		right: 2px;
	}
}

/* Keep the Hero CTA on one line at every breakpoint. */
.service_page-buh .service_fs_btn_cta {
	white-space: nowrap;
}

/* Intermediate Hero: center the CTA in the white panel and keep the stickers below it. */
@media screen and (min-width: 801px) and (max-width: 1280px) {
	.service_page-buh .service_fs_cta {
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 2;
		width: min(360px, calc(100% - 64px));
		margin: 0;
		transform: translate(-50%, -50%);
		align-items: center;
		text-align: center;
	}

	.service_page-buh .service_fs_price {
		width: 100%;
		text-align: center;
	}

	.service_page-buh .service_fs_pain {
		position: absolute;
		inset: 0;
		z-index: 1;
		width: 100%;
		max-width: none;
		height: 100%;
		min-height: 0;
		margin: 0;
	}
}

/* Narrow two-column Hero: one sticker per lane below the centered CTA. */
@media screen and (min-width: 801px) and (max-width: 1199px) {
	.service_page-buh .service_fs_inner {
		min-height: 780px;
	}

	.service_page-buh .service_fs_pain_item {
		padding: 10px 18px;
		font-size: 13px;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 4px;
		right: auto;
		top: auto;
		bottom: 270px;
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: auto;
		right: 4px;
		top: auto;
		bottom: 180px;
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: 8%;
		right: auto;
		top: auto;
		bottom: 94px;
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: auto;
		right: 4%;
		top: auto;
		bottom: 16px;
	}
}

@media screen and (min-width: 1081px) and (max-width: 1199px) {
	.service_page-buh .service_fs_inner {
		min-height: 860px;
	}
}

/* Wide two-column Hero: use two staggered rows at the bottom of the panel. */
@media screen and (min-width: 1200px) and (max-width: 1280px) {
	.service_page-buh .service_fs_pain_item--1 {
		left: -32px;
		right: auto;
		top: auto;
		bottom: 130px;
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: auto;
		right: -32px;
		top: auto;
		bottom: 130px;
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: -32px;
		right: auto;
		top: auto;
		bottom: 30px;
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: auto;
		right: -32px;
		top: auto;
		bottom: 30px;
	}
}

/* Mobile Hero: retain the scattered rhythm without sticker collisions. */
@media screen and (max-width: 800px) {
	.service_page-buh .service_fs_pain {
		height: 330px;
		min-height: 330px;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 4px;
		right: auto;
		top: 4px;
		bottom: auto;
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: auto;
		right: 4px;
		top: 84px;
		bottom: auto;
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: 8%;
		right: auto;
		top: 164px;
		bottom: auto;
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: auto;
		right: 8%;
		top: 244px;
		bottom: auto;
	}
}

/* Desktop Hero: separate the two stickers that previously intersected. */
@media screen and (min-width: 1281px) {
	.service_page-buh .service_fs_cta {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		align-items: center;
		text-align: center;
	}

	.service_page-buh .service_fs_price {
		width: 100%;
		text-align: center;
	}

	.service_page-buh .service_fs_pain_item--3 {
		top: 430px;
	}

	.service_page-buh .service_fs_pain_item--4 {
		top: 525px;
	}
}

/* Why FinLab coin fan: exact proportions of Figma node 4047:5541 (256 × 535). */
.service_page-buh .service_buh_why_intro {
	overflow: visible;
}

.service_page-buh .service_buh_why_label {
	position: relative;
	z-index: 2;
}

.service_page-buh .service_buh_why_graphic {
	width: 256px;
	height: 535px;
	margin: 32px 0 0 -120px;
	overflow: hidden;
	flex: 0 0 auto;
}

.service_page-buh .service_buh_why_graphic img,
.service_page-buh .service_buh_why_graphic svg {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: contain;
	transform: none;
}

@media screen and (min-width: 1081px) and (max-width: 1440px) {
	.service_page-buh .service_buh_why_intro {
		display: flex;
		flex-direction: column;
		align-content: start;
		align-items: start;
		overflow: visible;
	}

	.service_page-buh .service_buh_why_label {
		order: 0;
	}

	.service_page-buh .service_buh_why_title {
		order: 0;
	}

	.service_page-buh .service_buh_why_desc {
		max-width: 380px;
		margin-bottom: 0;
		order: 0;
	}

	.service_page-buh .service_buh_why_graphic {
		position: relative;
		width: 256px;
		height: 535px;
		max-width: none;
		margin: 32px 0 0 -80px;
		overflow: hidden;
		order: 0;
	}

	.service_page-buh .service_buh_why_graphic img,
	.service_page-buh .service_buh_why_graphic svg {
		display: block;
		width: 100%;
		height: 100%;
		max-width: none;
		margin: 0;
		object-fit: contain;
		transform: none;
	}
}

@media screen and (min-width: 601px) and (max-width: 1080px) {
	.service_page-buh .service_buh_why_intro {
		position: relative;
		display: block;
		min-height: 545px;
	}

	.service_page-buh .service_buh_why_title,
	.service_page-buh .service_buh_why_desc {
		max-width: 62%;
	}

	.service_page-buh .service_buh_why_graphic {
		position: absolute;
		top: 40px;
		right: -40px;
		width: 230px;
		height: 481px;
		max-width: none;
		margin: 0;
	}

	.service_page-buh .service_buh_why_graphic img,
	.service_page-buh .service_buh_why_graphic svg {
		display: block;
		width: 100%;
		height: 100%;
		max-width: none;
		margin: 0;
		object-fit: contain;
		transform: rotate(180deg);
	}
}

@media screen and (min-width: 321px) and (max-width: 600px) {
	.service_page-buh .service_buh_why_intro {
		position: relative;
		display: block;
		min-height: 475px;
	}

	.service_page-buh .service_buh_why_title,
	.service_page-buh .service_buh_why_desc {
		max-width: 62%;
	}

	.service_page-buh .service_buh_why_graphic {
		position: absolute;
		top: 110px;
		right: -20px;
		width: clamp(132px, 28.4vw, 164px);
		height: auto;
		aspect-ratio: 256 / 535;
		max-width: none;
		margin: 0;
	}

	.service_page-buh .service_buh_why_graphic img,
	.service_page-buh .service_buh_why_graphic svg {
		display: block;
		width: 100%;
		height: 100%;
		max-width: none;
		margin: 0;
		object-fit: contain;
		transform: rotate(180deg);
	}
}

@media screen and (max-width: 320px) {
	.service_page-buh .service_buh_why_intro {
		min-height: 0;
	}

	.service_page-buh .service_buh_why_title,
	.service_page-buh .service_buh_why_desc {
		max-width: none;
	}

	.service_page-buh .service_buh_why_graphic {
		 display: none;
	}
}

/*
 * Hero alignment from the current Figma file
 * Desktop: 4047:5539, tablet: 4048:7168,
 * mobile: 4050:7903 and 4054:631.
 * Keep this block last: it replaces earlier exploratory Hero overrides.
 */
.service_page-buh .service_fs,
.service_page-buh .service_fs_inner {
	overflow: hidden;
}

.service_page-buh .service_fs_btn_cta {
	white-space: nowrap;
}

@media screen and (min-width: 1281px) {
	.service_page-buh .service_fs_inner {
		grid-template-columns: 630px minmax(0, 1fr);
		height: 600px;
		min-height: 600px;
	}

	.service_page-buh .service_fs_cta {
		top: 223px;
		left: 220px;
		width: 510px;
		max-width: none;
		margin: 0;
		transform: none;
		align-items: flex-start;
		text-align: left;
	}

	.service_page-buh .service_fs_price {
		width: auto;
		text-align: left;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 4px;
		top: 451px;
		transform: rotate(7.19deg);
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: 209px;
		top: 522px;
		bottom: auto;
		transform: rotate(-4.43deg);
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: 503px;
		right: auto;
		top: 428px;
		transform: rotate(-9.45deg);
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: 564px;
		right: auto;
		top: 514px;
		bottom: auto;
		transform: rotate(8.57deg);
	}
}

@media screen and (min-width: 801px) and (max-width: 1280px) {
	.service_page-buh .service_fs_inner {
		grid-template-columns: min(calc(554px + 5.278vw), calc(100% - 240px)) minmax(0, 1fr);
		height: 580px;
		min-height: 580px;
	}

	.service_page-buh .service_fs_left {
		justify-content: flex-start;
		padding: 96px 40px 32px 80px;
		box-sizing: border-box;
	}

	.service_page-buh .service_fs_back {
		margin-bottom: 56px;
		font-family: "IBM Plex Mono", monospace;
		font-weight: 500;
	}

	.service_page-buh .service_fs_tagline {
		margin-bottom: 6px;
		font-family: "PTRootUI", sans-serif;
		font-size: 18px;
		line-height: 23px;
	}

	.service_page-buh h1.service_fs_title {
		max-width: 510px;
		margin-bottom: 24px;
		font-weight: 500;
		font-size: 40px;
		line-height: 48px;
	}

	.service_page-buh .service_fs_desc {
		max-width: 510px;
		font-family: "PTRootUI", sans-serif;
		font-size: 20px;
		line-height: 28px;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_fs_right {
		padding: 0;
		overflow: visible;
	}

	.service_page-buh .service_fs_cta {
		position: absolute;
		top: 203px;
		left: max(29px, calc(53.056vw - 544px));
		z-index: 2;
		width: min(400px, calc(100% - 58px));
		max-width: none;
		margin: 0;
		transform: none;
		align-items: flex-start;
		text-align: left;
	}

	.service_page-buh .service_fs_btn_cta {
		width: min(340px, 100%);
		max-width: none;
		height: 73px;
		min-height: 73px;
		gap: 16px;
		padding: 8px 24px;
		justify-content: space-between;
		font-weight: 500;
		font-size: 28px;
		line-height: 36px;
	}

	.service_page-buh .service_fs_btn_cta span {
		font-size: 40px;
		line-height: 52px;
	}

	.service_page-buh .service_fs_price {
		width: auto;
		margin-top: 12px;
		font-family: "PTRootUI", sans-serif;
		font-size: 16px;
		line-height: 28px;
		text-align: left;
		white-space: nowrap;
	}

	.service_page-buh .service_fs_pain {
		position: absolute;
		inset: 0;
		z-index: 1;
		width: 100%;
		max-width: none;
		height: 580px;
		min-height: 0;
		margin: 0;
	}

	.service_page-buh .service_fs_pain_item {
		padding: 12px 24px;
		font-weight: 500;
		font-size: 14px;
		box-shadow: none;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: calc(-100vw + 100%);
		right: auto;
		top: 489px;
		bottom: auto;
		transform: rotate(7.19deg);
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: 138px;
		right: auto;
		top: 502px;
		bottom: auto;
		transform: rotate(-4.43deg);
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: 0;
		right: auto;
		top: 446px;
		bottom: auto;
		transform: rotate(-9.45deg);
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: calc(-100vw + 100% + 259px);
		right: auto;
		top: 460px;
		bottom: auto;
		transform: rotate(18.47deg);
	}
}

@media screen and (max-width: 800px) {
	.service_page-buh .service_fs {
		margin-bottom: 40px;
	}

	.service_page-buh .service_fs_inner {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
	}

	.service_page-buh .service_fs_left {
		position: relative;
		height: 478px;
		min-height: 478px;
		padding: 28px 30px 0;
		justify-content: flex-start;
		box-sizing: border-box;
	}

	.service_page-buh .service_fs_back {
		margin-bottom: 24px;
	}

	.service_page-buh .service_fs_tagline {
		margin-bottom: 6px;
		font-family: "PTRootUI", sans-serif;
		font-size: 18px;
		line-height: 23px;
	}

	.service_page-buh h1.service_fs_title {
		max-width: none;
		margin-bottom: 16px;
		font-weight: 500;
		font-size: 40px;
		line-height: 48px;
	}

	.service_page-buh .service_fs_desc {
		max-width: 540px;
		font-family: "PTRootUI", sans-serif;
		font-size: 20px;
		line-height: 28px;
		color: rgba(0, 0, 0, .7);
	}

	.service_page-buh .service_fs_pain--mobile {
		position: absolute;
		left: 0;
		bottom: 0;
		display: block;
		width: 100%;
		height: 256px;
		min-height: 256px;
		margin: 0;
		overflow: visible;
	}

	.service_page-buh .service_fs_pain_item {
		padding: 6px 16px;
		border: 2px solid #EDF3F5;
		border-radius: 28px;
		font-family: "PTRootUI", sans-serif;
		font-weight: 400;
		font-size: 14px;
		line-height: 24px;
		white-space: nowrap;
		box-shadow: none;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 38.6667%;
		right: auto;
		top: auto;
		bottom: 50px;
		transform: rotate(7.19deg);
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: -30px;
		right: auto;
		top: auto;
		bottom: 2px;
		transform: rotate(-4.43deg);
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: 56.6667%;
		right: auto;
		top: auto;
		bottom: 3px;
		transform: rotate(-9.45deg);
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: 9.6667%;
		right: auto;
		top: auto;
		bottom: 68px;
		transform: rotate(18.47deg);
	}

	.service_page-buh .service_fs_right {
		height: 272px;
		min-height: 272px;
		padding: 80px 30px;
		justify-content: flex-start;
		box-sizing: border-box;
	}

	.service_page-buh .service_fs_cta {
		position: static;
		width: 100%;
		max-width: none;
		margin: 0;
		transform: none;
		align-items: center;
		text-align: center;
	}

	.service_page-buh .service_fs_btn_cta {
		width: 300px;
		max-width: 100%;
		height: 73px;
		min-height: 73px;
		gap: 16px;
		padding: 8px 24px;
		justify-content: space-between;
		font-weight: 500;
		font-size: 24px;
		line-height: 32px;
	}

	.service_page-buh .service_fs_btn_cta span {
		font-size: 32px;
		line-height: 40px;
	}

	.service_page-buh .service_fs_price {
		width: 100%;
		margin-top: 12px;
		font-family: "PTRootUI", sans-serif;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
		white-space: nowrap;
	}
}

@media screen and (max-width: 400px) {
	.service_page-buh .service_fs_left {
		height: 523px;
		min-height: 523px;
		padding: 24px 20px 0;
	}

	.service_page-buh .service_fs_back {
		margin-bottom: 24px;
	}

	.service_page-buh .service_fs_tagline {
		font-size: 18px;
		line-height: 23px;
	}

	.service_page-buh h1.service_fs_title {
		margin-bottom: 16px;
		font-size: 32px;
		line-height: 38px;
	}

	.service_page-buh .service_fs_desc {
		font-size: 20px;
		line-height: 28px;
	}

	.service_page-buh .service_fs_pain--mobile {
		height: 256px;
		min-height: 256px;
	}

	.service_page-buh .service_fs_pain_item {
		max-width: none;
		padding: 6px 12px;
		font-size: 14px;
		line-height: 24px;
	}

	.service_page-buh .service_fs_pain_item--1 {
		left: 0;
		bottom: 127px;
	}

	.service_page-buh .service_fs_pain_item--2 {
		left: 0;
		bottom: 0;
	}

	.service_page-buh .service_fs_pain_item--3 {
		left: 0;
		bottom: 69px;
	}

	.service_page-buh .service_fs_pain_item--4 {
		left: 128px;
		bottom: 48px;
	}

	.service_page-buh .service_fs_right {
		height: 206px;
		min-height: 206px;
		padding: 40px 20px;
	}

	.service_page-buh .service_fs_cta {
		align-items: flex-start;
		text-align: left;
	}

	.service_page-buh .service_fs_btn_cta {
		width: 248px;
		max-width: 100%;
		font-size: 20px;
		line-height: 28px;
	}

	.service_page-buh .service_fs_price {
		width: 100%;
		text-align: left;
		white-space: normal;
	}
}

/* FAQ geometry from Figma 4048:5711. The number of items remains controlled in admin. */
.service_page-buh .faq_container {
	margin-bottom: 0;
}

@media screen and (min-width: 801px) {
	.service_page-buh .faq_container {
		padding-bottom: 80px;
		box-sizing: border-box;
	}

	.service_page-buh .faq_group {
		grid-row-gap: 20px;
	}

	.service_page-buh .faq_point {
		min-height: 82px;
		border-color: #EDF3F5;
		box-sizing: border-box;
	}

	.service_page-buh .faq_point input + label {
		float: right;
		width: 79px;
		height: 76px;
		border-right: 0;
		border-left: 3px solid #EDF3F5;
	}

	.service_page-buh .faq_point input + label svg {
		fill: #000;
	}

	.service_page-buh .faq_point_title {
		height: 76px;
		padding-right: 96px;
		padding-left: 24px;
		font-family: "IBM Plex Mono", monospace !important;
		font-size: 16px !important;
		line-height: normal !important;
		color: #000;
	}

	.service_page-buh .faq_point article {
		border-color: #EDF3F5;
	}
}

/* Service footer geometry from Figma 4048:6091. Global option fields stay editable. */
@media screen and (min-width: 1281px) {
	.single-services .footer {
		grid-template-columns: 810px 630px;
		grid-template-rows: 542px 194px 85px;
		grid-template-areas:
			"f_o_p f_c"
			"f_i f_c"
			"f_l f_l";
		height: 821px;
	}

	.single-services .footer_office_pic {
		height: 542px;
	}

	.single-services .footer_contact {
		height: 736px;
	}

	.single-services .footer_contact_container {
		width: 347px;
	}

	.single-services .footer_contact h2,
	.single-services .footer_contact .h2 {
		font-family: "IBM Plex Sans", sans-serif;
		font-weight: 500;
		font-size: 40px;
		line-height: normal;
		color: #000;
	}

	.single-services .footer_contact p {
		display: block;
		margin-top: 8px;
		font-family: "PTRootUI", sans-serif;
		font-size: 14px;
		line-height: normal;
		color: rgba(8, 22, 24, .8);
	}

	.single-services .footer_contact .button {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 347px;
		height: 72px;
		margin-top: 20px;
		padding: 10px 24px;
		border-width: 0;
		font-size: 28px;
		line-height: 36px;
		white-space: nowrap;
		overflow: hidden;
	}

	.single-services .footer_contact .button span {
		margin-left: 16px;
		font-size: 40px;
		line-height: 52px;
	}

	.single-services .footer_info {
		display: grid;
		grid-template-columns: max-content max-content max-content;
		grid-template-rows: auto auto;
		grid-template-areas:
			"f_a f_a f_a"
			"f_p f_e f_s";
		gap: 20px 40px;
		height: 194px;
		padding: 24px 110px 48px 80px;
		box-sizing: border-box;
	}

	.single-services .footer_adress {
		margin: 0;
		font-family: "PTRootUI", sans-serif;
		font-size: 28px;
		line-height: 40px;
		letter-spacing: -.28px;
	}

	.single-services .work_hours {
		display: none;
	}

	.single-services .foo_phone,
	.single-services .foo_email {
		margin: 0;
		font-size: 16px;
		line-height: normal;
		letter-spacing: -.16px;
	}

	.single-services .foo_social {
		display: flex;
		align-items: center;
		gap: 15px;
		margin: 0;
	}

	.single-services .foo_social li {
		margin: 0;
	}

	.single-services .foo_social svg {
		width: 20px;
		height: 20px;
	}

	.single-services .footer_links {
		display: grid;
		grid-template-columns: 810px 630px;
		grid-template-areas: "f_c_b f_n";
		height: 85px;
		padding: 0;
		column-gap: 0;
		box-sizing: border-box;
	}

	.single-services .footer_copy_by {
		align-self: center;
		padding-left: 80px;
	}

	.single-services .footer_links .follow_insta {
		display: none;
	}

	.single-services .foo_nav {
		align-self: center;
		justify-self: center;
		width: 510px;
		margin: 0;
		font-family: "IBM Plex Mono", monospace;
		font-size: 14px;
		line-height: 20px;
		letter-spacing: -.14px;
		color: #000;
		text-align: justify;
		white-space: nowrap;
	}

	.single-services .footer_brand_logo {
		display: none;
	}
}

/* Variable editor-controlled counts: up to 5 work steps and up to 6 Hero frames. */
body.single-services {
	overflow-x: hidden;
}

@media screen and (min-width: 600px) {
	.service_page-buh .service_work_mobile_progress,
	.service_page-buh .service_work_steps {
		grid-template-columns: repeat(var(--service-work-step-count, 5), minmax(0, 1fr));
	}
}

@media screen and (min-width: 1281px) {
	.service_page-buh .service_work_steps::before {
		right: calc((100% / var(--service-work-step-count, 5)) - 40px);
	}
}

.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item,
.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item {
	max-width: 240px;
	box-sizing: border-box;
	white-space: normal;
	text-align: center;
}

@media screen and (min-width: 1281px) {
	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--1 {
		left: -20px;
		top: 430px;
		transform: rotate(7deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--2 {
		left: 270px;
		top: 440px;
		transform: rotate(-5deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--3 {
		left: 550px;
		top: 425px;
		transform: rotate(-9deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--4 {
		left: 120px;
		top: 520px;
		transform: rotate(-4deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--5 {
		left: 430px;
		top: 515px;
		transform: rotate(8deg);
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--1 {
		left: -30px;
		top: 430px;
		transform: rotate(7deg);
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--2 {
		left: 250px;
		top: 435px;
		transform: rotate(-5deg);
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--3 {
		left: 535px;
		top: 425px;
		transform: rotate(-9deg);
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--4 {
		left: 75px;
		top: 520px;
		transform: rotate(-4deg);
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--5 {
		left: 355px;
		top: 515px;
		transform: rotate(8deg);
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--6 {
		left: 620px;
		top: 520px;
		transform: rotate(-6deg);
	}
}

@media screen and (min-width: 801px) and (max-width: 1280px) {
	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item {
		max-width: 220px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--1,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--1 {
		left: calc(-100vw + 100% - 20px);
		top: 420px;
		transform: rotate(7deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--2,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--2 {
		left: calc(-100vw + 100% + 36vw);
		top: 430px;
		transform: rotate(-5deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--3,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--3 {
		left: calc(-100vw + 100% + 72vw);
		top: 415px;
		transform: rotate(-9deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--4,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--4 {
		left: calc(-100vw + 100% + 16vw);
		top: 505px;
		transform: rotate(-4deg);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--5,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--5 {
		left: calc(-100vw + 100% + 54vw);
		top: 500px;
		transform: rotate(8deg);
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--6 {
		left: calc(-100vw + 100% + 88vw);
		top: 505px;
		transform: rotate(-6deg);
	}
}

@media screen and (min-width: 401px) and (max-width: 800px) {
	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item {
		max-width: 190px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--1,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--1 {
		left: -2%;
		top: auto;
		bottom: 112px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--2,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--2 {
		left: 34%;
		top: auto;
		bottom: 118px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--3,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--3 {
		left: 70%;
		top: auto;
		bottom: 108px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--4,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--4 {
		left: 13%;
		top: auto;
		bottom: 20px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--5,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--5 {
		left: 49%;
		top: auto;
		bottom: 14px;
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--6 {
		left: 85%;
		top: auto;
		bottom: 20px;
	}
}

@media screen and (max-width: 400px) {
	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item,
	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item {
		width: max-content;
		max-width: calc(100% - 40px);
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--1 {
		left: -8px;
		bottom: 192px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--2 {
		left: 40px;
		bottom: 144px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--3 {
		left: 0;
		bottom: 96px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--4 {
		left: 55px;
		bottom: 48px;
	}

	.service_page-buh .service_fs_pain--count-5 .service_fs_pain_item--5 {
		left: 10px;
		bottom: 0;
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--1 {
		left: -8px;
		bottom: 210px;
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--2 {
		left: 40px;
		bottom: 168px;
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--3 {
		left: 0;
		bottom: 126px;
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--4 {
		left: 55px;
		bottom: 84px;
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--5 {
		left: 10px;
		bottom: 42px;
	}

	.service_page-buh .service_fs_pain--count-6 .service_fs_pain_item--6 {
		left: 45px;
		bottom: 0;
	}
}
