:root {
	--color-navy: #061237;
	--color-yellow: #ffd400;
	--color-black: #0a0a0a;
	--color-white: #ffffff;
	--color-off-white: #f5f5f5;
	--color-gray: #d9d9d9;
	--color-border: #565656;
	--font-primary: 'Bricolage Grotesque', sans-serif;
	--font-secondary: 'DM Sans', sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin: 0;
	font-family: var(--font-primary);
	color: var(--color-black);
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* Generic WP page content (fallback for pages without page_sections) */

.page-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 20px;
}

@media (min-width: 1024px) {
	.page-content {
		padding: 100px 80px;
	}
}

/* Header */

.header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--color-white);
	border-bottom: 1px solid #ececec;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px;
}

.header__logo {
	display: block;
	width: 96px;
	flex-shrink: 0;
}

.header__logo img {
	width: 100%;
	height: auto;
}

.header__nav {
	position: fixed;
	inset: 0;
	top: 64px;
	background: var(--color-white);
	padding: 24px 16px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	z-index: 20;
}

.header--menu-open .header__nav {
	transform: translateX(0);
}

.header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.header__menu li {
	border-bottom: 1px solid var(--color-border);
}

.header__menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 36px;
	padding: 0 12px;
	font-size: 16px;
	line-height: 1;
}

.header__menu .menu-item-has-children > a::after {
	content: '';
	width: 10px;
	height: 6px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url('../img/icon-caret-down.svg') center / contain no-repeat;
	mask: url('../img/icon-caret-down.svg') center / contain no-repeat;
	transition: transform 0.2s ease;
}

.header__menu .menu-item-has-children.is-open > a::after {
	transform: rotate(180deg);
}

.header__menu .current-menu-item > a {
	background: var(--color-navy);
	color: var(--color-white);
	justify-content: center;
}

.header__menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	background: var(--color-off-white);
	transition: max-height 0.25s ease;
}

.header__menu .menu-item-has-children.is-open > .sub-menu {
	max-height: 320px;
}

.header__menu .sub-menu li {
	border-bottom: 1px solid var(--color-border);
}

.header__menu .sub-menu li:last-child {
	border-bottom: 0;
}

.header__menu .sub-menu a {
	height: 32px;
	padding: 0 12px 0 24px;
	font-size: 14px;
	color: var(--color-black);
	opacity: 0.75;
}

.header__menu .sub-menu .current-menu-item > a {
	color: var(--color-white);
}

.header__menu .sub-menu .current-menu-item > a:hover {
	color: #0a0a0a;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 40px;
	padding: 12px;
	background: var(--color-yellow);
	font-family: var(--font-secondary);
	font-weight: 500;
	font-size: 12px;
	white-space: nowrap;
}

.header__cta-full {
	display: none;
}

.header__cta-short {
	display: inline-block;
}

.header__cta svg {
	width: 16px;
	height: 16px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

.header__phone {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: var(--color-navy);
	border: 2px solid var(--color-navy);
	color: var(--color-off-white);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header__phone:hover {
	background: transparent;
	border-color: #1a2a5e;
	color: #1a2a5e;
}

.header__phone svg {
	width: 24px;
	height: 24px;
}

.header__burger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 4px;
	background: none;
	border: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.header__burger-lines {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
}

.header__burger-line {
	display: block;
	height: 2px;
	background: var(--color-black);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.header--menu-open .header__burger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.header--menu-open .header__burger-line:nth-child(2) {
	opacity: 0;
}

.header--menu-open .header__burger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
	.header__inner {
		padding: 20px 80px;
		gap: 16px;
	}

	.header__logo {
		width: 108px;
	}

	.header__nav {
		position: static;
		inset: auto;
		transform: none;
		padding: 0;
		overflow: visible;
		z-index: auto;
	}

	.header__menu {
		flex-direction: row;
		align-items: center;
	}

	.header__menu li {
		border-bottom: 0;
		border-right: 1px solid var(--color-border);
	}

	.header__menu li:last-child {
		border-right: 0;
	}

	.header__menu a {
		padding: 0 20px;
		white-space: nowrap;
	}

	.header__menu .menu-item-has-children {
		position: relative;
	}

	.header__menu .sub-menu {
		position: absolute;
		z-index: 30;
		top: 100%;
		left: 0;
		min-width: 240px;
		max-height: none;
		overflow: visible;
		background: var(--color-white);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.header__menu .menu-item-has-children:hover > .sub-menu,
	.header__menu .menu-item-has-children.is-open > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.header__menu .sub-menu li {
		border-right: 0;
	}

	.header__menu .sub-menu a {
		justify-content: flex-start;
		height: 44px;
		padding: 0 20px;
		opacity: 1;
		color: var(--color-black);
	}

	.header__menu .sub-menu a:hover {
		background: var(--color-off-white);
	}

	.header__cta {
		height: auto;
		gap: 12px;
		padding: 16px 32px;
		font-size: 16px;
	}

	.header__cta-full {
		display: inline-block;
		text-transform: lowercase;
	}

	.header__cta-full::first-letter {
		text-transform: uppercase;
	}

	.header__cta-short {
		display: none;
	}

	.header__cta svg {
		width: 24px;
		height: 24px;
	}

	.header__phone {
		width: auto;
		height: auto;
		padding: 16px 32px;
	}

	.header__phone svg {
		width: 24px;
		height: 24px;
	}

	.header__burger {
		display: none;
	}
}

/* WhatsApp floating button */

.whatsapp-float-wrap {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 50;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.whatsapp-float {
	display: flex;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
}

.whatsapp-float:hover {
	transform: scale(1.06);
}

.whatsapp-float svg {
	width: 100%;
	height: 100%;
}

.whatsapp-float__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: -4px;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	cursor: pointer;
}

.whatsapp-float__badge.is-hidden {
	display: none;
}

.whatsapp-float__badge-text {
	margin: 0;
	width: 144px;
	padding: 10px;
	background: var(--color-white);
	border-radius: 2px;
	box-shadow: 0 4px 2px rgba(0, 0, 0, 0.11);
	font-weight: 300;
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-black);
}

.whatsapp-float__badge-arrow {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 9px solid var(--color-white);
}

@media (min-width: 1024px) {
	.whatsapp-float-wrap {
		right: 40px;
		bottom: 40px;
	}

	.whatsapp-float {
		width: 60px;
		height: 60px;
	}

	.whatsapp-float__badge-text {
		font-size: 16px;
	}
}

/* Footer */

.footer {
	background: var(--color-navy);
	color: var(--color-off-white);
}

.footer__inner {
	padding: 48px 16px;
}

.footer__top {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer__logo {
	width: 244px;
	height: auto;
	margin-bottom: 20px;
}

.footer__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.footer__column-title {
	margin: 0 0 20px;
	color: var(--color-gray);
	font-size: 18px;
	text-transform: uppercase;
}

.footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 16px;
}

.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer__contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer__contact-label {
	font-size: 14px;
	color: var(--color-gray);
}

.footer__contact-value {
	font-size: 16px;
	font-weight: 400;
}

.footer__contact-value--strong {
	font-weight: 500;
}

.footer__socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
}

.footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.footer__social-link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer__bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(245, 245, 245, 0.15);
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
	color: var(--color-gray);
}

.footer__legal-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.footer__legal-menu li + li {
	margin-left: 12px;
}

.footer__legal-menu li + li::before {
	content: '|';
	margin-right: 12px;
}

@media (min-width: 1024px) {
	.footer__inner {
		padding: 80px;
	}

	.footer__top {
		flex-direction: row;
		gap: 84px;
	}

	.footer__about {
		flex: 1 0 0;
		max-width: 352px;
	}

	.footer__column {
		flex: 1 0 0;
	}
}

