:root {
	--bg-1: #0a0c14;
	--bg-2: #0f1219;
	--bg-3: #161a26;
	--bg-4: #1d2231;
	--text-1: #fff;
	--text-2: #a8aebb;
	--text-3: #5d6377;
	--accent-blue: #1c5cff;
	--accent-pink: #ff13a5;
	--accent-purple: #7b3cff;
	--accent-green: #00c853;
	--accent-orange: #ff7a00;
	--accent-cyan: #19d8d0;
	--border-1: rgba(255, 255, 255, 0.06);
	--border-2: rgba(255, 255, 255, 0.1);
	--border-3: rgba(255, 255, 255, 0.18);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	background: var(--bg-1);
	color: #fff;
	-webkit-font-smoothing: antialiased;

	overflow-x: hidden;
	max-width: 100vw;
}
body {
	word-break: break-word;
	overflow-wrap: break-word;
	font-family: "Onest", sans-serif;
	font-weight: 200;
	line-height: 1.55;
	background: var(--bg-1);
	overflow-x: hidden;
	cursor: none;
	min-height: 100vh;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: none;
}
::selection {
	background: var(--accent-pink);
	color: #fff;
}
h1 {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	font-size: clamp(28px, 5vw, 56px);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: manual;
}
.h-1 {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	font-size: clamp(28px, 5vw, 56px);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: manual;
}
.h-2 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	font-size: clamp(22px, 4vw, 48px);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: manual;
}
.h-3 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	font-size: clamp(22px, 2.4vw, 38px);
	overflow-wrap: normal;
	word-break: normal;
}
.h-4 {
	font-family: "Unbounded", sans-serif;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.15;
	font-size: clamp(18px, 1.6vw, 24px);
	overflow-wrap: normal;
	word-break: normal;
}
.eyebrow {
	font-family: "Onest", sans-serif;
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--text-2);
}
.lead {
	font-family: "Onest", sans-serif;
	font-weight: 200;
	font-size: clamp(18px, 1.4vw, 22px);
	line-height: 1.55;
	color: var(--text-2);
}
.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 48px;
	width: 100%;
}
@media (max-width: 900px) {
	.container {
		padding: 0 24px;
	}
}
.noise {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.04;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.cursor-dot,
.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	mix-blend-mode: difference;
}
.cursor-dot {
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
}
.cursor-ring {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	transition:
		width 0.25s var(--ease-out),
		height 0.25s var(--ease-out),
		border-color 0.25s,
		background 0.25s;
}
.cursor-ring.hover {
	width: 80px;
	height: 80px;
	border-color: rgba(255, 19, 165, 0.7);
	background: rgba(255, 19, 165, 0.06);
}
@media (max-width: 900px) {
	.cursor-dot,
	.cursor-ring {
		display: none !important;
	}
	body {
		cursor: auto;
	}
	button,
	a {
		cursor: pointer;
	}
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px 0;
	transition: all 0.4s var(--ease-out);
}
.header.scrolled {
	padding: 14px 0;
	background: rgba(10, 12, 20, 0.65);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--border-1);
}
.header-inner {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.logo {
	display: flex !important;
	align-items: center;
	gap: 10px;
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: #fff;
}
.logo-mark {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	background: #fff;
	color: #0a0c14;
	border-radius: 50%;
	font-weight: 900;
	font-size: 18px;
	flex-shrink: 0;
	position: relative;
}
.logo-mark::before {
	content: "";
	position: absolute;
	inset: 4px;
	border: 2px solid #0a0c14;
	border-radius: 50%;
	border-top-color: transparent;
	border-right-color: transparent;
	transform: rotate(-45deg);
}
.nav {
	display: flex !important;
	align-items: center;
	gap: 4px;
}
.nav a {
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 300;
	color: var(--text-2);
	border-radius: 999px;
	transition:
		color 0.3s,
		background 0.3s;
}
.nav a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
}
.nav a.active {
	color: #fff;
}
.cta-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	background: linear-gradient(
		135deg,
		var(--accent-blue) 0%,
		var(--accent-pink) 100%
	);
	box-shadow: 0 8px 24px -8px rgba(255, 19, 165, 0.5);
	overflow: hidden;
	transition:
		transform 0.3s var(--ease-out),
		box-shadow 0.3s;
	white-space: nowrap;
}
.cta-pill::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-pink) 0%,
		var(--accent-purple) 100%
	);
	opacity: 0;
	transition: opacity 0.4s;
}
.cta-pill span {
	position: relative;
	z-index: 1;
}
.cta-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -8px rgba(255, 19, 165, 0.6);
}
.cta-pill:hover::before {
	opacity: 1;
}

