:root {
	--growhix-text: #1f2933;
	--growhix-surface: #ffffff;
	--growhix-border: #d9e2ec;
	--growhix-accent: #147d64;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--growhix-text);
	background: var(--growhix-surface);
	font-family: "Manrope", "Segoe UI", Arial, sans-serif;
	line-height: 1.6;
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	overflow: visible;
	clip: auto;
	color: #ffffff;
	background: #111827;
	border-radius: 4px;
	white-space: normal;
}

.site-main:focus {
	outline: none;
}

html::before {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100001;
	height: 3px;
	background: var(--growhix-accent);
	content: "";
	opacity: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: opacity 120ms ease, transform 6s cubic-bezier(0.1, 0.7, 0.2, 1);
}

html.is-ajax-loading::before {
	opacity: 1;
	transform: scaleX(0.85);
}

html.is-ajax-loading {
	cursor: progress;
}

a {
	color: var(--growhix-accent);
}

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

.container {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

.site-header {
	border-block: 1px solid var(--growhix-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.site-footer {
	position: relative;
	width: 100%;
	overflow: hidden;
	color: #ffffff;
	background: #03031f;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: "Poppins", sans-serif;
}

.site-footer__inner {
	width: min(1350px, calc(100% - 64px));
	padding: clamp(60px, 6vw, 94px) 0 26px;
	margin-inline: auto;
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(230px, 0.65fr) minmax(300px, 0.86fr);
	gap: clamp(54px, 9vw, 170px);
}

.site-footer__newsletter h2 {
	max-width: 520px;
	margin: 0;
	font-size: clamp(1.7rem, 2.2vw, 2.35rem);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1.2;
}

.site-footer__newsletter form {
	position: relative;
	max-width: 545px;
	margin-top: 70px;
}

.site-footer__newsletter input {
	width: 100%;
	height: 70px;
	padding: 0 84px 0 28px;
	color: #ffffff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	font: inherit;
	font-size: 1rem;
	outline: none;
}

.site-footer__newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.68);
}

.site-footer__newsletter input:focus {
	border-color: #cdff2f;
	box-shadow: 0 0 0 3px rgba(205, 255, 47, 0.13);
}

.site-footer__newsletter button {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	width: 50px;
	height: 50px;
	padding: 0;
	place-items: center;
	color: #03031f;
	background: #ffffff;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.site-footer__newsletter button:hover,
.site-footer__newsletter button:focus-visible {
	background: #cdff2f;
	outline: none;
	transform: scale(1.06);
}

.site-footer__newsletter button i {
	position: relative;
	width: 23px;
	height: 17px;
	border: 2px solid currentcolor;
	border-radius: 3px;
}

.site-footer__newsletter button i::before,
.site-footer__newsletter button i::after {
	position: absolute;
	top: 2px;
	width: 13px;
	height: 2px;
	background: currentcolor;
	content: "";
}

.site-footer__newsletter button i::before {
	left: 0;
	transform: rotate(35deg);
}

.site-footer__newsletter button i::after {
	right: 0;
	transform: rotate(-35deg);
}

.site-footer__label {
	margin: 50px 0 20px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.site-footer__socials {
	display: flex;
	gap: 18px;
	align-items: center;
}

.site-footer__socials a {
	display: grid;
	width: 60px;
	height: 60px;
	place-items: center;
	color: #ffffff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
	color: #03031f;
	background: #cdff2f;
	border-color: #cdff2f;
	outline: none;
	transform: translateY(-4px);
}

.site-footer__nav {
	display: flex;
	gap: 13px;
	flex-direction: column;
}

.site-footer__nav a {
	display: flex;
	gap: 16px;
	align-items: center;
	width: max-content;
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 500;
	letter-spacing: -0.035em;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
	color: #cdff2f;
	outline: none;
	transform: translateX(5px);
}

.site-footer__nav span {
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 0.8;
}

.site-footer__contact .site-footer__label {
	margin-top: 0;
}

.site-footer__email,
.site-footer__phone {
	color: #ffffff;
	font-size: clamp(1.1rem, 1.5vw, 1.45rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.site-footer__email:hover,
.site-footer__email:focus-visible,
.site-footer__phone:hover,
.site-footer__phone:focus-visible {
	color: #cdff2f;
	outline: none;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.site-footer__label--phone {
	margin-top: 44px;
}

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

.site-footer__phone i {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: #ffffff;
	background: #17d766;
	border-radius: 50%;
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 800;
}

.site-footer__badges {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 6px;
	margin-top: clamp(90px, 12vw, 170px);
}

.site-footer__badges > div {
	display: flex;
	gap: 9px;
	min-height: 64px;
	padding: 12px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.075);
	border-radius: 8px;
	white-space: nowrap;
}

.site-footer__badges i {
	color: #cdff2f;
	font-style: normal;
}

.site-footer__badges span {
	font-size: 0.88rem;
}

.site-footer__badges strong {
	font-size: 0.95rem;
	font-weight: 600;
}

.site-footer__accordions {
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.site-footer__accordions details {
	border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.site-footer__accordions summary {
	display: flex;
	min-height: 98px;
	align-items: center;
	justify-content: space-between;
	font-size: 1.25rem;
	font-weight: 500;
	list-style: none;
	cursor: pointer;
	transition: color 220ms ease, padding-left 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__accordions summary:hover,
.site-footer__accordions summary:focus-visible,
.site-footer__accordions details[open] summary {
	padding-left: 10px;
	color: #cdff2f;
	outline: none;
}

.site-footer__accordions summary::-webkit-details-marker {
	display: none;
}

.site-footer__accordions summary i {
	position: relative;
	width: 25px;
	height: 25px;
}

.site-footer__accordions summary i::before,
.site-footer__accordions summary i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 2px;
	background: #ffffff;
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.site-footer__accordions summary i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.site-footer__accordions details[open] summary i::after {
	transform: translate(-50%, -50%) rotate(0);
}

.site-footer__accordions details > div {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px 42px;
	height: auto;
	padding: 10px 0 42px;
	overflow: hidden;
}

.site-footer__accordions details a {
	position: relative;
	display: block;
	width: max-content;
	max-width: 100%;
	padding: 7px 0 10px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.95rem;
	line-height: 1.35;
	text-decoration: none;
	transform: translateY(0);
	transition: color 220ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__accordions details a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 1px;
	background: #cdff2f;
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__accordions details a:hover,
.site-footer__accordions details a:focus-visible {
	color: #ffffff;
	outline: none;
	transform: translateY(-5px);
}

.site-footer__accordions details a:hover::after,
.site-footer__accordions details a:focus-visible::after {
	transform: scaleX(1);
}

.site-footer__accordions details[open] a {
	animation: growhix-footer-link-in 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-footer__accordions details[open] a:nth-child(2) {
	animation-delay: 35ms;
}

.site-footer__accordions details[open] a:nth-child(3) {
	animation-delay: 70ms;
}

.site-footer__accordions details[open] a:nth-child(4) {
	animation-delay: 105ms;
}

.site-footer__accordions details[open] a:nth-child(5) {
	animation-delay: 140ms;
}

.site-footer__accordions details[open] a:nth-child(6) {
	animation-delay: 175ms;
}

.site-footer__accordions details[open] a:nth-child(7) {
	animation-delay: 210ms;
}

@keyframes growhix-footer-link-in {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.site-footer__bottom {
	display: flex;
	gap: 30px;
	padding-top: 24px;
	align-items: center;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.78rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom > div {
	display: flex;
	gap: 20px;
}

.site-footer__bottom a {
	color: inherit;
	text-decoration: none;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
	color: #ffffff;
	outline: none;
}

.site-footer__top-link {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: grid;
	width: 46px;
	height: 46px;
	color: #03031f;
	background: #cdff2f;
	border: 0;
	border-radius: 50%;
	font-size: 1.2rem;
	text-decoration: none;
	place-items: center;
	transition: transform 180ms ease;
}

.site-footer__top-link:hover,
.site-footer__top-link:focus-visible {
	outline: none;
	transform: translateY(-4px);
}

.site-title {
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
}

.menu {
	display: flex;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.content-area {
	padding-block: 56px;
}

.growhix-design-boxed {
	background: #f4f7f6;
}

.growhix-design-boxed .content-area {
	max-width: 880px;
	padding: 40px;
	margin-block: 40px;
	background: #ffffff;
	border: 1px solid var(--growhix-border);
	border-radius: 8px;
}

.growhix-design-wide .container {
	width: min(1320px, calc(100% - 48px));
}

.growhix-design-wide .content-area {
	padding-block: 72px;
}

.post-card {
	padding-block: 24px;
	border-bottom: 1px solid var(--growhix-border);
}

.agency-hero {
	position: relative;
	overflow: hidden;
	color: #f8fafc;
	background:
		linear-gradient(125deg, rgba(14, 21, 34, 0.98), rgba(23, 31, 48, 0.94)),
		#0e1522;
	isolation: isolate;
}

.agency-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	content: "";
	mask-image: linear-gradient(to right, black, transparent 88%);
}

.agency-hero__glow {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(4px);
	opacity: 0.65;
}

.agency-hero__glow--one {
	top: -180px;
	right: 4%;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(111, 244, 190, 0.35), transparent 70%);
}

.agency-hero__glow--two {
	bottom: -250px;
	left: 24%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 132, 85, 0.23), transparent 70%);
}

.agency-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	gap: 48px;
	align-items: center;
	min-height: 760px;
	padding-block: 88px;
}

.agency-hero__eyebrow {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0 0 24px;
	color: #b8c3d5;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.agency-hero__eyebrow span {
	width: 34px;
	height: 2px;
	background: #6ff4be;
}

.agency-hero h1 {
	max-width: 650px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(3.3rem, 5.2vw, 5.65rem);
	font-weight: 800;
	letter-spacing: -0.075em;
	line-height: 0.98;
}

.agency-hero h1 span {
	display: inline-block;
	color: #6ff4be;
	font-family: Georgia, serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -0.1em;
	transform: rotate(-4deg);
}

.agency-hero__description {
	max-width: 600px;
	margin: 30px 0 0;
	color: #bac5d5;
	font-size: 1.08rem;
	line-height: 1.75;
}

.agency-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: center;
	margin-top: 36px;
}

.agency-button {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: 180ms ease;
}

.agency-button--primary {
	padding: 16px 22px;
	color: #102119;
	background: #6ff4be;
	border-radius: 100px;
	box-shadow: 0 10px 34px rgba(111, 244, 190, 0.18);
}

.agency-button--primary:hover,
.agency-button--primary:focus-visible {
	color: #102119;
	background: #ffffff;
	transform: translateY(-3px);
}

.agency-button--text:hover,
.agency-button--text:focus-visible {
	color: #6ff4be;
}

.agency-button span {
	font-size: 1.2em;
}

.agency-hero__proof {
	display: flex;
	gap: 34px;
	margin-top: 70px;
}

.agency-hero__proof div {
	display: grid;
	gap: 4px;
}

.agency-hero__proof strong {
	color: #ffffff;
	font-size: 1.55rem;
	letter-spacing: -0.05em;
}

.agency-hero__proof span {
	color: #91a0b4;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.agency-hero__art {
	position: relative;
	min-height: 570px;
	perspective: 900px;
}

.agency-hero__orbit {
	position: absolute;
	inset: 20px 4px 12px 38px;
	border: 1px solid rgba(111, 244, 190, 0.26);
	border-radius: 50%;
	transform: rotate(-12deg);
}

.agency-board {
	position: absolute;
	top: 72px;
	right: 38px;
	width: min(430px, 78%);
	overflow: hidden;
	color: #0e1a19;
	background: #f8f4eb;
	border: 8px solid rgba(255, 255, 255, 0.13);
	border-radius: 24px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
	transform: rotateY(-9deg) rotateZ(3deg);
	animation: growhix-float-board 7s ease-in-out infinite;
}

.agency-board__top,
.agency-board__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 18px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.agency-board__top {
	border-bottom: 1px solid rgba(14, 26, 25, 0.12);
}

.agency-board__dots {
	display: flex;
	gap: 5px;
}

.agency-board__dots i {
	width: 7px;
	height: 7px;
	background: #ff855f;
	border-radius: 50%;
}

.agency-board__dots i:nth-child(2) {
	background: #f2be51;
}

.agency-board__dots i:nth-child(3) {
	background: #57ba91;
}

.agency-board__body {
	padding: 30px 24px 24px;
	background:
		linear-gradient(rgba(14, 26, 25, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(14, 26, 25, 0.06) 1px, transparent 1px);
	background-size: 30px 30px;
}

.agency-board__body p {
	margin: 0;
	font-family: Georgia, serif;
	font-size: 1.3rem;
	font-style: italic;
}

.agency-board__body strong {
	display: block;
	margin-top: 8px;
	color: #173f35;
	font-size: 4.8rem;
	letter-spacing: -0.11em;
	line-height: 1;
}

.agency-board__chart {
	display: flex;
	gap: 12px;
	align-items: end;
	height: 130px;
	margin-top: 24px;
}

.agency-board__chart i {
	flex: 1;
	height: 35%;
	background: #173f35;
	border-radius: 5px 5px 0 0;
	animation: growhix-rise 1s ease-out both;
}

.agency-board__chart i:nth-child(2) {
	height: 52%;
	animation-delay: 100ms;
}

.agency-board__chart i:nth-child(3) {
	height: 44%;
	animation-delay: 200ms;
}

.agency-board__chart i:nth-child(4) {
	height: 68%;
	animation-delay: 300ms;
}

.agency-board__chart i:nth-child(5) {
	height: 78%;
	background: #ff855f;
	animation-delay: 400ms;
}

.agency-board__chart i:nth-child(6) {
	height: 100%;
	background: #6ff4be;
	animation-delay: 500ms;
}

.agency-float {
	position: absolute;
	display: grid;
	gap: 5px;
	padding: 16px 18px;
	color: #ffffff;
	background: rgba(18, 29, 43, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 15px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(14px);
}

.agency-float span {
	color: #9dacc0;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.agency-float strong {
	font-size: 1rem;
}

.agency-float--strategy {
	top: 35px;
	left: 14px;
	animation: growhix-float-card 5s ease-in-out infinite;
}

.agency-float--team {
	right: 0;
	bottom: 36px;
	animation: growhix-float-card 6s 700ms ease-in-out infinite reverse;
}

.agency-float__avatars {
	display: flex;
	margin-bottom: 4px;
}

.agency-float__avatars i {
	display: grid;
	width: 31px;
	height: 31px;
	margin-right: -7px;
	place-items: center;
	color: #13251f;
	background: #6ff4be;
	border: 2px solid #253345;
	border-radius: 50%;
	font-size: 0.58rem;
	font-style: normal;
	font-weight: 800;
}

.agency-float__avatars i:nth-child(2) {
	background: #ff855f;
}

.agency-float__avatars i:nth-child(3) {
	background: #f8f4eb;
}

.agency-hero__stamp {
	position: absolute;
	bottom: 18px;
	left: 58px;
	display: grid;
	width: 105px;
	height: 105px;
	place-content: center;
	place-items: center;
	color: #0f211c;
	background: #6ff4be;
	border-radius: 50%;
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.35;
	text-transform: uppercase;
	transform: rotate(-11deg);
}

.agency-hero__stamp b {
	font-size: 0.7rem;
	line-height: 0.8;
}

.agency-hero__spark {
	position: absolute;
	width: 14px;
	height: 14px;
	background: #ff855f;
	clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.agency-hero__spark--one {
	top: 0;
	right: 105px;
}

.agency-hero__spark--two {
	bottom: 116px;
	left: 15px;
	width: 22px;
	height: 22px;
	background: #6ff4be;
}

@keyframes growhix-float-board {
	50% {
		transform: translateY(-12px) rotateY(-9deg) rotateZ(3deg);
	}
}

@keyframes growhix-float-card {
	50% {
		transform: translateY(-10px);
	}
}

@keyframes growhix-rise {
	from {
		height: 0;
	}
}

.agency-showcase {
	position: relative;
	display: grid;
	overflow: hidden;
	min-height: 790px;
	place-items: center;
	color: #f7fbff;
	background:
		radial-gradient(circle at 50% 48%, rgba(28, 191, 210, 0.1), transparent 22%),
		linear-gradient(135deg, #030506, #000000 68%);
	isolation: isolate;
}

.agency-showcase::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(121, 242, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(121, 242, 255, 0.035) 1px, transparent 1px);
	background-size: 80px 80px;
	content: "";
	mask-image: radial-gradient(circle, black, transparent 70%);
}

.agency-showcase__inner {
	position: relative;
	z-index: 2;
	display: grid;
	max-width: 840px;
	justify-items: center;
	text-align: center;
}

.agency-showcase__eyebrow {
	margin: 0 0 24px;
	color: #a4f5ff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.agency-showcase h2 {
	max-width: 800px;
	margin: 0;
	font-size: clamp(3.4rem, 6vw, 6rem);
	font-weight: 800;
	letter-spacing: -0.085em;
	line-height: 0.98;
}

.agency-showcase__description {
	max-width: 670px;
	margin: 28px 0 0;
	color: #b5c0ca;
	font-size: 1rem;
	line-height: 1.8;
}

.agency-showcase__button {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	margin-top: 32px;
	padding: 14px 23px;
	color: #d9fcff;
	background: linear-gradient(135deg, rgba(11, 174, 194, 0.9), rgba(6, 92, 109, 0.9));
	border: 1px solid rgba(137, 247, 255, 0.52);
	border-radius: 100px;
	box-shadow: 0 0 30px rgba(29, 222, 241, 0.38);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	transition: 180ms ease;
}

.agency-showcase__button:hover,
.agency-showcase__button:focus-visible {
	color: #062229;
	background: #a4f5ff;
	box-shadow: 0 0 42px rgba(29, 222, 241, 0.58);
	transform: translateY(-3px);
}

.agency-showcase__index,
.agency-showcase__side-note {
	position: absolute;
	z-index: 3;
	margin: 0;
	color: rgba(197, 239, 244, 0.62);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.agency-showcase__index {
	top: 40px;
	left: 42px;
}

.agency-showcase__side-note {
	right: 30px;
	bottom: 95px;
	writing-mode: vertical-rl;
}

.agency-showcase__scroll {
	position: absolute;
	bottom: 34px;
	left: 50%;
	z-index: 3;
	width: 30px;
	height: 48px;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 100px;
	transform: translateX(-50%);
}

.agency-showcase__scroll span {
	position: absolute;
	top: 9px;
	left: 50%;
	width: 4px;
	height: 4px;
	background: #a4f5ff;
	border-radius: 50%;
	transform: translateX(-50%);
	animation: growhix-showcase-scroll 1.8s ease-in-out infinite;
}

.agency-showcase__beam {
	position: absolute;
	z-index: -1;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(54, 220, 235, 0.15), transparent 64%);
	filter: blur(9px);
}

.agency-showcase__beam--top {
	top: -110px;
	right: -50px;
}

.agency-showcase__beam--bottom {
	bottom: -130px;
	left: -50px;
}

.agency-showcase__crystal {
	position: absolute;
	z-index: 1;
	width: 320px;
	height: 280px;
	filter: drop-shadow(0 0 24px rgba(79, 232, 245, 0.2));
}

.agency-showcase__crystal i {
	position: absolute;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(74, 237, 247, 0.46) 33%, rgba(138, 63, 255, 0.7) 62%, rgba(255, 103, 80, 0.6));
	border: 1px solid rgba(255, 255, 255, 0.56);
	box-shadow: inset 10px 10px 24px rgba(255, 255, 255, 0.25);
	clip-path: polygon(12% 8%, 100% 0, 80% 88%, 0 100%);
}

.agency-showcase__crystal i:nth-child(1) {
	inset: 38px 70px 52px 48px;
	transform: rotate(-18deg);
}

.agency-showcase__crystal i:nth-child(2) {
	inset: 20px 5px 116px 154px;
	transform: rotate(20deg);
}

.agency-showcase__crystal i:nth-child(3) {
	inset: 132px 16px 20px 110px;
	transform: rotate(-4deg);
}

.agency-showcase__crystal i:nth-child(4) {
	inset: 94px 152px 15px 8px;
	transform: rotate(25deg);
}

.agency-showcase__crystal--top {
	top: -45px;
	right: -25px;
	transform: rotate(12deg);
}

.agency-showcase__crystal--bottom {
	bottom: -48px;
	left: -34px;
	transform: rotate(192deg);
}

@keyframes growhix-showcase-scroll {
	50% {
		top: 30px;
		opacity: 0.2;
	}
}

.studio-story {
	color: #101313;
	background: #f4f1ef;
}

.studio-story__inner {
	padding-block: 76px 100px;
}

.studio-story__rule {
	height: 1px;
	margin-bottom: 34px;
	background: #d9d3cf;
}

.studio-story__rule span {
	display: block;
	width: 100px;
	height: 1px;
	background: #111414;
}

.studio-story__headline {
	max-width: 1030px;
	margin: 0;
	font-size: clamp(3rem, 5vw, 5.4rem);
	font-weight: 600;
	letter-spacing: -0.09em;
	line-height: 1.08;
}

.studio-story__spark {
	display: inline-block;
	margin-right: 10px;
	color: #ff5536;
	font-size: 0.46em;
	vertical-align: 0.42em;
}

.studio-story__inline-art {
	position: relative;
	display: inline-block;
	width: 94px;
	height: 58px;
	overflow: hidden;
	margin-inline: 10px;
	background: #152a30;
	vertical-align: 0.05em;
}

.studio-story__inline-art::before,
.studio-story__inline-art::after,
.studio-story__inline-art i {
	position: absolute;
	content: "";
}

.studio-story__inline-art--one::before {
	inset: -18px 28px 5px -20px;
	background: #ff5536;
	border-radius: 50%;
}

.studio-story__inline-art--one::after {
	right: -5px;
	bottom: -18px;
	width: 65px;
	height: 65px;
	background: #6ff4be;
	border-radius: 50%;
}

.studio-story__inline-art--one i {
	top: 9px;
	right: 15px;
	width: 24px;
	height: 40px;
	background: #101313;
	transform: rotate(25deg);
}

.studio-story__inline-art--two {
	background: #0b0d0d;
}

.studio-story__inline-art--two::before {
	top: 14px;
	left: -10px;
	width: 116px;
	height: 14px;
	background: #6ff4be;
	transform: rotate(-8deg);
}

.studio-story__inline-art--two::after {
	top: -14px;
	right: 16px;
	width: 37px;
	height: 86px;
	background: #ff6b4d;
	transform: rotate(31deg);
}

.studio-story__inline-art--two i {
	inset: 19px 0 auto;
	z-index: 1;
	height: 4px;
	background: #f4f1ef;
}

.studio-story__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(500px, 1.28fr);
	gap: 200px;
	align-items: start;
	margin-top: 86px;
}

.studio-feature__art {
	position: relative;
	display: grid;
	overflow: hidden;
	min-height: 245px;
	padding: 24px;
	place-items: center;
	background: #c9e2de;
	border-radius: 12px;
	isolation: isolate;
}

.studio-feature__art::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(16, 19, 19, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 19, 19, 0.08) 1px, transparent 1px);
	background-size: 24px 24px;
	content: "";
}

.studio-feature__art p {
	z-index: 2;
	margin: 0;
	color: #122c28;
	font-size: 2.15rem;
	font-weight: 800;
	letter-spacing: -0.1em;
	line-height: 0.8;
	text-align: center;
	transform: rotate(-8deg);
}

.studio-feature__sun,
.studio-feature__arch,
.studio-feature__disc {
	position: absolute;
}

.studio-feature__sun {
	top: -32px;
	right: -12px;
	width: 130px;
	height: 130px;
	background: #ff6b4d;
	border-radius: 50%;
}

.studio-feature__arch {
	bottom: -38px;
	left: 38px;
	width: 160px;
	height: 200px;
	border: 32px solid #173f35;
	border-bottom: 0;
	border-radius: 100px 100px 0 0;
}

.studio-feature__disc {
	width: 58px;
	height: 58px;
	background: #f4c95d;
	border: 9px solid #101313;
	border-radius: 50%;
}

.studio-feature__disc--one {
	top: 45px;
	left: 40px;
}

.studio-feature__disc--two {
	right: 48px;
	bottom: 26px;
	background: #6ff4be;
}

.studio-feature__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 10px;
	padding: 16px;
	color: #ffffff;
	background: #101313;
	border-radius: 7px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	transition: 180ms ease;
}

.studio-feature__button:hover,
.studio-feature__button:focus-visible {
	color: #101313;
	background: #6ff4be;
}

.studio-awards {
	border-top: 1px solid #d9d3cf;
}

.studio-award {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto 44px;
	gap: 18px;
	align-items: center;
	min-height: 102px;
	border-bottom: 1px solid #d9d3cf;
}

.studio-award h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.9rem);
	font-weight: 600;
	letter-spacing: -0.07em;
}

.studio-award span {
	padding: 5px 14px;
	border: 1px solid #d9d3cf;
	border-radius: 100px;
	font-size: 0.68rem;
	font-weight: 700;
}

.studio-award i {
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
	margin-left: auto;
	background: #101313;
	clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
}

.studio-award i::after {
	position: absolute;
	inset: 9px;
	background: #f4f1ef;
	content: "";
	transform: rotate(45deg);
}

.studio-award:nth-child(2) i {
	clip-path: polygon(50% 0, 100% 76%, 84% 100%, 16% 100%, 0 76%);
}

.studio-award:nth-child(3) i {
	border-radius: 50% 50% 8px 8px;
	clip-path: none;
}

.studio-award:nth-child(3) i::after {
	inset: 8px;
	border-radius: 50%;
}

.studio-award:nth-child(4) i {
	border-radius: 50%;
}

.studio-award:nth-child(4) i::after {
	inset: 7px 14px 7px 5px;
	border-radius: 50%;
	transform: none;
}

.studio-award:nth-child(5) i {
	clip-path: polygon(0 0, 40% 0, 40% 35%, 100% 35%, 100% 100%, 60% 100%, 60% 65%, 0 65%);
}

.studio-award:nth-child(5) i::after {
	display: none;
}

.services-ticker {
	overflow: hidden;
	color: #080a08;
	background: #c8ff16;
	font-family: "Poppins", sans-serif;
}

.contact-hero {
	position: relative;
	overflow: hidden;
	min-height: 380px;
	color: #ffffff;
	background:
		radial-gradient(circle at 8% 65%, rgba(205, 255, 47, 0.3), transparent 26%),
		radial-gradient(circle at 68% 18%, rgba(57, 113, 255, 0.08), transparent 28%),
		linear-gradient(120deg, #0b120b, #05090a 58%, #080b12);
	font-family: "Poppins", sans-serif;
	isolation: isolate;
}

.contact-hero__noise {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.18;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 0.55px, transparent 0.75px),
		radial-gradient(circle, rgba(205, 255, 47, 0.45) 0 0.45px, transparent 0.7px);
	background-position: 0 0, 13px 17px;
	background-size: 17px 17px, 23px 23px;
}

.contact-hero__glow {
	position: absolute;
	bottom: -190px;
	left: -160px;
	z-index: -1;
	width: 430px;
	height: 430px;
	background: #baff00;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.32;
}

.contact-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
	gap: 70px;
	width: min(1350px, calc(100% - 48px));
	min-height: 380px;
	margin-inline: auto;
	align-items: center;
}

.contact-hero__copy h1 {
	margin: 0;
	font-size: clamp(3.625rem, calc(8.4vw - 30px), 8.125rem);
	font-weight: 300;
	letter-spacing: -0.08em;
	line-height: 1;
	text-transform: none;
}

.contact-hero__copy h1 span {
	color: #cdff2f;
}

.contact-hero__copy nav {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-top: 38px;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.contact-hero__copy nav a,
.contact-hero__copy nav span {
	color: #ffffff;
	text-decoration: none;
}

.contact-hero__copy nav a:hover,
.contact-hero__copy nav a:focus-visible {
	color: #cdff2f;
	outline: none;
}

.contact-hero__copy nav i {
	width: 10px;
	height: 10px;
	border-top: 2px solid #cdff2f;
	border-right: 2px solid #cdff2f;
	transform: rotate(45deg);
}

.contact-hero__visual {
	position: relative;
	display: grid;
	min-height: 330px;
	place-items: center;
}

.contact-hero__orb {
	position: relative;
	width: 285px;
	height: 285px;
	overflow: hidden;
	background:
		radial-gradient(circle at 62% 60%, rgba(0, 255, 160, 0.92), transparent 20%),
		radial-gradient(circle at 35% 25%, rgba(91, 93, 255, 0.95), transparent 38%),
		linear-gradient(145deg, #170d53, #003c47 58%, #10dc8e);
	border-radius: 50%;
	box-shadow:
		0 0 60px rgba(48, 105, 255, 0.22),
		0 0 80px rgba(19, 255, 160, 0.12);
	animation: growhix-contact-orb-float 6s ease-in-out infinite;
}

.contact-hero__orb::before {
	position: absolute;
	inset: -15%;
	background: repeating-radial-gradient(
		ellipse at 50% 50%,
		transparent 0 8px,
		rgba(90, 123, 255, 0.9) 9px 11px,
		rgba(0, 255, 179, 0.56) 12px 14px,
		transparent 15px 21px
	);
	content: "";
	transform: rotate(28deg) scaleX(1.35);
	animation: growhix-contact-orb-lines 13s linear infinite;
}

.contact-hero__orb::after {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.28), transparent 18%);
	border-radius: inherit;
	content: "";
}

.contact-hero__orb i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130%;
	height: 18px;
	background: linear-gradient(90deg, transparent, rgba(105, 81, 255, 0.92), rgba(0, 255, 176, 0.94), transparent);
	border-radius: 50%;
	filter: blur(1px);
	transform: translate(-50%, -50%) rotate(var(--contact-orb-angle));
}

.contact-hero__orb i:nth-child(1) { --contact-orb-angle: 12deg; }
.contact-hero__orb i:nth-child(2) { --contact-orb-angle: 28deg; }
.contact-hero__orb i:nth-child(3) { --contact-orb-angle: 44deg; }
.contact-hero__orb i:nth-child(4) { --contact-orb-angle: 60deg; }
.contact-hero__orb i:nth-child(5) { --contact-orb-angle: 76deg; }
.contact-hero__orb i:nth-child(6) { --contact-orb-angle: 92deg; }
.contact-hero__orb i:nth-child(7) { --contact-orb-angle: 108deg; }

.contact-hero__seal {
	position: absolute;
	top: 8px;
	right: 30px;
	display: grid;
	width: 170px;
	height: 170px;
	place-items: center;
	color: #ffffff;
	background: #030403;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.42),
		inset 0 0 0 1px rgba(205, 255, 47, 0.05);
	animation: growhix-hero-icon-in 800ms 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-hero__seal svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	animation: growhix-contact-seal-spin 18s linear infinite;
}

.contact-hero__seal text {
	fill: rgba(255, 255, 255, 0.94);
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.04em;
}

.contact-hero__seal span {
	display: grid;
	width: 78px;
	height: 78px;
	place-items: center;
	color: #132300;
	background: #cdff2f;
	border-radius: 50%;
	font-size: 1.8rem;
	font-weight: 800;
}

.contact-page-content {
	color: #ffffff;
	background: #080a08;
}

.contact-connect {
	position: relative;
	overflow: hidden;
	padding: 96px 24px 110px;
	color: #ffffff;
	background: #05090c;
	font-family: "Poppins", sans-serif;
	isolation: isolate;
}

.contact-connect__glow {
	position: absolute;
	top: -230px;
	right: -190px;
	z-index: -1;
	width: 620px;
	height: 620px;
	background: rgba(161, 224, 0, 0.18);
	border-radius: 50%;
	filter: blur(110px);
}

.contact-connect__inner {
	width: min(1350px, 100%);
	margin-inline: auto;
}

.contact-connect__heading {
	text-align: center;
}

.contact-connect__heading p {
	display: flex;
	gap: 12px;
	margin: 0;
	align-items: center;
	justify-content: center;
	color: #cdff2f;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.contact-connect__heading p i {
	position: relative;
	width: 17px;
	height: 17px;
	border: 3px solid #cdff2f;
	border-radius: 50%;
}

.contact-connect__heading p i::after {
	position: absolute;
	right: 2px;
	bottom: -1px;
	left: 2px;
	height: 5px;
	background: #cdff2f;
	border-radius: 50% 50% 3px 3px;
	content: "";
}

.contact-connect__heading h2 {
	margin: 24px 0 0;
	font-size: clamp(2.6rem, 4.4vw, 4.8rem);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 1;
	text-transform: uppercase;
}

.contact-connect__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: 52px;
}

