:root {
	--yd-primary:     #ff3951; 
	--yd-primary-dark:#e42d44;
	--yd-orange:      #ff3951; 
	--yd-heading:     #14142b; 
	--yd-ink:         #14142b; 
	--yd-body:        #6e7191; 
	--yd-black:       #000000; 
	--yd-grey:        #7a7a7a;
	--yd-line:        #e6e6e6; 
	--yd-container:   1600px;  
	--yd-font:        "Plus Jakarta Display", "Plus Jakarta Sans", "Helvetica Neue", Arial, "Segoe UI", system-ui, sans-serif;
}



*,
*::before,
*::after {
	box-sizing: border-box;
}


html {
	overflow-x: clip;
	max-width: 100%;
}
body {
	margin: 0;
	max-width: 100%;
	font-family: var(--yd-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.667em;
	letter-spacing: .02em;
	color: var(--yd-body);
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}


h1, h2, h3, h4, h5, h6 {
	color: var(--yd-heading);
	letter-spacing: .02em;
	margin-top: 0;
	margin-bottom: 16px;
	font-weight: 700;
}
h1 {
	font-size: 60px;
	line-height: 1.233em;
}
h2 {
	font-size: 40px;
	line-height: 1.35em;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}




.container {
	width: 100%;
	max-width: var(--yd-container);
	margin: 0 auto;
	padding: 0 40px;
}




.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}


.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: 12px 20px;
	background: #fff;
	color: var(--yd-ink);
	font-weight: 600;
}
.skip-link:focus {
	left: 6px;
	top: 6px;
}



.site-header {
	position: sticky;   
	top: 0;
	background: #ffedec;   
	border-bottom: 1px solid var(--yd-line);
	font-family: var(--yd-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.125em;
	z-index: 100;       
}


body.admin-bar .site-header {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}


.site-header .container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 96px;
}


.site-branding {
	flex: 0 0 auto;
}


.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}


.custom-logo {
	max-height: 60px;
	width: auto;
}


.logo-mark {
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
}
.logo-text {
	font-size: 30px;
	font-weight: 500;
	letter-spacing: .3px;
	color: var(--yd-ink);
}


.main-navigation {
	flex: 1 1 auto;
}

.nav-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
}

.nav-menu > li {
	position: relative; 
}


.mobile-cta-item {
	display: none;
}

.nav-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 36px 0;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--yd-ink);
	transition: color .2s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li:hover > a {
	color: var(--yd-orange);
}


.menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg);
	transition: transform .2s ease, margin-top .2s ease;
}

.nav-menu > .menu-item-has-children:hover > a::after,
.nav-menu > .menu-item-has-children.focus > a::after {
	transform: rotate(225deg);
	margin-top: 2px;
}


.submenu-toggle {
	display: none;
}


.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #ffedec;
	padding: 14px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .22s ease, transform .22s ease, visibility .22s;
	z-index: 30;
}

.nav-menu > .menu-item-has-children:hover > .sub-menu,
.nav-menu > .menu-item-has-children:focus-within > .sub-menu,
.nav-menu > .menu-item-has-children.focus > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.sub-menu li a {
	display: block;
	padding: 9px 26px;
	font-size: 14px;
	letter-spacing: .5px;
	color: #333;
	transition: color .2s ease;
}
.sub-menu li a:hover {
	color: var(--yd-orange);
}



.nav-menu > li.mega-menu {
	position: static;
}

.mega-menu-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0; 
	padding: 52px 56px;
	background: #ffedec;
	border-bottom: 1px solid var(--yd-line);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
	z-index: 30;
}
.nav-menu > li.mega-menu:hover > .mega-menu-panel,
.nav-menu > li.mega-menu:focus-within > .mega-menu-panel,
.nav-menu > li.mega-menu.focus > .mega-menu-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


.mega-columns {
	display: flex;
	gap: 56px;
}
.mega-col {
	flex: 1 1 0; 
	min-width: 0;
}
.mega-col-title {
	margin: 0 0 22px;
	padding-bottom: 18px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--yd-ink);
	border-bottom: 1px solid var(--yd-primary);
}

.mega-col-title--stacked {
	margin-top: 40px;
}
.mega-sub li a {
	display: block;
	padding: 10px 0;
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #555;
	transition: color .2s ease;
}
.mega-sub li a:hover {
	color: var(--yd-orange);
}


.header-actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 14px;
}
.header-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 30px;
	border-radius: 50px;         
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.header-btn:hover {
	transform: translateY(-2px);
}

.header-btn--join {
	background: #14142b;
}
.header-btn--join:hover {
	background: #000;
}

.header-btn--quote {
	background: var(--yd-primary);
}
.header-btn--quote:hover {
	background: var(--yd-primary-dark);
}


.menu-toggle {
	display: none;
	position: relative;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--yd-primary);
	box-shadow: 0 8px 20px -6px rgba(255, 57, 81, .6);
	cursor: pointer;
}
.menu-toggle-bar {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 2px;
	margin: 0;
	border-radius: 2px;
	background: #fff;
	transition: transform .3s ease, opacity .2s ease;
}
.menu-toggle-bar:nth-child(1) {
	transform: translate(-50%, -50%) translateY(-7px);
}
.menu-toggle-bar:nth-child(2) {
	transform: translate(-50%, -50%);
}
.menu-toggle-bar:nth-child(3) {
	transform: translate(-50%, -50%) translateY(7px);
}

.main-navigation.toggled .menu-toggle-bar:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}
.main-navigation.toggled .menu-toggle-bar:nth-child(2) {
	opacity: 0;
}
.main-navigation.toggled .menu-toggle-bar:nth-child(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
}



.section-partners {
	padding: 68px 0 60px;        
	font-family: var(--yd-font);
}

.partners__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid var(--yd-line);
	border-radius: 50px;
	background: transparent;
	color: var(--yd-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.partners__badge svg {
	width: 16px;
	height: 16px;
	color: var(--yd-primary);
}
.partners__title {
	margin: 26px 0 0;
	max-width: 940px;
	font-size: clamp(38px, 5.4vw, 82px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -1px;
	color: #14142b;
}
.partners__title span {
    color: var(--yd-primary)
}
.partners__text {
	margin: 26px 0 0;
	max-width: 640px;
	font-size: 18px;
	line-height: 1.6;
	color: #5a5670;
}
.partners__logos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 18px;
	margin-top: 72px;
}
.partner-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 24px;
	border: 1px solid var(--yd-line);
	border-radius: 14px;
	background: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .5px;
	color: #3a3550;
	transition: color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.partner-logo:hover {
	border-color: var(--yd-primary);
	color: #14142b;
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(255, 57, 81, .12);
}

.partner-logo__img {
	flex: 0 0 auto;
	width: auto;
	height: 28px;
	max-width: 110px;
	object-fit: contain;
}

.partner-logo__name {
	white-space: nowrap;
}

@media (max-width: 768px) {
	.partners__logos {
		gap: 12px;
		margin-top: 48px;
	}
	.partners__title {
    	font-size: 34px;
	}
	.section-badge {
		line-height: 1.5em;
		font-size: 10px;
	}
	.cta-card__title{
		font-size: 26px;
	}
	.cta-badge {
		flex-basis: calc(50% - 8px);      
		min-height: 102px;
        padding: 18px 18px;
	}
}


.logos-grid {
	background: #fff;
	font-family: var(--yd-font);
}
.logos-grid__inner {
	width: min(1440px, 94vw);
	margin: 160px auto;
}
.logos-grid__title {
	margin: 0 0 60px;
	text-align: left;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.5px;
	color: var(--yd-heading);
}
.logos-grid__title span {
	color: var(--yd-primary);   
}

.logos-grid__group + .logos-grid__group {
	margin-top: 64px;
}

.logos-grid.is-paginated .logos-grid__stage {
	display: grid;
}
.logos-grid.is-paginated .logos-grid__group {
	grid-area: 1 / 1;      
	margin-top: 0;         
	align-self: center;    
}
.logos-grid__row {
	--logos-col-gap: 34px;                    
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 56px var(--logos-col-gap);
	align-items: center;
	margin-bottom: 64px;
}
.logos-grid__row:last-child {
	margin-bottom: 0;
}

.logos-grid__row--short {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--logos-col-gap);
}
.logos-grid__row--short .logos-grid__cell {
	flex: 0 0 calc((100% - 5 * var(--logos-col-gap)) / 6);
}
.logos-grid__cell {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 1s ease, transform 1s ease;
	will-change: opacity, transform;
}
.logos-grid__cell.is-hidden {
	opacity: 0;
	transform: translateY(24px) scale(.94);
}
.logos-grid__cell img {
	max-width: 100%;
	max-height: 68px;                        
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 768px) {
	.logos-grid__inner {
		margin: 56px auto;
	}
	.logos-grid__title {
		margin-bottom: 40px;
	}
	.logos-grid__row {
		--logos-col-gap: 22px;
		gap: 40px var(--logos-col-gap);
		margin-bottom: 44px;
	}
	.logos-grid__group + .logos-grid__group {
		margin-top: 44px;
	}
	.logos-grid__cell img {
		max-height: 52px;
	}
}
@media (max-width: 600px) {
	
	.logos-grid__group {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 30px 14px;
	}
	
	.logos-grid__row,
	.logos-grid__row--short {
		display: contents;
	}
	
	.logos-grid__cell:nth-child(n + 5) {
		display: none;
	}
	.logos-grid__cell img {
		max-height: 46px;
	}
}
@media (max-width: 400px) {
	.logos-grid__group {
		gap: 24px 10px;
	}
	.logos-grid__cell img {
		max-height: 38px;
	}
}
@media (prefers-reduced-motion: reduce) {
	
	.logos-grid__group[hidden] {
		display: block;
	}
	.logos-grid__cell {
		transition: none;
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) and (max-width: 600px) {
	.logos-grid__group[hidden] {
		display: grid;
	}
}


.cta-band {
	position: relative;
	z-index: 2;
	padding: 60px 0 0;
}
.cta-card {
	position: relative;
	z-index: 2;                  
	display: flex;
	gap: 44px;
	align-items: center;
	padding: 56px;
	border-radius: 30px;
	background: #ff3951;         
	box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}
.cta-card__left {
	flex: 1 1 0;
	min-width: 0;
}
.cta-card__title {
	margin: 0 0 20px;
	max-width: 470px;
	font-size: clamp(30px, 3.2vw, 46px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.5px;
	color: #fff;                 
}
.cta-card__text {
	margin: 0 0 32px;
	max-width: 420px;
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .9);
}
.cta-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 36px;
	border-radius: 999px;
	background: var(--yd-black); 
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	transition: background .25s ease, color .25s ease, transform .2s ease;
}
.page-id-162 a.cta-card__btn {
    display: none;
}
.cta-card__btn:hover {
	background: #fff;            
	color: var(--yd-black);
	transform: translateY(-2px);
}


.cta-card__badges {
	flex: 0 0 52%;
	max-width: 52%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
.cta-badge {
	flex: 0 1 calc(24% - 11px);   
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 12px;
	min-height: 128px;
	padding: 24px 18px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.cta-badge__logo {
	max-width: 100%;
	max-height: 88px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.cta-badge__name {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #1c1830;
}
.cta-badge:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 44px rgba(0, 0, 0, .18);
}
.cta-badge__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	color: #fff;
	transition: transform .3s ease;
}
.cta-badge:hover .cta-badge__icon {
	transform: scale(1.08);
}
.cta-badge__icon svg {
	width: 26px;
	height: 26px;
}
.cta-badge__icon--purple { background: #7c2fbf; }
.cta-badge__icon--dark   { background: #2b2b3a; }
.cta-badge__icon--blue   { background: #3f7fe0; }
.cta-badge__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #1c1830;
}
.cta-badge__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #6e7191;
}



@media (max-width: 900px) {
	.cta-card {
		flex-direction: column;
		align-items: stretch;
		padding: 34px;
		gap: 28px;
	}
	.cta-card__badges {
		flex: none;
		max-width: none;
	}
}
@media (max-width: 520px) {
	.cta-badge {
		flex-basis: calc(50% - 8px);      
		min-height: 102px;
        padding: 18px 18px;
	}
	
}








.section {
	padding: 60px 0;
}

.section.section-about { padding-bottom: 68px; }
.section.section-intro { padding-top: 68px; }


.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	border: 2px solid transparent;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary {
	background: var(--yd-primary);
	border-color: var(--yd-primary);
	color: #fff;
}
.btn--primary:hover {
	background: var(--yd-primary-dark);
	border-color: var(--yd-primary-dark);
}
.btn--outline {
	background: transparent;
	border-color: var(--yd-line);
	color: var(--yd-heading);
}
.btn--outline:hover {
	background: var(--yd-heading);
	border-color: var(--yd-heading);
	color: #fff;
}
.btn--outline-primary {
	background: transparent;
	border-color: var(--yd-primary);
	color: var(--yd-primary);
}
.btn--outline-primary:hover {
	background: var(--yd-primary);
	border-color: var(--yd-primary);
	color: #fff;
}
.btn__arrow {
	font-size: 18px;
	line-height: 1;
}


.section-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}


.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid var(--yd-line);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--yd-heading);
}
.section-badge svg {
	width: 16px;
	height: 16px;
	color: var(--yd-primary);
}
.section-intro__heading {
	margin: 26px 0 20px;
	font-size: 56px;
	line-height: 1.1;
	color: var(--yd-heading);
}
h2.section-intro__heading span {
    color: var(--yd-primary);
}
.section-intro__text {
	margin: 0 0 34px;
	max-width: 40em;
	color: var(--yd-body);
}
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}