/* Секції сторінки (ACF Flexible Content) */

.hero,
.services,
.portfolio,
.about,
.why-us,
.how-we-work,
.testimonials,
.locations,
.contact-cta,
.faq {
	padding: 48px 16px;
}

.hero__inner,
.services__inner,
.portfolio__inner,
.about__inner,
.why-us__inner,
.how-we-work__inner,
.testimonials__inner,
.locations__inner,
.contact-cta__inner,
.faq__inner {
	max-width: 1280px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.hero,
	.services,
	.portfolio,
	.about,
	.why-us,
	.how-we-work,
	.testimonials,
	.locations,
	.contact-cta,
	.faq {
		padding: 80px;
	}
}

/* Hero */

.hero {
	position: relative;
	background-color: var(--color-navy);
	color: var(--color-white);
	padding: 40px 20px;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"heading heading"
		"heading2 heading2"
		"desc badge"
		"media media"
		"actions actions";
}

.hero__heading {
	grid-area: heading;
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: capitalize;
}

.hero__heading-secondary {
	grid-area: heading2;
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: capitalize;
}

.hero__media {
	grid-area: media;
	position: relative;
	margin-top: 32px;
}

.hero__image {
	width: 100%;
	aspect-ratio: 522 / 447;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.hero__media-frame {
	position: absolute;
	z-index: 0;
	left: 3.2%;
	top: -3.5%;
	width: 100%;
	height: 103.5%;
	border: 1px solid var(--color-yellow);
	border-bottom: none;
}

.hero__description {
	grid-area: desc;
	align-self: end;
	margin: 24px 0 0;
	max-width: 186px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-white);
}

.hero__circle-badge {
	grid-area: badge;
	align-self: end;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 118px;
	flex-shrink: 0;
	margin: 24px 0 0;
}

.hero__circle-badge-img {
	display: block;
	width: 118px;
	height: 84px;
}

.hero__actions {
	grid-area: actions;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 12px;
	padding: 16px 32px;
	font-weight: 500;
}

.hero__button span {
	display: inline-block;
	text-transform: lowercase;
}

.hero__button span::first-letter {
	text-transform: uppercase;
}

.hero__button svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
}

.hero__button--primary {
	background: var(--color-yellow);
	color: var(--color-black);
}

.hero__button--secondary {
	background: transparent;
	border: 2px solid var(--color-yellow);
	color: var(--color-yellow);
}

@media (min-width: 1024px) {
	.hero {
		padding: 73px 80px 0;
	}

	.hero__inner {
		grid-template-columns: 539fr 136fr 534fr;
		grid-template-areas:
			"heading heading heading"
			"media . heading2"
			"media . desc"
			"media . actions";
	}

	.hero__heading {
		max-width: 919px;
		font-size: 64px;
		margin-bottom: 30px;
	}

	.hero__media {
		align-self: end;
		margin-top: 0;
	}

	.hero__heading-secondary {
		font-size: 64px;
		margin: 12px 0 0;
	}

	.hero__description {
		align-self: auto;
		max-width: none;
		font-size: 24px;
		margin: 24px 0 0;
	}

	.hero__circle-badge {
		align-self: auto;
		position: absolute;
		top: 105px;
		right: 228px;
		width: auto;
		margin: 0;
	}

	.hero__circle-badge-img {
		width: 119px;
		height: 84px;
	}

	.hero__actions {
		flex-direction: row;
		gap: 16px;
		margin: 32px 0 66px;
	}

	.hero__button {
		flex: 1 0 0;
	}
}

@media (min-width: 1440px) {
	.hero__inner {
		grid-template-columns: 539px 136px 534px;
	}
}

/* Services */

.services {
	padding: 60px 20px;
	background: var(--color-off-white);
}

.services__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.services__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.services__label-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.services__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-black);
}

.services__label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.services__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.services__heading::first-letter {
	text-transform: uppercase;
}

.services__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	max-width: 784px;
}

.services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.services__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 320px;
	padding: 12px;
	overflow: hidden;
	color: #f2f2f2;
}

.services__card-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services__card-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.35) 45%, rgba(26, 26, 26, 0) 75%);
}

.services__card-body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.services__card-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.services__card-footer {
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

.services__card-excerpt {
	margin: 0;
	flex: 1 0 0;
	font-size: 14px;
	line-height: 1.2;
}

.services__card-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-white);
}

.services__card-arrow img {
	width: 20px;
	height: 20px;
}

.services__cta {
	display: inline-flex;
	align-self: flex-start;
	margin-top: 8px;
	padding: 16px 32px;
	background: var(--color-navy);
	color: var(--color-white);
	font-weight: 500;
}

@media (min-width: 1024px) {
	.services {
		padding: 120px 80px;
		background: var(--color-white);
	}

	.services__head {
		gap: 24px;
	}

	.services__label-group {
		gap: 12px;
	}

	.services__label {
		font-size: 18px;
	}

	.services__heading {
		font-size: 42px;
	}

	.services__description {
		font-size: 20px;
	}

	.services__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.services__card {
		height: auto;
		aspect-ratio: 416 / 590;
		padding: 28px 16px;
	}

	.services__card-body {
		gap: 12px;
	}

	.services__card-title {
		font-size: 24px;
	}

	.services__card-excerpt {
		font-size: 18px;
	}

	.services__card-arrow {
		width: 32px;
		height: 32px;
	}
}

/* Portfolio */

.portfolio {
	background: var(--color-navy);
	color: var(--color-white);
	padding: 60px 20px;
}

.portfolio--light {
	background: var(--color-off-white);
	color: var(--color-black);
}

.portfolio--light .portfolio__nav-btn svg path {
	stroke: #1a2a5e;
}

.portfolio__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.portfolio__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.portfolio__label-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.portfolio__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.portfolio__label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.portfolio__heading-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.portfolio__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.portfolio__heading::first-letter {
	text-transform: uppercase;
}

.portfolio__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}

.portfolio__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 12px;
	padding: 16px 32px;
	background: var(--color-yellow);
	color: var(--color-black);
	font-family: var(--font-secondary);
	font-weight: 500;
	white-space: nowrap;
}

.portfolio__cta svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
}

.portfolio__slider {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.portfolio__grid {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.portfolio__grid::-webkit-scrollbar {
	display: none;
}

.portfolio__card {
	display: flex;
	flex: 0 0 300px;
	width: 300px;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding-bottom: 12px;
	background: #fff;
	scroll-snap-align: start;
}

.portfolio__card-title {
	margin: 0;
	padding: 0 12px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-align: center;
	color: #1a2a5e;
}

.portfolio__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.portfolio__nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: none;
	color: inherit;
	cursor: pointer;
}

.portfolio__nav-btn svg {
	width: 100%;
	height: 100%;
}

/* Compare slider (до / після) */

.compare-slider {
	width: 100%;
}

.compare-slider__frame {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 220px;
}

.compare-slider__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	user-select: none;
}

.compare-slider__before-wrap {
	position: absolute;
	inset: 0;
	clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0);
}

.compare-slider__label {
	position: absolute;
	bottom: 12px;
	z-index: 2;
	padding: 5px 12px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-black);
	pointer-events: none;
}

.compare-slider__label--before {
	left: 12px;
	background: rgba(255, 255, 255, 0.55);
}

.compare-slider__label--after {
	right: 12px;
	background: var(--color-white);
}

.compare-slider__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--compare-pos, 50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2px;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.9);
	cursor: ew-resize;
	touch-action: none;
}

.compare-slider__handle:focus-visible .compare-slider__grip {
	outline: 2px solid var(--color-yellow);
	outline-offset: 2px;
}