.contact-connect__cards > * {
	display: flex;
	gap: 20px;
	min-height: 112px;
	padding: 20px 25px;
	align-items: center;
	color: #ffffff;
	background: #11161b;
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	text-decoration: none;
	transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.contact-connect__cards > a:hover,
.contact-connect__cards > a:focus-visible {
	background: #151c18;
	border-color: rgba(205, 255, 47, 0.35);
	outline: none;
	transform: translateY(-5px);
}

.contact-connect__cards span {
	font-size: 0.93rem;
	line-height: 1.55;
}

.contact-connect__cards b {
	display: block;
	margin-bottom: 3px;
	font-size: 1.05rem;
	font-weight: 600;
	text-transform: uppercase;
}

.contact-connect__icon {
	position: relative;
	display: block;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	color: #081000;
	background: #cdff2f;
	border-radius: 50%;
}

.contact-connect__icon::before,
.contact-connect__icon::after {
	position: absolute;
	content: "";
}

.contact-connect__icon--email::before {
	inset: 19px 15px;
	border: 2px solid currentcolor;
	border-radius: 3px;
}

.contact-connect__icon--email::after {
	top: 19px;
	left: 18px;
	width: 20px;
	height: 14px;
	border-right: 2px solid currentcolor;
	border-bottom: 2px solid currentcolor;
	transform: rotate(45deg) skew(-8deg, -8deg);
}

.contact-connect__icon--phone::before {
	top: 17px;
	left: 19px;
	width: 21px;
	height: 26px;
	border: 3px solid currentcolor;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 8px 4px 10px 10px;
	transform: rotate(-42deg);
}

.contact-connect__icon--phone::after {
	top: 16px;
	left: 18px;
	width: 9px;
	height: 9px;
	border-top: 3px solid currentcolor;
	border-left: 3px solid currentcolor;
	box-shadow: 15px 15px 0 -3px #cdff2f, 15px 15px 0 0 currentcolor;
}

.contact-connect__icon--clock::before {
	inset: 15px;
	border: 2px solid currentcolor;
	border-radius: 50%;
}

.contact-connect__icon--clock::after {
	top: 22px;
	left: 29px;
	width: 8px;
	height: 11px;
	border-bottom: 2px solid currentcolor;
	border-left: 2px solid currentcolor;
	transform: skewY(35deg);
	transform-origin: bottom left;
}

.contact-connect__main {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
	gap: 76px;
	margin-top: 112px;
	align-items: center;
}

.contact-connect__media {
	position: relative;
	min-height: 570px;
}

.contact-connect__image {
	position: absolute;
	object-fit: cover;
	border-radius: 22px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.38);
}