.section-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;   
	gap: 22px;
}
.section-card {
	padding: 30px 28px;
	background: #fff;
	border: 1px solid var(--yd-line);
	border-radius: 16px;
}
.section-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 26px;
	border-radius: 14px;
	background: rgba(255, 57, 81, .1);
	color: var(--yd-primary);
}
span.section-card__icon img {
    width: 42px;
    height: 42px;
}
.section-card__stat {
	margin-bottom: 10px;
	font-size: 60px;
	font-weight: 800;
	line-height: 1;
	color: var(--yd-heading);
}
.section-card__title {
	margin: 0;
	font-size: 21px;
	line-height: 1.25;
	color: var(--yd-heading);
}
.section-card__rule {
	display: block;
	width: 28px;
	height: 3px;
	margin: 16px 0 18px;
	border-radius: 3px;
	background: var(--yd-primary);
}
.section-card__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--yd-body);
}


.section-card--accent {
	background: var(--yd-primary);
	border-color: var(--yd-primary);
	color: #fff;
}
.section-card--accent .section-card__icon {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}
.section-card--accent .section-card__title,
.section-card--accent .section-card__stat {
	color: #fff;
}
.section-card--accent .section-card__rule {
	background: rgba(255, 255, 255, .6);
}
.section-card--accent .section-card__text {
	color: rgba(255, 255, 255, .85);
}


.section-about__head {
	max-width: 80%;
	margin-bottom: 56px;
}
.section-about__title {
	margin: 0 0 22px;
	font-size: 56px;
	line-height: 1.08;
	color: var(--yd-heading);
}
.section-about__text {
	margin: 0 0 34px;
	color: var(--yd-body);
}


.section-about__panels {
	display: flex;
	gap: 0;
	border-radius: 16px;
	overflow: hidden;
}
.about-panel {
	position: relative;
	min-height: 460px;
	overflow: hidden;
}


.about-panel--stat {
	flex: 0 0 26%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px 32px;
	background: var(--yd-primary);
	color: #fff;
}
.about-stat__label {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: .01em;
}
.about-stat__num {
	font-size: 72px;
	font-weight: 800;
	line-height: 1;
}
.about-stat__rule {
	display: block;
	height: 1px;
	margin: 20px 0;
	background: rgba(255, 255, 255, .45);
}
.about-stat__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .92);
}


.about-panel--card {
	flex: 1 1 0;
	min-width: 0;
}
.about-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;   
}
.about-panel--card:hover .about-card__img {
	transform: scale(1.08);
}

.about-panel--card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .12) 55%, transparent 80%);
}
.about-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 32px;
	z-index: 2;
	padding: 0 30px;
	color: #fff;
}
.about-card__label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: 700;
	white-space: nowrap;
}
.about-card__mark {
	display: inline-flex;
	flex: 0 0 auto;
	color: var(--yd-primary);
}
.about-card__mark svg {
	width: 20px;
	height: 20px;
}
.about-card__desc {
	max-height: 0;
	margin: 0;
	opacity: 0;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .9);
	transition: max-height .5s ease, opacity .4s ease, margin-top .5s ease;
}
.about-panel--card:hover .about-card__desc {
	max-height: 160px;
	margin-top: 16px;
	opacity: 1;
}


@media (max-width: 900px) {
	.section-about__head {
		max-width: 100%;
	}
	.section-about__title {
        font-size: 32px;
    }
	.section-about__panels {
		flex-direction: column;
	}
	.about-panel {
		flex: none;
		width: 100%;
		min-height: 300px;
	}
	.about-panel--card .about-card__desc {
		max-height: none;
		margin-top: 14px;
		opacity: 1;
	}
}
@media (prefers-reduced-motion: reduce) {
	.about-panel--card,
	.about-card__desc,
	.about-card__img {
		transition-duration: .01ms;
	}
}


.section-logos {
	display: none;   
	position: relative;
	margin: 68px 0;                          
	overflow: hidden;                        
	isolation: isolate;                      
	background: #05060a;                      
	box-shadow: 0 -24px 40px rgba(0, 0, 0, .28),    
	            0 24px 40px rgba(0, 0, 0, .28);     
}

.section-logos__bg {
	position: absolute;
	top: -15%;
	left: 0;
	width: 100%;
	height: 130%;
	z-index: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: translate3d(0, 0, 0) scale(1.05);
	will-change: transform;
	pointer-events: none;
}

.section-logos__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg,
		rgba(4, 5, 9, .92) 0%,
		rgba(4, 5, 9, .82) 38%,
		rgba(4, 5, 9, .74) 70%,
		rgba(4, 5, 9, .66) 100%);
}

.section-logos__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg,
		rgba(4, 5, 9, .92) 0%,
		rgba(4, 5, 9, .82) 38%,
		rgba(4, 5, 9, .74) 70%,
		rgba(4, 5, 9, .66) 100%);
}

.section-logos > .container {
	position: relative;
	z-index: 1;
}
.section-logos__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 48px;
}
.section-logos__title {
	margin: 0;
	max-width: 520px;
	color: #fff;                             
	font-size: 44px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.5px;
}
.section-logos__nav {
	display: flex;
	gap: 14px;
	flex: 0 0 auto;
}
.logos-nav {
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: var(--yd-heading);
	box-shadow: 0 10px 30px rgba(20, 20, 43, .08);
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .25s ease, color .25s ease, transform .18s ease;
}
.logos-nav:hover {
	background: var(--yd-primary);
	color: #fff;
}
.logos-nav:active {
	transform: scale(.94);
}
.logos-nav:disabled {
	opacity: .4;
	cursor: default;
}
.logos-nav:disabled:hover {
	background: #fff;
	color: var(--yd-heading);
}

.section-logos__viewport {
	overflow: hidden;
}
.section-logos__track {
	display: flex;
	gap: 26px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 20px 0 24px;                
	-ms-overflow-style: none;            
	scrollbar-width: none;               
	--logos-cols: 5;                     
}
.section-logos__track::-webkit-scrollbar {
	display: none;                       
}

.logo-card {
	flex: 0 0 calc((100% - (var(--logos-cols) - 1) * 26px) / var(--logos-cols));
	scroll-snap-align: start;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 210px;
	padding: 22px;
	
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.logo-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, .11);
	border-color: rgba(255, 57, 81, .5);       
}
.logo-card__img {
	max-width: 100%;
	max-height: 100px;
	width: auto;
	height: auto;
	object-fit: contain;
	
	filter: brightness(0) invert(1);
	opacity: .78;
	transition: opacity .3s ease, transform .3s ease;
}
.logo-card:hover .logo-card__img {
	opacity: 1;
}

@media (max-width: 1024px) {
	.section-logos__track {
		--logos-cols: 3;
	}
	.section-logos__title {
		font-size: 34px;
	}
}
@media (max-width: 640px) {
	.section-logos__track {
		--logos-cols: 2;
	}
	.section-logos__title {
		font-size: 28px;
	}
	.logos-nav {
		width: 48px;
		height: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.section-logos__bg {
		transform: translate3d(0, 0, 0) scale(1.05);
		will-change: auto;
	}
}


.services-scroll {
	background: #0a0a0a;
	font-family: var(--yd-font);
	margin-bottom: 68px;                     
	
}

.service-item {
	position: sticky;
	top: 0;
	height: 62vh;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	box-shadow: 0 -24px 40px rgba(0, 0, 0, .28);   
}

.service-item:nth-child(1) { background: #333333; }
.service-item:nth-child(2) { background: #222222; }
.service-item:nth-child(3) { background: #14142b; }
.service-item:nth-child(4) { background: #ff3951; }
.service-item:nth-child(5) { background: #1a1a1a; }

.service-item__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;     
	padding: 20px 40px 20px max(40px, calc((100% - var(--yd-container, 1600px)) / 2 + 40px));
}
.service-item__num {
	display: block;
	font-size: clamp(22px, 2.2vw, 32px);   
	font-weight: 800;
	letter-spacing: -.5px;
	color: #fff;
	margin-bottom: 14px;
}
.service-item__title {
	margin: 0;
	font-size: clamp(32px, 4.4vw, 68px);
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -.5px;
	color: #fff;
}

.service-item__reveal {
	max-width: 560px;
}
.service-item__desc {
	margin: 22px 0 0;
	max-width: 560px;
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .72);
}
.service-item__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
	padding: 14px 34px;
	border: 1.5px solid rgba(255, 255, 255, .55);
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.service-item__cta:hover {
	background: #fff;
	border-color: #fff;
	color: #14142b;
}

.service-item__media {
	flex: 0 0 40%;
	max-width: 40%;
	padding: 40px 48px 0 0;      
}

.service-item__frame {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 18px 18px 0 0;   
	overflow: hidden;
	background: rgba(0, 0, 0, .2);
}
.service-item__img,
.service-item__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-item__video {
	opacity: 0;
	transition: opacity .45s ease;
}
.service-item__video.is-playing {
	opacity: 1;
}


@media (max-width: 900px) {
	.service-item {
		position: static;
		display: block;
		height: auto;
		box-shadow: none;
	}
	.service-item__body {
		padding: 40px 22px 34px;
	}
	.service-item__reveal,
	.service-item__desc {
		max-width: none;
	}
	.service-item__frame {
		border-radius: 18px;   
	}
	.service-item__media {
		flex: none;
		max-width: none;
		width: 100%;
		height: 260px;
		padding: 16px 22px 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-item__video {
		transition: none;
	}
}


.reveal-init {
	opacity: 0;
	will-change: transform, opacity;
}


.section-card {
	transition: transform .35s ease;
}
.section-card:hover {
	transform: scale(.97);
}


@media (max-width: 992px) {
	.section-intro__grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}
}
@media (max-width: 560px) {
	.section {
		padding: 60px 0;
	}
	.section-intro__heading {
		font-size: 34px;
	}
	.section-cards {
		grid-template-columns: 1fr;
	}
	.section-badge {
		line-height: 1.5em;
		font-size: 10px;
	}
	.cta-card__title{
		font-size: 26px;
	}
}





@media (max-width: 900px) {
	.container {
		padding: 0 22px;
	}
	
	.site-header .container {
		min-height: 74px;
		padding: 0 12px;               
		justify-content: flex-start;   
		gap: 8px;
	}
	.site-branding {
		margin-right: auto;   
		min-width: 0;         
	}
	.custom-logo,
	.site-branding .logo-text {
		max-height: 44px;     
	}
	.site-branding .logo-text {
		font-size: 24px;
	}
	
	.header-actions {
		display: flex;
		order: 1;
		flex: 0 0 auto;
		gap: 8px;
	}
	
	.header-btn--join {
		display: inline-flex;
	}
	.header-btn {
		padding: 9px 13px;
		font-size: 12px;
	}
	.menu-toggle {
		width: 46px;
		height: 46px;
	}

	
	.main-navigation {
		order: 2;
		flex: 0 0 auto;
		display: flex;
		justify-content: flex-end;
	}
	.menu-toggle {
		display: block;
	}

	
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 40;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 22px 20px;
		background: #fff;
		border-top: 1px solid var(--yd-line);
		box-shadow: 0 24px 40px rgba(0, 0, 0, .12);
	}
	.main-navigation.toggled .nav-menu {
		display: flex;
		background: #ffedec;
		
		justify-content: flex-start;
		
		max-height: calc(100vh - var(--yd-mobile-nav-top, 80px));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}
	
	body.menu-open {
		overflow: hidden;
	}
	.nav-menu > li > a {
		padding: 14px 0;
	}

	
	.mobile-cta-item {
		display: block;
		margin-top: 20px;
	}
	.nav-menu .mobile-cta {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 16px 24px;
		border-radius: 50px;
		background: var(--yd-primary);
		color: #fff;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: .02em;
		text-transform: none;
		box-shadow: 0 10px 22px -8px rgba(255, 57, 81, .7);
	}
	.nav-menu .mobile-cta:hover {
		background: var(--yd-primary-dark);
	}

	
	.sub-menu,
	.mega-menu-panel {
		position: static;
		width: auto;
		box-shadow: none;
		transform: none;
		display: none;              
		padding: 6px 0 10px 16px;
	}
	.menu-item-has-children.focus > .sub-menu,
	.mega-menu.focus > .mega-menu-panel {
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.mega-columns {
		flex-direction: column;
		gap: 8px;
	}

	
	.nav-menu > li.menu-item-has-children {
		display: flex;
		flex-wrap: wrap;              
		align-items: center;
		justify-content: space-between;
	}
	.nav-menu > li.menu-item-has-children > a {
		flex: 1 1 auto;
	}
	
	.nav-menu > li.menu-item-has-children > .sub-menu,
	.nav-menu > li.menu-item-has-children > .mega-menu-panel {
		flex: 1 0 100%;
	}
	
	.nav-menu > .menu-item-has-children > a::after {
		display: none;
	}
	.submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		background: transparent;
		border: 0;
		color: inherit;
		cursor: pointer;
	}
	.submenu-toggle::after {
		content: "";
		width: 7px;
		height: 7px;
		border-right: 1.6px solid currentColor;
		border-bottom: 1.6px solid currentColor;
		transform: rotate(45deg);
		transition: transform .2s ease;
	}
	.menu-item-has-children.focus > .submenu-toggle::after {
		transform: rotate(225deg);
	}
}


@media (max-width: 360px) {
	.site-header .container {
		gap: 6px;
	}
	.header-actions {
		gap: 6px;
	}
	.header-btn {
		padding: 8px 10px;
		font-size: 11px;
	}
	.menu-toggle {
		width: 40px;
		height: 40px;
	}
}





.insights-section{
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.insights-section .container{
    max-width:1320px;
    margin:0 auto;
}


.insights-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
    align-items:stretch;
}

.insight-card{
    width:100%;
    height:100%;
}


.insight-card > .post-card{
    height:100%;
}

.post-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    box-shadow:
        0 2px 6px rgba(0,0,0,.04),
        0 10px 30px rgba(0,0,0,.05);
}

.post-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.insight-card__image-link{

    display:block;

    text-decoration:none;

    color:inherit;
}

.insight-card__image{

    position:relative;

    margin:16px 16px 0;

    border-radius:8px;

    overflow:hidden;

    aspect-ratio:1.63;

    background:#f4f4f4;
}


.insight-card__image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .6s ease;
}

.post-card:hover .insight-card__image img{

    transform:scale(1.04);
}

.insight-card__category{

    position:absolute;

    top:0;

    left:0;

    z-index:2;

    padding:11px 18px;

    background:var(--yd-primary);

    color:#fff;

    text-transform:uppercase;

    line-height:1;

    letter-spacing:.03em;

    white-space:nowrap;
}


.insight-card__content{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:36px 34px 34px;

    flex:1;
}

.insight-card__title-link{

    color:inherit;

    text-decoration:none;

    display:block;

    margin-bottom:28px;

    transition:.3s;
}

.insight-card__title-link:hover{

    color:var(--primary-color);
}


.insights-load-more{

    display:flex;

    justify-content:center;

    margin-top:60px;
}

.load-more-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:180px;

    height:58px;

    padding:0 42px;

    border:none;

    border-radius:999px;

    background:var(--yd-primary-dark);

    color:#fff;

    font:inherit;

    font-weight:600;

    cursor:pointer;

    transition:all .35s ease;
}