.compare-slider__grip {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-white);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
	.portfolio {
		padding: 120px 80px;
	}

	.portfolio__head {
		align-items: flex-end;
	}

	.portfolio__label-group {
		gap: 12px;
	}

	.portfolio__label {
		font-size: 18px;
	}

	.portfolio__heading-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 32px;
	}

	.portfolio__heading {
		flex-shrink: 0;
		max-width: 400px;
		font-size: 42px;
	}

	.portfolio__description {
		flex: 0 1 626px;
		max-width: 626px;
		font-size: 20px;
		text-align: right;
	}

	.portfolio__cta {
		width: auto;
	}

	.portfolio__grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 32px 16px;
		overflow: visible;
	}

	.portfolio__card {
		flex: initial;
		width: 100%;
		gap: 24px;
		padding-bottom: 24px;
	}

	.portfolio__card-title {
		font-size: 24px;
	}

	.compare-slider__frame {
		height: auto;
		aspect-ratio: 416 / 590;
	}

	.compare-slider__label {
		bottom: 22px;
		font-size: 11px;
		letter-spacing: 0.18em;
	}

	.portfolio__nav {
		display: none;
	}
}

/* Projects Hero */

.projects-hero {
	background: var(--color-off-white);
	padding: 60px 20px;
}

.projects-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.projects-hero__heading {
	margin: 0;
	display: flex;
	flex-direction: column;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.projects-hero__heading span::first-letter {
	text-transform: uppercase;
}

.projects-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"description description"
		"img1 img2"
		"img3 stat"
		"img3 badge";
	gap: 16px;
}

.projects-hero__col-a,
.projects-hero__col-b,
.projects-hero__row {
	display: contents;
}

.projects-hero__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.projects-hero__image--1 {
	grid-area: img1;
	aspect-ratio: 159.5 / 199;
}

.projects-hero__image--2 {
	grid-area: img2;
	aspect-ratio: 159.5 / 199;
}

.projects-hero__image--3 {
	grid-area: img3;
	height: 100%;
	aspect-ratio: auto;
}

.projects-hero__intro {
	display: contents;
}

.projects-hero__badge {
	grid-area: badge;
	display: block;
	align-self: end;
}

.projects-hero__badge-img {
	display: block;
	width: 100px;
	height: auto;
}

.projects-hero__description {
	grid-area: description;
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-black);
}

.projects-hero__stat {
	grid-area: stat;
	align-self: end;
	text-align: center;
}

.projects-hero__stat-value {
	margin: 0;
	font-size: 44px;
	letter-spacing: -0.5px;
	color: #1a2a5e;
	font-weight: 500;
}

.projects-hero__stat-label {
	margin: 0;
	font-size: 16px;
	color: var(--color-black);
}

@media (min-width: 1024px) {
	.projects-hero {
		padding: 80px;
	}

	.projects-hero__heading {
		font-size: 64px;
	}

	.projects-hero__grid {
		display: flex;
		flex-direction: row;
		align-items: stretch;
		gap: 24px;
	}

	.projects-hero__col-a,
	.projects-hero__col-b,
	.projects-hero__row,
	.projects-hero__intro {
		display: flex;
	}

	.projects-hero__col-a {
		flex-direction: column;
		flex: 1 1 0;
		min-width: 0;
		justify-content: space-between;
		gap: 24px;
	}

	.projects-hero__col-b {
		flex: 0 0 427px;
	}

	.projects-hero__row {
		flex-direction: row;
		align-items: flex-end;
		min-width: 0;
		gap: 24px;
	}

	.projects-hero__intro {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.projects-hero__image--1 {
		width: 400px;
		aspect-ratio: 400 / 276;
		flex-shrink: 0;
	}

	.projects-hero__image--2 {
		flex: 1 1 0;
		min-width: 0;
		aspect-ratio: 400 / 294;
	}

	.projects-hero__image--3 {
		height: 100%;
		aspect-ratio: auto;
	}

	.projects-hero__badge {
		align-self: auto;
	}

	.projects-hero__stat {
		width: 400px;
		align-self: auto;
		flex-shrink: 0;
	}

	.projects-hero__stat-value {
		font-size: 64px;
	}
}

/* Projects Gallery */

.projects-gallery {
	background: var(--color-white);
	padding: 60px 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
	overflow: hidden;
}

.projects-gallery__head {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.projects-gallery__heading {
	margin: 0;
	font-size: 28px;
	font-weight: 500;
	text-transform: lowercase;
}

.projects-gallery__heading::first-letter {
	text-transform: uppercase;
}

.projects-gallery__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-border);
}

.projects-gallery__row {
	width: 100%;
	padding: 0 20px;
}

.projects-gallery__track {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	width: 100%;
}

.projects-gallery__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 159.5 / 199;
	object-fit: cover;
}

.projects-gallery__image:nth-child(n + 7) {
	display: none;
}

@keyframes projects-gallery-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes projects-gallery-scroll-right {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
	.projects-gallery__track {
		animation: none;
	}
}

@media (min-width: 1024px) {
	.projects-gallery {
		padding: 100px 0;
	}

	.projects-gallery__heading {
		font-size: 42px;
	}

	.projects-gallery__description {
		font-size: 20px;
	}

	.projects-gallery__row {
		overflow: hidden;
		padding: 0;
	}

	.projects-gallery__track {
		display: flex;
		width: max-content;
		animation: projects-gallery-scroll-left 40s linear infinite;
	}

	.projects-gallery__track--right {
		animation-name: projects-gallery-scroll-right;
	}

	.projects-gallery__image {
		display: block;
		width: 375px;
		height: 265px;
		aspect-ratio: auto;
		flex-shrink: 0;
	}

	.projects-gallery__image:nth-child(n + 7) {
		display: block;
	}
}

/* Services Hero (Services page) */

.services-hero__head {
	background: var(--color-off-white);
	padding: 60px 20px 32px;
}

.services-hero__head-inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.services-hero__heading {
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.services-hero__heading::first-letter {
	text-transform: uppercase;
}

.services-hero__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-black);
}

.services-hero__row {
	background: var(--color-off-white);
	padding: 32px 20px 60px;
}

.services-hero__row-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.services-hero__row--reversed {
	background: var(--color-white);
}

.services-hero__media {
	width: 100%;
}

.services-hero__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 550 / 426;
	object-fit: cover;
}

.services-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
}

.services-hero__title {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 400;
	text-transform: lowercase;
}

.services-hero__title::first-letter {
	text-transform: uppercase;
}

.services-hero__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-black);
}

.services-hero__learn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #1a2a5e;
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	color: #1a2a5e;
	text-decoration: none;
}

.services-hero__learn-more span {
	text-transform: lowercase;
}

.services-hero__learn-more span::first-letter {
	text-transform: uppercase;
}

.services-hero__learn-more svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

.services-hero__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	width: 100%;
}

.services-hero__features--single {
	grid-template-columns: 1fr;
}

.services-hero__feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--color-white);
}

.services-hero__row--reversed .services-hero__feature {
	background: var(--color-off-white);
}

.services-hero__feature svg {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.services-hero__feature span {
	font-size: 16px;
	color: #061237;
}

.services-hero__cta {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--color-yellow);
	color: var(--color-black);
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	white-space: nowrap;
	text-decoration: none;
}

.services-hero__cta span {
	text-transform: lowercase;
}

.services-hero__cta span::first-letter {
	text-transform: uppercase;
}