.contact-connect__image--back {
	top: 0;
	right: 0;
	width: 68%;
	height: 500px;
}

.contact-connect__image--front {
	bottom: 0;
	left: 0;
	width: 58%;
	height: 330px;
	border: 10px solid #05090c;
}

.contact-connect__media-orbit {
	position: absolute;
	top: -26px;
	left: 7%;
	width: 44px;
	height: 44px;
	border: 2px solid #cdff2f;
	border-radius: 50%;
	animation: growhix-contact-seal-spin 9s linear infinite;
}

.contact-connect__media-orbit::before {
	position: absolute;
	top: -29px;
	left: -94px;
	color: #cdff2f;
	content: "•";
	font-size: 2rem;
}

.contact-connect__form {
	padding: 36px;
	background: #10151a;
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.contact-connect__form h3 {
	margin: 0 0 28px;
	font-size: 1.65rem;
	font-weight: 600;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.contact-connect__notice {
	margin: -12px 0 22px;
	padding: 11px 14px;
	color: #ffffff;
	background: rgba(255, 100, 80, 0.14);
	border-radius: 8px;
	font-size: 0.86rem;
}

.contact-connect__notice.is-success {
	color: #cdff2f;
	background: rgba(205, 255, 47, 0.09);
}

.contact-connect__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.contact-connect__fields label {
	margin: 0;
}

.contact-connect__fields label > span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.contact-connect__field--wide {
	grid-column: 1 / -1;
}

.contact-connect__fields input,
.contact-connect__fields textarea {
	width: 100%;
	color: #ffffff;
	background: #191e23;
	border: 1px solid transparent;
	border-radius: 9px;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	outline: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-connect__fields input {
	height: 58px;
	padding: 0 17px;
}

.contact-connect__fields textarea {
	min-height: 140px;
	padding: 17px;
	resize: vertical;
}

.contact-connect__fields input::placeholder,
.contact-connect__fields textarea::placeholder {
	color: rgba(255, 255, 255, 0.58);
}

.contact-connect__fields input:focus,
.contact-connect__fields textarea:focus {
	background: #1c231f;
	border-color: rgba(205, 255, 47, 0.55);
	box-shadow: 0 0 0 3px rgba(205, 255, 47, 0.08);
}

.contact-connect__form button {
	display: inline-flex;
	gap: 18px;
	min-height: 54px;
	margin-top: 28px;
	margin-left: auto;
	padding: 0 24px;
	align-items: center;
	color: #101600;
	background: #cdff2f;
	border: 0;
	border-radius: 8px;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.contact-connect__form button:hover,
.contact-connect__form button:focus-visible {
	background: #ffffff;
	outline: none;
	transform: translateY(-3px);
}

.contact-connect__form button i {
	font-size: 1.2rem;
	font-style: normal;
}

.contact-connect__map {
	height: 440px;
	margin-top: 112px;
	overflow: hidden;
	background: #11161b;
	border: 1px solid rgba(205, 255, 47, 0.18);
	border-radius: 22px;
}

.contact-connect__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.55) invert(0.08) contrast(0.92);
}

@media (max-width: 1000px) {
	.contact-connect__main {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.contact-connect__media {
		width: min(680px, 100%);
		margin-inline: auto;
	}
}

@media (max-width: 760px) {
	.contact-connect {
		padding: 72px 12px 80px;
	}

	.contact-connect__cards {
		grid-template-columns: 1fr;
		margin-top: 38px;
	}

	.contact-connect__main {
		margin-top: 72px;
	}

	.contact-connect__media {
		min-height: 450px;
	}

	.contact-connect__image--back {
		width: 78%;
		height: 390px;
	}

	.contact-connect__image--front {
		width: 68%;
		height: 250px;
		border-width: 7px;
	}

	.contact-connect__form {
		padding: 24px 16px;
	}

	.contact-connect__fields {
		grid-template-columns: 1fr;
	}

	.contact-connect__field--wide {
		grid-column: auto;
	}

	.contact-connect__form button {
		width: 100%;
		justify-content: center;
	}

	.contact-connect__map {
		height: 360px;
		margin-top: 72px;
	}
}

.site-header--contact {
	color: #ffffff;
	background: #080b09;
	border-color: rgba(255, 255, 255, 0.12);
}

.site-header--contact .site-title,
.site-header--contact .site-navigation a {
	color: #ffffff;
}

@keyframes growhix-contact-orb-float {
	0%,
	100% {
		transform: translateY(0) rotate(-2deg);
	}

	50% {
		transform: translateY(-14px) rotate(2deg);
	}
}

@keyframes growhix-contact-orb-lines {
	to {
		transform: rotate(388deg) scaleX(1.35);
	}
}

@keyframes growhix-contact-seal-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 900px) {
	.contact-hero__inner {
		grid-template-columns: minmax(0, 0.85fr) minmax(330px, 1fr);
		gap: 24px;
	}

	.contact-hero__orb {
		width: 240px;
		height: 240px;
	}

	.contact-hero__seal {
		right: 0;
		width: 140px;
		height: 140px;
	}
}

@media (max-width: 650px) {
	.global-site-header {
		padding: 8px 12px 0;
	}

	.global-site-header--over-hero {
		margin-bottom: -72px;
	}

	.global-site-header--over-hero + .site-main .contact-hero {
		padding-top: 72px;
	}

	.contact-hero {
		min-height: 500px;
	}

	.contact-hero__inner {
		display: block;
		width: calc(100% - 24px);
		min-height: 500px;
		padding: 70px 0 28px;
	}

	.contact-hero__copy h1 {
		font-size: clamp(2.125rem, calc(18vw - 30px), 4.125rem);
	}

	.contact-hero__copy nav {
		margin-top: 24px;
		font-size: 0.78rem;
	}

	.contact-hero__visual {
		position: absolute;
		right: -18px;
		bottom: 6px;
		min-height: auto;
	}

	.contact-hero__orb {
		width: 205px;
		height: 205px;
	}

	.contact-hero__seal {
		top: -34px;
		right: 8px;
		width: 112px;
		height: 112px;
		border-width: 4px;
	}

	.contact-hero__seal text {
		font-size: 18px;
	}

	.contact-hero__seal span {
		width: 54px;
		height: 54px;
		font-size: 1.35rem;
	}
}

.services-ticker__track {
	display: flex;
	width: max-content;
	animation: growhix-services-ticker 25s linear infinite;
}

.services-ticker__group {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	min-height: 86px;
}

.services-ticker span {
	display: inline-flex;
	align-items: center;
	min-height: 86px;
	padding-inline: 25px;
	font-size: clamp(1.25rem, 1.55vw, 1.85rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.services-ticker i {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	width: 52px;
	height: 86px;
	align-items: center;
	justify-content: center;
	color: transparent;
	font-style: normal;
	line-height: 1;
}

.services-ticker i::before,
.services-ticker i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 4px;
	background: #080a08;
	border-radius: 999px;
	content: "";
	transform: translate(-50%, -50%) rotate(60deg);
}

.services-ticker i::after {
	transform: translate(-50%, -50%) rotate(-60deg);
}

.services-ticker i {
	background:
		linear-gradient(#080a08, #080a08) center / 30px 4px no-repeat;
}

@keyframes growhix-services-ticker {
	to {
		transform: translateX(-25%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.services-ticker__track {
		animation-play-state: paused;
	}
}

@media (max-width: 600px) {
	.services-ticker__group {
		min-height: 68px;
	}

	.services-ticker span {
		min-height: 68px;
		padding-inline: 18px;
	}

	.services-ticker i {
		width: 42px;
		height: 68px;
	}
}

.work-process {
	color: #f5f5f3;
	background: #0d0e0e;
	font-family: "Poppins", sans-serif;
}

.work-process__inner {
	width: min(1350px, calc(100% - 48px));
	padding: clamp(72px, 8vw, 130px) 0 clamp(80px, 8vw, 126px);
	margin-inline: auto;
}

.work-process__eyebrow {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.88rem;
	font-weight: 500;
	text-transform: uppercase;
}

.work-process h2 {
	margin: 0;
	font-size: clamp(4rem, 7.2vw, 8.4rem);
	font-weight: 600;
	letter-spacing: -0.07em;
	line-height: 1.04;
	text-align: center;
}

.work-process h2 span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
}

.work-process__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: clamp(56px, 6vw, 86px);
}

.work-process__card {
	position: relative;
	min-height: 360px;
	padding: 30px 28px;
	overflow: hidden;
	background: #121416;
	border-radius: 9px;
}

.work-process__card > p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
	font-weight: 500;
	text-transform: uppercase;
}

.work-process__card > span {
	position: absolute;
	top: 8px;
	right: 24px;
	color: transparent;
	font-size: clamp(5rem, 7vw, 8rem);
	font-weight: 500;
	letter-spacing: -0.08em;
	line-height: 1;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
}

.work-process__card h3 {
	position: relative;
	z-index: 1;
	margin: 130px 0 22px;
	font-size: clamp(1.4rem, 1.7vw, 1.8rem);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.2;
}

.work-process__card > div {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.91rem;
	line-height: 1.75;
}

@media (max-width: 980px) {
	.work-process__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.work-process__inner {
		width: calc(100% - 24px);
		padding-block: 64px;
	}

	.work-process h2 {
		font-size: clamp(2.35rem, 10.5vw, 3.25rem);
		line-height: 1.04;
		text-align: left;
	}

	.work-process h2 span {
		white-space: nowrap;
	}

	.work-process__grid {
		grid-template-columns: 1fr;
		margin-top: 46px;
	}

	.work-process__card {
		min-height: 320px;
	}
}

.trusted-brands {
	color: #ffffff;
	background: #000000;
}

.trusted-brands__inner {
	padding-block: 74px 88px;
}

.trusted-brands__inner > p {
	margin: 0 0 26px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
	font-weight: 600;
}

.trusted-brands__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.trusted-brand {
	display: flex;
	gap: 11px;
	align-items: center;
	justify-content: center;
	min-height: 118px;
	padding: 18px;
	color: #101313;
	background: #ffffff;
	transition: 180ms ease;
}

.trusted-brand:hover {
	box-shadow: 0 16px 30px rgba(40, 34, 31, 0.08);
	transform: translateY(-5px);
}

.trusted-brand strong {
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.08em;
}

.trusted-brand__mark {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 31px;
	height: 31px;
	background: #ff4b28;
}

.trusted-brand__mark::before,
.trusted-brand__mark::after {
	position: absolute;
	content: "";
}

.trusted-brand__mark--orbit {
	overflow: hidden;
	border-radius: 50%;
}

.trusted-brand__mark--orbit::before,
.trusted-brand__mark--orbit::after {
	left: -5px;
	width: 42px;
	height: 8px;
	border-top: 3px solid #ffffff;
	border-radius: 50%;
}

.trusted-brand__mark--orbit::before {
	top: 7px;
}

.trusted-brand__mark--orbit::after {
	top: 16px;
}

.trusted-brand__mark--prism {
	background: conic-gradient(#ff4b28 0 25%, #101313 25% 50%, #d9d3cf 50% 75%, #ff4b28 75%);
	border-radius: 50%;
	transform: rotate(45deg);
}

.trusted-brand__mark--prism::before {
	inset: 8px;
	background: #ffffff;
	border-radius: 50%;
}

.trusted-brand__mark--nodes {
	background: transparent;
}

.trusted-brand__mark--nodes::before {
	inset: 5px 0;
	background: linear-gradient(135deg, #101313 0 44%, transparent 44% 56%, #ff4b28 56%);
	border-radius: 7px;
	transform: rotate(-38deg);
}

.trusted-brand__mark--nodes::after {
	inset: 0 11px;
	background: #ff4b28;
	border: 4px solid #ffffff;
	border-radius: 8px;
	transform: rotate(45deg);
}

.trusted-brand__mark--frame {
	background: linear-gradient(45deg, #101313 0 43%, #ff4b28 43% 57%, #101313 57%);
}

.trusted-brand__mark--frame::before {
	inset: 5px;
	background: #ffffff;
}

.trusted-brand__mark--bolt {
	background: #ff4b28;
	border-radius: 50%;
}

.trusted-brand__mark--bolt::before {
	inset: 6px 10px 5px 9px;
	background: #ffffff;
	clip-path: polygon(52% 0, 100% 0, 68% 38%, 95% 38%, 25% 100%, 43% 54%, 8% 54%);
}

.global-site-header {
	position: relative;
	z-index: 100;
	padding: 34px 24px 0;
	color: #ffffff;
	background: transparent;
	font-family: "Poppins", sans-serif;
}

.global-site-header .growth-panel__header {
	width: min(1360px, 100%);
	margin-inline: auto;
}

.global-site-header--over-hero {
	margin-bottom: -106px;
}

.global-site-header--over-hero + .site-main .contact-hero {
	padding-top: 106px;
}

.growth-panel {
	position: relative;
	overflow: hidden;
	min-height: 930px;
	color: #ffffff;
	background:
		linear-gradient(to bottom, transparent 58%, rgba(17, 18, 17, 0.38) 76%, #111211 100%),
		radial-gradient(circle at 51% 70%, rgba(129, 255, 0, 0.46), transparent 43%),
		linear-gradient(135deg, #020302 22%, #112400 73%, #020302);
	font-family: "Poppins", sans-serif;
	isolation: isolate;
}

.growth-panel .growth-panel__inner {
	position: relative;
	width: min(1360px, calc(100% - 48px));
	min-height: 930px;
	padding-block: 46px 54px;
}

.growth-panel__header {
	position: relative;
	z-index: 20;
	display: flex;
	min-height: 72px;
	padding: 10px 12px 10px 22px;
	align-items: center;
	justify-content: space-between;
	background: rgba(8, 15, 8, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.growth-panel__logo {
	display: flex;
	gap: 12px;
	align-items: center;
	color: #ffffff;
	font-size: 1.72rem;
	font-weight: 600;
	letter-spacing: -0.015em;
	text-decoration: none;
}

.growth-panel__logo span {
	position: relative;
	line-height: 1;
	text-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}

.growth-panel__logo span strong {
	color: #cdff2f;
	font-weight: 700;
}

.growth-panel__logo-mark {
	position: relative;
	display: flex;
	width: 38px;
	height: 38px;
	padding: 8px 7px;
	align-items: flex-end;
	justify-content: center;
	gap: 3px;
	overflow: hidden;
	background:
		radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 30%),
		linear-gradient(145deg, rgba(205, 255, 47, 0.2), rgba(205, 255, 47, 0.04));
	border: 1px solid rgba(205, 255, 47, 0.48);
	border-radius: 12px;
	box-shadow:
		inset 0 0 14px rgba(205, 255, 47, 0.08),
		0 0 22px rgba(205, 255, 47, 0.08);
	animation: growhix-hero-icon-in 700ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.growth-panel__logo-mark b {
	display: block;
	width: 5px;
	height: 10px;
	background: #cdff2f;
	border-radius: 4px 4px 1px 1px;
	box-shadow: 0 0 10px rgba(205, 255, 47, 0.28);
	transform-origin: bottom;
	animation: growhix-logo-grow 2.4s ease-in-out infinite;
}

.growth-panel__logo-mark b:nth-child(2) {
	height: 16px;
	animation-delay: 180ms;
}

.growth-panel__logo-mark b:nth-child(3) {
	height: 23px;
	animation-delay: 360ms;
}

.growth-panel__logo-mark em {
	position: absolute;
	top: 6px;
	right: 5px;
	width: 12px;
	height: 8px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	border-radius: 0 8px 0 0;
	font-style: normal;
	transform: rotate(-18deg);
	animation: growhix-logo-sprout 2.4s 360ms ease-in-out infinite;
}

.growth-panel__logo:hover .growth-panel__logo-mark,
.growth-panel__logo:focus-visible .growth-panel__logo-mark {
	border-color: #cdff2f;
	box-shadow:
		inset 0 0 18px rgba(205, 255, 47, 0.14),
		0 0 28px rgba(205, 255, 47, 0.22);
}

.growth-panel__logo:focus-visible {
	outline: none;
}

@keyframes growhix-logo-grow {
	0%,
	100% {
		opacity: 0.48;
		transform: scaleY(0.42);
	}

	45%,
	75% {
		opacity: 1;
		transform: scaleY(1);
	}
}

@keyframes growhix-logo-sprout {
	0%,
	25% {
		opacity: 0;
		transform: translate(-5px, 5px) rotate(-18deg) scale(0.55);
	}

	55%,
	82% {
		opacity: 1;
		transform: translate(0, 0) rotate(-18deg) scale(1);
	}

	100% {
		opacity: 0.5;
		transform: translate(2px, -2px) rotate(-18deg) scale(1.05);
	}
}

.growth-panel__nav {
	display: flex;
	gap: 6px;
	align-items: center;
}

.growth-panel__nav a {
	padding: 10px 15px;
	color: rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease;
}

.growth-panel__nav a:hover,
.growth-panel__nav a:focus-visible {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.09);
	outline: none;
}

.growth-panel__header-cta {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	padding: 13px 20px;
	color: #122400;
	background: #cdff2f;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 180ms ease, transform 180ms ease;
}

.growth-panel__header-cta:hover,
.growth-panel__header-cta:focus-visible {
	background: #ffffff;
	outline: none;
	transform: translateY(-2px);
}

.growth-panel__header-cta span {
	font-size: 1.15em;
	line-height: 1;
}

.growth-panel__menu {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	place-content: center;
	gap: 6px;
	background: #cdff2f;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
}

.growth-panel__menu i {
	display: block;
	width: 20px;
	height: 2px;
	background: #122400;
	transition: transform 180ms ease;
}

.growth-panel__menu[aria-expanded="true"] i:first-child {
	transform: translateY(4px) rotate(45deg);
}

.growth-panel__menu[aria-expanded="true"] i:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

.growth-panel__rating {
	position: absolute;
	top: 180px;
	right: 0;
	display: flex;
	gap: 20px;
	align-items: center;
	width: max-content;
	max-width: 100%;
	padding-bottom: 20px;
}

.growth-panel__rating::after {
	position: absolute;
	right: calc((100vw - 100%) / -2);
	bottom: 0;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.42);
	content: "";
}

.growth-panel__rating span {
	color: #cdff2f;
	font-size: 1.65rem;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.growth-panel__rating b {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.growth-panel__copy {
	position: absolute;
	top: 318px;
	left: 0;
	z-index: 2;
}

.growth-panel__copy h2 {
	margin: 0;
	font-size: clamp(7rem, 8.86vw, 10.625rem);
	font-weight: 300;
	letter-spacing: -0.08em;
	line-height: 1;
}

.growth-panel__copy h2 span {
	color: #cdff2f;
}

.growth-panel__copy p {
	margin: 22px 0 0;
	font-size: clamp(2.7rem, 3.34vw, 4rem);
	font-weight: 300;
	letter-spacing: -0.045em;
	line-height: 1.16;
}

.growth-panel__actions {
	display: flex;
	gap: 14px;
	margin-top: 76px;
}

.growth-panel__button {
	position: relative;
	display: inline-flex;
	gap: 20px;
	min-height: 62px;
	padding: 7px 8px 7px 24px;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	border: 1px solid rgba(205, 255, 47, 0.72);
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	text-decoration: none;
	transition:
		color 260ms ease,
		background 260ms ease,
		border-color 260ms ease,
		box-shadow 260ms ease,
		transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.growth-panel__button::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 70%);
	content: "";
	transform: translateX(-130%);
	transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.growth-panel__button span {
	position: relative;
	display: grid;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	place-items: center;
	overflow: hidden;
	color: #0d1700;
	background: #ffffff;
	border-radius: 50%;
	font-size: 0;
	line-height: 1;
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
	transition: color 240ms ease, background 240ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.growth-panel__button span::before,
.growth-panel__button span::after {
	position: absolute;
	content: "";
}

.growth-panel__button span::before {
	width: 15px;
	height: 2px;
	background: currentcolor;
	border-radius: 99px;
	transform: rotate(-45deg);
}

.growth-panel__button span::after {
	width: 8px;
	height: 8px;
	border-top: 2px solid currentcolor;
	border-right: 2px solid currentcolor;
	transform: translate(4px, -4px);
}

.growth-panel__button:hover::before,
.growth-panel__button:focus-visible::before {
	transform: translateX(130%);
}

.growth-panel__button--solid {
	color: #142300;
	background: linear-gradient(135deg, #d9ff58, #baff00);
	box-shadow:
		0 14px 34px rgba(151, 212, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.growth-panel__button--outline {
	color: #cdff2f;
	background: rgba(9, 18, 5, 0.62);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.04),
		0 12px 28px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(12px);
}

.growth-panel__button--outline span {
	color: #101a00;
	background: #cdff2f;
}

.growth-panel__button:hover,
.growth-panel__button:focus-visible {
	color: #101700;
	background: #ffffff;
	border-color: #ffffff;
	box-shadow:
		0 18px 42px rgba(205, 255, 47, 0.2),
		0 7px 20px rgba(0, 0, 0, 0.22);
	outline: none;
	transform: translateY(-4px);
}

.growth-panel__button:hover span,
.growth-panel__button:focus-visible span {
	color: #ffffff;
	background: #101700;
	transform: rotate(45deg) scale(1.04);
}

.growth-testimonial {
	position: absolute;
	right: 0;
	bottom: 70px;
	z-index: 2;
	width: 345px;
	overflow: hidden;
	color: #101313;
	background: #ffffff;
	border-radius: 8px;
}

.growth-testimonial__portrait {
	position: relative;
	overflow: hidden;
	height: 366px;
	background: #ff6b00;
}

.growth-testimonial__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.growth-testimonial__quote {
	padding: 21px 18px 23px;
}

.growth-testimonial__quote p {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1.34;
}

.growth-testimonial__quote span {
	display: block;
	margin-top: 12px;
	font-size: 1rem;
	font-weight: 400;
}

.growth-panel__bottom {
	position: absolute;
	right: auto;
	bottom: 119px;
	left: calc((100vw - 100%) / -2);
	display: flex;
	align-items: center;
	width: 640px;
}

.growth-panel__bottom span {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.48);
}

.growth-panel__bottom i {
	margin-left: 0;
	color: #cdff2f;
	font-size: 4.45rem;
	font-style: normal;
	line-height: 0;
	animation:
		growhix-hero-icon-in 750ms 950ms cubic-bezier(0.16, 1, 0.3, 1) both,
		growhix-hero-star-spin 9s 1.7s linear infinite;
}

.growth-panel__seal {
	position: absolute;
	right: 370px;
	bottom: 49px;
	left: auto;
	display: grid;
	width: 154px;
	height: 154px;
	place-items: center;
	background: #030403;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	animation: growhix-hero-icon-in 800ms 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.growth-panel__seal svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	animation: growhix-hero-seal-spin 16s 1.5s linear infinite;
}

.growth-panel__seal text {
	fill: rgba(255, 255, 255, 0.94);
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 300;
}

.growth-panel__seal span {
	display: grid;
	width: 72px;
	height: 72px;
	place-items: center;
	color: #132300;
	background: #cdff2f;
	border-radius: 50%;
	font-size: 1.75rem;
	font-weight: 800;
}

.growth-panel__ring {
	position: absolute;
	z-index: -1;
	width: 330px;
	height: 330px;
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.55) rotate(-100deg);
	animation: growhix-hero-ring-in 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.growth-panel__ring::before {
	position: absolute;
	inset: 0;
	padding: 38px;
	background: conic-gradient(
		from -90deg,
		rgba(255, 255, 255, 0.24),
		rgba(205, 255, 47, 0.28),
		rgba(255, 255, 255, 0.14),
		rgba(255, 255, 255, 0.24)
	);
	border-radius: inherit;
	content: "";
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.growth-panel__ring--left {
	top: 34px;
	left: 28px;
	animation-delay: 350ms;
}

.growth-panel__ring--right {
	right: clamp(24px, 4vw, 76px);
	bottom: 92px;
	animation-delay: 650ms;
}

@keyframes growhix-hero-ring-in {
	0% {
		opacity: 0;
		transform: scale(0.55) rotate(-100deg);
		clip-path: circle(0 at 50% 50%);
	}

	65% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: scale(1) rotate(0);
		clip-path: circle(75% at 50% 50%);
	}
}

@keyframes growhix-hero-icon-in {
	0% {
		opacity: 0;
		transform: translateY(22px) scale(0.4) rotate(-90deg);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1) rotate(0);
	}
}

@keyframes growhix-hero-star-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes growhix-hero-seal-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1100px) {
	.growth-panel__ring {
		width: 250px;
		height: 250px;
	}

	.growth-panel__ring::before {
		padding: 28px;
	}

	.growth-panel__ring--left {
		top: 118px;
		left: 18px;
	}

	.growth-panel__ring--right {
		right: 18px;
		bottom: 118px;
	}
}

.why-growhix {
	color: #ffffff;
	background:
		radial-gradient(circle at 45% 35%, rgba(205, 255, 47, 0.08), transparent 30%),
		#000000;
	font-family: "Poppins", sans-serif;
}

.why-growhix__inner {
	width: min(1350px, calc(100% - 48px));
	padding: clamp(78px, 7vw, 116px) 0 84px;
	margin-inline: auto;
}

.why-growhix__header {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 54px;
	align-items: start;
}

.why-growhix__header > p {
	display: inline-flex;
	width: max-content;
	margin: 0;
	padding: 6px 8px 6px 14px;
	align-items: center;
	gap: 12px;
	background: #171717;
	border-radius: 999px;
	font-size: 0.9rem;
	line-height: 1;
}

.why-growhix__header > p span {
	padding: 5px 12px;
	color: #0b0c0b;
	background: #cdff2f;
	border-radius: 999px;
	font-weight: 700;
}

.why-growhix__header h2 {
	max-width: none;
	margin: 0;
	font-size: clamp(2.6rem, 4.2vw, 4.8rem);
	font-weight: 500;
	letter-spacing: -0.065em;
	line-height: 0.98;
}

.why-growhix__header h2 span {
	display: block;
	white-space: nowrap;
}

.why-growhix__header div > p {
	max-width: 1050px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	line-height: 1.55;
}

.why-growhix__content {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 28px;
	margin-top: 48px;
}

.why-growhix__image {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	border-radius: 20px;
}

.why-growhix__image img {
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.why-growhix__experience {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	width: min(235px, 42%);
	aspect-ratio: 1 / 0.86;
	padding: 30px 24px;
	flex-direction: column;
	justify-content: center;
	color: #080908;
	background: #cdff2f;
	border-radius: 0 20px 0 0;
}

.why-growhix__experience strong {
	font-size: clamp(3.5rem, 5vw, 5.2rem);
	font-weight: 400;
	letter-spacing: -0.08em;
	line-height: 0.82;
}

.why-growhix__experience span {
	margin-top: 20px;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.12;
}

.why-growhix__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.why-growhix__cards article {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-content: center;
	min-height: 204px;
	padding: 28px;
	background:
		linear-gradient(130deg, rgba(205, 255, 47, 0.16), transparent 48%),
		#111211;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	box-shadow: inset 0 0 28px rgba(205, 255, 47, 0.04);
}

.why-growhix__cards i {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: #0b0c0b;
	background: #cdff2f;
	border-radius: 50%;
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 700;
}

.why-growhix__cards h3 {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.2;
}

.why-growhix__cards p {
	grid-column: 1 / -1;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	line-height: 1.55;
}

.why-growhix__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	margin-top: 76px;
}

.why-growhix__metrics div {
	display: flex;
	flex-direction: column;
}

.why-growhix__metrics strong {
	font-size: clamp(2.6rem, 4vw, 4.2rem);
	font-weight: 400;
	letter-spacing: -0.07em;
	line-height: 1;
}

.why-growhix__metrics span {
	margin-top: 10px;
	color: #cdff2f;
	font-size: 1rem;
	font-weight: 600;
}

@media (max-width: 980px) {
	.why-growhix__header {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.why-growhix__content {
		grid-template-columns: 1fr;
	}

	.why-growhix__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.why-growhix__inner {
		width: calc(100% - 24px);
		padding-block: 64px;
	}

	.why-growhix__cards,
	.why-growhix__metrics {
		grid-template-columns: 1fr;
	}

	.why-growhix__header h2 span {
		white-space: normal;
	}

	.why-growhix__image {
		min-height: 390px;
	}
}

.client-voices {
	color: #ffffff;
	background: #000000;
	font-family: "Poppins", sans-serif;
}

.client-voices__inner {
	padding-block: 88px 92px;
}

.client-voices__header {
	text-align: center;
}

.client-voices__header p {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
}

.client-voices__header p i {
	width: 10px;
	height: 10px;
	background: #738017;
	border-radius: 50%;
}

.client-voices__header h2 {
	margin: 20px 0 0;
	font-size: clamp(3.2rem, 5vw, 5.2rem);
	font-weight: 300;
	letter-spacing: -0.028em;
	line-height: 1;
}

.client-voices__header h2 span {
	color: #cdff2f;
	font-weight: 500;
}

.client-voices__layout {
	display: grid;
	grid-template-columns: 170px minmax(0, 1.35fr) minmax(340px, 0.9fr);
	gap: 20px;
	margin-top: 76px;
}

.client-voices__people {
	display: grid;
	align-content: space-around;
	justify-items: center;
	min-height: 470px;
	padding-block: 34px;
	background: #222222;
	border-radius: 12px;
}

.client-voice-avatar {
	width: 74px;
	height: 74px;
	padding: 0;
	background-color: #b8c4bf;
	background-image: url("../images/testimonial-team.jpg");
	background-repeat: no-repeat;
	background-size: 210% 210%;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: 180ms ease;
}

.client-voice-avatar:hover,
.client-voice-avatar:focus-visible {
	transform: scale(1.06);
}

.client-voice-avatar.is-active {
	outline: 4px solid #cdff2f;
	outline-offset: 2px;
}

.client-voice-avatar--one {
	background-position: left top;
}

.client-voice-avatar--two {
	background-position: right top;
}

.client-voice-avatar--three {
	background-position: left bottom;
}

.client-voice-avatar--four {
	background-position: right bottom;
}

.client-voice-card {
	display: flex;
	min-height: 470px;
	padding: 58px 68px;
	flex-direction: column;
	background:
		linear-gradient(135deg, rgba(66, 116, 0, 0.82), rgba(0, 0, 0, 0.98)),
		#173400;
	border: 1px solid #92c900;
	border-radius: 12px;
}

.client-voice-card h3 {
	margin: 0;
	font-size: 2.75rem;
	font-weight: 300;
	letter-spacing: -0.08em;
	line-height: 1;
}

.client-voice-card__role {
	margin: 14px 0 0;
	color: #cfff36;
	font-size: 0.86rem;
	font-weight: 300;
}

.client-voice-card blockquote {
	max-width: 620px;
	margin: 72px 0 0;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.55;
}

.client-voice-card__stars {
	margin: auto 0 0;
	color: #7d857c;
	font-size: 2.4rem;
	letter-spacing: 0.08em;
	line-height: 1;
}

.client-voice-card__stars span {
	color: #cdff2f;
}

.client-voice-card__stars b {
	color: #7d857c;
	font-weight: inherit;
}

.client-consulting {
	display: flex;
	min-height: 470px;
	padding: 68px 48px 60px;
	flex-direction: column;
	justify-content: space-between;
	background:
		linear-gradient(135deg, transparent 22%, rgba(255, 255, 255, 0.055) 22% 35%, transparent 35% 46%, rgba(255, 255, 255, 0.04) 46% 58%, transparent 58%),
		#050505;
	border-radius: 12px;
}

.client-consulting__icon {
	position: relative;
	width: 78px;
	height: 67px;
	border: 8px solid #cdff2f;
	border-radius: 50%;
}

.client-consulting__icon::before,
.client-consulting__icon::after {
	position: absolute;
	background: #cdff2f;
	content: "";
}

.client-consulting__icon::before {
	right: -20px;
	bottom: 8px;
	width: 20px;
	height: 31px;
	border-radius: 0 15px 15px 0;
}

.client-consulting__icon::after {
	right: 5px;
	bottom: -16px;
	width: 29px;
	height: 8px;
	border-radius: 8px;
	transform: rotate(-18deg);
}

.client-consulting__icon i {
	position: absolute;
	top: 23px;
	width: 8px;
	height: 8px;
	background: #cdff2f;
	border-radius: 50%;
}

.client-consulting__icon i:first-child {
	left: 17px;
}

.client-consulting__icon i:nth-child(2) {
	left: 29px;
}

.client-consulting__icon i:nth-child(3) {
	left: 41px;
}

.client-consulting h3 {
	margin: 0;
	font-size: 2.25rem;
	font-weight: 300;
	letter-spacing: -0.07em;
	line-height: 1.1;
}

.client-consulting p {
	max-width: 330px;
	margin: 16px 0 0;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.5;
}

.client-consulting a {
	display: inline-flex;
	gap: 18px;
	align-items: center;
	margin-top: 48px;
	padding: 14px 22px;
	color: #132300;
	background: #cdff2f;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	transition: 180ms ease;
}

.client-consulting a:hover,
.client-consulting a:focus-visible {
	background: #ffffff;
	transform: translateY(-3px);
}

.client-consulting a span {
	position: relative;
	width: 14px;
	height: 14px;
}

.client-consulting a span::before,
.client-consulting a span::after {
	position: absolute;
	content: "";
}

.client-consulting a span::before {
	top: 1px;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid currentcolor;
	border-right: 2px solid currentcolor;
}

.client-consulting a span::after {
	top: 7px;
	right: 0;
	width: 14px;
	height: 2px;
	background: currentcolor;
	transform: rotate(-45deg);
	transform-origin: right center;
}

.agency-services {
	color: #f7f7f4;
	background: #050505;
	font-family: "Poppins", sans-serif;
}

.agency-services .agency-services__inner {
	width: min(1300px, calc(100% - 48px));
	padding-block: 80px 70px;
}

.agency-services__header {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
	gap: 48px;
	align-items: end;
	min-height: 176px;
	padding: 28px 0 38px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.agency-services__header::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100px;
	border-top: 1px solid #ffffff;
	content: "";
}

.agency-services__header p {
	margin: 0;
}

.agency-services__header div > p {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #cdff2f;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.agency-services__header div > p i,
.agency-service button > i {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	background: #cdff2f;
	clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
	filter: drop-shadow(0 0 8px rgba(205, 255, 47, 0.34));
}

.agency-services__header h2 {
	margin: 16px 0 0;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 500;
	letter-spacing: -0.075em;
	line-height: 1;
}

.agency-services__header h2 span {
	color: #a1a1a1;
	font-weight: 400;
}

.agency-services__header > p {
	padding-bottom: 4px;
	color: #929292;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.55;
	text-align: right;
}

.agency-service {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.agency-service.is-active {
	z-index: 3;
}

.agency-service button {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
	min-height: 124px;
	padding: 0;
	color: #8b8b8b;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	text-align: left;
	transition: color 220ms ease;
}

.agency-service button:hover,
.agency-service button:focus-visible,
.agency-service.is-active button {
	color: #f8f8f6;
}

.agency-service button:focus-visible {
	outline: 1px solid #cdff2f;
	outline-offset: -5px;
}

.agency-service button span {
	font-size: clamp(1.85rem, 2.8vw, 2.65rem);
	font-weight: 500;
	letter-spacing: -0.075em;
	line-height: 1.05;
}

.agency-service button b {
	position: relative;
	width: 22px;
	height: 18px;
	margin-left: auto;
	color: #cdff2f;
	opacity: 0;
	transition: opacity 180ms ease, transform 180ms ease;
}

.agency-service button b::before,
.agency-service button b::after {
	position: absolute;
	content: "";
}

.agency-service button b::before {
	top: 8px;
	right: 0;
	width: 21px;
	height: 2px;
	background: currentcolor;
}

.agency-service button b::after {
	top: 3px;
	right: 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentcolor;
	border-right: 2px solid currentcolor;
	transform: rotate(45deg);
}

.agency-service.is-active button b {
	opacity: 1;
	transform: translateX(-3px);
}

.agency-service__content {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	transition: opacity 240ms ease;
}

.agency-service__content[hidden] {
	display: block;
	visibility: hidden;
}

.agency-service.is-active .agency-service__content {
	opacity: 1;
}

.agency-service__content p {
	position: absolute;
	top: 50%;
	right: 64px;
	width: min(28vw, 330px);
	margin: 0;
	color: #929292;
	font-size: 0.9rem;
	line-height: 1.7;
	transform: translateY(-50%);
}

.agency-service__art {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 290px;
	height: 230px;
	overflow: hidden;
	background:
		linear-gradient(rgba(205, 255, 47, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(205, 255, 47, 0.08) 1px, transparent 1px),
		linear-gradient(145deg, #071004, #102000 60%, #203500);
	background-size: 28px 28px, 28px 28px, auto;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.48);
	transform: translate(-50%, -50%);
}

.agency-service__art::before,
.agency-service__art::after {
	position: absolute;
	content: "";
}

.agency-service__art::before {
	right: -34px;
	bottom: -58px;
	width: 190px;
	height: 190px;
	background: radial-gradient(circle, rgba(205, 255, 47, 0.42), transparent 66%);
	filter: blur(4px);
}

.agency-service__art::after {
	right: 30px;
	bottom: 18px;
	width: 120px;
	height: 52px;
	background: rgba(205, 255, 47, 0.12);
	border: 1px solid rgba(205, 255, 47, 0.26);
	transform: rotate(-28deg) skewY(6deg);
}

.agency-service__screen {
	position: absolute;
	top: 43px;
	left: 80px;
	z-index: 3;
	display: grid;
	width: 154px;
	height: 126px;
	padding: 20px;
	place-content: center;
	color: #efffc2;
	background: linear-gradient(145deg, rgba(88, 122, 0, 0.76), rgba(19, 41, 0, 0.9));
	border: 1px solid rgba(205, 255, 47, 0.64);
	box-shadow: 14px 16px 0 rgba(66, 96, 0, 0.28);
	transform: rotate(-28deg) skewY(6deg);
}

.agency-service__screen::before,
.agency-service__screen::after {
	position: absolute;
	left: 18px;
	width: 54px;
	height: 4px;
	background: rgba(232, 255, 166, 0.58);
	content: "";
}

.agency-service__screen::before {
	top: 18px;
}

.agency-service__screen::after {
	top: 28px;
}

.agency-service__screen strong {
	font-size: 2.4rem;
	font-weight: 400;
	letter-spacing: -0.08em;
}

.agency-service__screen span {
	display: block;
	width: 70px;
	height: 3px;
	margin-bottom: 6px;
	background: rgba(232, 255, 166, 0.58);
}

.agency-service__art > i {
	position: absolute;
	z-index: 4;
	width: 62px;
	height: 44px;
	background: linear-gradient(145deg, rgba(116, 155, 10, 0.76), rgba(29, 57, 0, 0.9));
	border: 1px solid rgba(205, 255, 47, 0.5);
	box-shadow: 8px 9px 0 rgba(45, 72, 0, 0.26);
	transform: rotate(-28deg) skewY(6deg);
}

.agency-service__art > i:first-of-type {
	top: 38px;
	left: 12px;
}

.agency-service__art > i:nth-of-type(2) {
	right: 10px;
	bottom: 42px;
}

.agency-service__art > i:nth-of-type(3) {
	bottom: 24px;
	left: 46px;
	width: 82px;
}

.agency-service.is-active .agency-service__art {
	animation: growhix-service-art-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.agency-service.is-active .agency-service__screen {
	animation: growhix-service-screen-float 4s ease-in-out infinite;
}

.agency-service.is-active .agency-service__art > i:first-of-type {
	animation: growhix-service-tile-float 3.4s 180ms ease-in-out infinite;
}

.agency-service.is-active .agency-service__art > i:nth-of-type(2) {
	animation: growhix-service-tile-float 3.8s 340ms ease-in-out infinite reverse;
}

.agency-service.is-active .agency-service__art > i:nth-of-type(3) {
	animation: growhix-service-tile-float 3.1s 80ms ease-in-out infinite;
}

@keyframes growhix-service-art-in {
	from {
		opacity: 0;
		transform: translate(-50%, -44%) scale(0.92);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes growhix-service-screen-float {
	50% {
		transform: translateY(-8px) rotate(-28deg) skewY(6deg);
	}
}

@keyframes growhix-service-tile-float {
	50% {
		margin-top: -7px;
	}
}

.growhix-about {
	color: #f7f7f5;
	background: #111211;
	font-family: "Poppins", sans-serif;
}

.growhix-about__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
	gap: 48px 72px;
	width: min(1360px, calc(100% - 48px));
	padding: clamp(72px, 7vw, 128px) 0;
	margin-inline: auto;
}

.growhix-about__intro {
	position: relative;
	grid-column: 1 / -1;
	min-height: 260px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.growhix-about__intro::after {
	content: none;
}

.growhix-about__intro h2 {
	margin: 0;
	font-size: clamp(4rem, 6vw, 7rem);
	font-weight: 300;
	letter-spacing: -0.08em;
	line-height: 1;
	white-space: nowrap;
}

.growhix-about__intro h2 span {
	color: #cdff2f;
}

.growhix-about__intro p {
	max-width: 800px;
	margin: 26px 0 22px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
	line-height: 1.75;
}

.growhix-about__intro a {
	position: absolute;
	right: 0;
	top: 18px;
	display: inline-flex;
	min-height: 52px;
	padding: 0 24px;
	align-items: center;
	justify-content: center;
	color: #111211;
	background: #cdff2f;
	border: 1px solid #cdff2f;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.growhix-about__intro a:hover,
.growhix-about__intro a:focus-visible {
	color: #ffffff;
	background: transparent;
	outline: none;
	transform: translateY(-2px);
}

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

.growhix-about__gallery img {
	width: 100%;
	aspect-ratio: 1 / 1.08;
	object-fit: cover;
}

.growhix-about__story {
	align-self: start;
}

.growhix-about__story h3 {
	margin: 0;
	font-size: clamp(2rem, 2.65vw, 3.35rem);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 1.27;
}

.growhix-about__story h3 span {
	color: #898c89;
	will-change: color;
}

.growhix-about__metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px;
	margin-top: 34px;
}

.growhix-about__metrics article {
	display: grid;
	grid-template-columns: 62px 1fr;
	align-items: center;
}

.growhix-about__metrics strong {
	font-size: clamp(2.4rem, 3.2vw, 4rem);
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 1;
}

.growhix-about__metrics p {
	grid-column: 1 / -1;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
	line-height: 1.65;
}

.growhix-about__metric-icon {
	position: relative;
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.14), transparent 28%),
		linear-gradient(145deg, rgba(205, 255, 47, 0.16), rgba(205, 255, 47, 0.025));
	border: 1px solid rgba(205, 255, 47, 0.48);
	border-radius: 50%;
	box-shadow:
		inset 0 0 0 5px rgba(4, 6, 4, 0.72),
		inset 0 0 22px rgba(205, 255, 47, 0.08),
		0 8px 24px rgba(0, 0, 0, 0.32),
		0 0 24px rgba(205, 255, 47, 0.12);
	transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.growhix-about__metric-icon:hover {
	border-color: #cdff2f;
	box-shadow:
		inset 0 0 0 5px rgba(4, 6, 4, 0.72),
		inset 0 0 25px rgba(205, 255, 47, 0.13),
		0 10px 28px rgba(0, 0, 0, 0.36),
		0 0 32px rgba(205, 255, 47, 0.24);
	transform: translateY(-3px);
}

.growhix-about__metric-icon--cube {
	transform: none;
}

.growhix-about__metric-icon--cube::before,
.growhix-about__metric-icon--cube::after {
	position: absolute;
	width: 16px;
	height: 16px;
	border: 1.75px solid #cdff2f;
	border-radius: 3px;
	content: "";
	transform: rotate(45deg);
}

.growhix-about__metric-icon--cube::after {
	border-color: rgba(205, 255, 47, 0.48);
	transform: translate(5px, -5px) rotate(45deg) scale(0.92);
}

.growhix-about__metric-icon--reach::before,
.growhix-about__metric-icon--reach::after {
	position: absolute;
	top: 14px;
	width: 19px;
	height: 19px;
	border: 1.75px solid #cdff2f;
	border-radius: 50%;
	content: "";
}

.growhix-about__metric-icon--reach::before {
	left: 8px;
}

.growhix-about__metric-icon--reach::after {
	left: 19px;
	border-color: rgba(205, 255, 47, 0.62);
}

.growhix-about__metrics article:hover .growhix-about__metric-icon {
	border-color: #cdff2f;
	box-shadow:
		inset 0 0 0 5px rgba(4, 6, 4, 0.72),
		inset 0 0 25px rgba(205, 255, 47, 0.13),
		0 10px 28px rgba(0, 0, 0, 0.36),
		0 0 32px rgba(205, 255, 47, 0.24);
}

@media (max-width: 1020px) {
	.growhix-about__inner {
		position: relative;
		grid-template-columns: 1fr;
		width: min(1360px, calc(100% - 48px));
	}

	.growhix-about__intro {
		min-height: 260px;
	}
}

@media (max-width: 600px) {
	.growhix-about__inner {
		gap: 38px;
		width: calc(100% - 24px);
		padding-block: 64px;
	}

	.growhix-about__intro h2 {
		font-size: clamp(2.7rem, 12vw, 4.2rem);
	}

	.growhix-about__intro {
		min-height: 280px;
	}

	.growhix-about__intro a {
		top: auto;
		right: auto;
		bottom: 32px;
		left: 0;
	}

	.growhix-about__gallery {
		gap: 10px;
	}

	.growhix-about__story h3 {
		font-size: 1.8rem;
	}

	.growhix-about__metrics {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.site-header__inner,
	.site-footer__inner,
	.menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.site-header__inner,
	.site-footer__inner {
		padding-block: 16px;
	}

	.growhix-design-boxed .content-area {
		width: min(100% - 24px, 880px);
		padding: 24px;
		margin-block: 24px;
	}

	.growhix-design-wide .container {
		width: min(100% - 24px, 1320px);
	}

	.agency-hero__inner {
		display: block;
		min-height: auto;
		padding-block: 68px 30px;
	}

	.agency-hero h1 {
		font-size: clamp(3rem, 14.5vw, 4.5rem);
	}

	.agency-hero__description {
		font-size: 1rem;
	}

	.agency-hero__proof {
		gap: 20px;
		justify-content: space-between;
		margin-top: 50px;
	}

	.agency-hero__proof strong {
		font-size: 1.3rem;
	}

	.agency-hero__proof span {
		font-size: 0.55rem;
		letter-spacing: 0.09em;
	}

	.agency-hero__art {
		min-height: 420px;
		margin-top: 26px;
		transform: scale(0.94);
	}

	.agency-board {
		top: 68px;
		right: 0;
		width: 88%;
	}

	.agency-board__body strong {
		font-size: 3.9rem;
	}

	.agency-board__chart {
		height: 88px;
	}

	.agency-float--strategy {
		top: 22px;
		left: 0;
	}

	.agency-float--team {
		right: -7px;
		bottom: 10px;
	}

	.agency-hero__stamp {
		bottom: 0;
		left: -5px;
		width: 88px;
		height: 88px;
	}

	.agency-showcase {
		min-height: 660px;
		padding-inline: 8px;
	}

	.agency-showcase__inner {
		width: min(100% - 32px, 560px);
	}

	.agency-showcase h2 {
		font-size: clamp(3.1rem, 15vw, 4.5rem);
	}

	.agency-showcase__description {
		font-size: 0.9rem;
	}

	.agency-showcase__crystal {
		width: 190px;
		height: 170px;
		opacity: 0.72;
	}

	.agency-showcase__crystal--top {
		top: -34px;
		right: -55px;
	}

	.agency-showcase__crystal--bottom {
		bottom: -34px;
		left: -55px;
	}

	.agency-showcase__index {
		top: 24px;
		left: 20px;
	}

	.agency-showcase__side-note {
		right: 16px;
		bottom: 72px;
	}

	.studio-story__inner {
		padding-block: 54px 68px;
	}

	.studio-story__headline {
		font-size: clamp(2.7rem, 13vw, 4.2rem);
	}

	.studio-story__inline-art {
		width: 65px;
		height: 42px;
		margin-inline: 5px;
	}

	.studio-story__grid {
		display: block;
		margin-top: 54px;
	}

	.studio-feature {
		max-width: 420px;
	}

	.studio-awards {
		margin-top: 42px;
	}

	.studio-award {
		grid-template-columns: minmax(0, 1fr) auto 28px;
		gap: 10px;
		min-height: 84px;
	}

	.studio-award h3 {
		font-size: 1.18rem;
	}

	.studio-award span {
		padding: 3px 9px;
		font-size: 0.57rem;
	}

	.studio-award i {
		width: 25px;
		height: 25px;
	}

	.trusted-brands__inner {
		padding-block: 52px 62px;
	}

	.trusted-brands__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.trusted-brand {
		min-height: 96px;
		padding: 12px;
	}

	.trusted-brand:last-child {
		grid-column: 1 / -1;
	}

	.trusted-brand strong {
		font-size: 0.94rem;
	}

	.trusted-brand__mark {
		width: 27px;
		height: 27px;
	}

	.growth-panel,
	.growth-panel__inner {
		min-height: 830px;
	}

	.growth-panel .growth-panel__inner {
		width: min(100% - 24px, 1320px);
		min-height: 830px;
		padding: 6px 0 28px;
	}

	.growth-panel__header {
		min-height: 64px;
		padding: 8px 8px 8px 16px;
		border-radius: 14px;
	}

	.growth-panel__logo {
		font-size: 1.35rem;
	}

	.growth-panel__logo-mark {
		width: 32px;
		height: 32px;
		padding: 6px;
	}

	.growth-panel__header-cta {
		display: none;
	}

	.growth-panel__menu {
		display: grid;
	}

	.growth-panel__nav {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		left: 0;
		display: grid;
		gap: 3px;
		padding: 10px;
		visibility: hidden;
		background: rgba(7, 14, 7, 0.96);
		border: 1px solid rgba(255, 255, 255, 0.13);
		border-radius: 14px;
		box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.growth-panel__header.is-menu-open .growth-panel__nav {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.growth-panel__nav a {
		padding: 12px 14px;
		color: #ffffff;
	}

	.growth-panel__rating {
		top: 88px;
		right: auto;
		left: 0;
		width: auto;
		max-width: 100%;
		gap: 9px;
		padding: 9px 13px;
		background: rgba(8, 16, 7, 0.72);
		border: 1px solid rgba(205, 255, 47, 0.16);
		border-radius: 999px;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(12px);
	}

	.growth-panel__rating::after {
		content: none;
	}

	.growth-panel__rating span {
		font-size: 0.88rem;
		letter-spacing: 0;
	}

	.growth-panel__rating b {
		font-size: 0.72rem;
		font-weight: 500;
		white-space: nowrap;
	}

	.growth-panel__copy {
		top: 158px;
	}

	.growth-panel__copy h2 {
		font-size: clamp(4.1rem, 20vw, 6.3rem);
	}

	.growth-panel__copy p {
		max-width: 420px;
		font-size: clamp(1.9rem, 9vw, 2.8rem);
	}

	.growth-panel__actions {
		gap: 12px;
		margin-top: 36px;
	}

	.growth-panel__button {
		gap: 10px;
		min-height: 48px;
		padding: 5px 6px 5px 15px;
		font-size: 0.72rem;
	}

	.growth-panel__button span {
		width: 36px;
		height: 36px;
	}

	.growth-testimonial {
		right: auto;
		bottom: 18px;
		left: 0;
		width: 270px;
		box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
	}

	.growth-testimonial__portrait {
		height: 174px;
	}

	.growth-testimonial__quote p {
		font-size: 1rem;
	}

	.growth-panel__bottom,
	.growth-panel__seal {
		display: none;
	}

	.client-voices__inner {
		padding-block: 64px;
	}

	.client-voices__header h2 {
		font-size: clamp(2.8rem, 14vw, 4.1rem);
	}

	.client-voices__layout {
		display: block;
		margin-top: 48px;
	}

	.client-voices__people {
		display: flex;
		min-height: auto;
		padding: 22px 18px;
		justify-content: space-between;
	}

	.client-voice-avatar {
		width: 52px;
		height: 52px;
	}

	.client-voice-card {
		min-height: 420px;
		padding: 40px 28px;
	}

	.client-voice-card h3 {
		font-size: 2.2rem;
	}

	.client-voice-card blockquote {
		margin-top: 54px;
	}

	.client-consulting {
		min-height: 390px;
		padding: 46px 28px;
	}
}

.growhix-products {
	color: #ffffff;
	background:
		radial-gradient(circle at 85% 18%, rgba(205, 255, 47, 0.12), transparent 25%),
		#080908;
	font-family: "Poppins", sans-serif;
}

.growhix-products__inner {
	width: min(1350px, calc(100% - 48px));
	padding: clamp(80px, 8vw, 128px) 0;
	margin-inline: auto;
}

.growhix-products__header p {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
}

.growhix-products__header p i {
	width: 10px;
	height: 10px;
	background: #cdff2f;
	border-radius: 50%;
	box-shadow: 0 0 18px rgba(205, 255, 47, 0.65);
}

.growhix-products__header h2 {
	max-width: 1050px;
	margin: 20px 0 0;
	font-size: clamp(3.3rem, 6.3vw, 7rem);
	font-weight: 400;
	letter-spacing: -0.07em;
	line-height: 0.98;
}

.growhix-products__header h2 span {
	color: #cdff2f;
}

.growhix-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: clamp(64px, 7vw, 105px);
}

.growhix-product-card {
	position: relative;
	display: block;
	min-height: 310px;
	padding: 26px;
	overflow: hidden;
	color: #ffffff;
	background:
		linear-gradient(145deg, rgba(205, 255, 47, 0.1), transparent 42%),
		#111311;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	text-decoration: none;
}

.growhix-product-card::after {
	position: absolute;
	right: -55px;
	bottom: -65px;
	width: 180px;
	height: 180px;
	background: #cdff2f;
	border-radius: 50%;
	content: "";
	opacity: 0.06;
	transition: opacity 250ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.growhix-product-card:hover::after {
	opacity: 0.18;
	transform: scale(1.35);
}

.growhix-product-card > span {
	display: grid;
	width: 70px;
	height: 70px;
	place-items: center;
	color: #0a0b0a;
	background: #cdff2f;
	border-radius: 18px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.growhix-product-card > p {
	margin: 60px 0 10px;
	color: #cdff2f;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.growhix-product-card h4 {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 1.15;
}

.growhix-product-card > div {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.88rem;
	line-height: 1.6;
}

@media (max-width: 980px) {
	.growhix-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.growhix-products__inner {
		width: calc(100% - 24px);
		padding-block: 64px;
	}

	.growhix-product-grid {
		grid-template-columns: 1fr;
	}

	.growhix-product-card {
		min-height: 280px;
	}
}

/* Shared motion layer. Elements remain visible when JavaScript is unavailable. */
.has-growhix-motion [data-reveal] {
	opacity: 0;
	filter: blur(8px);
	transform: translate3d(0, 52px, 0) scale(0.985);
	transition:
		opacity 760ms cubic-bezier(0.2, 0.75, 0.25, 1),
		filter 760ms cubic-bezier(0.2, 0.75, 0.25, 1),
		transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: var(--growhix-reveal-delay, 0ms);
	will-change: opacity, filter, transform;
}

.has-growhix-motion [data-reveal].is-revealed {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0) scale(1);
}

.growhix-about__gallery,
.why-growhix__image {
	isolation: isolate;
}

.growhix-about__gallery img,
.why-growhix__image img {
	transform: translate3d(0, var(--growhix-parallax, 0), 0) scale(1.06);
	transition: filter 500ms ease;
	will-change: transform;
}


.growhix-about__gallery:hover img,
.why-growhix__image:hover img {
	filter: saturate(1.12) contrast(1.04);
}

.work-process__card,
.trusted-brand,
.why-growhix__cards article,
.growhix-product-card {
	transform:
		perspective(900px)
		rotateX(var(--growhix-tilt-x, 0deg))
		rotateY(var(--growhix-tilt-y, 0deg))
		translate3d(0, 0, 0);
	transform-style: preserve-3d;
	transition:
		transform 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease,
		background-color 220ms ease;
	will-change: transform;
}

.has-growhix-motion .work-process__card[data-reveal]:not(.is-revealed),
.has-growhix-motion .trusted-brand[data-reveal]:not(.is-revealed),
.has-growhix-motion .why-growhix__cards article[data-reveal]:not(.is-revealed),
.has-growhix-motion .growhix-product-card[data-reveal]:not(.is-revealed) {
	transform: translate3d(0, 52px, 0) scale(0.985);
}

.work-process__card:hover {
	border-color: rgba(205, 255, 47, 0.3);
	box-shadow:
		0 24px 55px rgba(0, 0, 0, 0.32),
		0 0 36px rgba(205, 255, 47, 0.08);
}

.why-growhix__cards article:hover {
	border-color: rgba(205, 255, 47, 0.5);
	box-shadow:
		0 22px 50px rgba(0, 0, 0, 0.3),
		inset 0 0 45px rgba(205, 255, 47, 0.1);
}

.growhix-product-card:hover {
	border-color: rgba(205, 255, 47, 0.46);
	box-shadow:
		0 24px 55px rgba(0, 0, 0, 0.34),
		0 0 40px rgba(205, 255, 47, 0.08);
}

.growhix-product-card:focus-visible {
	border-color: #cdff2f;
	box-shadow: 0 0 0 3px rgba(205, 255, 47, 0.28);
	outline: none;
}

.trusted-brand:hover {
	box-shadow:
		0 20px 38px rgba(0, 0, 0, 0.32),
		0 0 25px rgba(205, 255, 47, 0.12);
}

.work-process__card h3,
.why-growhix__cards h3,
.trusted-brand strong {
	transform: translateZ(28px);
}

.work-process__card > div,
.why-growhix__cards p {
	transform: translateZ(16px);
}

.why-growhix__experience {
	animation: growhix-experience-breathe 4.5s ease-in-out infinite;
	box-shadow: 18px -18px 55px rgba(205, 255, 47, 0.12);
}

.why-growhix__cards i {
	animation: growhix-icon-pulse 3.2s ease-in-out infinite;
}

.why-growhix__cards article:nth-child(2) i {
	animation-delay: 500ms;
}

.why-growhix__cards article:nth-child(3) i {
	animation-delay: 1s;
}

.why-growhix__cards article:nth-child(4) i {
	animation-delay: 1.5s;
}

.growhix-about__metric-icon {
	animation: growhix-metric-glow 3.2s ease-in-out infinite;
}

.growhix-about__metrics article:nth-child(2) .growhix-about__metric-icon {
	animation-delay: 500ms;
}

.client-voice-avatar {
	animation: growhix-avatar-drift 4s ease-in-out infinite;
}

.client-voice-avatar:nth-child(2) {
	animation-delay: 500ms;
}

.client-voice-avatar:nth-child(3) {
	animation-delay: 1s;
}

.client-voice-avatar:nth-child(4) {
	animation-delay: 1.5s;
}

.client-voice-avatar:hover,
.client-voice-avatar:focus-visible,
.client-voice-avatar.is-active {
	animation-play-state: paused;
	transform: scale(1.06);
}

.services-ticker {
	box-shadow:
		0 -12px 40px rgba(205, 255, 47, 0.08),
		0 12px 40px rgba(205, 255, 47, 0.08);
}

@keyframes growhix-experience-breathe {
	0%,
	100% {
		box-shadow: 18px -18px 55px rgba(205, 255, 47, 0.1);
	}

	50% {
		box-shadow: 22px -22px 75px rgba(205, 255, 47, 0.24);
	}
}

@keyframes growhix-icon-pulse {
	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(205, 255, 47, 0));
		transform: translateY(0) scale(1);
	}

	50% {
		filter: drop-shadow(0 0 12px rgba(205, 255, 47, 0.42));
		transform: translateY(-4px) scale(1.05);
	}
}

@keyframes growhix-avatar-drift {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-7px);
	}
}

@keyframes growhix-metric-glow {
	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(205, 255, 47, 0));
	}

	50% {
		filter: drop-shadow(0 0 12px rgba(205, 255, 47, 0.5));
	}
}

@media (prefers-reduced-motion: reduce) {
	.has-growhix-motion [data-reveal],
	.has-growhix-motion [data-reveal].is-revealed {
		opacity: 1;
		filter: none;
		transform: none;
		transition: none;
	}

	.growhix-about__gallery img,
	.why-growhix__image img,
	.work-process__card,
	.trusted-brand,
	.why-growhix__cards article,
	.growhix-product-card {
		transform: none;
		transition: none;
	}

	.why-growhix__experience,
	.why-growhix__cards i,
	.growhix-about__metric-icon,
	.client-voice-avatar {
		animation: none;
	}
}

@media (max-width: 960px) {
	.site-footer__inner {
		width: min(100% - 40px, 880px);
	}

	.site-footer__main {
		grid-template-columns: 1fr 1fr;
		gap: 64px 50px;
	}

	.site-footer__newsletter {
		grid-column: 1 / -1;
	}

	.site-footer__newsletter form {
		max-width: none;
		margin-top: 42px;
	}

	.site-footer__badges {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin-top: 80px;
	}

	.site-footer__badges > div:last-child {
		grid-column: 2 / 3;
	}

	.site-footer__accordions details > div {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.site-footer__inner {
		width: calc(100% - 28px);
		padding-top: 54px;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.site-footer__newsletter {
		grid-column: 1;
	}

	.site-footer__newsletter form {
		margin-top: 34px;
	}

	.site-footer__socials {
		gap: 10px;
		flex-wrap: wrap;
	}

	.site-footer__socials a {
		width: 50px;
		height: 50px;
	}

	.site-footer__badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin-top: 64px;
	}

	.site-footer__badges > div:last-child {
		grid-column: 1 / -1;
	}

	.site-footer__accordions summary {
		min-height: 78px;
		font-size: 1.05rem;
	}

	.site-footer__accordions details > div {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__top-link {
		right: 14px;
		bottom: 14px;
		width: 40px;
		height: 40px;
	}
}


@media (min-width: 721px) and (max-width: 1080px) {
	.agency-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
		gap: 24px;
	}

	.agency-hero__proof {
		gap: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html::before {
		transition: none;
	}

	.growth-panel__logo-mark,
	.growth-panel__logo-mark b,
	.growth-panel__logo-mark em,
	.growth-panel__bottom i,
	.growth-panel__seal,
	.growth-panel__seal svg,
	.growth-panel__ring {
		animation: none;
	}

	.growth-panel__logo-mark b {
		opacity: 1;
		transform: scaleY(1);
	}

	.growth-panel__logo-mark em {
		opacity: 1;
		transform: rotate(-18deg);
	}

	.growth-panel__ring {
		opacity: 1;
		transform: none;
		clip-path: none;
	}

	.site-footer__accordions details a {
		animation: none;
		transition: none;
	}

	.agency-board,
	.agency-float,
	.agency-board__chart i,
	.agency-showcase__scroll span,
	.agency-service.is-active .agency-service__art,
	.agency-service.is-active .agency-service__screen,
	.agency-service.is-active .agency-service__art > i {
		animation: none;
	}
}

@media (max-width: 720px) {
	.agency-services .agency-services__inner {
		width: min(100% - 32px, 560px);
		padding-block: 54px;
	}

	.agency-services__header {
		display: block;
		min-height: auto;
		padding: 24px 0 28px;
	}

	.agency-services__header h2 {
		font-size: 2.75rem;
	}

	.agency-services__header > p {
		margin-top: 20px;
		font-size: 0.88rem;
		text-align: left;
	}

	.agency-service button {
		gap: 13px;
		min-height: 88px;
	}

	.agency-service button > i {
		width: 15px;
		height: 15px;
	}

	.agency-service button span {
		font-size: 1.7rem;
	}

	.agency-service button b {
		width: 18px;
	}

	.agency-service {
		overflow: hidden;
	}

	.agency-service__content {
		position: relative;
		inset: auto;
		display: block;
		max-height: 0;
		transition: max-height 360ms ease, opacity 220ms ease;
	}

	.agency-service.is-active .agency-service__content {
		max-height: 330px;
		padding-bottom: 24px;
	}

	.agency-service__art {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		width: min(100%, 300px);
		height: 150px;
		margin-bottom: 18px;
		transform: none;
	}

	.agency-service.is-active .agency-service__art {
		animation: none;
	}

	.agency-service__screen {
		top: 23px;
		left: 30%;
		height: 98px;
	}

	.agency-service__content p {
		position: relative;
		top: auto;
		right: auto;
		width: auto;
		font-size: 0.82rem;
		transform: none;
	}
}