.load-more-btn:hover{

    transform:translateY(-3px);

    opacity:.9;
}

.load-more-btn:focus-visible{

    outline:2px solid var(--primary-color);

    outline-offset:4px;
}



@media (max-width: 1199px){

    .insights-section{
        padding:100px 0;
    }

    .insights-grid{
        gap:20px;
    }

    .insight-card__content{
        padding:32px 28px 30px;
    }

    .insight-card__image{
        margin:14px 14px 0;
    }

    .insight-card__category{
        padding:10px 16px;
    }

}



@media (max-width: 991px){

    .insights-section{
        padding:80px 0;
    }

    .insights-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;
    }

    .insight-card__content{

        padding:30px 24px;
    }

    .insight-card__title-link{

        margin-bottom:22px;
    }

    .insight-card__author{

        padding-top:20px;
    }

    .insights-pagination{

        margin-top:48px;
    }

}



@media (max-width: 767px){

    .insights-section{
        padding:70px 0;
    }

    .insights-grid{

        grid-template-columns:1fr;

        gap:28px;
    }

    .post-card{

        border-radius:18px;
    }

    .insight-card__image{

        margin:12px 12px 0;

        border-radius:8px;
    }

    .insight-card__content{

        padding:28px 22px;
    }

    .insight-card__title-link{

        margin-bottom:18px;
    }

    .insight-card__excerpt{

        max-width:100%;
    }

    .insight-card__author{

        padding-top:18px;
    }

    .insights-pagination{

        gap:16px;

        margin-top:40px;

        flex-wrap:wrap;
    }

}



@media (max-width:575px){

    .insights-section{
        padding:60px 0;
    }

    .insight-card__image{

        aspect-ratio:16/10;
    }

    .insight-card__content{

        padding:24px 18px;
    }

    .insight-card__category{

        top:0;
        left:0;

        padding:8px 14px;
    }

    .insight-card__title-link{

        margin-bottom:16px;
    }

    .insight-card__author{

        padding-top:16px;
    }

}



@media (max-width:380px){

    .insight-card__content{

        padding:20px 16px;
    }

    .insight-card__image{

        margin:10px 10px 0;
    }

    .insights-pagination{

        gap:12px;
    }

}




.contact-section{
    padding:140px 0;
    background:#fff;
    overflow:hidden;
}

.contact-section .container{
    width:100%;
}



.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 550px;
    gap:90px;
    align-items:start;
}



.contact-content{
    padding-top:10px;
}



.contact-title{
    margin:0;
    font-size: clamp(38px, 5.4vw, 82px);
    font-weight:700;
    line-height:1.04;
    letter-spacing:-0.04em;
    text-wrap:balance;
}



.contact-description{
    margin:48px 0 80px;
    color:inherit;
    line-height:1.7;
    max-width:540px;
}



.contact-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}



.contact-info-item{
    display:flex;
    flex-direction:column;
}



.contact-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#14142b;
    position:relative;
    margin-bottom:34px;
    overflow:hidden;
}

.contact-icon span{
    position:absolute;
    top:0;
    right:0;
    width:50%;
    height:100%;
    background:var(--yd-primary);;
}



.contact-info-item h4{
    margin:0 0 28px;
    color:inherit;
    font:inherit;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.04em;
}



.contact-info-item a,
.contact-info-item p{
    margin:0;
    color:inherit;
    text-decoration:none;
    line-height:1.6;
}

.contact-info-item a:hover{
    color:var(--yd-primary);
}



.contact-form-wrap{
    width:100%;
}

.contact-form-card{

    background:#fff;

    border-radius:48px;

    padding:56px;

    box-shadow:
        0 10px 40px rgba(0,0,0,.06);

    border:1px solid #efefef;
}



.contact-form-card form{
    display:flex;
    flex-direction:column;
    gap:42px;
}



.form-group{
    position:relative;
}



.form-group input,
.form-group textarea{

    width:100%;

    border:none;

    border-bottom:1px solid #2b2b2b;

    background:transparent;

    padding:0 0 18px;

    color:inherit;

    font:inherit;

    outline:none;

    resize:none;

    transition:border-color .3s ease;
}



.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#8c8c8c;

    opacity:1;
}



.form-group input:focus,
.form-group textarea:focus{

    border-color:var(--yd-primary);
}



.form-group textarea{

    min-height:130px;

    overflow:hidden;
}



.form-submit{

    display:flex;

    justify-content:flex-end;

    margin-top:10px;
}



.form-submit button{

    min-width:220px;

    height:68px;

    border:none;

    border-radius:999px;

    background:#161616;

    color:#fff;

    font:inherit;

    font-weight:500;

    cursor:pointer;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.form-submit button:hover{
    background:var(--yd-primary);
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.form-submit button:active{

    transform:translateY(0);
}



.form-group input:focus-visible,
.form-group textarea:focus-visible{

    outline:none;
}



.form-group input:-webkit-autofill,
.form-group textarea:-webkit-autofill{

    -webkit-box-shadow:0 0 0 1000px #fff inset;

    -webkit-text-fill-color:#000;
}



.contact-consent{

    display:flex;

    flex-direction:column;

    gap:26px;

    margin-top:8px;
}



.consent-item{

    display:flex;

    align-items:flex-start;

    gap:16px;

    cursor:pointer;

    color:inherit;

    line-height:1.6;
    font-size:14px;
}

.consent-item span{
    flex:1;
    font-size:14px;
}



.consent-item input[type="checkbox"]{
    appearance:none;
    -webkit-appearance:none;
    width:16px;
    height:16px;
    margin-top:3px;
    border:1.5px solid #8a8a8a;
    border-radius:4px;
    background:#fff;
    cursor:pointer;
    position:relative;
    flex-shrink:0;
    transition:.25s ease;
}

.consent-item input[type="checkbox"]:checked{
    background:var(--yd-primary);
    border-color:var(--yd-primary);
}

.consent-item input[type="checkbox"]:checked::after{

    content:"✓";

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-58%);

    color:#fff;

    font-size:12px;

    font-weight:700;
}



.consent-item a{

    color:var(--yd-primary);

    text-decoration:underline;

    transition:.3s ease;
}

.consent-item a:hover{

    opacity:.8;
}



@media (max-width:1200px){

    .contact-wrapper{
        grid-template-columns:1fr 500px;
        gap:60px;
    }

    .contact-info{
        gap:35px;
    }

    .contact-form-card{
        padding:45px;
    }

}



@media (max-width:991px){

    .contact-section{
        padding:90px 0;
    }

    .contact-wrapper{

        grid-template-columns:1fr;

        gap:60px;
    }

    .contact-content{

        max-width:100%;
    }

    .contact-description{

        max-width:100%;

        margin:35px 0 60px;
    }

    .contact-info{

        grid-template-columns:repeat(3,1fr);

        gap:30px;
    }

    .contact-form-wrap{

        max-width:700px;

        width:100%;

        margin:auto;
    }

    .contact-form-card{

        border-radius:35px;

        padding:40px;
    }

}



@media (max-width:767px){

    .contact-section{

        padding:70px 0;
    }

    .contact-wrapper{

        gap:50px;
    }

    .contact-description{

        margin:30px 0 45px;
    }

    .contact-info{

        grid-template-columns:1fr;

        gap:40px;
    }

    .contact-info-item{

        text-align:left;
    }

    .contact-icon{

        margin-bottom:20px;
    }

    .contact-form-card{

        padding:30px 24px;

        border-radius:24px;
    }

    .contact-form-card form{

        gap:30px;
    }

    .form-group textarea{

        min-height:110px;
    }

    .contact-consent{

        gap:18px;
    }

    .consent-item{

        gap:12px;

        align-items:flex-start;
    }

    .consent-item span{

        line-height:1.5;
    }

    .form-submit{

        justify-content:center;

        margin-top:10px;
    }

    .form-submit button{

        width:100%;

        max-width:260px;

        height:56px;
    }

}



@media (max-width:575px){

    .contact-section{

        padding:60px 0;
    }

    .contact-form-card{

        padding:24px 20px;
    }

    .contact-info{

        gap:30px;
    }

    .contact-info-item h4{

        margin-bottom:14px;
    }

    .contact-icon{

        width:24px;

        height:24px;
    }

    .contact-consent{

        gap:16px;
    }

    .consent-item{

        gap:10px;
    }

    .consent-item input[type="checkbox"]{

        width:18px;

        height:18px;
    }

    .form-submit button{

        width:100%;
    }

}



@media (max-width:380px){

    .contact-form-card{

        padding:20px 16px;

        border-radius:20px;
    }

    .contact-form-card form{

        gap:24px;
    }

    .contact-info{

        gap:24px;
    }

    .contact-description{

        margin:25px 0 35px;
    }

    .form-submit button{

        height:52px;
    }

}



.faq-wrapper{
    background:#ffedec;
    padding:160px 0px 80px 0px;
}

.faq-heading h2{
    text-align: center;
    margin: 0 0 26px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--yd-heading);
}
.faq-heading h2 span{
	color:var(--yd-primary);
}

.faq-accordion-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.faq-accordion-text-left,
.faq-accordion-text-right{
    display:flex;
    flex-direction:column;
    gap:16px;
}



.accordion-item{
    overflow:hidden;
    transition:max-height .5s ease;
}