.services-hero__cta svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.services-hero__head {
		padding: 80px 80px 0;
	}

	.services-hero__head-inner {
		max-width: 642px;
	}

	.services-hero__heading {
		font-size: 64px;
	}

	.services-hero__description {
		font-size: 20px;
	}

	.services-hero__row {
		padding: 80px;
	}

	.services-hero__row-inner {
		flex-direction: row;
		align-items: center;
		gap: 60px;
	}

	.services-hero__row--reversed .services-hero__row-inner {
		flex-direction: row-reverse;
	}

	.services-hero__media {
		flex: 0 0 550px;
	}

	.services-hero__image {
		height: 100%;
	}

	.services-hero__content {
		flex: 1 1 0;
		min-width: 0;
	}

	.services-hero__title {
		font-size: 32px;
	}

	.services-hero__text {
		font-size: 20px;
	}

	.services-hero__features {
		max-width: 376px;
	}

	.services-hero__features--single {
		grid-template-columns: 1fr 1fr;
	}
}

/* About */

.about {
	background: var(--color-off-white);
	color: var(--color-black);
	padding: 48px 20px;
}

.about__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/*
 * Мобільна версія показує інший порядок і склад блоків, ніж десктопна
 * (текст перед фото, без показників, без фото "image_3", фото 2+4 в парі).
 * Тому на мобільній `.about__col--*` "розчиняються" через display:contents,
 * а їх нащадки стають прямими flex-елементами `.about__grid` і керуються
 * через order/flex-basis. На десктопі колонки повертаються до нормального
 * display:flex і порядок/базис скидаються.
 */

.about__grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

.about__col {
	display: contents;
}

.about__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
	order: 1;
	flex: 0 0 100%;
}

.about__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
}

.about__label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.about__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	white-space: pre-line;
}

.about__image {
	display: block;
	width: 100%;
	min-width: 0;
	object-fit: cover;
}

.about__image--main {
	order: 3;
	flex: 0 0 100%;
	margin-top: 16px;
	aspect-ratio: 335 / 498;
}

.about__image--2 {
	order: 5;
	flex: 143 1 0;
	aspect-ratio: 143 / 220;
}

.about__image--3 {
	display: none;
}

.about__image--4 {
	order: 4;
	flex: 180 1 0;
	aspect-ratio: 180 / 220;
}

.about__stats {
	display: none;
	align-items: flex-start;
	gap: 24px;
	padding: 20px 0;
	border-top: 1px solid var(--color-border);
}

.about__stats-divider {
	align-self: center;
	width: 1px;
	height: 40px;
	background: var(--color-border);
	flex-shrink: 0;
}

.about__stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.about__stat-value {
	margin: 0;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 500;
	color: var(--color-navy);
}

.about__stat-label {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.about__text-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
	order: 2;
	flex: 0 0 100%;
}

.about__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	white-space: pre-line;
}

.about__cta {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 12px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--color-black);
	color: var(--color-black);
	font-family: var(--font-secondary);
	font-weight: 500;
	white-space: nowrap;
}

.about__cta svg {
	width: 20px;
	height: 20px;
	transform: rotate(90deg);
}

.about__videos {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about__video {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 335 / 242;
}

.about__video-el {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--color-black);
}

.about__video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	pointer-events: none;
}

.about__video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}

.about__video-play svg {
	display: block;
	width: 100%;
	height: 100%;
}

.about__video.is-playing .about__video-overlay,
.about__video.is-playing .about__video-play {
	display: none;
}

@media (min-width: 1024px) {
	.about {
		padding: 120px 80px;
	}

	.about__grid {
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 32px;
	}

	.about__col {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.about__col--main {
		width: 483px;
		flex-shrink: 0;
		gap: 32px;
	}

	.about__col--secondary {
		width: 386px;
		flex-shrink: 0;
		gap: 24px;
		justify-content: flex-end;
	}

	.about__col--tertiary {
		width: 347px;
		flex-shrink: 0;
		gap: 32px;
		justify-content: flex-end;
	}

	.about__head {
		gap: 16px;
		order: 0;
		flex: initial;
	}

	.about__text-block {
		gap: 24px;
		order: 0;
		flex: initial;
	}

	.about__label {
		font-size: 20px;
	}

	.about__heading {
		font-size: 42px;
	}

	.about__image--main {
		order: 0;
		flex: initial;
		margin-top: 0;
		aspect-ratio: 447 / 665;
	}

	.about__image--2 {
		order: 0;
		flex: initial;
		aspect-ratio: 386 / 315;
	}

	.about__image--3 {
		display: block;
		aspect-ratio: 347 / 435;
	}

	.about__image--4 {
		order: 0;
		flex: initial;
		aspect-ratio: 347 / 360;
	}

	.about__stats {
		display: flex;
		gap: 40px;
		border-top: none;
	}

	.about__stats-divider {
		height: 53px;
	}

	.about__stat-value {
		font-size: 32px;
	}

	.about__stat-label {
		font-size: 16px;
	}

	.about__description {
		font-size: 20px;
	}

	.about__videos {
		flex-direction: row;
		gap: 32px;
	}

	.about__video {
		flex: 1 0 0;
		aspect-ratio: auto;
		height: 442px;
	}

	.about__video-play {
		width: 50px;
		height: 50px;
	}
}

/* Founder story */

.founder-story {
	background: var(--color-white);
	padding: 60px 20px;
}

.founder-story__inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.founder-story__heading {
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.founder-story__heading::first-letter {
	text-transform: uppercase;
}

.founder-story__row {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.founder-story__col {
	display: contents;
}

.founder-story__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.founder-story__image--main {
	order: 3;
	aspect-ratio: 335 / 366;
}

.founder-story__image--secondary {
	order: 1;
	width: 100%;
	aspect-ratio: 335 / 498;
}

.founder-story__body {
	display: contents;
}

.founder-story__description {
	order: 2;
}

.founder-story__description p {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-black);
}

.founder-story__description p + p {
	margin-top: 14px;
}

.founder-story__stats {
	order: 4;
	display: flex;
	flex-direction: row;
	gap: 12px;
	padding: 20px 16px;
	background: var(--color-off-white);
	clear: both;
}

.founder-story__stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0;
}

.founder-story__stat-value {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
	color: #1a2a5e;
}

.founder-story__stat-label {
	margin: 0;
	font-size: 14px;
	color: var(--color-black);
}

.founder-story__stats-divider {
	display: block;
	width: 1px;
	height: 53px;
	background: var(--color-border);
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.founder-story {
		padding: 80px;
	}

	.founder-story__inner {
		gap: 24px;
	}

	.founder-story__heading {
		font-size: 64px;
		max-width: 771px;
	}

	.founder-story__row {
		flex-direction: row;
		align-items: flex-start;
		gap: 32px;
	}

	.founder-story__image--main {
		order: 0;
		width: 536px;
		aspect-ratio: 536 / 444;
		flex-shrink: 0;
	}

	.founder-story__col {
		display: block;
		width: 710px;
	}

	.founder-story__image--secondary {
		order: 0;
		float: right;
		width: 364px;
		aspect-ratio: 364 / 296;
		margin: 0 0 20px 32px;
	}

	.founder-story__body {
		display: block;
	}

	.founder-story__description {
		order: 0;
	}

	.founder-story__description p {
		font-size: 20px;
	}

	.founder-story__description-intro {
		max-width: 295px;
	}

	.founder-story__stats {
		order: 0;
		align-items: center;
		justify-content: space-between;
		margin-top: 44px;
		padding: 20px;
	}
}

/* Why us */

.why-us {
	background: var(--color-white);
	color: var(--color-black);
	padding: 48px 20px;
}

.why-us__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.why-us__image {
	display: none;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1;
}

.why-us__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.why-us__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
}

.why-us__accordion {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.why-us__item-header {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	color: inherit;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
}

.why-us__item-number {
	flex-shrink: 0;
	width: 40px;
	font-size: 32px;
	line-height: 1;
	font-weight: 500;
	color: var(--color-navy);
}

.why-us__item-title {
	flex: 1 0 0;
	font-size: 18px;
	line-height: 1.3;
}

.why-us__item-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 16px;
}

