/* ============================================================
   Echo Studio — style.css
   BEM methodology  |  Mobile-first responsive
   ============================================================ */

/* ==========  Fonts  ========== */
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf')
		format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* ==========  CSS Variables  ========== */
:root {
	--color-bg: #0b0e10;
	--color-bg-light: #141414;
	--color-bg-card: #1a1a1a;
	--color-white: #ffffff;
	--color-gray: #9ca3af;
	--color-gray-light: #cccccc;
	--color-gray-dark: #6b7280;
	--color-border: rgba(255, 255, 255, 0.15);

	--font-body:
		'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	--font-display:
		'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;

	--container-max: 1320px;
	--container-px: 12px;

	--transition: 0.3s ease;
}

/* ==========  Base / Reset  ========== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-white);
	background-color: var(--color-bg);
}

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

ul,
ol {
	list-style: none;
}

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

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
	color: inherit;
}

/* ==========  Layout  ========== */
.wrapper {
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-px);
}

/* ==========  Placeholder images  ========== */
.placeholder-img {
	background-color: var(--color-bg-card);
	background-image:
		linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
		linear-gradient(225deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
		linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
		linear-gradient(315deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
	background-size: 20px 20px;
	background-position:
		10px 0,
		10px 0,
		0 0,
		0 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 16px 0;
	transition: background-color var(--transition);
}

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

.header__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.header__logo-text {
	font-family: var(--font-body);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--color-white);
}

.header__nav {
	display: none;
	padding: 8px;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(153, 153, 153, 0.15) 100%
	);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(242, 242, 242, 0.1);
	border-radius: 32px;
}

.header__nav-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 48px;
}

.header__nav-link {
	display: block;
	padding: 6px 12px;
	font-family: 'Be Vietnam Pro', var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4285714285714286;
	color: rgba(255, 255, 255, 0.7);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(153, 153, 153, 0.1) 100%
	);
	border-radius: 24px;
	transition:
		color var(--transition),
		background-color var(--transition);
}

.header__nav-link:hover {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
}

.header__nav-link--active {
	padding: 8px 12px;
	color: rgba(255, 255, 255, 0.9);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(153, 153, 153, 0.2) 100%
	);
	border: 1px solid rgba(242, 242, 242, 0.05);
}

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

.header__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 6px 4px 12px;
	font-family: 'Be Vietnam Pro', var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--color-white);
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(153, 153, 153, 0.15) 100%
	);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(242, 242, 242, 0.1);
	border-radius: 32px;
	transition:
		background-color var(--transition),
		border-color var(--transition);
	white-space: nowrap;
}

.header__btn:hover {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
}

.header__btn-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(153, 153, 153, 0.2) 100%
	);
	border: 1px solid rgba(242, 242, 242, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.header__btn-icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
}

.header__burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.header__burger-line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-white);
	border-radius: 2px;
	transition:
		transform var(--transition),
		opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */

a[href*='unicorn.studio?utm_source=public-url'] {
	display: none !important;
}

.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0%;
	z-index: 1;
	pointer-events: none;
	background: var(--color-bg);
	width: 100%;
	height: 80px;
}

.hero__scene {
	width: 100%;
	height: 100vh;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
	padding: 80px 0;
}

.stats__layout {
	position: relative;
}

.stats__desc {
	font-size: 16px;
	line-height: 132%;
	color: transparent;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	max-width: 90%;
	margin-bottom: 32px;
}

.stats__title {
	font-family: var(--font-display);
	font-size: clamp(28px, 5vw, 64px);
	font-weight: 400;
	line-height: 44px;
	color: var(--color-white);
	margin-bottom: 32px;
	white-space: nowrap;
	text-align: end;
}

.stats__title em {
	font-style: italic;
}

.stats__nav-btn {
	position: absolute;
	top: 23%;
	left: -3%;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(242, 242, 242, 0.05);
	background: linear-gradient(
		219deg,
		rgba(255, 255, 255, 0.2) 7%,
		rgba(153, 153, 153, 0.1) 89%
	);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	z-index: 5;
	margin-bottom: 0;
}