.accordion-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 24px;
    background:#fff;
    border:1px solid var(--yd-primary);
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.accordion-header h3{
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 0;
    position: relative;
    width: 96%;
}

.accordion-header .icon{
    cursor: pointer;
    font-size: 30px;
    font-weight: 700;
    transition: transform .3s;
    color:var(--yd-primary);
    position: absolute;
    right: -20px;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    padding:0 24px;
    transition:max-height .45s ease,padding .35s ease;
    background:#fff;
    border-radius:12px 12px 12px 12px;
}

.accordion-content p{
    margin:0 0 16px;
    line-height:28px;
}



.accordion-item.active .accordion-header{

    background:#ffedec;
}

.accordion-item.active .accordion-content{
    max-height:1000px;
    padding:20px 24px;
}

.accordion-item.active .icon{
    transform:rotate(180deg);
    color:var(--yd-primary);
}



@media (max-width:1400px){

    .faq-heading h2{
        font-size:clamp(42px,4vw,60px);
    }

}



@media (max-width:1199px){

    .faq-wrapper{
        padding:160px 0px 80px 0px;
    }

    .faq-accordion-box{
        gap:18px;
    }

    .accordion-header{
        padding:18px 22px;
    }

    .accordion-header h3{
        width:92%;
    }

}



@media (max-width:991px){

    .faq-wrapper{
        padding:160px 0px 80px 0px;
    }

    .faq-heading h2{
        margin-bottom:40px;
    }

    .faq-accordion-box{

        grid-template-columns:1fr;

        gap:18px;
    }

    .faq-accordion-text-left,
    .faq-accordion-text-right{

        gap:18px;
    }

    .accordion-header{

        padding:18px 20px;
    }

    .accordion-header h3{

        width:90%;
    }

}



@media (max-width:767px){

    .faq-wrapper{
        padding:70px 0;
    }

    .faq-heading h2{

        margin-bottom:35px;
    }

    .accordion-header{

        padding:18px;
    }

    .accordion-header h3{
        width:85%;
        line-height:1.5;
    }

    .accordion-header .icon{
        font-size:30px;
    }

    .accordion-content{
        padding:0 18px;
    }

    .accordion-item.active .accordion-content{
        padding:18px;
    }

}



@media (max-width:575px){
    .faq-wrapper{
        padding:60px 0;
    }

    .faq-heading h2{
        margin-bottom:28px;
    }

    .accordion-header{
        padding:16px;
    }

    .accordion-header h3{
        width:82%;
    }

    .accordion-header .icon{
        font-size:28px;
    }

    .accordion-item.active .accordion-content{
        padding:16px;
    }

}



@media (max-width:380px){

    .accordion-header{
        padding:14px;
    }

    .accordion-header h3{
        width:80%;
    }

    .accordion-header .icon{
        font-size:26px;
    }

    .accordion-item.active .accordion-content{
        padding:14px;
    }

} 


.yd-new-section-discovery {
	--yd-new-section-check: var(--yd-primary);
	padding: 80px 0;
	background: #fff;
	font-family: var(--yd-font);
}
.yd-new-section-discovery__title {
	max-width: 900px;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--yd-heading);
}
.yd-new-section-discovery__title span{
	color: var(--yd-primary);
}
.yd-new-section-discovery__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 64px;
	row-gap: 44px;
	padding-top: 64px;
}
.yd-new-section-discovery__row:first-child {
	padding-top: 0;
	border-top: 0;
}
.yd-new-section-discovery__row + .yd-new-section-discovery__row {
	margin-top: 8px;
}
.yd-new-section-discovery__head {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 32px;
}
.yd-new-section-discovery__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	margin-top: 2px;
	border-radius: 13px;
	background: #fff;
	border: 1px solid rgba(20, 20, 43, 0.06);
	box-shadow: 0 10px 22px -10px rgba(20, 20, 43, 0.3);
	color: var(--yd-heading);
}
.yd-new-section-discovery__icon svg {
	width: 18px;
	height: 18px;
}
.yd-new-section-discovery__item-title {
	margin: 0;
	color: var(--yd-heading);
	font-weight: 700;
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.22;
	letter-spacing: -0.015em;
}
.yd-new-section-discovery__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.yd-new-section-discovery__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 18px;
	color: var(--yd-body);
	font-size: 17px;
	line-height: 1.55;
}
.yd-new-section-discovery__list li:last-child {
	margin-bottom: 0;
}
.yd-new-section-discovery__list li::before {
	content: "";
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 4px;
	
	background-color: var(--yd-new-section-check);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7.5-8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7.5-8' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
	.yd-new-section-discovery__row {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 48px;
	}
}
@media (max-width: 600px) {
	.yd-new-section-discovery {
		padding: 60px 0;
	}
	.yd-new-section-discovery__row {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}


#contactSubmit:disabled{
    opacity:.5;
    cursor:not-allowed;
    pointer-events:none;
}

.contact-response{
    margin-top:15px;
    font-size:18px;
    font-weight:500;
}

.contact-response.success{
    color:#16a34a;
}

.contact-response.error{
    color:#dc2626;
}

.section-legal-content{
     padding:120px 0;
    background:#f8f9fb;
}

.contact-modal__success{
    margin-top:20px;
    font-size:15px;
    font-weight:500;
}

.contact-modal__success.success{
    color:#0b8f3d;
}

.contact-modal__success.error{
    color:#d61f1f;
}

.legal-wrapper{
    margin:0 auto;
}


.legal-heading{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0 0 30px;
    color:var(--yd-primary);
    font-size:clamp(20px,2.2vw,26px);
    font-weight:700;
    line-height:1.25;
    letter-spacing:-0.01em;
}

.legal-heading::before{
    content:"";
    flex:0 0 auto;
    width:30px;
    height:2px;
    background:currentColor;
}

@media (max-width:560px){
    .legal-heading{
        gap:10px;
        margin-bottom:22px;
    }
    .legal-heading::before{
        width:22px;
    }
}

.legal-content{
    background:#fff;
    border:1px solid #ececec;
    border-radius:32px;
    padding:60px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
    overflow:hidden;
}

.legal-content h2,
.legal-content h3,
.legal-content h4{
    margin-top:48px;
    margin-bottom:20px;
}


.legal-content [id]{
    scroll-margin-top:120px;
}

body.admin-bar .legal-content [id]{
    scroll-margin-top:152px;
}

@media (max-width:900px){
    .legal-content [id]{
        scroll-margin-top:98px;
    }
}

@media screen and (max-width:782px){
    body.admin-bar .legal-content [id]{
        scroll-margin-top:144px;
    }
}

.legal-content p{
    margin-bottom:20px;
}

.legal-content ul{
    margin:20px 0 30px;
    padding-left:22px;
}

.legal-content li{
    margin-bottom:12px;
}

.legal-content a{
    color:var(--color-primary);
}

.legal-content ul{
    list-style:none;
    padding:0;
    margin:20px 0 30px;
}

.legal-content ul li{
    position:relative;
    padding-left:32px;
    margin-bottom:14px;
}

.legal-content ul li::before{
    content:"\2192"; 
    position:absolute;
    left:0;
    top:0px;
    color:var(--color-primary);
    font-size:18px;
    font-weight:700;
}

.legal-content ul li a{
    color:#ff3951;
    text-decoration:none;
    transition:.3s ease;
}

.legal-content ul li a:hover{
    color:var(--color-primary);
}

@media (max-width:991px){

    .legal-content{
        padding:40px;
        border-radius:24px;
    }

}

@media (max-width:767px){

    .section-legal-content{
        padding:80px 0;
    }

    .legal-content{
        padding:24px;
        border-radius:20px;
    }

}


.section-error-404{
    padding:40px 0;
    min-height:calc(100vh - 160px);
    display:flex;
    align-items:center;
    background:#fff;
}

.error-404{
    max-width:920px;
    margin:0 auto;
    text-align:center;
}

.error-404__image{
    margin-bottom:50px;
}

.error-404__image img{
    max-width:600px;
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
}

.error-404__content h1{
    margin:0 0 24px;
    font-size:48px;
    line-height:1.1;
    font-weight:700;
    color:#101828;
}

.error-404__content p{
    max-width:700px;
    margin:0 auto 40px;
    font-size:22px;
    line-height:1.7;
    color:#667085;
}

.error-404__content .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 42px;
    border-radius:999px;
    text-decoration:none;
    background:#ff3951; 
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.35s ease;
}

.error-404__content .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(215,25,32,.25);
}

@media(max-width:991px){

    .section-error-404{
        padding:90px 0;
    }

    .error-404__image img{
        max-width:450px;
    }

    .error-404__content h1{
        font-size:38px;
    }

    .error-404__content p{
        font-size:18px;
    }

}

@media(max-width:767px){

    .section-error-404{
        padding:70px 0;
    }

    .error-404__image{
        margin-bottom:35px;
    }

    .error-404__image img{
        max-width:320px;
    }

    .error-404__content h1{
        font-size:30px;
    }

    .error-404__content p{
        font-size:16px;
        line-height:1.6;
        margin-bottom:30px;
    }

    .error-404__content .btn{
        width:100%;
        max-width:280px;
        padding:16px 24px;
    }

}



.industry-hero {
	padding: 80px 0;
}
.industry-hero__container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}


.industry-hero__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px 32px;
}
.industry-hero__heading-wrap {
	flex: 0 1 auto;
	min-width: 0;
}
.industry-hero__heading {
	margin: 0;
	
	font-size: clamp( 30px, 5.6vw, 60px );
	line-height: 1.14;
	
	overflow-wrap: break-word;
}
.industry-hero__cta-wrap {
	flex: 0 0 auto;
}
.industry-hero__cta {
	white-space: nowrap;
}
.industry-hero__intro-wrap {
	flex: 0 1 380px;
	max-width: 380px;
}
.industry-hero__intro {
	margin: 0;
	font-weight: 600;
    color: #000;
}


.industry-hero__image-wrap {
	width: 100%;
}
.industry-hero__image {
	margin: 0;
	overflow: hidden;
	border-radius: 32px;
}
.industry-hero__image-img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.industry-hero__image:hover .industry-hero__image-img {
	transform: scale( 1.03 );
}


@media ( max-width: 900px ) {
	.industry-hero__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.industry-hero__intro-wrap {
		flex: none;    
		max-width: 100%;
	}
	.industry-hero__image {
		border-radius: 24px;
	}
}
@media ( max-width: 560px ) {
	
	.industry-hero__image {
		border-radius: 18px;
	}
}


.capabilities {
	padding: 80px 0;
}
.capabilities__heading {
	margin: 0 0 64px;
	font-size: clamp( 28px, 4vw, 52px );
}
.capabilities__heading span, .sector-stack__heading span, .tech-stack__heading span {
    color: var(--yd-primary);
}


.capabilities__grid {
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	margin-top: -1px;
	margin-left: -1px;
	border-top: 1px solid var( --yd-line );
	border-left: 1px solid var( --yd-line );
}


.capability-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: clamp( 340px, 30vw, 460px );
	padding: clamp( 28px, 3vw, 44px );
	overflow: hidden;                 
	margin-top: -1px;
	margin-left: -1px;
	border-right: 1px solid var( --yd-line );
	border-bottom: 1px solid var( --yd-line );
	text-decoration: none;
	color: inherit;
}
.capability-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var( --yd-primary );  
	transform: translateY( 100% );    
	transition: transform 0.6s cubic-bezier( 0.65, 0, 0.35, 1 );
}


.capability-card__arrow {
	position: absolute;
	top: clamp( 24px, 2.6vw, 40px );
	right: clamp( 24px, 2.6vw, 40px );
	z-index: 1;
	display: inline-flex;
	width: clamp( 40px, 4vw, 56px );
	height: clamp( 40px, 4vw, 56px );
	color: #fff;
	opacity: 0;
	transform: translateY( 10px );
	transition: opacity 0.45s ease, transform 0.5s cubic-bezier( 0.22, 1, 0.36, 1 );
}
.capability-card__arrow-icon {
	width: 100%;
	height: 100%;
}


.capability-card__title-wrap,
.capability-card__text-wrap {
	position: relative;
	z-index: 1;
}
.capability-card__title {
	margin: 0;
	color: var( --yd-heading );
	transition: color 0.5s ease;
	font-size: clamp(22px, 4vw, 24px);
}
.capability-card__text {
	margin: 16px 0 0;
	max-width: 34em;
	color: var( --yd-body );
	transition: color 0.5s ease;
}


.capability-card.active::before{
    transform: translateY(0);
}

.capability-card.active{
    color:#fff;
}

.capability-card.active .capability-card__title,
.capability-card.active .capability-card__text,
.capability-card.active .capability-card__arrow{
    color:#fff;
}

.capability-card:hover::before{
    transform: translateY(0);
}