.why-us__item-arrow svg {
	display: block;
	width: 16px;
	height: 32px;
	transform: rotate(90deg);
	transition: transform 0.25s ease;
}

.why-us__item.is-open .why-us__item-arrow svg {
	transform: rotate(-90deg);
}

.why-us__item-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.why-us__item.is-open .why-us__item-panel {
	grid-template-rows: 1fr;
}

.why-us__item-panel-inner {
	overflow: hidden;
	min-height: 0;
}

.why-us__item-description {
	margin: 0;
	padding-top: 11px;
	padding-left: 64px;
	font-size: 16px;
	line-height: 1.5;
	white-space: pre-line;
}

@media (min-width: 1024px) {
	.why-us {
		padding: 120px 80px;
	}

	.why-us__inner {
		flex-direction: row;
		align-items: stretch;
		gap: 60px;
	}

	.why-us__inner--reversed {
		flex-direction: row-reverse;
	}

	.why-us__image {
		display: block;
		width: 610px;
		flex-shrink: 0;
		height: auto;
		aspect-ratio: 610 / 611;
	}

	.why-us__content {
		flex: 1 0 0;
		justify-content: center;
	}

	.why-us__heading {
		font-size: 42px;
	}

	.why-us__item-title {
		font-size: 24px;
	}

	.why-us__item-description {
		font-size: 18px;
	}
}

/* How we work */

.how-we-work {
	background: var(--color-navy);
	color: var(--color-white);
	padding: 60px 20px;
}

.how-we-work__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.how-we-work__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.how-we-work__head-top {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.how-we-work__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.how-we-work__label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.how-we-work__heading-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.how-we-work__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.how-we-work__heading::first-letter {
	text-transform: uppercase;
}

.how-we-work__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}

.how-we-work__cta {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--color-yellow);
	color: var(--color-black);
	font-family: var(--font-secondary);
	font-weight: 500;
	font-size: 16px;
	white-space: nowrap;
}

.how-we-work__cta span {
	text-transform: lowercase;
}

.how-we-work__cta span::first-letter {
	text-transform: uppercase;
}

.how-we-work__cta svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

.how-we-work__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.how-we-work__step {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	background: rgba(239, 242, 241, 0.1);
	border: 1px solid rgba(239, 242, 241, 0.15);
	padding: 24px;
}

.how-we-work__step-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.how-we-work__step-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 400;
}

.how-we-work__step-description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}

.how-we-work__step-number {
	display: block;
	order: -1;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-yellow);
}

@media (min-width: 1024px) {
	.how-we-work {
		padding: 120px 80px;
	}

	.how-we-work__head {
		align-items: flex-end;
		gap: 24px;
	}

	.how-we-work__head-top {
		gap: 12px;
	}

	.how-we-work__label {
		font-size: 18px;
	}

	.how-we-work__heading-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
	}

	.how-we-work__heading {
		flex: 0 0 auto;
		font-size: 42px;
		white-space: nowrap;
	}

	.how-we-work__description {
		flex: 0 1 718px;
		max-width: 718px;
		text-align: right;
		font-size: 20px;
	}

	.how-we-work__cta {
		width: auto;
		justify-content: flex-start;
	}

	.how-we-work__list {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 10px 8px;
	}

	.how-we-work__step {
		height: 300px;
	}

	.how-we-work__step-body {
		gap: 12px;
	}

	.how-we-work__step-number {
		order: 0;
		font-size: 30px;
	}

	.how-we-work__step:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
	}

	.how-we-work__step:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.how-we-work__step:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
	}

	.how-we-work__step:nth-child(4) {
		grid-column: 3;
		grid-row: 2;
	}

	.how-we-work__step:nth-child(5) {
		grid-column: 4;
		grid-row: 2;
	}

	.how-we-work__step-title {
		font-size: 24px;
	}
}

/* Testimonials */

.testimonials {
	background: var(--color-off-white);
	padding: 60px 20px;
}

.testimonials__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.testimonials__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.testimonials__head-top {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.testimonials__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.testimonials__label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.testimonials__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.testimonials__heading::first-letter {
	text-transform: uppercase;
}

.testimonials__description {
	margin: 0;
	max-width: 784px;
	font-size: 16px;
	line-height: 1.4;
}

.testimonials__rating-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 16px;
	width: 100%;
}

.testimonials__tabs {
	display: flex;
	align-items: stretch;
	width: 100%;
	border: 1px solid #bebebe;
	border-radius: 4px;
	overflow: hidden;
}

.testimonials__tab {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-right: 1px solid #bebebe;
	font-family: var(--font-secondary);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--color-black);
	white-space: nowrap;
}

.testimonials__tab:last-child {
	border-right: 0;
}

.testimonials__tab.is-active {
	background: rgba(0, 0, 0, 0.04);
}

.testimonials__tab svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

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

.testimonials__rating-value {
	margin: 0;
	font-size: 36px;
	font-weight: 300;
	color: var(--color-border);
}

.testimonials__rating-details {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.testimonials__rating-stars {
	display: flex;
	gap: 3px;
}

.testimonials__rating-stars svg {
	width: 14px;
	height: 14px;
}

.testimonials__rating-label {
	margin: 0;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-border);
}

.testimonials__slider {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.testimonials__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.testimonials__list::-webkit-scrollbar {
	display: none;
}

.testimonials__card {
	display: flex;
	flex: 0 0 250px;
	width: 250px;
	flex-direction: column;
	justify-content: space-between;
	background: var(--color-off-white);
	border: 1px solid #1a2a5e;
	scroll-snap-align: start;
}

.testimonials__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.testimonials__nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: none;
	color: inherit;
	cursor: pointer;
}

.testimonials__nav-btn svg {
	width: 100%;
	height: 100%;
}

.testimonials__card-body {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px 24px;
}

.testimonials__card-stars {
	display: flex;
	gap: 4px;
}

.testimonials__card-star {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.08);
}

.testimonials__card-star.is-filled {
	background: var(--color-yellow);
}

.testimonials__card-star svg {
	width: 24px;
	height: 24px;
}

.testimonials__card-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: #131316;
}

.testimonials__card-footer {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 28px 24px;
	border-top: 1px solid #1a2a5e;
}

.testimonials__card-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1a2a5e;
	color: var(--color-white);
	font-family: var(--font-secondary);
	font-size: 16px;
}

.testimonials__card-name {
	font-size: 20px;
	color: #131316;
}

.testimonials__footer {
	margin: 24px 0 0;
	font-size: 15px;
	letter-spacing: -0.2px;
	color: var(--color-border);
}

.testimonials__footer-link {
	display: flex;
	width: max-content;
	margin-top: 8px;
	align-items: center;
	gap: 8px;
	padding-bottom: 3px;
	border-bottom: 1px solid rgba(90, 90, 90, 0.15);
	font-family: var(--font-secondary);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: var(--color-border);
	white-space: nowrap;
}

.testimonials__footer-link svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.testimonials {
		padding: 120px 80px;
	}

	.testimonials__label {
		font-size: 18px;
	}

	.testimonials__heading {
		font-size: 42px;
	}

	.testimonials__description {
		font-size: 20px;
	}

	.testimonials__head {
		gap: 24px;
	}

	.testimonials__rating-row {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		width: auto;
		gap: 20px;
	}

	.testimonials__tabs {
		width: auto;
	}

	.testimonials__tab {
		flex: none;
		justify-content: flex-start;
	}

	.testimonials__list {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
		overflow: visible;
	}

	.testimonials__card {
		flex: initial;
		width: 100%;
	}

	.testimonials__nav {
		display: none;
	}

	.testimonials__footer {
		margin-top: 0;
		text-align: right;
		font-size: 18px;
	}

	.testimonials__footer-link {
		display: inline-flex;
		width: auto;
		margin-top: 0;
	}
}