.stats__nav-btn:hover {
	border-color: rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.06);
}

.stats__nav-btn svg {
	width: 16px;
	height: 16px;
	color: var(--color-white);
}

.stats__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 12px;
	align-items: start;
}

.stats__card {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.stats__card:nth-child(1) {
	height: 272px;
}
.stats__card:nth-child(2) {
	height: 340px;
	margin-top: 28px;
}
.stats__card:nth-child(3) {
	height: 340px;
	margin-top: -68px;
}
.stats__card:nth-child(4) {
	height: 272px;
	margin-top: 28px;
}

.stats__card-bg {
	position: absolute;
	inset: 0;
	border-radius: 28px;
	overflow: hidden;
}

.stats__card-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(11, 14, 16, 0.18) 0%,
		rgba(11, 14, 16, 0.08) 40%,
		rgba(11, 14, 16, 0) 100%
	);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	-webkit-mask-image: linear-gradient(
		180deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 1) 60%,
		rgba(0, 0, 0, 0) 100%
	);
	mask-image: linear-gradient(
		180deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 1) 60%,
		rgba(0, 0, 0, 0) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.stats__card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(153, 153, 153, 0.3) 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: 5;
}

.stats__card-bg .placeholder-img {
	width: 100%;
	height: 100%;
}

.stats__card-img,
.stats__card-img picture {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
}

.stats__card-img {
	z-index: 0;
}

.stats__card-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.stats__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		rgba(11, 14, 16, 0) 0%,
		rgba(11, 14, 16, 0) 45%,
		rgba(11, 14, 16, 1) 100%
	);
	z-index: 2;
}

.stats__card-content {
	position: absolute;
	z-index: 3;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: calc(100% - 16px);
}

.stats__card:nth-child(1) .stats__card-content {
	top: 22%;
}
.stats__card:nth-child(2) .stats__card-content {
	top: 26%;
}
.stats__card:nth-child(3) .stats__card-content {
	top: 30%;
}
.stats__card:nth-child(4) .stats__card-content {
	top: 22%;
}