.capability-card:hover{
    color:#fff;
}

.capabilities__grid:hover .capability-card.active::before{
    transform: translateY(100%);
}

.capabilities__grid:hover .capability-card.active{
    color:var(--yd-text);
}

.capabilities__grid:hover .capability-card.active .capability-card__title,
.capabilities__grid:hover .capability-card.active .capability-card__text,
.capabilities__grid:hover .capability-card.active .capability-card__arrow{
    color:inherit;
}




@media ( hover: hover ) and ( pointer: fine ) {
	.capability-card:hover::before {
		transform: translateY( 0 );       
	}
	.capability-card:hover .capability-card__arrow {
		opacity: 1;
		transform: translateY( 0 );
	}
	.capability-card:hover .capability-card__title,
	.capability-card:hover .capability-card__text {
		color: #fff;
	}
}


@media ( max-width: 560px ) {
	.capabilities__heading {
		margin-bottom: 40px;
	}
	.capabilities__grid {
		grid-template-columns: 1fr;
	}
	.capability-card {
		min-height: 320px;
	}
}


.stats-marquee {
	overflow: hidden;
	padding: 80px 0;
	background: #ffedec;
}
.stats-marquee__viewport {
	overflow: hidden;
	width: 100%;
}
.stats-marquee__track {
	display: flex;
	width: max-content;
	animation: stats-marquee-scroll 46s linear infinite;
}

@media ( hover: hover ) and ( pointer: fine ) {
	.stats-marquee__track:has( .stat-card:hover ) {
		animation-play-state: paused;
	}
}
@keyframes stats-marquee-scroll {
	from {
		transform: translateX( 0 );
	}
	to {
		transform: translateX( -50% );
	}
}
.stats-marquee__group {
	display: flex;
	flex-shrink: 0;
	gap: clamp( 16px, 1.6vw, 24px );
	padding: 0 clamp( 16px, 1.6vw, 24px );
}


.stat-card {
	position: relative;
	flex-shrink: 0;
	overflow: hidden;                  
	display: flex;
	flex-direction: column;
	width: clamp( 300px, 26vw, 380px );
	height: clamp( 300px, 25vw, 380px );
	padding: clamp( 28px, 2.8vw, 40px );
	border-radius: 28px;
}


.stat-card__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.stat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}


.stat-card__content {
	position: relative;
	z-index: 1;
}
.stat-card__content--top {
	margin-bottom: auto;
}
.stat-card__content--middle {
	margin-top: auto;
	margin-bottom: auto;
}
.stat-card__content--bottom {
	margin-top: auto;
}


.stat-card__number-wrap {
	position: relative;
	z-index: 1;
}
.stat-card__number {
	display: block;
	font-family: var( --yd-font );
	font-weight: 800;
	font-size: clamp( 32px, 3.6vw, 52px );
	line-height: 1;
	letter-spacing: -0.02em;
}
.stat-card__title-wrap {
	position: relative;
	z-index: 1;
	margin-top: 10px;
}
.stat-card__title {
	margin: 0;
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: clamp( 14px, 1.15vw, 17px );
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}


.stat-card--badge {
	align-items: center;
	text-align: center;
	background: var( --yd-heading );  
}
.stat-card--badge::after {
	background: rgba( 20, 20, 43, 0.82 );
}
.stat-card--badge .stat-card__number,
.stat-card--badge .stat-card__title {
	color: #fff;
}
.stat-card__shape {
	position: absolute;
	inset: 0;
	z-index: 1;                        
	opacity: 0.5;
	background-image: radial-gradient( circle at 50% 50%, rgba( 255, 255, 255, 0.14 ) 0 38%, transparent 39% );
	background-size: 64px 64px;
	background-position: 0 0, 32px 32px;
}
.stat-card--badge .stat-card__badge-wrap {
	position: relative;
	z-index: 1;
}
.stat-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp( 104px, 10.5vw, 136px );
	height: clamp( 104px, 10.5vw, 136px );
	border: 1px solid rgba( 255, 255, 255, 0.35 );
	border-radius: 50%;
}
.stat-card--badge .stat-card__title-wrap {
	margin-top: 24px;
}


.stat-card--photo {
	background: #cfe7f6;
}
.stat-card--photo::after {
	background: linear-gradient( to top, rgba( 207, 231, 246, 0.94 ) 0%, rgba( 207, 231, 246, 0.34 ) 62%, rgba( 207, 231, 246, 0.2 ) 100% );
}
.stat-card--photo .stat-card__number,
.stat-card--photo .stat-card__title {
	color: var( --yd-heading );
}


.stat-card--light {
	background: #fff;
	border: 1px solid var( --yd-line );
}
.stat-card--light::after {
	background: linear-gradient( to bottom, rgba( 255, 255, 255, 0.94 ) 0%, rgba( 255, 255, 255, 0.42 ) 58%, rgba( 255, 255, 255, 0.22 ) 100% );
}
.stat-card--light .stat-card__number,
.stat-card--light .stat-card__title {
	color: var( --yd-heading );
}


.stat-card--gradient {
	background: linear-gradient( 145deg, #fff59d 0%, #ffb300 100% );
}
.stat-card--gradient::after {
	background: linear-gradient( 145deg, rgba( 255, 245, 157, 0.9 ) 0%, rgba( 255, 179, 0, 0.9 ) 100% );
}
.stat-card--gradient .stat-card__number,
.stat-card--gradient .stat-card__title {
	color: var( --yd-heading );
}
.stat-card__graphic-wrap {
	position: absolute;
	inset: 0;
	z-index: 1;                        
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: clamp( 28px, 2.8vw, 40px );
	color: rgba( 255, 255, 255, 0.55 );
}
.stat-card__graphic {
	width: 46%;
	height: auto;
}


.stat-card--blue {
	background: var( --yd-primary );
}
.stat-card--blue::after {
	background: linear-gradient( to bottom, rgba( 255, 57, 81, 0.92 ) 0%, rgba( 255, 57, 81, 0.62 ) 100% );
}
.stat-card--blue .stat-card__number,
.stat-card--blue .stat-card__title {
	color: #fff;
}


.stat-card__overlay-icon {
	position: absolute;
	left: clamp( 28px, 2.8vw, 40px );
	bottom: clamp( 28px, 2.8vw, 40px );
	z-index: 1;
	display: flex;
	width: 56px;
	height: 56px;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
}
.stat-card__overlay-icon svg {
	width: 22px;
	height: 22px;
	margin: auto;
}


.stat-card--light-gradient {
	background: linear-gradient( 135deg, #eaf4fb 0%, #ffffff 100% );
	border: 1px solid var( --yd-line );
}
.stat-card--light-gradient::after {
	background: linear-gradient( to bottom, rgba( 240, 247, 252, 0.94 ) 0%, rgba( 240, 247, 252, 0.4 ) 60%, rgba( 240, 247, 252, 0.22 ) 100% );
}
.stat-card--light-gradient .stat-card__number,
.stat-card--light-gradient .stat-card__title {
	color: var( --yd-heading );
}

@media ( prefers-reduced-motion: reduce ) {
	.stats-marquee__track {
		animation: none;
	}
}


@media ( max-width: 900px ) {
	.stat-card {
		width: clamp( 260px, 40vw, 320px );
		height: clamp( 266px, 35vw, 330px );
	}
}
@media ( max-width: 560px ) {
	.stat-card {
		width: 240px;
		height: 250px;
		padding: 24px;
		border-radius: 20px;
	}
	.stat-card__number {
		font-size: 30px;
	}
	.stat-card__badge {
		width: 84px;
		height: 84px;
	}
}


.sector-stack {
	
	--rail: 107px;
	--badge-w: 68px;                   
	--badge-h: 64px;
	--badge-gap: 28px;                 
	--rail-right: 67px;                
	
	--hdr: 97px;
	position: relative;
	background: #ffedec;
}
body.admin-bar .sector-stack {
	--hdr: 98px;                      
}



.sector-stack__intro {
	padding: 80px 0 5px;
}
.sector-stack__heading {
	margin: 0;
	max-width: 18em;
	color: var( --yd-heading );
	font-size: clamp( 28px, 4vw, 52px );   
}
.sector-stack__text-wrap {
	margin-top: clamp( 20px, 2vw, 32px );
}
.sector-stack__text {
	margin: 0;
	max-width: 56em;
	color: var( --yd-body );
}



.sector-stack__list {
	position: relative;
}

.sector-stack__list::after {
	content: "";
	display: block;
	height: calc( 100vh - var( --hdr ) );
}
.sector-stack__panel {
	position: sticky;
	top: var( --hdr );                 
	padding-top: var( --rail );        
}

.sector-stack__badge {
	position: absolute;
	top: calc( var( --rail ) - var( --badge-h ) );
	right: calc( var( --rail-right ) + var( --panel-index ) * ( var( --badge-w ) + var( --badge-gap ) ) );
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var( --badge-w );
	height: var( --badge-h );
	background: var( --yd-primary );   
	color: #fff;
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.02em;
}
.sector-stack__panel-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-height: calc( 100vh - var( --rail ) - var( --hdr ) );
	background: #fff;
}


.sector-stack__content {
	display: flex;
	flex-direction: column;
	justify-content: safe center;   
	
	padding: clamp( 24px, 2.5vw, 44px ) clamp( 32px, 4vw, 72px ) clamp( 24px, 2.5vw, 44px )
		max( 40px, calc( ( 100vw - var( --yd-container, 1600px ) ) / 2 + 40px ) );
	min-width: 0;
}
.sector-stack__title {
	margin: 0;
	max-width: 20em;
	font-size: clamp(22px, 4vw, 24px);
}
.sector-stack__desc-wrap {
	margin-top: clamp( 18px, 2vw, 28px );
	padding-top: clamp( 18px, 2vw, 28px );
	border-top: 1px solid var( --yd-line );
}
.sector-stack__desc {
	margin: 0;
	max-width: 34em;
	color: var( --yd-body );
}


.sector-stack__media {
	position: relative;
	overflow: hidden;
	min-height: 320px;
}

.sector-stack__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


@media ( max-width: 1100px ) {
	.sector-stack {
		--rail: 110px;
		--badge-w: 64px;
		--badge-h: 72px;
		--badge-gap: 24px;
		--rail-right: 40px;
		--hdr: 109px;
	}
	body.admin-bar .sector-stack {
		--hdr: 141px;
	}
	.sector-stack__badge {
		font-size: 17px;
	}
	
	.sector-stack__panel-inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
	}
	.sector-stack__content {
		
		padding: clamp( 40px, 6vw, 64px ) 40px;
		order: 1;
	}
	.sector-stack__media {
		min-height: 300px;
		order: 2;
	}
	.sector-stack__title {
		font-size: 26px;
	}
	.sector-stack__desc {
		font-size: 17px;
		line-height: 1.55;
	}
}
@media ( max-width: 900px ) {
	.sector-stack {
		--hdr: 75px;
	}
	body.admin-bar .sector-stack {
		--hdr: 107px;
	}
	.sector-stack__content {
		padding: clamp( 36px, 6vw, 56px ) 22px;  
	}
}
@media ( max-width: 560px ) {
	.sector-stack {
		
		--rail: 76px;
		--badge-w: 40px;
		--badge-h: 40px;
		--badge-gap: 8px;
		--rail-right: 18px;
	}
	.sector-stack__badge {
		font-size: 15px;
	}
	.sector-stack__intro {
		padding: 80px 0 5px;
	}
	.sector-stack__content {
		padding: 22px 22px;            
	}
	
	.sector-stack__title {
		font-size: 16px;
		line-height: 1.25;
	}
	.sector-stack__desc-wrap {
		margin-top: 10px;
		padding-top: 10px;
	}
	.sector-stack__desc {
		font-size: 14px;
		line-height: 1.5;
	}
	.sector-stack__media {
		min-height: 260px;
	}
}


@media ( prefers-reduced-motion: reduce ) {
	.sector-stack__panel {
		position: static;
	}
}