.hero {
	position: relative;
	padding: 160px 0 80px;
	overflow: hidden;
	z-index: 2;
}
.hero h1 {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: clamp(48px, 8vw, 140px);
	line-height: 0.92;
	letter-spacing: -0.04em;
	margin-bottom: 32px;
	max-width: 1200px;
}
.hero h1 .accent {
	background: linear-gradient(
		135deg,
		var(--accent-blue) 0%,
		var(--accent-pink) 50%,
		var(--accent-purple) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 200%;
	animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}
.hero-sub {
	max-width: 680px;
	font-size: 20px;
	font-weight: 200;
	color: var(--text-2);
	line-height: 1.55;
}
.mesh-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}
.mesh-bg::before {
	content: "";
	position: absolute;
	width: 60vw;
	height: 60vw;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.5;
	left: -20vw;
	top: -20vw;
	background: radial-gradient(
		circle,
		rgba(28, 92, 255, 0.7) 0%,
		transparent 60%
	);
	animation: float1 18s ease-in-out infinite;
}
.mesh-bg::after {
	content: "";
	position: absolute;
	width: 50vw;
	height: 50vw;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.45;
	right: -15vw;
	top: 20vh;
	background: radial-gradient(
		circle,
		rgba(255, 19, 165, 0.6) 0%,
		transparent 60%
	);
	animation: float2 22s ease-in-out infinite;
}
@keyframes float1 {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(8vw, 6vw) scale(1.15);
	}
}
@keyframes float2 {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-6vw, -5vw) scale(1.1);
	}
}

.services-detail {
	padding: 120px 0;
	position: relative;
	z-index: 2;
}
.service-block {
	margin-bottom: 120px;
	position: relative;
}
.service-block:last-child {
	margin-bottom: 0;
}
.service-block-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.service-block.reverse .service-block-grid {
	grid-template-columns: 1fr 1fr;
	direction: rtl;
}
.service-block.reverse .service-block-grid > * {
	direction: ltr;
}
.service-num {
	font-family: "JetBrains Mono", monospace;
	font-size: 14px;
	color: var(--text-3);
	letter-spacing: 0.1em;
	margin-bottom: 24px;
	display: flex !important;
	align-items: center;
	gap: 16px;
}
.service-num::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--border-2);
}
.service-title {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: clamp(36px, 4.4vw, 72px);
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin-bottom: 32px;
}
.service-desc {
	font-size: 17px;
	font-weight: 200;
	color: var(--text-2);
	line-height: 1.7;
	margin-bottom: 32px;
}
.service-list {
	display: flex !important;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}
.service-list li {
	list-style: none;
	font-size: 15px;
	font-weight: 200;
	color: var(--text-2);
	line-height: 1.5;
	padding-left: 28px;
	position: relative;
}
.service-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 14px;
	height: 1px;
	background: var(--text-3);
}
.service-pills {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}
.service-pill {
	padding: 10px 18px;
	border: 1px solid var(--border-2);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 300;
	color: #fff;
	letter-spacing: 0.02em;
	transition: all 0.3s;
}
.service-pill:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--border-3);
}

.service-visual {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 32px;
	overflow: hidden;
	background: linear-gradient(
		160deg,
		var(--svc-color-1, var(--accent-blue)) 0%,
		var(--svc-color-2, #0a3fc4) 100%
	);
	box-shadow: 0 40px 80px -20px rgba(28, 92, 255, 0.4);
	display: flex !important;
	flex-direction: column;
	padding: 48px;
	justify-content: space-between;
	transition: transform 0.5s var(--ease-out);
}
.service-visual:hover {
	transform: scale(1.02);
}
.service-visual-label {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	display: flex !important;
	align-items: center;
	gap: 12px;
}
.service-visual-label::before {
	content: "";
	width: 36px;
	height: 1px;
	background: rgba(255, 255, 255, 0.5);
}
.service-visual-content {
	position: relative;
	z-index: 2;
}
.service-visual-icon {
	width: 80px;
	height: 80px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.15);
	display: grid;
	place-items: center;
	backdrop-filter: blur(8px);
	margin-bottom: 32px;
}
.service-visual h3 {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 2.6vw, 42px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 24px;
}
.service-visual-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.svc-stat {
	display: flex !important;
	flex-direction: column;
	gap: 4px;
}
.svc-stat-num {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #fff;
}
.svc-stat-label {
	font-size: 12px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.service-visual::after {
	content: "";
	position: absolute;
	top: -30%;
	right: -30%;
	width: 80%;
	height: 120%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.2) 0%,
		transparent 60%
	);
	pointer-events: none;
}