.stats__card-number {
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 2px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 1) 78%,
		rgba(255, 255, 255, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stats__card-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.01em;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 1) 78%,
		rgba(255, 255, 255, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stats__tagline {
	text-align: start;
	padding: 32px 0 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(184, 215, 230, 1) 45%,
		rgba(97, 113, 121, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stats__tagline-main {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(22px, 4vw, 48px);
	font-weight: 400;
	line-height: 28px;
}

.stats__tagline-sub {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(22px, 4vw, 48px);
	font-weight: 400;
	line-height: 28px;
	font-style: italic;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.services__title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.5vw, 48px);
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.02em;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(184, 215, 230, 1) 45%,
		rgba(97, 113, 121, 0) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: end;
}

.services__watermark {
	position: absolute;
	top: 8%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	font-family: var(--font-display);
	font-size: clamp(166px, 16vw, 240px);
	font-weight: 600;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06) 0%,
		rgba(255, 255, 255, 0.04) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: blur(4px);
	opacity: 0.8;
}

.services__watermark-item {
	opacity: 0;
	transition: opacity 0.35s ease;
	display: none;
	flex: 0 0 auto;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(184, 215, 230, 1) 10%,
		rgba(97, 113, 121, 0) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.services__watermark-item--active {
	display: block;
	opacity: 1;
}

.services__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.services__item {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 12px;
}

.services__item:nth-child(even) {
	text-align: end;
}

.services__item-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 16px;
}

.services__item-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.services__item-list li {
	font-size: 16px;
	color: var(--color-gray);
	line-height: 18.71px;
}

.services__layout {
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
	z-index: 1;
}

.services__content {
	position: relative;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.portfolio .container {
	padding: 0;
}

.portfolio__shadow {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(6, 10, 14, 0.25) 0%,
		rgba(6, 10, 14, 0.5) 45%,
		rgba(6, 10, 14, 0.25) 100%
	);
	mix-blend-mode: multiply;
	opacity: 0.7;
	filter: blur(150px);
	pointer-events: none;
	z-index: 2;
}

.portfolio__title {
	font-family: var(--font-display);
	font-size: clamp(28px, 8vw, 92px);
	font-weight: 400;
	line-height: 44px;
	letter-spacing: -0.02em;
	color: var(--color-white);
	margin-bottom: 32px;
	position: relative;
	z-index: 2;
	text-transform: uppercase;
	padding: 0 var(--container-px);
}

.portfolio__title em {
	font-style: italic;
	font-weight: 300;
}

.portfolio__title--anim,
.portfolio__card-img--anim,
.portfolio__card-info--anim {
	will-change: transform, opacity, filter;
	backface-visibility: hidden;
}

.portfolio--anim-ready .portfolio__title--anim,
.portfolio--anim-ready .portfolio__card-img--anim,
.portfolio--anim-ready .portfolio__card-info--anim {
	opacity: 0;
}

.portfolio--anim-ready .portfolio__title--anim {
	transform: translate3d(0, 28px, 0);
	filter: blur(4px);
}

.portfolio--anim-ready .portfolio__card-img--anim {
	transform: translate3d(0, 34px, 0) scale(0.985);
	filter: blur(5px);
}

.portfolio--anim-ready .portfolio__card-info--anim {
	transform: translate3d(0, 24px, 0);
	filter: blur(4px);
}

@media (prefers-reduced-motion: reduce) {
	.portfolio--anim-ready .portfolio__title--anim,
	.portfolio--anim-ready .portfolio__card-img--anim,
	.portfolio--anim-ready .portfolio__card-info--anim {
		opacity: 1;
		transform: none;
		filter: none;
	}
}

.portfolio__grid {
	position: relative;
	z-index: 1;
}

.portfolio__slider {
	position: relative;
	z-index: 1;
	overflow: visible;
}

.portfolio__grid.swiper-wrapper {
	display: flex;
	gap: 0;
}

.portfolio__card {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.portfolio__card.swiper-slide {
	width: min(320px, calc(100vw - (var(--container-px) * 2) - 24px));
	filter: blur(3px);
	opacity: 0.58;
	transform: scale(0.94);
	transform-origin: center center;
	transition:
		filter 0.45s ease,
		opacity 0.45s ease,
		transform 0.45s ease;
}

.portfolio__card.swiper-slide.swiper-slide-active {
	filter: blur(0);
	opacity: 1;
	transform: scale(1);
}

.portfolio__controls {
	position: absolute;
	top: clamp(134px, 35vw, 168px);
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	padding: 0 6px;
	pointer-events: none;
}

.portfolio__nav-btn {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.95);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.14) 0%,
		rgba(130, 136, 145, 0.16) 100%
	);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 14px 30px rgba(5, 8, 12, 0.45);
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
	pointer-events: auto;
}

.portfolio__nav-btn:hover {
	transform: scale(1.04);
	opacity: 0.9;
}

.portfolio__nav-btn svg {
	width: 24px;
	height: 24px;
}

.portfolio__card-img {
	position: relative;
	border-radius: 40px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 320 / 398;
	border: 1px solid transparent;
	background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box;
}

.portfolio__card-img::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(153, 153, 153, 0.3) 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

.portfolio__card-img .placeholder-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.portfolio__card-img-inner,
.portfolio__card-img-inner picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.portfolio__card-img-inner img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.portfolio__card-info {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 20px 20px 0;
}

.portfolio__card-name + .portfolio__card-category {
	margin-top: 5px;
}

.portfolio__card-category + .portfolio__card-desc {
	margin-top: 20px;
}