/* Locations */

.locations {
	background: var(--color-white);
	padding: 60px 20px;
}

.locations__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.locations__row {
	display: flex;
	flex-direction: column;
	gap: 26px;
	width: 100%;
}

.locations__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}

.locations__intro {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.locations__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.locations__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.locations__label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.locations__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.locations__heading::first-letter {
	text-transform: uppercase;
}

.locations__text {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.locations__text p {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-black);
}

.locations__select {
	position: relative;
	width: 100%;
}

.locations__select-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 12px;
	background: var(--color-white);
	border: 1px solid #1a2a5e;
	cursor: pointer;
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-black);
}

.locations__select-btn svg {
	flex-shrink: 0;
}

.locations__select-btn svg:first-child {
	width: 24px;
	height: 24px;
}

.locations__select-btn svg:last-child {
	width: 16px;
	height: 16px;
	margin-left: auto;
	transform: rotate(180deg);
	transition: transform 0.2s ease;
}

.locations__select.is-open .locations__select-btn svg:last-child {
	transform: rotate(0deg);
}

.locations__select-label {
	flex: 1;
	text-align: left;
	white-space: nowrap;
}

.locations__select-list {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 5;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: var(--color-white);
	border: 1px solid #1a2a5e;
	max-height: 240px;
	overflow-y: auto;
}

.locations__select-option {
	display: block;
	width: 100%;
	padding: 10px 16px;
	border: 0;
	background: none;
	text-align: left;
	font-family: var(--font-secondary);
	font-size: 14px;
	color: var(--color-black);
	cursor: pointer;
}

.locations__select-option:hover {
	background: var(--color-off-white);
}

.locations__media {
	width: 100%;
}

.locations__image {
	display: block;
	width: 100%;
	height: auto;
}

@media (min-width: 1024px) {
	.locations {
		padding: 120px 80px;
	}

	.locations__row {
		flex-direction: row;
		align-items: center;
		gap: 26px;
	}

	.locations__content {
		flex: 0 0 674px;
		width: 674px;
		gap: 24px;
	}

	.locations__intro {
		gap: 24px;
	}

	.locations__head {
		gap: 12px;
	}

	.locations__label {
		font-size: 18px;
	}

	.locations__heading {
		font-size: 42px;
	}

	.locations__text p {
		font-size: 20px;
	}

	.locations__select {
		width: auto;
	}

	.locations__select-btn {
		width: auto;
	}

	.locations__media {
		flex: 1 0 0;
	}
}

/* Contact CTA */

.contact-cta {
	background: var(--color-off-white);
	padding: 60px 20px;
}

.contact-cta__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-cta__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.contact-cta__head-text {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-cta__head--centered {
	align-items: center;
	text-align: center;
	width: 100%;
}

.contact-cta__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.contact-cta__label::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}

.contact-cta__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: lowercase;
}

.contact-cta__heading::first-letter {
	text-transform: uppercase;
}

.contact-cta__badges {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.contact-cta__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 24px;
	border: 1px solid #1a2a5e;
	font-family: var(--font-secondary);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.16px;
	text-transform: uppercase;
	color: #1a2a5e;
	text-decoration: none;
	white-space: nowrap;
}

.contact-cta__socials {
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-cta__social-link {
	display: flex;
}

.contact-cta__social-link img,
.contact-cta__social-link svg {
	width: 24px;
	height: 24px;
}

.contact-cta__row {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-cta__media {
	display: none;
	width: 100%;
}

.contact-cta__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.contact-cta__card {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 24px;
	background: var(--color-white);
	border-radius: 2px;
}

.contact-cta__form-head {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-cta__form-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.33;
	font-weight: 500;
	color: #111111;
}

.contact-cta__form-description {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #565656;
}

.contact-cta__notice {
	margin: 0;
	padding: 12px 16px;
	font-size: 14px;
	border-radius: 2px;
}

.contact-cta__notice--success {
	background: #e5f4ea;
	color: #1a7a3c;
}

.contact-cta__notice--error {
	background: #fbe7e7;
	color: #a3231f;
}

.contact-cta__form {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
}

.contact-cta__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.contact-cta__fields {
	display: flex;
	flex-direction: column;
	gap: 48px;
	width: 100%;
}

.contact-cta__form-row {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-cta__field {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	border-bottom: 1px solid #283d33;
}

.contact-cta__field svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.contact-cta__field input,
.contact-cta__field select,
.contact-cta__field textarea {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: none;
	font-family: var(--font-secondary);
	font-size: 16px;
	color: var(--color-black);
	padding: 0;
}

.contact-cta__field input::placeholder,
.contact-cta__field textarea::placeholder {
	color: #b0b0b0;
}

.contact-cta__field--select select {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.contact-cta__field--select select:invalid {
	color: #b0b0b0;
}

.contact-cta__field-control {
	position: relative;
	flex: 1;
	min-width: 0;
}

.contact-cta__field-control input,
.contact-cta__field-control select,
.contact-cta__field-control textarea {
	width: 100%;
}

.contact-cta__field-placeholder {
	position: absolute;
	left: 0;
	top: 50%;
	display: flex;
	align-items: center;
	gap: 4px;
	transform: translateY(-50%);
	font-size: 16px;
	color: #b0b0b0;
	pointer-events: none;
	white-space: nowrap;
}

.contact-cta__field-placeholder--top {
	top: 0;
	transform: none;
}

.contact-cta__required {
	color: #a3231f;
}

.contact-cta__field-control input:not(:placeholder-shown) ~ .contact-cta__field-placeholder,
.contact-cta__field-control input:focus ~ .contact-cta__field-placeholder,
.contact-cta__field-control textarea:not(:placeholder-shown) ~ .contact-cta__field-placeholder,
.contact-cta__field-control textarea:focus ~ .contact-cta__field-placeholder,
.contact-cta__field-control select:valid ~ .contact-cta__field-placeholder {
	display: none;
}

.contact-cta__field--textarea textarea {
	resize: vertical;
	min-height: 24px;
	font-family: inherit;
}

.contact-cta__submit {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	background: #d9d9d9;
	border: 0;
	cursor: pointer;
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	color: var(--color-black);
	white-space: nowrap;
}

.contact-cta__submit span {
	text-transform: lowercase;
}

.contact-cta__submit span::first-letter {
	text-transform: uppercase;
}

.contact-cta__submit svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.contact-cta {
		padding: 120px 80px;
	}

	.contact-cta__head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.contact-cta__head--centered {
		justify-content: center;
	}

	.contact-cta__label {
		font-size: 18px;
	}

	.contact-cta__heading {
		font-size: 42px;
	}

	.contact-cta__badges {
		flex-direction: row;
		align-items: center;
		width: auto;
	}

	.contact-cta__row {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
	}

	.contact-cta__media {
		display: block;
		flex: 1 0 0;
	}

	.contact-cta__image {
		height: 100%;
		aspect-ratio: auto;
	}

	.contact-cta__card {
		flex: 0 0 620px;
		width: 620px;
	}

	.contact-cta__form-row {
		flex-direction: row;
		gap: 24px;
	}

	.contact-cta__form-row .contact-cta__field {
		flex: 1 1 0;
		min-width: 0;
	}

	.contact-cta__submit {
		display: inline-flex;
		width: auto;
		align-self: flex-end;
	}
}

/* FAQ */

.faq {
	background: var(--color-off-white);
	padding: 60px 20px;
}

.faq__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.faq__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.faq__heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
}

.faq__mobile-photo img {
	display: block;
	width: 100%;
	aspect-ratio: 335 / 307;
	object-fit: cover;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq__item {
	display: flex;
	flex-direction: column;
	gap: 11px;
	background: #fff;
	padding: 16px 20px;
}

.faq__item-header {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	color: inherit;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
}

.faq__item-number {
	flex-shrink: 0;
	width: 40px;
	font-size: 32px;
	line-height: 1;
	font-weight: 500;
	color: var(--color-navy);
}

.faq__item-title {
	flex: 1 0 0;
	font-size: 18px;
	line-height: 1.3;
}

.faq__item-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 16px;
}

.faq__item-arrow svg {
	display: block;
	width: 16px;
	height: 32px;
	transform: rotate(90deg);
	transition: transform 0.25s ease;
}

.faq__item.is-open .faq__item-arrow svg {
	transform: rotate(-90deg);
}

.faq__item-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__item-panel {
	grid-template-rows: 1fr;
}

.faq__item-panel-inner {
	overflow: hidden;
	min-height: 0;
}

.faq__item-answer {
	margin: 0;
	padding-top: 11px;
	padding-left: 64px;
	font-size: 16px;
	line-height: 1.5;
	white-space: pre-line;
	color: var(--color-black);
}

.faq__image {
	display: none;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1;
}

.faq__gallery {
	display: none;
}

@media (min-width: 1024px) {
	.faq {
		padding: 120px 80px;
	}

	.faq__inner {
		flex-direction: row;
		align-items: flex-end;
		gap: 60px;
	}

	.faq__inner--gallery {
		align-items: flex-start;
	}

	.faq__mobile-photo {
		display: none;
	}

	.faq__content {
		flex: 1 0 0;
	}

	.faq__list {
		gap: 8px;
	}

	.faq__heading {
		font-size: 42px;
	}

	.faq__item-title {
		font-size: 24px;
	}

	.faq__media {
		display: block;
		flex-shrink: 0;
		align-self: stretch;
		width: 610px;
	}

	.faq__image {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.faq__gallery {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.faq__gallery-image {
		display: block;
		width: 100%;
		object-fit: cover;
	}

	.faq__gallery-image:nth-child(1) {
		aspect-ratio: 610 / 945;
	}

	.faq__gallery-image:nth-child(2) {
		aspect-ratio: 610 / 343;
	}

	.faq__gallery-image:nth-child(3) {
		aspect-ratio: 610 / 1157;
	}

	.faq__gallery-image:nth-child(4) {
		aspect-ratio: 610 / 950;
	}

	.faq__gallery-image:nth-child(5) {
		aspect-ratio: 610 / 888;
	}

	.faq__gallery-image:nth-child(6) {
		aspect-ratio: 610 / 971;
	}
}

/* Service Hero (сторінка окремої послуги) */

.service-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 40px 20px;
	color: var(--color-off-white);
	overflow: hidden;
}

.service-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.service-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 18, 55, 0.45) 0%, rgba(6, 18, 55, 0.6) 40%, rgba(6, 18, 55, 0.9) 100%);
}