.eco {
	padding: 120px 0;
	position: relative;
	z-index: 2;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(28, 92, 255, 0.03) 50%,
		transparent 100%
	);
}
.eco-head {
	text-align: center;
	margin-bottom: 60px;
}
.eco-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.eco-col {
	position: relative;
	padding: 48px 36px;
	border-radius: 48px;
	min-height: 600px;
	display: flex !important;
	flex-direction: column;
	gap: 24px;
	overflow: hidden;
	transition: transform 0.5s var(--ease-out);
}
.eco-col:hover {
	transform: translateY(-8px);
}
.eco-col.blue {
	background: linear-gradient(160deg, #1c5cff 0%, #0a3fc4 100%);
	box-shadow: 0 40px 80px -20px rgba(28, 92, 255, 0.4);
}
.eco-col.purple {
	background: linear-gradient(160deg, #7b3cff 0%, #5819d4 100%);
	box-shadow: 0 40px 80px -20px rgba(123, 60, 255, 0.4);
}
.eco-col.pink {
	background: linear-gradient(160deg, #ff13a5 0%, #c4087e 100%);
	box-shadow: 0 40px 80px -20px rgba(255, 19, 165, 0.4);
}
.eco-col-title {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	margin-bottom: 8px;
}
.eco-col-list {
	display: flex !important;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
}
.eco-pill {
	padding: 18px 28px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 300;
	color: #fff;
	text-align: center;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8px);
	transition: all 0.3s;
}
.eco-pill:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.02);
}

.process {
	padding: 120px 0;
	position: relative;
	z-index: 2;
}
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
.process-step {
	padding: 32px 24px;
	border-left: 1px solid var(--border-1);
	position: relative;
}
.process-step:first-child {
	border-left: 0;
	padding-left: 0;
}
.process-step-num {
	font-family: "Unbounded", sans-serif;
	font-weight: 800;
	font-size: 48px;
	line-height: 0.9;
	letter-spacing: -0.04em;
	background: linear-gradient(180deg, #fff 0%, #5d6377 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 24px;
}
.process-step h4 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}
.process-step p {
	font-size: 14px;
	font-weight: 200;
	color: var(--text-2);
	line-height: 1.6;
}

.footer {
	position: relative;
	z-index: 2;
	padding: 120px 0 48px;
	border-top: 1px solid var(--border-1);
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 80px;
}
.footer h4 {
	font-family: "Unbounded", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-2);
	margin-bottom: 24px;
}
.footer ul {
	list-style: none;
	display: flex !important;
	flex-direction: column;
	gap: 14px;
}
.footer li {
	font-size: 15px;
	font-weight: 200;
	color: var(--text-2);
	transition: color 0.3s;
	display: flex !important;
	align-items: center;
	gap: 10px;
}
.footer li:hover {
	color: #fff;
}
.footer li .ico {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	opacity: 0.7;
}
.footer-bottom {
	border-top: 1px solid var(--border-1);
	padding-top: 32px;
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	font-weight: 200;
	color: var(--text-3);
}
.footer-giant-logo {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: clamp(64px, 11vw, 200px);
	line-height: 0.95;
	letter-spacing: -0.04em;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.07) 0%,
		rgba(255, 255, 255, 0.01) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 60px 0 30px;
	padding: 0 24px;
	overflow: visible;
	user-select: none;
	text-align: center;
	white-space: nowrap;
}
@media (max-width: 600px) {
	.footer-giant-logo {
		font-size: clamp(48px, 14vw, 80px);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.9s var(--ease-out),
		transform 0.9s var(--ease-out);
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}
.reveal-stagger > * {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s var(--ease-out),
		transform 0.7s var(--ease-out);
}
.reveal-stagger.in > * {
	opacity: 1;
	transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) {
	transition-delay: 0s;
}
.reveal-stagger.in > *:nth-child(2) {
	transition-delay: 0.08s;
}
.reveal-stagger.in > *:nth-child(3) {
	transition-delay: 0.16s;
}
.reveal-stagger.in > *:nth-child(4) {
	transition-delay: 0.24s;
}
.reveal-stagger.in > *:nth-child(5) {
	transition-delay: 0.32s;
}
.reveal-stagger.in > *:nth-child(6) {
	transition-delay: 0.4s;
}

/* ===================== MOBILE MENU ===================== */
.menu-toggle {
	display: none !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-2);
	border-radius: 12px;
	cursor: pointer;
	z-index: 101;
	transition: all 0.3s var(--ease-out);
}
.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}
.menu-toggle-bar {
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s var(--ease-out);
}
.menu-toggle.active .menu-toggle-bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .menu-toggle-bar:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active .menu-toggle-bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 12, 20, 0.98);
	backdrop-filter: blur(20px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s var(--ease-out);
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}
.mobile-menu {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
	max-width: 320px;
}
.mobile-menu-link {
	font-family: "Unbounded", sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: var(--text-2);
	padding: 16px 24px;
	width: 100%;
	text-align: center;
	border-radius: 16px;
	transition: all 0.3s;
	text-decoration: none;
}
.mobile-menu-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}
.mobile-menu-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 32px;
	margin-top: 24px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	background: linear-gradient(
		135deg,
		var(--accent-blue) 0%,
		var(--accent-pink) 100%
	);
	text-decoration: none;
	transition: all 0.3s var(--ease-out);
}
.mobile-menu-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px -8px rgba(255, 19, 165, 0.6);
}