.cta-banner {
	padding: 80px 0;
	background: #fff;
}
.cta-banner__card {
	position: relative;
	overflow: hidden;                  
	display: flex;
	align-items: center;
	min-height: clamp( 360px, 30vw, 460px );
	padding: clamp( 40px, 4.5vw, 76px );
	border-radius: 40px;
	background: linear-gradient( 100deg, #d81e35 0%, var( --yd-primary ) 46%, #ff5e72 100% );
}


.cta-banner__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 42%;
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-mask-image: linear-gradient( to right, transparent 0%, #000 26% );
	mask-image: linear-gradient( to right, transparent 0%, #000 26% );
}

.cta-banner__card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		radial-gradient( circle at 74% 42%, rgba( 255, 255, 255, 0.22 ) 0%, transparent 46% ),
		radial-gradient( rgba( 255, 255, 255, 0.16 ) 1.6px, transparent 1.7px );
	background-size: 100% 100%, 18px 18px;
	background-position: 0 0, 0 0;
	
	-webkit-mask-image: linear-gradient( to right, transparent 44%, #000 62% );
	mask-image: linear-gradient( to right, transparent 44%, #000 62% );
}


.cta-banner__icon {
	position: absolute;
	right: 28%;
	bottom: 30%;
	z-index: 2;
	display: flex;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: #fff;
	color: var( --yd-primary );
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.16 );
}
.cta-banner__icon svg {
	width: 30px;
	height: 30px;
	margin: auto;
}


.cta-banner__content {
	position: relative;
	z-index: 1;
	max-width: 46%;
}
.cta-banner__heading {
	margin: 0;
	color: #fff;
	font-size: clamp( 22px, 4vw, 36px );
}
.cta-banner__text-wrap {
	margin-top: clamp( 16px, 1.6vw, 22px );
}
.cta-banner__text {
	margin: 0;
	max-width: 34em;
	color: rgba( 255, 255, 255, 0.92 );
}
.cta-banner__cta-wrap {
	margin-top: clamp( 28px, 3vw, 48px );
}

.cta-banner__cta {
	background: #f6f4f1;
	border-color: #f6f4f1;
	color: var( --yd-heading );
}
.cta-banner__cta:hover,
.cta-banner__cta:focus-visible {
	background: var( --yd-heading );
	border-color: var( --yd-heading );
	color: #fff;
}


@media ( max-width: 1100px ) {
	.cta-banner__content {
		max-width: 56%;
	}
	.cta-banner__icon {
		width: 62px;
		height: 62px;
		right: 24%;
	}
}
@media ( max-width: 900px ) {
	
	.cta-banner__card {
		display: block;
		min-height: 0;
		padding: 0 32px 32px;
		border-radius: 28px;
	}
	.cta-banner__content {
		max-width: 100%;
	}
	.cta-banner__bg {
		position: relative;
		left: auto;
		height: 300px;
		margin: 0 -32px 32px;      
		-webkit-mask-image: none;
		mask-image: none;
	}
	
	.cta-banner__card::after {
		display: none;
	}
	
	.cta-banner__cta-wrap {
		display: flex;
	}
	.cta-banner__icon {
		right: 32px;
		bottom: 32px;
		width: 56px;
		height: 56px;
	}
	.cta-banner__icon svg {
		width: 24px;
		height: 24px;
	}
}
@media ( max-width: 560px ) {
	.cta-banner__card {
		padding: 0 22px 24px;      
		border-radius: 22px;
	}
	.cta-banner__bg {
		height: 220px;
		margin: 0 -22px 24px;      
	}
	.cta-banner__text {
		font-size: 14px;
		line-height: 1.5;
	}
	.cta-banner__icon {
		right: 22px;
		bottom: 22px;
		width: 48px;
		height: 48px;
	}
	.cta-banner__icon svg {
		width: 20px;
		height: 20px;
	}
}


.industry-tabs {
	padding: 80px 0;
	background: #ffedec;
}


.industry-tabs__eyebrow {
	display: inline-block;
	color: var( --yd-primary );
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.industry-tabs__heading-wrap {
	margin-top: 22px;
}
.industry-tabs__heading {
	margin: 0;
	color: var( --yd-heading );
	font-size: clamp( 28px, 4vw, 52px );   
}
.industry-tabs__heading span {
	color: var( --yd-primary );  
}
.industry-tabs__text-wrap {
	margin-top: clamp( 20px, 2vw, 32px );
}
.industry-tabs__text {
	margin: 0;
	max-width: 60em;
	color: var( --yd-body );
}


.industry-tabs__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 8px;
	margin-top: clamp( 40px, 4vw, 64px );
}



.industry-tabs__nav {
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	grid-auto-rows: 1fr;
	gap: 8px;
	height: 100%;
}
.industry-tabs__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 28px 26px 88px;           
	border: 0;
	border-radius: 20px;
	background: linear-gradient( 160deg, #171717 0%, #0b0b0b 100% );
	color: #fff;
	font-family: var( --yd-font );
	text-align: center;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease;
}

.industry-tabs__card-icon {
	display: none;
}
.industry-tabs__card-title {
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: clamp( 18px, 1.5vw, 22px );
	line-height: 1.35;
	letter-spacing: 0.01em;
}


.industry-tabs__card--active {
	background: var( --yd-primary );
}
.industry-tabs__card-arrow {
	position: absolute;
	left: 50%;
	bottom: 32px;
	display: flex;
	width: 62px;
	height: 62px;
	border: 2px solid rgba( 255, 255, 255, 0.9 );
	border-radius: 50%;
	color: #fff;
	opacity: 0;
	transform: translate( -50%, 8px );
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.industry-tabs__card-arrow svg {
	width: 26px;
	height: 26px;
	margin: auto;
}
.industry-tabs__card--active .industry-tabs__card-arrow {
	opacity: 1;
	transform: translate( -50%, 0 );
}

@media ( hover: hover ) and ( pointer: fine ) {
	.industry-tabs__card:not( .industry-tabs__card--active ):hover {
		background: linear-gradient( 160deg, #242424 0%, #141414 100% );
	}
}


.industry-tabs__right {
	height: 100%;
}
.industry-tabs__panel {
	display: none;                     
	height: 100%;
	padding: clamp( 32px, 3vw, 52px );
	border-radius: 24px;
	background: #fff;
}
.industry-tabs__panel--active {
	display: block;
}

.industry-tabs__panel-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ff3b57;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industry-tabs__panel-icon {
	border-radius: 50%;
    background: var(--yd-primary);
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industry-tabs__panel-icon img {
	width: 46px;
	height: 46px;
	margin: auto;
	display: block;
    object-fit: contain;
    margin: 0;
	max-width: 100%;
}
.industry-tabs__panel-title-wrap {
	margin-top: clamp( 22px, 2.2vw, 34px );
}
.industry-tabs__panel-title {
	margin: 0;
	color: var( --yd-heading );
	font-size: clamp( 22px, 1.9vw, 30px );
	line-height: 1.25;
}
.industry-tabs__panel-text-wrap {
	margin-top: 14px;
}
.industry-tabs__panel-text {
	margin: 0;
	max-width: 44em;
	color: var( --yd-body );
	font-size: 16px;
	line-height: 1.6;
}


.industry-tabs__features {
	margin: clamp( 26px, 2.6vw, 40px ) 0 0;
	padding: 0;
	list-style: none;
}

.industry-tabs__feature {
	display: grid;
	grid-template-columns: auto minmax( 0, 1fr ) auto;
	align-items: start;
	gap: 16px;
	padding: 22px 4px;
	border-top: 1px solid var( --yd-line );
}
.industry-tabs__feature:first-child {
	border-top: 0;
	padding-top: 0;
}
.industry-tabs__feature:last-child {
	padding-bottom: 0;
}
.industry-tabs__feature-icon {
	display: flex;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: var( --yd-primary );
}
.industry-tabs__feature-icon svg {
	width: 100%;
	height: 100%;
}
.industry-tabs__feature-title {
	margin: 0;
	color: var( --yd-heading );
	font-size: 16px;
	line-height: 1.4;
}
.industry-tabs__feature-text {
	margin: 6px 0 0;
	color: var( --yd-body );
	font-size: 15px;
	line-height: 1.55;
}
.industry-tabs__feature-arrow {
	display: flex;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	color: var( --yd-primary );
	transition: transform 0.25s ease;
}
.industry-tabs__feature-arrow svg {
	width: 100%;
	height: 100%;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.industry-tabs__feature-arrow:hover {
		transform: translate( 2px, -2px );
	}
}


@media ( max-width: 1200px ) {
	.industry-tabs__card {
		padding: 28px 22px 86px;
		min-height: 220px;
	}
	.industry-tabs__card-arrow {
		width: 54px;
		height: 54px;
		bottom: 26px;
	}
	.industry-tabs__panel-icon {
		width: 66px;
		height: 66px;
	}
	.industry-tabs__panel-icon svg {
		width: 28px;
		height: 28px;
	}
}

@media ( max-width: 1024px ) {
	.industry-tabs__body {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.industry-tabs__nav {
		height: auto;
	}
	.industry-tabs__card {
		min-height: 190px;
		padding: 26px 22px 78px;
	}
	.industry-tabs__panel {
		height: auto;
	}
}

@media ( max-width: 767px ) {
	.industry-tabs__left {
		display: none;
	}
	.industry-tabs__right {
		display: grid;
		gap: 16px;
	}
	.industry-tabs__panel,
	.industry-tabs__panel--active {
		display: block;
		padding: 28px 22px;
		border-radius: 18px;
	}
	.industry-tabs__panel-icon {
		width: 56px;
		height: 56px;
	}
	.industry-tabs__panel-icon svg {
		width: 24px;
		height: 24px;
	}
	.industry-tabs__panel-text {
		font-size: 15px;
	}
	.industry-tabs__feature {
		gap: 12px;
		padding: 16px 0;
	}
	.industry-tabs__feature-title {
		font-size: 15px;
	}
	.industry-tabs__feature-text {
		font-size: 14px;
	}
}


.testimonials {
	
	--bar-right: clamp( 12px, 1vw, 20px );   
	--bar-w: 34px;                            
	--bar-clear: 14px;                        
	padding: 80px 0;
	background: #ffedec;
}
.testimonials__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 28px;
	margin-top: clamp(40px, 4vw, 64px);
}


.testimonials__media-inner {
	position: relative;
	overflow: hidden;
	height: 100%;
	min-height: 420px;
	border-radius: 28px;
}
.testimonials__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s cubic-bezier( 0.22, 1, 0.36, 1 );
}
.testimonials__reel {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 18px 34px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var( --yd-heading );
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transform: translate( -50%, -50% );
	box-shadow: 0 16px 40px rgba( 0, 0, 0, 0.22 );
	transition: transform 0.35s cubic-bezier( 0.22, 1, 0.36, 1 ), background 0.3s ease, color 0.3s ease;
	display: none;
}
.testimonials__reel-icon {
	display: flex;
	width: 24px;
	height: 24px;
}
.testimonials__reel-icon svg {
	width: 100%;
	height: 100%;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.testimonials__media-inner:hover .testimonials__thumb {
		transform: scale( 1.04 );
	}
	.testimonials__reel:hover {
		background: var( --yd-primary );
		color: #fff;
		transform: translate( -50%, -50% ) scale( 1.05 );
	}
}
.testimonials__reel:focus-visible {
	outline: 3px solid var( --yd-primary );
	outline-offset: 4px;
}


.testimonials__panel {
	height: 100%;
}
.testimonials__slider {
	position: relative;
	overflow: hidden;
	
	isolation: isolate;
	height: 100%;
	padding: clamp( 26px, 2.4vw, 42px )
		calc( var( --bar-right ) + var( --bar-w ) + var( --bar-clear ) )
		clamp( 26px, 2.4vw, 42px )
		clamp( 26px, 2.4vw, 42px );
	border-radius: 28px;
}


.testimonials__slider::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	
	width: 160%;
	height: 160%;
	background: linear-gradient( 135deg, #fdf1f1 0%, #ffe2e4 38%, #ffb9a6 72%, #ff8f6a 100% );
	animation: testimonials-gradient 18s ease-in-out infinite alternate;
	will-change: transform;
	pointer-events: none;
}

@keyframes testimonials-gradient {
	from {
		transform: translate3d( 0, -18.75%, 0 );
	}
	to {
		transform: translate3d( -37.5%, -18.75%, 0 );
	}
}

.testimonials__viewport {
	height: 100%;
	border-radius: 20px;
	cursor: none;                      
	touch-action: pan-y;               
}
.testimonials__viewport:focus-visible {
	outline: 3px solid var( --yd-primary );
	outline-offset: 3px;
}

.testimonials__track {
	display: grid;
	height: 100%;
	perspective: 1200px;
	perspective-origin: 50% 50%;
}


.testimonials__slide {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;                
	transform: translate3d( 0, 44%, -140px ) rotateX( -34deg ) rotateZ( 1.2deg ) scale( 0.92 );
	transition:
		transform 0.8s cubic-bezier( 0.22, 1, 0.36, 1 ),
		opacity 0.62s cubic-bezier( 0.4, 0, 0.2, 1 ),
		visibility 0s linear 0.8s;
	will-change: transform, opacity;
	backface-visibility: hidden;
}
.testimonials__slide--above {
	transform: translate3d( 0, -44%, -140px ) rotateX( 34deg ) rotateZ( -1.2deg ) scale( 0.92 );
}
.testimonials__slide--active {
	opacity: 1;
	visibility: visible;
	transform: translate3d( 0, 0, 0 ) rotateX( 0 ) rotateZ( 0 ) scale( 1 );
	transition:
		transform 0.8s cubic-bezier( 0.22, 1, 0.36, 1 ),
		opacity 0.52s cubic-bezier( 0.4, 0, 0.2, 1 ),
		visibility 0s;
}

.testimonials__slide--instant {
	transition: none !important;
}

.testimonials__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: clamp( 28px, 2.6vw, 46px );
	border-radius: 20px;
	background: #fff;
}

.testimonials__card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.testimonials__logo-wrap {
	display: flex;
	align-items: center;
	min-width: 0;
}

.testimonials__logo {
	display: block;
	width: auto;
	max-width: 190px;
	height: auto;
	max-height: 38px;
	object-fit: contain;
	object-position: left center;
}
.testimonials__quote-icon {
	flex-shrink: 0;
	width: clamp( 34px, 2.6vw, 44px );
	color: var( --yd-primary );
}
.testimonials__quote-icon svg {
	width: 100%;
	height: auto;
}
.testimonials__title-wrap {
	margin-top: clamp( 14px, 1.3vw, 20px );
}
.testimonials__title {
	margin: 0;
	color: var( --yd-heading );
	font-size: clamp( 17px, 1.35vw, 21px );
	line-height: 1.35;
}
.testimonials__text-wrap {
	margin-top: clamp( 10px, 1vw, 14px );
}
.testimonials__text {
	margin: 0;
	color: var( --yd-heading );
	font-size: clamp( 16px, 1.25vw, 19px );
	line-height: 1.62;
}


.testimonials__client {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: clamp( 28px, 3vw, 52px );
}
.testimonials__client-photo-wrap {
	flex-shrink: 0;
	overflow: hidden;
	width: 54px;
	height: 54px;
	border-radius: 50%;
}
.testimonials__client-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimonials__client-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.testimonials__client-name {
	color: var( --yd-heading );
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
}
.testimonials__client-role {
	color: var( --yd-primary );        
	font-size: 15px;
	line-height: 1.35;
}



.testimonials__modal[hidden] {
	display: none;
}
.testimonials__modal {
	--modal-pad: clamp( 16px, 3vw, 48px );
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var( --modal-pad );
	opacity: 0;
	transition: opacity 0.3s ease;
}
.testimonials__modal.is-open {
	opacity: 1;
}
.testimonials__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba( 0, 0, 0, 0.82 );
	backdrop-filter: blur( 4px );
}

.testimonials__modal-dialog {
	position: relative;
	width: min(
		1100px,
		100%,
		calc( ( 100vh - 2 * var( --modal-pad ) ) * 16 / 9 )
	);
	transform: scale( 0.96 );
	transition: transform 0.35s cubic-bezier( 0.22, 1, 0.36, 1 );
}
.testimonials__modal.is-open .testimonials__modal-dialog {
	transform: scale( 1 );
}

.testimonials__modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 2px solid rgba( 255, 255, 255, 0.9 );
	border-radius: 50%;
	background: rgba( 0, 0, 0, 0.6 );
	color: #fff;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.testimonials__modal-close svg {
	width: 20px;
	height: 20px;
	margin: auto;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.testimonials__modal-close:hover {
		border-color: var( --yd-primary );
		background: var( --yd-primary );
		transform: scale( 1.08 );
	}
}
.testimonials__modal-close:focus-visible {
	outline: 3px solid var( --yd-primary );
	outline-offset: 3px;
}

.testimonials__modal-media {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	background: #000;
}
.testimonials__modal-media iframe,
.testimonials__modal-media video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.yd-modal-open {
	overflow: hidden;
}

@media ( prefers-reduced-motion: reduce ) {
	.testimonials__modal,
	.testimonials__modal-dialog,
	.testimonials__modal-close {
		transition: none;
	}
	.testimonials__modal-dialog {
		transform: none;
	}
}


.testimonials__cursor {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: rgba( 20, 20, 43, 0.9 );
	color: #fff;
	pointer-events: none;              
	opacity: 0;
	
	transform: translate3d( -100px, -100px, 0 ) scale( 0.4 );
	transition: opacity 0.28s ease, scale 0.28s cubic-bezier( 0.22, 1, 0.36, 1 );
	will-change: transform, opacity;
}
.testimonials__cursor--visible {
	opacity: 1;
	scale: 1;
}

.testimonials__cursor-arrow {
	display: flex;
	width: 26px;
	height: 26px;
	transform: rotate( 90deg );
	transition: transform 0.38s cubic-bezier( 0.22, 1, 0.36, 1 );
}
.testimonials__cursor-arrow svg {
	width: 100%;
	height: 100%;
}
.testimonials__cursor--up .testimonials__cursor-arrow {
	transform: rotate( -90deg );
}


.testimonials__pagination {
	position: absolute;
	top: 50%;
	right: var( --bar-right );
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transform: translateY( -50% );
}
.testimonials__bar {
	width: 26px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba( 255, 255, 255, 0.65 );
	cursor: pointer;
	transition: background 0.35s ease, width 0.35s cubic-bezier( 0.22, 1, 0.36, 1 );
}
.testimonials__bar--active {
	width: var( --bar-w );
	background: #fff;
}
.testimonials__bar:focus-visible {
	outline: 2px solid var( --yd-heading );
	outline-offset: 3px;
}


@media ( max-width: 1200px ) {
	.testimonials__reel {
		padding: 16px 28px;
		font-size: 14px;
	}
	.testimonials__client-photo-wrap {
		width: 48px;
		height: 48px;
	}
}

@media ( max-width: 900px ) {
	.testimonials__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.testimonials__media-inner {
		min-height: 0;
		height: 340px;
	}
	.testimonials__panel {
		height: auto;
	}
}
@media ( max-width: 560px ) {
	.testimonials__media-inner {
		height: 260px;
		border-radius: 20px;
	}
	.testimonials__reel {
		gap: 10px;
		padding: 14px 22px;
		font-size: 13px;
		letter-spacing: 0.12em;
	}
	.testimonials__reel-icon {
		width: 20px;
		height: 20px;
	}
	
	.testimonials {
		--bar-right: 10px;
		--bar-w: 26px;
		--bar-clear: 10px;
	}
	.testimonials__slider {
		padding: 20px calc( var( --bar-right ) + var( --bar-w ) + var( --bar-clear ) ) 20px 20px;
		border-radius: 20px;
	}
	
	.testimonials__bar:not( .testimonials__bar--active ) {
		width: 20px;
	}
	.testimonials__card {
		padding: 24px 22px;
		border-radius: 16px;
	}
	.testimonials__logo {
		max-width: 130px;
		max-height: 28px;
	}
	.testimonials__text {
		font-size: 15px;
		line-height: 1.6;
	}
	.testimonials__client {
		padding-top: 28px;
	}
	.testimonials__client-name {
		font-size: 15px;
	}
	.testimonials__client-role {
		font-size: 14px;
	}
	
	.testimonials__cursor {
		display: none;
	}
	.testimonials__viewport {
		cursor: auto;
	}
}


@media ( prefers-reduced-motion: reduce ) {
	.testimonials__slider::before {
		animation: none;
	}
	.testimonials__slide,
	.testimonials__slide--active {
		transform: none;
		transition: opacity 0.01ms linear, visibility 0s;
	}
	.testimonials__thumb,
	.testimonials__reel,
	.testimonials__cursor,
	.testimonials__cursor-arrow,
	.testimonials__bar {
		transition: none;
	}
}


.contact-modal[hidden] {
	display: none;
}
.contact-modal {
	
	--cm-pad: clamp( 10px, 3vw, 56px );
	--cm-panel-pad: clamp( 18px, 1.9vw, 34px );
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: stretch;          
	justify-content: center;
	padding: 0 var( --cm-pad );
	opacity: 0;
	transition: opacity 0.4s cubic-bezier( 0.22, 1, 0.36, 1 );
}
.contact-modal.is-open {
	opacity: 1;
}
.contact-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba( 6, 6, 12, 0.72 );
	backdrop-filter: blur( 6px );
}