.portfolio__card-name {
	font-family: 'Montserrat', var(--font-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2189999686;
	color: var(--color-white);
}

.portfolio__card-category {
	font-family: 'Montserrat', var(--font-display);
	font-size: 18px;
	font-weight: 200;
	line-height: 1.2189999686;
	color: var(--color-white);
}

.portfolio__card-desc {
	font-family: 'Montserrat', var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2189999819;
	color: rgba(255, 255, 255, 0.5);
	max-width: 267px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
	padding: 80px 0 0;
}

.footer .container {
	padding: 0 var(--container-px);
}

.footer__card {
	padding: 60px 0;
	position: relative;
}

.footer__top {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.footer__title {
	font-family: var(--font-display);
	font-size: clamp(20px, 5vw, 48px);
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.06em;
	font-style: normal;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(184, 215, 230, 1) 45%,
		rgba(97, 113, 121, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 6px 4px 12px;
	font-family: 'Be Vietnam Pro', var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--color-white);
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(153, 153, 153, 0.15) 100%
	);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(242, 242, 242, 0.1);
	border-radius: 32px;
	transition:
		background-color var(--transition),
		border-color var(--transition);
	white-space: nowrap;
}

.footer__btn:hover {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
}

.footer__btn-arrow {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.footer__btn-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 40px;
}

.footer__desc {
	font-size: 20px;
	line-height: 100%;
	color: #ffffff80;
}

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

.footer__services li {
	font-size: 20px;
	line-height: 100%;
	color: #ffffff80;
}

.footer__label {
	font-size: 20px;
	line-height: 100%;
	color: #ffffff80;
	margin-bottom: 4px;
}

.footer__address {
	font-size: 20px;
	line-height: 100%;
	color: #ffffff80;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 28px 0; */
	/* border-top: 1px solid rgba(255, 255, 255, 0.06); */
}

.footer__contact-link {
	position: relative;
	font-size: 22px;
	font-weight: 400;
	line-height: 100%;
	padding-bottom: 4px;
	transition: opacity var(--transition);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration: none;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer__contact-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.4) 0%,
		rgba(255, 255, 255, 0.2) 100%
	);
}

.footer__contact-link:hover {
	opacity: 0.7;
}

/* ============================================================
   MODAL
   ============================================================ */
.get-started-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
	pointer-events: none;
}

.get-started-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(11, 14, 16, 0.94);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
}

.get-started-modal__panel {
	position: absolute;
	left: 14px;
	right: 14px;
	top: 0;
	height: 100dvh;
	transform: translate3d(0, 36px, 0) scale(0.98);
	overflow: auto;
	padding: 77px 0 24px;
	background: #0b0e10;
	opacity: 0;
}