.service-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.service-hero__heading {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.3;
}

.service-hero__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}

.service-hero__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.service-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	white-space: nowrap;
}

.service-hero__cta--primary {
	background: var(--color-yellow);
	color: var(--color-black);
}

.service-hero__cta--secondary {
	border: 2px solid var(--color-yellow);
	color: var(--color-yellow);
}

.service-hero__cta svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

.service-hero__stats {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 0;
}

.service-hero__stats-divider {
	display: block;
	width: 1px;
	height: 40px;
	background: rgba(245, 245, 245, 0.3);
	flex-shrink: 0;
}

.service-hero__stat-value {
	margin: 0 0 4px;
	font-family: var(--font-primary);
	font-size: 24px;
	color: var(--color-yellow);
}

.service-hero__stat-label {
	margin: 0;
	font-family: var(--font-secondary);
	font-size: 14px;
	white-space: nowrap;
}

@media (min-width: 1024px) {
	.service-hero {
		padding: 82px 80px;
	}

	.service-hero__inner {
		max-width: 823px;
	}

	.service-hero__heading {
		font-size: 64px;
	}

	.service-hero__description {
		font-size: 20px;
	}

	.service-hero__buttons {
		flex-direction: row;
		align-items: stretch;
		max-width: 483px;
	}

	.service-hero__cta {
		flex: 1 0 0;
	}

	.service-hero__stats {
		justify-content: space-between;
		max-width: 483px;
		gap: 20px;
	}

	.service-hero__stats-divider {
		height: 53px;
	}

	.service-hero__stat-value {
		font-size: 32px;
	}

	.service-hero__stat-label {
		font-size: 16px;
	}
}

/* Service Gallery (темна мозаїка фото робіт) */

.service-gallery {
	background: var(--color-navy);
	color: var(--color-off-white);
	padding: 60px 20px;
}

.service-gallery__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.service-gallery__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.service-gallery__label {
	margin: 0;
	font-size: 16px;
	position: relative;
	padding-left: 20px;
}

.service-gallery__label::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.service-gallery__head-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-gallery__heading {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}

.service-gallery__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}

.service-gallery__slider {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.service-gallery__grid {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.service-gallery__grid::-webkit-scrollbar {
	display: none;
}

.service-gallery__col-left,
.service-gallery__row {
	display: contents;
}

.service-gallery__thumb,
.service-gallery__wide,
.service-gallery__tall {
	position: relative;
	flex: 0 0 250px;
	width: 250px;
	height: 220px;
	margin: 0;
	scroll-snap-align: start;
}

.service-gallery__row .service-gallery__thumb:first-child {
	flex-basis: 300px;
	width: 300px;
}

.service-gallery__thumb img,
.service-gallery__wide img,
.service-gallery__tall img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-gallery__thumb-caption,
.service-gallery__wide figcaption,
.service-gallery__tall figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.88);
	color: #1a2a5e;
	font-size: 12px;
	line-height: 1.2;
	padding: 8px;
	margin: 0;
}

.service-gallery__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.service-gallery__nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: none;
	color: inherit;
	cursor: pointer;
}

.service-gallery__nav-btn svg {
	width: 100%;
	height: 100%;
}