.contact-modal__dialog {
	position: relative;
	display: grid;
	grid-template-columns: 1.34fr 1fr;
	overflow: hidden;
	width: min( 1420px, 100% );
	max-height: 100vh;
	border-radius: 26px;
	background: #000;
	box-shadow: 0 40px 120px rgba( 0, 0, 0, 0.55 );
	transform: scale( 0.95 );
	transition: transform 0.4s cubic-bezier( 0.22, 1, 0.36, 1 );
}
.contact-modal.is-open .contact-modal__dialog {
	transform: scale( 1 );
}
.contact-modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	display: flex;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var( --yd-heading );
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.contact-modal__close svg {
	width: 18px;
	height: 18px;
	margin: auto;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.contact-modal__close:hover {
		background: var( --yd-primary );
		color: #fff;
		transform: rotate( 90deg );
	}
}
.contact-modal__close:focus-visible {
	outline: 3px solid var( --yd-primary );
	outline-offset: 3px;
}



.contact-modal__aside {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp( 10px, 1.6vh, 20px );
	overflow: hidden;
	min-height: 0;                 
	padding: clamp( 14px, 2.4vh, 32px ) var( --cm-panel-pad );
	background: var( --yd-primary );   
	color: #fff;
}

.contact-modal__visual {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.contact-modal__visual-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.contact-modal__aside::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba( 0, 0, 0, 0.46 ) 0%,
		rgba( 0, 0, 0, 0.10 ) 34%,
		rgba( 0, 0, 0, 0.14 ) 60%,
		rgba( 0, 0, 0, 0.58 ) 100%
	);
	pointer-events: none;
}

.contact-modal__intro,
.contact-modal__awards {
	position: relative;
	z-index: 2;
}
.contact-modal__heading {
	margin: 0;
	color: #fff;
	font-size: clamp( 18px, min( 1.6vw, 2.9vh ), 27px );
	line-height: 1.24;
	text-shadow: 0 1px 12px rgba( 0, 0, 0, 0.35 );
}
.contact-modal__subheading-wrap {
	margin-top: 8px;
}
.contact-modal__subheading {
	margin: 0;
	max-width: 30em;
	color: rgba( 255, 255, 255, 0.94 );
	font-size: 14px;
	line-height: 1.55;
	text-shadow: 0 1px 10px rgba( 0, 0, 0, 0.3 );
}

.contact-modal__awards {
	flex-shrink: 0;
}

.contact-modal__awards-label {
	display: block;
	color: rgba( 255, 255, 255, 0.9 );
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 0 1px 10px rgba( 0, 0, 0, 0.3 );
}

.contact-modal__awards-list {
	display: grid;
	grid-template-columns: repeat( 6, 1fr );
	gap: 7px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.contact-modal__award {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp( 6px, 1vh, 9px ) 10px;
	border: 1px solid rgba( 255, 255, 255, 0.4 );
	border-radius: 9px;
	background: rgba( 255, 255, 255, 0.82 );
	backdrop-filter: blur( 6px );
	transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.contact-modal__award:hover {
		border-color: #fff;
		background: rgba( 255, 255, 255, 0.96 );
		transform: translateY( -2px );
	}
}
.contact-modal__award-img {
	display: block;
	width: 100%;
	max-height: clamp( 20px, 3.2vh, 30px );
	object-fit: contain;
}


.contact-modal__panel {
	display: flex;
	flex-direction: column;
	overflow: hidden;              
	
	min-width: 0;
	
	padding: clamp( 14px, 2.4vh, 34px ) var( --cm-panel-pad ) 0;
	background: #000;
	color: #fff;
}
.contact-modal__form-intro {
	margin: 0 clamp( 44px, 4vw, 60px ) 0 0;   
	color: rgba( 255, 255, 255, 0.82 );
	font-size: 14px;
	line-height: 1.55;
}
.contact-modal__form-title {
	color: #fff;
}
.contact-modal__form {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	justify-content: space-between;
	min-height: 0;
	gap: clamp( 9px, 1.7vh, 24px );        
	margin-top: clamp( 12px, 2.1vh, 30px );
	padding-bottom: clamp( 12px, 1.8vh, 22px );
}
.contact-modal__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp( 16px, 1.8vw, 28px );
}


.contact-modal__field {
	position: relative;
	display: flex;
}
.contact-modal__field--grow {
	flex: 1 1 auto;
	min-width: 0;
}
.contact-modal__field--phone {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}
.contact-modal__input {
	width: 100%;
	padding: 15px 0 6px;
	border: 0;
	border-bottom: 1px solid rgba( 255, 255, 255, 0.28 );
	background: transparent;
	color: #fff;
	font-family: var( --yd-font );
	font-size: 12px;
	line-height: 1.4;
	transition: border-color 0.25s ease;
}
.contact-modal__textarea {
	min-height: clamp( 48px, 7vh, 82px );
	resize: vertical;
}
.contact-modal__input:focus {
	outline: none;
	border-bottom-color: var( --yd-primary );
}