.get-started-modal__close {
	position: absolute;
	top: 14px;
	right: 0;
	z-index: 4;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.get-started-modal__close svg {
	width: 25px;
	height: 25px;
	color: rgba(255, 255, 255, 0.78);
}

.get-started-modal__head {
	width: min(319px, 100%);
	margin: 0 auto 32px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 0 14px;
}

.get-started-modal__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 42px;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: -2%;
	text-transform: uppercase;
	background: linear-gradient(
		182.96deg,
		rgba(255, 255, 255, 0.9) 2.46%,
		#b8d7e6 45.66%,
		rgba(97, 113, 121, 0) 109.42%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.get-started-modal__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.get-started-modal__subtitle {
	margin-top: 0;
	max-width: 313px;
	font-family: 'Montserrat', sans-serif;
	font-size: 20.3px;
	font-weight: 400;
	line-height: 132%;
	background: linear-gradient(
		176.67deg,
		#ffffff 2.75%,
		rgba(255, 255, 255, 0) 117.51%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.get-started-modal__call-label {
	margin-top: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 20.3px;
	font-weight: 400;
	line-height: 132%;
	background: linear-gradient(
		176.67deg,
		#ffffff 2.75%,
		rgba(255, 255, 255, 0) 117.51%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.get-started-modal__call-link {
	display: inline-block;
	margin-top: 2px;
	font-family: 'Montserrat', sans-serif;
	font-size: 20.3px;
	font-weight: 300;
	line-height: 132%;
	color: rgba(255, 255, 255, 0.57);
	text-decoration: none;
}

.get-started-modal__form {
	display: grid;
	gap: 32px;
	width: min(347px, 100%);
	margin: 0 auto;
	padding: 40px 32px;
	border-radius: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.03) 0%,
		rgba(255, 255, 255, 0.01) 100%
	);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.get-started-modal__fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.get-started-modal__field {
	display: flex;
	gap: 6px;
	flex-direction: column;
	flex: 1;
}

.get-started-modal__field--message {
	position: relative;
}

.get-started-modal__label {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 30px;
	color: #ffffff;
}

.get-started-modal__input,
.get-started-modal__textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 40px;
	background: rgba(217, 217, 217, 0.01);
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 100%;
	padding: 0 26px;
	outline: none;
	transition:
		border-color 0.25s ease,
		background-color 0.25s ease,
		box-shadow 0.25s ease;
}

.get-started-modal__input {
	height: 46.35px;
}

.get-started-modal__input::placeholder,
.get-started-modal__textarea::placeholder {
	color: rgba(255, 255, 255, 0.57);
}

.get-started-modal__input:focus,
.get-started-modal__textarea:focus {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(217, 217, 217, 0.02);
	box-shadow: none;
}

.get-started-modal__input._error,
.get-started-modal__textarea._error {
	border-color: #ff0000;
}

.get-started-modal__textarea {
	height: 280px;
	min-height: 280px;
	padding: 24px 13px 74px;
	resize: none;
}

.get-started-modal__submit {
	position: absolute;
	right: 16px;
	bottom: 16px;
	margin-top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 165px;
	height: 48px;
	min-height: 48px;
	padding: 6px 6px 6px 12px;
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #ffffff;
	border: 1px solid rgba(242, 242, 242, 0.1);
	border-radius: 32px;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(153, 153, 153, 0.15) 100%
	);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	z-index: 2;
}

.get-started-modal__submit-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(153, 153, 153, 0.2) 100%
	);
	border: 1px solid rgba(242, 242, 242, 0.05);
}

.get-started-modal__submit-icon {
	width: 14px;
	height: 14px;
	color: rgba(243, 248, 255, 0.96);
}

body.modal-open {
	overflow: hidden;
	touch-action: none;
}

/* ============================================================
   RESPONSIVE — Tablet (600px+)
   ============================================================ */
@media (min-width: 600px) {
	:root {
		--container-px: 32px;
	}

	/* Header */
	.header .container {
		padding: 0 24px;
	}

	.header__nav {
		display: block;
		justify-self: center;
		padding: 4px 6px;
	}

	.header__nav-list {
		gap: 12px;
	}

	/* Stats */
	.stats .container {
		position: relative;
	}

	.stats__layout {
		padding-top: 92px;
	}

	.stats__desc {
		position: absolute;
		top: 8%;
		left: 0;
		max-width: 248px;
		margin-bottom: 0;
		font-size: 20px;
		line-height: 1.3;
		z-index: 2;
	}

	.stats__title {
		position: absolute;
		top: -4%;
		right: 0;
		font-size: clamp(54px, 6vw, 64px);
		line-height: 1.06;
		margin-bottom: 0;
		z-index: 3;
	}

	.stats__nav-btn {
		top: 20%;
		left: 2%;
		width: 74px;
		height: 74px;
	}

	.stats__nav-btn svg {
		width: 40px;
		height: 40px;
	}

	.stats__cards {
		column-gap: 24px;
		justify-content: center;
		align-items: start;
	}

	.stats__card {
		border-radius: 40px;
	}

	.stats__card-bg {
		border-radius: 40px;
	}

	.stats__card:nth-child(1) {
		height: 332px;
		margin-top: 160px;
	}

	.stats__card:nth-child(2) {
		height: 434px;
		margin-top: 0;
	}

	.stats__card:nth-child(3) {
		height: 434px;
		margin-top: 20px;
	}

	.stats__card:nth-child(4) {
		height: 332px;
		margin-top: -38px;
	}

	.stats__card-content {
		width: calc(100% - 20px);
	}

	.stats__card:nth-child(1) .stats__card-content {
		top: 24%;
	}

	.stats__card:nth-child(2) .stats__card-content {
		top: 18%;
	}

	.stats__card:nth-child(3) .stats__card-content {
		top: 22%;
	}

	.stats__card:nth-child(4) .stats__card-content {
		top: 24%;
	}

	.stats__card-number {
		font-size: 64px;
		line-height: 1.08;
		letter-spacing: -0.02em;
	}

	.stats__card-text {
		font-size: 18px;
		line-height: 1.12;
		letter-spacing: -0.02em;
	}

	.stats__tagline {
		position: absolute;
		bottom: 0;
		right: var(--container-px);
		text-align: end;
		width: 40%;
	}

	.stats__tagline-main,
	.stats__tagline-sub {
		font-size: 34px;
		line-height: 36px;
	}

	/* Services */
	.services {
		padding: 0;
	}

	.services__layout {
		gap: 24px;
	}

	.services__grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		justify-content: center;
		align-items: start;
	}

	.services__title {
		text-align: start;
		font-size: 34px;
		line-height: 36px;
	}

	.services__item {
		position: relative;
		border-top: none;
		padding-top: 12px;
	}

	.services__item:nth-child(even) {
		text-align: start;
	}

	.services__item:nth-child(odd)::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: calc(200% + 24px);
		height: 1px;
		background: rgba(255, 255, 255, 0.12);
	}

	.services__watermark {
		top: 65%;
	}

	/* Portfolio */
	.portfolio {
		padding: 96px 0;
	}

	.portfolio__grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 72px;
	}

	.portfolio__title {
		margin-bottom: 65px;
		font-size: 54px;
		line-height: 60px;
	}

	.portfolio__slider {
		padding: 0 var(--container-px) !important;
	}

	.portfolio__controls {
		display: none;
	}

	.portfolio__grid.swiper-wrapper {
		display: grid;
		transform: none !important;
		transition: none !important;
		gap: 32px;
	}

	.portfolio__card.swiper-slide {
		width: 100% !important;
		margin-right: 0 !important;
		filter: none;
		opacity: 1;
		transform: none;
		display: flex;
		flex-direction: row;
		gap: 48px;
	}

	.portfolio__card.swiper-slide:nth-child(even) {
		flex-direction: row-reverse;
	}

	.portfolio__card-img {
		width: 100%;
		max-width: 320px;
		height: auto;
		aspect-ratio: 320 / 398;
		justify-self: start;
	}

	.portfolio__card-info {
		width: 100%;
		max-width: 267px;
		flex: initial;
		justify-self: start;
		text-align: left;
		padding: 60px 0 0;
	}

	/* Footer */
	.footer__title {
		font-size: 40px;
		line-height: 45px;
		letter-spacing: 0;
	}

	.footer__top {
		margin-bottom: 50px;
	}

	.footer__grid {
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 50px;
	}

	.footer__services {
		text-align: end;
	}

	/* ============================================================
   MODAL
   ============================================================ */
	.get-started-modal__panel {
		padding: 77px 32px 24px;
	}

	.get-started-modal__head {
		margin: 0 0 32px;
		width: 100%;
	}

	.get-started-modal__title {
		font-size: 50px;
		line-height: 54px;
	}

	.get-started-modal__content {
		flex-direction: row;
		gap: 20px;
	}

	.get-started-modal__form {
		width: 100%;
	}

	.get-started-modal__fields:first-child {
		flex-direction: row;
	}

	.get-started-modal__textarea {
		height: 180px;
		min-height: 180px;
	}
}