@media (min-width: 1024px) {
	.service-gallery {
		padding: 120px 80px;
	}

	.service-gallery__head {
		gap: 12px;
	}

	.service-gallery__head-row {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 60px;
	}

	.service-gallery__heading {
		font-size: 42px;
		flex-shrink: 0;
	}

	.service-gallery__description {
		font-size: 20px;
		text-align: right;
		max-width: 500px;
	}

	.service-gallery__grid {
		flex-direction: row;
		gap: 16px;
		overflow-x: visible;
		scroll-snap-type: none;
	}

	.service-gallery__col-left {
		display: flex;
		flex-direction: column;
		gap: 16px;
		flex: 1 1 0;
		min-width: 0;
	}

	.service-gallery__row {
		display: flex;
		gap: 8px;
	}

	.service-gallery__thumb {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.service-gallery__row .service-gallery__thumb:first-child {
		flex-basis: 0;
		width: auto;
	}

	.service-gallery__wide {
		display: flex;
		flex-direction: column;
		flex: 1 1 0;
		min-height: 0;
		width: auto;
		height: auto;
	}

	.service-gallery__wide figcaption {
		position: static;
		background: var(--color-white);
		color: #1a2a5e;
		font-size: 14px;
		padding: 10px 12px;
	}

	.service-gallery__tall {
		display: flex;
		flex-direction: column;
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		height: auto;
		aspect-ratio: 632 / 673;
	}

	.service-gallery__tall img {
		position: static;
		width: 100%;
		flex: 1 1 0;
		min-height: 0;
		aspect-ratio: auto;
	}

	.service-gallery__tall figcaption {
		position: static;
		background: var(--color-white);
		color: #1a2a5e;
		font-size: 14px;
		padding: 10px 12px;
	}

	.service-gallery__wide img {
		flex: 1 1 0;
		min-height: 0;
		aspect-ratio: auto;
	}

	.service-gallery__nav {
		display: none;
	}
}

/* Service About Us (тизер компанії на сторінках послуг) */

.service-about {
	background: var(--color-off-white);
	padding: 60px 20px;
}

.service-about__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.service-about__label {
	margin: 0 0 12px;
	font-size: 16px;
	position: relative;
	padding-left: 20px;
}

.service-about__label::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.service-about__heading {
	margin: 0 0 24px;
	font-family: var(--font-primary);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}

.service-about__image-main {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 335 / 380;
	object-fit: cover;
	margin-bottom: 24px;
}

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

.service-about__stats-divider {
	display: block;
	width: 1px;
	height: 40px;
	background: var(--color-border);
	flex-shrink: 0;
}

.service-about__stat-value {
	margin: 0 0 4px;
	font-family: var(--font-primary);
	font-size: 24px;
	color: #1a2a5e;
}

.service-about__stat-label {
	margin: 0;
	font-family: var(--font-secondary);
	font-size: 14px;
	color: var(--color-black);
	white-space: nowrap;
}

.service-about__description {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-black);
}

.service-about__cta {
	display: inline-block;
	margin-bottom: 24px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-black);
	font-family: var(--font-secondary);
	font-weight: 500;
	font-size: 16px;
	color: var(--color-black);
	text-decoration: none;
}

.service-about__image-secondary {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 335 / 260;
	object-fit: cover;
}

.service-about__col--side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.service-about__image-side {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 335 / 300;
	object-fit: cover;
}

.service-about__image-side ~ .service-about__image-side {
	aspect-ratio: 335 / 340;
}

@media (min-width: 1024px) {
	.service-about {
		padding: 120px 80px;
	}

	.service-about__inner {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-end;
		gap: 32px;
	}

	.service-about__col {
		min-width: 0;
	}

	.service-about__col--main {
		flex: 1 1 483px;
	}

	.service-about__col--text {
		flex: 1 1 386px;
	}

	.service-about__col--side {
		display: flex;
		flex-direction: column;
		gap: 32px;
		flex: 1 1 347px;
	}

	.service-about__heading {
		font-size: 32px;
	}

	.service-about__image-main {
		aspect-ratio: 447 / 665;
	}

	.service-about__image-secondary {
		aspect-ratio: 386 / 315;
	}

	.service-about__image-side {
		aspect-ratio: 347 / 571;
	}

	.service-about__image-side ~ .service-about__image-side {
		aspect-ratio: 347 / 360;
	}

	.service-about__description {
		font-size: 20px;
	}

	.service-about__videos {
		width: 100%;
	}
}

/* What's Included */

.service-included {
	background: var(--color-white);
	padding: 60px 20px;
}

.service-included__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.service-included__head {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 32px;
}

.service-included__head-text {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-included__label {
	margin: 0;
	font-size: 16px;
	color: var(--color-black);
	position: relative;
	padding-left: 20px;
}

.service-included__label::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.service-included__heading {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-black);
}

.service-included__description {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-black);
}

.service-included__description-caps {
	text-transform: uppercase;
}

.service-included__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 8px;
}

.service-included__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	white-space: nowrap;
}

.service-included__cta--primary {
	background: var(--color-yellow);
	color: var(--color-black);
}

.service-included__cta--secondary {
	border: 2px solid #1a2a5e;
	color: #1a2a5e;
}

.service-included__cta svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

.service-included__grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.service-included__row {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.service-included__item {
	background: var(--color-off-white);
	padding: 16px;
}

.service-included__item-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.service-included__item-head svg {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.service-included__item-title {
	margin: 0;
	font-size: 18px;
	color: #061237;
}

.service-included__item-description {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #061237;
}

@media (min-width: 1024px) {
	.service-included {
		padding: 120px 80px;
	}

	.service-included__head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 32px;
	}

	.service-included__head-text {
		flex: 1 1 0;
		min-width: 0;
	}

	.service-included__heading {
		font-size: 42px;
		max-width: 711px;
	}

	.service-included__description {
		font-size: 20px;
		max-width: 626px;
	}

	.service-included__buttons {
		flex-direction: row;
		flex-shrink: 0;
		margin-top: 0;
	}

	.service-included__row {
		flex-direction: row;
	}

	.service-included__item {
		flex: 1 1 0;
		min-width: 0;
	}
}

/* Cost Estimator */

.service-estimator {
	background: var(--color-navy);
	color: var(--color-off-white);
	padding: 60px 20px;
}

.service-estimator__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.service-estimator__head {
	margin-bottom: 24px;
}

.service-estimator__label {
	margin: 0 0 12px;
	font-size: 16px;
	position: relative;
	padding-left: 20px;
}

.service-estimator__label::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.service-estimator__heading {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}

.service-estimator__group {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.service-estimator__group-title {
	margin: 0;
	font-size: 16px;
}

.service-estimator__options {
	display: flex;
	gap: 12px;
}

.service-estimator__option {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px;
	background: rgba(239, 242, 241, 0.1);
	border: 1px solid rgba(239, 242, 241, 0.15);
	color: var(--color-off-white);
	font-family: var(--font-primary);
	text-align: left;
	cursor: pointer;
}

.service-estimator__option.is-active {
	background: var(--color-yellow);
	color: rgba(0, 0, 0, 0.8);
}

.service-estimator__option-label {
	font-size: 14px;
	font-weight: 500;
}

.service-estimator__option-hint {
	font-size: 12px;
}

.service-estimator__result {
	background: var(--color-navy);
	border: 1px solid rgba(239, 242, 241, 0.2);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-estimator__result-title {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 22px;
	font-weight: 500;
}

.service-estimator__result-value {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 32px;
	font-weight: 500;
	color: var(--color-yellow);
}

.service-estimator__result-note {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(245, 245, 245, 0.7);
}

.service-estimator__cta {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--color-yellow);
	color: var(--color-black);
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	white-space: nowrap;
}

.service-estimator__cta svg {
	width: 24px;
	height: 24px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.service-estimator {
		padding: 120px 80px;
	}

	.service-estimator__inner {
		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
		gap: 60px;
	}

	.service-estimator__form {
		max-width: 578px;
	}

	.service-estimator__heading {
		font-size: 42px;
	}

	.service-estimator__result {
		max-width: 604px;
		flex: 1 1 0;
		justify-content: center;
		padding: 32px;
	}

	.service-estimator__result-title {
		font-size: 32px;
	}

	.service-estimator__result-value {
		font-size: 48px;
	}
}

/* Primary CTA buttons — hover (Figma: node 216:1500, Component 3 states Def/Active/hover) */

.header__cta,
.hero__button--primary,
.portfolio__cta,
.services-hero__cta,
.how-we-work__cta,
.service-hero__cta--primary,
.service-included__cta--primary,
.service-estimator__cta,
.contact-cta__submit {
	border: 1px solid transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header__cta:hover,
.hero__button--primary:hover,
.portfolio__cta:hover,
.services-hero__cta:hover,
.how-we-work__cta:hover,
.service-hero__cta--primary:hover,
.service-included__cta--primary:hover,
.service-estimator__cta:hover,
.contact-cta__submit:hover {
	background: var(--color-white);
	border-color: #1a2a5e;
	color: var(--color-black);
}