.contact-modal__label {
	position: absolute;
	top: 15px;
	left: 0;
	color: rgba( 255, 255, 255, 0.62 );
	font-size: 12px;
	line-height: 1.4;
	pointer-events: none;
	transform-origin: 0 0;
	transition: transform 0.22s ease, color 0.22s ease;
}
.contact-modal__input:focus + .contact-modal__label,
.contact-modal__input:not( :placeholder-shown ) + .contact-modal__label {
	color: rgba( 255, 255, 255, 0.7 );
	transform: translateY( -13px ) scale( 0.8 );
}
.contact-modal__label em {
	font-style: italic;
}

.contact-modal__select {
	width: 60px;
	flex-shrink: 0;
	padding: 15px 0 6px;
	border: 0;
	border-bottom: 1px solid rgba( 255, 255, 255, 0.28 );
	background: transparent;
	color: #fff;
	font-family: var( --yd-font );
	font-size: 12px;
	cursor: pointer;
}
.contact-modal__select option {
	color: var( --yd-heading );
}
.contact-modal__select:focus {
	outline: none;
	border-bottom-color: var( --yd-primary );
}

.contact-modal__note {
	margin: 0;
	padding-left: 18px;
	color: rgba( 255, 255, 255, 0.82 );
	font-size: 12px;
	line-height: 1.5;
}
.contact-modal__note strong {
	color: #fff;
}


.contact-modal__checks {
	display: flex;
	flex-direction: column;
	gap: clamp( 7px, 1.1vh, 13px );
}
.contact-modal__check {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 12px;
	cursor: pointer;
}

.contact-modal__check input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.contact-modal__check-box {
	display: flex;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1px solid rgba( 255, 255, 255, 0.45 );
	border-radius: 5px;
	color: transparent;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.contact-modal__check-box svg {
	width: 13px;
	height: 13px;
	margin: auto;
}
.contact-modal__check input:checked + .contact-modal__check-box {
	border-color: var( --yd-primary );
	background: var( --yd-primary );
	color: #fff;
}
.contact-modal__check input:focus-visible + .contact-modal__check-box {
	outline: 3px solid var( --yd-primary );
	outline-offset: 2px;
}
.contact-modal__check-text {
	color: rgba( 255, 255, 255, 0.82 );
	font-size: 14px;
	line-height: 1.5;
}
.contact-modal__check-text strong {
	color: #fff;
}


.contact-modal__actions {
	display: flex;
	align-items: center;
	gap: clamp( 12px, 1.4vw, 22px );
	flex-wrap: wrap;
}
.contact-modal__captcha {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 12px;
	white-space: nowrap;
}
.contact-modal__captcha-input {
	width: 56px;
	padding: clamp( 6px, 0.9vh, 9px );
	border: 1px solid rgba( 255, 255, 255, 0.35 );
	border-radius: 8px;
	background: transparent;
	color: #fff;
	font-family: var( --yd-font );
	font-size: 12px;
	text-align: center;
}
.contact-modal__captcha-input:focus {
	outline: none;
	border-color: var( --yd-primary );
}

.contact-modal__submit {
	flex: 0 0 auto;
	min-width: 190px;
	padding: clamp( 10px, 1.4vh, 14px ) 30px;
	border: 0;
	border-radius: 10px;
	background: var( --yd-primary );
	color: #fff;
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.contact-modal__submit:hover {
		background: var( --yd-primary-dark, #e42d44 );
		transform: translateY( -2px );
	}
}
.contact-modal__submit:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}
.contact-modal__success[hidden] {
	display: none;
}
.contact-modal__success {
	margin: 0;
	padding: 14px 16px;
	border-radius: 10px;
	background: rgba( 255, 57, 81, 0.16 );
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
}



.contact-modal__partners {
	margin: 0 calc( -1 * var( --cm-panel-pad ) );
	padding: clamp( 10px, 1.5vh, 18px ) var( --cm-panel-pad ) clamp( 11px, 1.7vh, 20px );
	background: linear-gradient(
		180deg,
		#000 0%,
		#6d0f1c 42%,
		#b81c30 74%,
		var( --yd-primary ) 100%
	);
}
.contact-modal__partners-title {
	display: block;
	color: rgba( 255, 255, 255, 0.72 );
	font-family: var( --yd-font );
	font-weight: 500;
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
}

.contact-modal__marquee {
	overflow: hidden;
	min-width: 0;                  
	margin-top: clamp( 8px, 1.2vh, 14px );
	-webkit-mask-image: linear-gradient( to right, transparent 0, #000 8%, #000 92%, transparent 100% );
	mask-image: linear-gradient( to right, transparent 0, #000 8%, #000 92%, transparent 100% );
}
.contact-modal__marquee-track {
	display: flex;
	width: max-content;
	animation: contact-modal-marquee 32s linear infinite;
}

.contact-modal__marquee:hover .contact-modal__marquee-track {
	animation-play-state: paused;
}
@keyframes contact-modal-marquee {
	from {
		transform: translate3d( 0, 0, 0 );
	}
	to {
		transform: translate3d( -50%, 0, 0 );
	}
}
.contact-modal__marquee-group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: clamp( 28px, 3vw, 52px );
	margin: 0;
	padding: 0 clamp( 14px, 1.5vw, 26px );
	list-style: none;
}
.contact-modal__partner {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	color: rgba( 255, 255, 255, 0.86 );   
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 13px;
	line-height: 1.4;              
	white-space: nowrap;
	transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.contact-modal__partner img {
	display: block;
	width: auto;
	max-height: 22px;
	object-fit: contain;
	filter: grayscale( 1 ) brightness( 2.4 );
	opacity: 0.62;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.contact-modal__partner:hover {
		color: #fff;
		transform: scale( 1.05 );
	}
	.contact-modal__partner:hover img {
		opacity: 1;
		transform: scale( 1.05 );
	}
}


.yd-modal-open,
html:has( body.yd-modal-open ) {
	overflow: hidden;
}


@media ( max-width: 1100px ) {
	.contact-modal {
		--cm-pad: clamp( 8px, 1.6vw, 20px );
	}
	.contact-modal__dialog {
		grid-template-columns: 1fr;
		
		grid-template-rows: auto 1fr;
		max-height: 100vh;
		overflow: hidden;
	}
	.contact-modal__panel {
		overflow: visible;
	}
	
	.contact-modal__aside {
		min-height: 0;
		height: clamp( 190px, 30vh, 300px );
	}
	.contact-modal__partner {
		font-size: 15px;
	}
	.contact-modal__partner img {
		max-height: 20px;
	}
}
@media ( max-width: 700px ) {
	.contact-modal__row {
		grid-template-columns: 1fr;
	}
	.contact-modal__dialog {
		border-radius: 18px;
	}
	
	.contact-modal__aside {
		display: none;
	}
	.contact-modal__dialog {
		grid-template-rows: 1fr;
	}
	.contact-modal__actions {
		gap: 14px;
	}
	.contact-modal__submit {
		flex: 1 1 100%;            
		min-width: 0;              
	}
	.contact-modal__form-intro {
		margin-right: 44px;
	}
	
	.contact-modal__awards-list {
		grid-template-columns: repeat( 3, 1fr );
	}
	.contact-modal__award-img {
		max-height: 26px;
	}
	.contact-modal__partner {
		font-size: 14px;
	}
	.contact-modal__partner img {
		max-height: 18px;
	}
}
@media ( max-width: 420px ) {
	.contact-modal__awards-list {
		grid-template-columns: repeat( 2, 1fr );
	}
}


@media ( max-width: 1100px ) and ( max-height: 800px ) {
	.contact-modal__aside {
		display: none;
	}
	.contact-modal__dialog {
		grid-template-rows: 1fr;
	}
}

@media ( max-width: 700px ) and ( max-height: 730px ) {
	.contact-modal__partners {
		display: none;
	}
}

@media ( max-height: 620px ) {
	.contact-modal__dialog {
		overflow-y: auto;
	}
}


@media ( max-width: 430px ) {
	.contact-modal__textarea {
		min-height: 88px;
		padding-top: 36px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.contact-modal,
	.contact-modal__dialog,
	.contact-modal__close,
	.contact-modal__submit,
	.contact-modal__label,
	.contact-modal__check-box,
	.contact-modal__partner,
	.contact-modal__partner img {
		transition: none;
	}
	.contact-modal__dialog {
		transform: none;
	}
	
	.contact-modal__marquee-track {
		animation: none;
	}
}


.tech-stack {
	padding: 80px 0;
	background: #fff;
}


.tech-stack__header {
	max-width: 62em;
	margin: 0 auto;
	text-align: center;
}
.tech-stack__eyebrow {
	display: inline-block;
	color: var( --yd-primary );
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.tech-stack__heading-wrap {
	margin-top: 18px;
}
.tech-stack__heading {
	margin: 0;
	font-size: clamp( 28px, 4vw, 52px );   
}
.tech-stack__text-wrap {
	margin-top: 18px;
}
.tech-stack__text {
	margin: 0;
	color: var( --yd-body );
}


.tech-stack__body {
	display: grid;
	grid-template-columns: minmax( 260px, 34% ) 1fr;
	align-items: stretch;
	overflow: hidden;
	margin-top: clamp( 32px, 3.6vw, 56px );
	border-radius: 28px;
	box-shadow:
        0 0 40px rgba(0, 0, 0, 0.12),
        0 12px 32px rgba(0, 0, 0, 0.08);
}

.tech-stack__nav {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: clamp( 16px, 1.6vw, 24px );
	background: linear-gradient( 165deg, #d81e35 0%, var( --yd-primary ) 100% );
}
.tech-stack__tab {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 14px 18px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: #fff;
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 15px;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
	transition: background 0.28s ease;
}
.tech-stack__tab-icon {
	display: flex;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
}
.tech-stack__tab-icon svg {
	width: 100%;
	height: 100%;
}

.tech-stack__tab--active {
	background: rgba( 255, 255, 255, 0.22 );
}
@media ( hover: hover ) and ( pointer: fine ) {
	.tech-stack__tab:not( .tech-stack__tab--active ):hover {
		background: rgba( 255, 255, 255, 0.11 );
	}
}
.tech-stack__tab:focus-visible {
	outline: 3px solid #fff;
	outline-offset: -3px;
}


.tech-stack__panels {
	padding: clamp( 18px, 1.8vw, 28px );
	background: #ffedec;
}
.tech-stack__panel {
	display: none;                 
}
.tech-stack__panel--active {
	display: block;
}

.tech-stack__tools {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 150px, 1fr ) );
	gap: clamp( 12px, 1.2vw, 18px );
	margin: 0;
	padding: 0;
	list-style: none;
}
.tech-stack__tool {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 26px;
	min-height: 132px;
	padding: 18px;
	border-radius: 16px;
	background: #fff;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}
@media ( hover: hover ) and ( pointer: fine ) {
	.tech-stack__tool:hover {
		transform: translateY( -3px );
		box-shadow: 0 14px 30px rgba( 0, 0, 0, 0.1 );
	}
}

.tech-stack__tool-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	
	background: #f1f0f4;
	background: color-mix( in srgb, var( --tool-color, #6e7191 ) 14%, #fff );
	color: var( --tool-color, #6e7191 );
	font-family: var( --yd-font );
	font-weight: 800;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.01em;
}

.tech-stack__tool-logo:has( img ) {
	background: none;
}
.tech-stack__tool-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}
.tech-stack__tool-name {
	color: var( --yd-heading );
	font-family: var( --yd-font );
	font-weight: 700;
	font-size: 15px;
	line-height: 1.35;
}


@media ( max-width: 1100px ) {
	.tech-stack__body {
		grid-template-columns: 1fr;
	}
	
	.tech-stack__nav {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}
	.tech-stack__tab {
		width: auto;
		padding: 11px 15px;
		font-size: 14px;
	}
}
@media ( max-width: 700px ) {
	.tech-stack__body {
		border-radius: 20px;
	}
	.tech-stack__tools {
		grid-template-columns: repeat( auto-fill, minmax( 132px, 1fr ) );
	}
	.tech-stack__tool {
		gap: 18px;
		min-height: 116px;
		padding: 15px;
	}
	.tech-stack__tab-label {
		font-size: 13px;
	}
}
@media ( max-width: 480px ) {
	.tech-stack__tools {
		grid-template-columns: repeat( 2, 1fr );
	}
	.tech-stack__tool-logo {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	.tech-stack__tool-name {
		font-size: 14px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.tech-stack__tab,
	.tech-stack__tool {
		transition: none;
	}
}