/* ============================================================
   RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
	:root {
		--container-px: 64px;
	}

	/* Header */
	.header .container {
		padding: 0 64px;
	}

	.header__btn {
		padding: 8px 12px 8px 24px;
	}

	.header__nav {
		padding: 8px 12px;
	}

	.header__nav-link {
		padding: 8px 12px;
	}

	.header__nav-list {
		gap: 48px;
	}

	/* Stats */
	.stats__title {
		top: 0;
		font-size: 64px;
		line-height: 70px;
	}

	.stats__desc {
		top: 2%;
	}

	.stats__cards {
		grid-template-columns: repeat(4, 1fr);
		gap: 32px;
		justify-content: center;
		align-items: start;
	}

	.stats__card {
		padding: 32px 24px;
		border-radius: 40px;
	}

	.stats__card-bg {
		border-radius: 40px;
	}

	.stats__card:nth-child(1) {
		max-width: 259px;
		height: 343px;
		margin-top: 187px;
	}

	.stats__card:nth-child(2) {
		max-width: 301px;
		height: 473px;
		margin-top: 61px;
	}

	.stats__card:nth-child(3) {
		max-width: 320px;
		height: 500px;
		margin-top: 0;
	}

	.stats__card:nth-child(4) {
		max-width: 259px;
		height: 343px;
		margin-top: 259px;
	}

	.stats__card-content {
		width: auto;
	}

	.stats__card:nth-child(1) .stats__card-content {
		top: 32px;
		max-width: 251px;
		min-width: 126px;
	}

	.stats__card:nth-child(2) .stats__card-content {
		top: 82px;
		max-width: 251px;
		min-width: 126px;
	}

	.stats__card:nth-child(3) .stats__card-content {
		top: 116px;
		max-width: 251px;
		min-width: 126px;
	}

	.stats__card:nth-child(4) .stats__card-content {
		top: 32px;
		max-width: 174px;
		min-width: 134px;
	}

	.stats__card-number {
		font-size: 72px;
		line-height: 88px;
		letter-spacing: -2%;
		margin-bottom: 0;
	}

	.stats__card-text {
		font-size: 24px;
		font-weight: 400;
		line-height: 28px;
		letter-spacing: -2%;
		margin-top: 8px;
	}

	.stats__tagline {
		position: relative;
		width: 100%;
		padding: 0;
		right: 0;
		text-align: center;
	}

	.stats__tagline-main,
	.stats__tagline-sub {
		font-size: 50px;
		line-height: 54px;
		letter-spacing: -2%;
	}

	/* Services */
	.services {
		padding: 80px 0;
	}

	.services__layout {
		flex-direction: row;
		justify-content: space-between;
	}

	.services__title {
		font-size: 50px;
		line-height: 54px;
		letter-spacing: -2%;
	}

	.services__item-title {
		font-size: 18px;
		line-height: 18.71px;
		letter-spacing: -1%;
		margin-bottom: 20px;
	}

	.services__grid {
		row-gap: 54px;
	}

	.services__watermark {
		top: 56%;
	}

	/* Portfolio */
	.portfolio__title {
		font-size: 64px;
		line-height: 70px;
	}

	.portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.portfolio__card.swiper-slide {
		flex-direction: row !important;
	}

	.portfolio__card.swiper-slide:nth-child(4n - 1),
	.portfolio__card.swiper-slide:nth-child(4n) {
		flex-direction: row-reverse !important;
	}

	.portfolio__card.swiper-slide {
		gap: 15px;
	}

	.portfolio__card-info {
		padding: 0;
	}

	.portfolio__grid.swiper-wrapper {
		column-gap: 64px;
		row-gap: 32px;
	}

	/* Footer */
	.footer__btn {
		padding: 8px 12px 8px 24px;
	}

	.footer__title {
		font-size: 50px;
		line-height: 54px;
		letter-spacing: 0;
	}

	.footer__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer__services {
		text-align: center;
	}

	/* ============================================================
   MODAL
   ============================================================ */

	.get-started-modal__wrapper {
		display: flex;
	}

	.get-started-modal__head {
		gap: 44px;
		padding: 0;
	}

	.get-started-modal__content {
		flex-direction: column;
		gap: 44px;
	}

	.get-started-modal__panel {
		padding: 140px 32px 24px;
	}
}