@media (max-width: 1100px) {
	.service-block-grid,
	.eco-cols {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.service-block.reverse .service-block-grid {
		direction: ltr;
	}
	.process-grid {
		grid-template-columns: 1fr 1fr;
	}
	.process-step {
		border-left: 0;
		padding-left: 0;
		padding-top: 24px;
		padding-bottom: 24px;
		border-top: 1px solid var(--border-1);
	}
	.process-step:first-child {
		border-top: 0;
		padding-top: 0;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}
/* Tablet (768px - 1024px): show burger, hide CTA */
@media (max-width: 1024px) and (min-width: 761px) {
	.nav {
		display: none !important;
	}
	.cta-pill-header {
		display: none !important;
	}
	.menu-toggle {
		display: flex !important;
	}
}

@media (max-width: 760px) {
	.nav {
		display: none !important;
	}
	.cta-pill {
		display: none !important;
	}
	.menu-toggle {
		display: flex !important;
	}
	.container {
		padding: 0 20px;
	}
	.hero {
		padding: 80px 0 40px;
	}
	/* Исправить перенос h1 на мобильных */
	.hero h1 {
		font-size: clamp(28px, 10vw, 36px) !important;
		word-break: normal !important;
		overflow-wrap: normal !important;
		line-height: 1.2 !important;
	}
	/* Reduce section spacing */
	.section,
	.eco-section,
	.cta-section,
	.services-detail,
	.process-section {
		padding: 40px 0;
		margin-bottom: 20px;
	}
	.section:last-child {
		margin-bottom: 0;
	}
	.eco-cols,
	.process-grid,
	.footer-top {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
	/* Service blocks tablet */
	.service-block {
		margin-bottom: 60px;
	}
	.service-block-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.service-block.reverse .service-block-grid {
		direction: ltr;
	}
	.service-visual {
		aspect-ratio: 16 / 9;
		padding: 32px;
		order: -1;
	}
	.service-visual-label {
		font-size: 14px;
	}
	.service-title {
		font-size: clamp(28px, 5vw, 48px);
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	.h-display {
		font-size: clamp(24px, 10vw, 40px);
	}
	.service-card,
	.process-item {
		padding: 16px;
	}
	/* Service blocks mobile (<=480px) */
	.service-block {
		margin-bottom: 60px;
	}
	.service-block-grid,
	.service-block.reverse .service-block-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		direction: ltr;
	}
	/* Визуальные блоки - полная ширина, достаточная высота */
	.service-visual {
		aspect-ratio: unset;
		min-height: 200px;
		height: auto;
		padding: 24px;
		order: -1;
	}
	.service-visual-content {
		display: flex !important;
		flex-direction: column;
		gap: 20px;
	}
	.service-visual-icon {
		width: 64px;
		height: 64px;
	}
	.service-visual-stats {
		font-size: 14px;
	}
	.service-visual-stats > div {
		margin-bottom: 8px;
	}
	.service-title {
		font-size: clamp(24px, 7vw, 36px);
	}
	.service-desc {
		font-size: 15px;
	}
	.service-list li {
		font-size: 14px;
	}
	.service-pill {
		font-size: 12px;
		padding: 8px 12px;
	}
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-track {
	background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
	background: var(--border-3);
	border-radius: 10px;
	border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--text-3);
}
html {
	scrollbar-width: thin;
	scrollbar-color: var(--border-3) var(--bg-2);
}

/* ======= FORCE TABLET STYLES (END OF FILE) ======= */
@media (max-width: 1024px) {
	.nav {
		display: none !important;
	}
	.cta-pill-header {
		display: none !important;
	}
	.menu-toggle {
		display: flex !important;
	}
}
