@font-face {
	font-family: "PP Neue Machina";
	src: url("../fonts/PPNeueMachina-Regular.otf") format("opentype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "PP Neue Machina";
	src: url("../fonts/PPNeueMachina-Ultrabold.otf") format("opentype");
	font-style: normal;
	font-weight: 800;
	font-display: swap;
}

:root {
	--color-light: #f0f0f0;
	--color-white: #fff;
	--color-purple: #a46bfa;
	--color-pink: #eb4edb;
	--color-green: #48b16f;
	--color-blue: #4dc4e4;
	--color-yellow: #f2c84b;
	--color-black: #000;
	--color-dark: #121115;
	--color-surface: rgba(255, 255, 255, 0.02);
	--color-surface-strong: rgba(255, 255, 255, 0.04);
	--color-border: rgba(255, 255, 255, 0.16);
	--section-padding-y: 6.25rem;
	--font-body: "Manrope", sans-serif;
	--font-heading: "PP Neue Machina", sans-serif;
}

* {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	overflow-x: clip;
	background-color: var(--color-dark);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

body.is-menu-open {
	height: 100%;
	overflow: hidden;
}

/* Lock the actual document scroller (html), not just body */
html:has(body.is-menu-open) {
	overflow: hidden;
}

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

a:hover {
	color: inherit;
}

img,
svg {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	letter-spacing: 0;
	line-height: 1.02;
}

h1 {
	font-size: 5rem;
	font-weight: 800;
}

h2 {
	font-size: 4rem;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.12rem;
}

h1 strong,
h2 strong,
h3 strong {
	font: inherit;
	font-weight: inherit;
}

p {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.main {
	overflow-x: clip;
	background-color: var(--color-dark);
}

.site-button,
.site-icon-button,
.slider-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.008rem;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-button {
	min-height: 3.25rem;
	padding: 0 1.5rem;
	font-size: 1rem;
}

.site-icon-button,
.slider-control {
	width: 3.25rem;
	height: 3.25rem;
	flex: 0 0 3.25rem;
}

.site-button:hover,
.site-icon-button:hover,
.slider-control:hover {
	transform: translateY(-0.125rem);
}

.site-button:focus-visible,
.site-icon-button:focus-visible,
.slider-control:focus-visible,
.site-navbar__link:focus-visible,
.project-card:focus-visible {
	outline: 0.125rem solid var(--color-white);
	outline-offset: 0.25rem;
}

.site-button--light {
	background-color: var(--color-white);
	color: var(--color-dark);
}

.site-button--light:hover,
.site-button--light:focus-visible {
	background-color: var(--color-purple);
	color: var(--color-white);
}

.site-button--purple,
.site-icon-button--purple {
	background-color: var(--color-purple);
	color: var(--color-white);
}

.site-button--green,
.site-icon-button--green {
	background-color: var(--color-green);
	color: var(--color-white);
}

.site-button--blue,
.site-icon-button--blue {
	background-color: var(--color-blue);
	color: var(--color-white);
}

.site-button--purple:hover,
.site-icon-button--purple:hover {
	background-color: var(--color-pink);
}

.site-button--green:hover,
.site-icon-button--green:hover {
	background-color: var(--color-white);
	color: var(--color-dark);
}

.site-button--blue:hover,
.site-icon-button--blue:hover {
	background-color: var(--color-white);
	color: var(--color-dark);
}

.site-button--pink,
.site-icon-button--pink {
	background-color: var(--color-pink);
	color: var(--color-white);
}

.site-button--pink:hover,
.site-icon-button--pink:hover {
	background-color: var(--color-white);
	color: var(--color-dark);
}

.section-padding {
	padding-top: var(--section-padding-y);
	padding-bottom: var(--section-padding-y);
}

.section-kicker {
	color: var(--color-green);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.13125rem;
	line-height: 1.42857;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.section-kicker--purple {
	color: var(--color-purple);
}

.section-kicker--blue {
	color: var(--color-blue);
}

.section-kicker--pink {
	color: var(--color-pink);
}

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 1rem 0 1rem;
	transition: padding 0.3s ease;
}

.site-header::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: rgba(18, 17, 21, 0.7);
	backdrop-filter: blur(0.75rem);
	-webkit-backdrop-filter: blur(0.75rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	content: "";
}

.site-header.is-stuck {
	position: fixed;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.site-header.is-stuck::before {
	opacity: 1;
}

.site-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-navbar__brand svg {
	width: 6.875rem;
	height: auto;
}

.site-navbar__menu {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-navbar__footer {
	display: none; /* mobile menu only; revealed in the <=991.98px block */
}

/* Wrapper is transparent on desktop; becomes the aligned container in the mobile menu */
.site-navbar__menu-inner {
	display: contents;
}

.site-navbar__nav {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.site-navbar__link {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	border-radius: 999rem;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	padding: 0 1.5rem;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-navbar__link:hover,
.site-navbar__link:focus {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	transform: translateY(-0.125rem);
}

.site-navbar__link.is-active {
	background-color: var(--color-light);
	color: var(--color-dark);
}

.site-navbar__link.is-active:hover,
.site-navbar__link.is-active:focus {
	background-color: var(--color-light);
	color: var(--color-dark);
}

.site-navbar__contact {
	min-height: 3.5rem;
	margin-left: 2rem;
	padding: 0 2rem;
	font-size: 1rem;
}

.site-navbar__toggle {
	position: relative;
	display: none;
	width: 3rem;
	height: 3rem;
	border: 0;
	border-radius: 50%;
	background-color: var(--color-white);
	padding: 0;
}

.site-navbar__toggle:focus {
	box-shadow: none;
}

.site-navbar__toggle-line {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 1.25rem;
	height: 0.125rem;
	border-radius: 999rem;
	background-color: var(--color-dark);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-navbar__toggle-line:first-child {
	transform: translate(-50%, calc(-50% - 0.25rem));
}

.site-navbar__toggle-line:last-child {
	transform: translate(-50%, calc(-50% + 0.25rem));
}

.site-navbar__toggle[aria-expanded="true"] .site-navbar__toggle-line:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.site-navbar__toggle[aria-expanded="true"] .site-navbar__toggle-line:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.home-hero {
	position: relative;
	display: flex;
	min-height: 100svh;
	padding: 8.5rem 0 3rem;
	background-color: var(--color-dark);
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-hero__video {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.home-hero__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.home-hero__video.is-fallback video {
	opacity: 0;
}

.home-hero__video::after {
	position: absolute;
	inset: 0;
	content: "";
	background: rgba(20, 19, 24, 0.6);
}

.home-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 45%;
	content: "";
	background: linear-gradient(180deg, rgba(18, 17, 21, 0) 0%, var(--color-dark) 100%);
	pointer-events: none;
}

.home-hero > .container {
	position: relative;
	z-index: 1;
	display: flex;
}

.home-hero__content {
	width: 100%;
	min-height: calc(100svh - 11.5rem);
}

.home-hero__intro {
	margin-top: auto;
	margin-bottom: auto;
	padding-top: 3.5rem;
}

.home-hero__lead {
	max-width: 34rem;
	margin-right: auto;
	margin-left: auto;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.35;
}

.home-hero__stats {
	margin-top: auto;
}

.hero-stat__icon {
	display: flex;
	justify-content: center;
	min-height: 3.375rem;
	margin-bottom: 1rem;
}

.hero-stat__value {
	color: var(--color-pink);
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 800;
	line-height: normal;
	letter-spacing: -0.12rem;
}

.hero-stat__label {
	margin-top: 0.75rem;
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1125rem;
	line-height: normal;
	text-transform: uppercase;
}

.services-section {
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
}

.services-section.section-padding {
	padding-bottom: 0;
}

.services-section__content {
	position: relative;
	min-height: 56rem;
	padding: 3rem 0 0;
}

.services-section__title strong {
	color: var(--color-purple);
}

.service-item__text {
	line-height: 1.45;
}

.services-section__bottom {
	position: relative;
	z-index: 2;
	padding-bottom: 7rem;
}

.services-list {
	position: relative;
	z-index: 3;
}

.service-item__number {
	margin-bottom: 1rem;
	color: var(--color-purple);
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
}

.service-item__title {
	min-height: 4rem;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.3333;
	letter-spacing: -0.045rem;
}

.service-item:hover .site-button,
.service-item:hover .site-icon-button {
	background-color: var(--color-pink);
	transform: translateY(-0.125rem);
}

.services-section__visual {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: min(42rem, 56%);
	pointer-events: none;
}

.services-section__visual picture {
	display: block;
}

.services-section__image {
	width: 100%;
	height: auto;
}

.reviews-section {
	overflow: hidden;
	background-color: var(--color-dark);
}

.reviews-section__intro {
	margin-bottom: 2.5rem;
}

.reviews-section__title strong {
	color: var(--color-green);
}

.reviews-section__lead {
	max-width: 25rem;
	line-height: 1.45;
}

.reviews-slider {
	width: 100%;
	max-width: 100%;
	overflow: visible;
}

.reviews-slider .splide__track {
	overflow: visible;
	clip-path: inset(-100vw -100vw -100vw 0);
}

.reviews-slider .splide__list {
	align-items: stretch;
}

.reviews-slide {
	width: 22rem;
	height: auto;
}

.review-card {
	display: flex;
	min-height: 16.375rem;
	flex-direction: column;
	padding: 1.75rem;
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	background-color: var(--color-surface);
}

.review-card__stars {
	gap: 0.45rem;
	color: var(--color-green);
	font-size: 1rem;
	line-height: 1;
}

.review-card__text {
	margin-top: 1.5rem;
	line-height: 1.45;
}

.review-card__author {
	gap: 1rem;
	margin-top: auto;
	padding-top: 2.5rem;
}

.review-card__image {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	object-fit: cover;
}

.review-card__name {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.1;
}

.review-card__company {
	margin-top: 0.25rem;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.75rem;
	line-height: 1.2;
}

.reviews-controls {
	width: 100%;
	margin-top: 1.75rem;
}

.reviews-controls .splide__arrow {
	position: static;
	transform: none;
	opacity: 1;
}

.reviews-controls .splide__arrow svg {
	transform: none;
}

.slider-control {
	background-color: var(--color-surface-strong);
	color: var(--color-white);
}

.slider-control:hover {
	background-color: var(--color-white);
	color: var(--color-dark);
}

.slider-control:disabled {
	cursor: default;
	opacity: 0.45;
}

.slider-control:disabled:hover {
	background-color: var(--color-surface-strong);
	color: var(--color-white);
	transform: none;
}

.partners-slider {
	margin-top: 4.5rem;
}

.partners-slider .splide__track {
	overflow: hidden;
}

.partner-slide {
	width: 10rem;
}

.partner-logo {
	display: flex;
	min-height: 4rem;
	align-items: center;
	justify-content: center;
}

.partner-logo__image {
	width: auto;
	max-width: 10rem;
	max-height: 2.75rem;
	object-fit: contain;
}

.projects-section {
	background: rgba(255, 255, 255, 0.04);
}

.projects-section__title strong {
	color: var(--color-green);
}

.projects-section__lead {
	max-width: 44rem;
	line-height: 1.45;
}

.projects-masonry {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 1.5rem;
	align-items: stretch;
	margin-top: 4rem;
}

.projects-masonry__item {
	display: flex;
	min-width: 0;
}

.projects-masonry__item--top {
	grid-column: span 6;
}

.projects-masonry__item--wide {
	grid-column: span 8;
}

.projects-masonry__item--tall {
	grid-column: span 4;
	grid-row: span 2;
}

.projects-masonry__item--bottom {
	grid-column: span 4;
}

.project-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 19rem;
	color: var(--color-white);
}

.project-card:hover {
	color: var(--color-white);
}

.project-card__media {
	position: relative;
	flex: 1 1 auto;
	min-height: inherit;
	width: 100%;
	overflow: hidden;
	border-radius: 1rem;
	background-color: var(--color-dark);
}

.project-card picture {
	position: absolute;
	inset: 0;
	display: block;
}

.project-card__image {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.project-card:hover .project-card__image,
.project-card:focus-visible .project-card__image {
	transform: scale(1.04);
}

.project-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(18, 17, 21, 0) 40%, rgba(18, 17, 21, 0.78) 100%);
}

.project-card__content {
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 2;
}

.project-card__title {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.3333;
	transition: color 0.2s ease;
}

.project-card:hover .project-card__title,
.project-card:focus-visible .project-card__title {
	color: var(--color-green);
}

.project-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.project-card__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.40);
	background: rgba(255, 255, 255, 0.10);
	padding: 0.5rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: normal;
}

.project-card__text {
	margin-top: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 600;
	line-height: 1.5;
}

.project-card--wide {
	min-height: 21rem;
}

.project-card--tall {
	height: 100%;
	min-height: 44rem;
}

.project-card--portrait-small {
	min-height: 19rem;
}

.project-card--case {
	min-height: 25rem;
}

.case-studies__header {
	max-width: 56rem;
}

.case-studies__title {
	font-size: 4rem;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.12rem;
}

.case-studies__title strong {
	color: var(--color-pink);
}

.case-studies__lead {
	line-height: 1.5;
}

.case-studies__services {
	margin-top: 2.5rem;
}

.case-studies__services-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.045rem;
	line-height: 1.3333;
	margin-bottom: 1.25rem;
}

.filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.filter-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: normal;
	cursor: pointer;
	backdrop-filter: blur(1.25rem);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-pill:hover {
	background: rgba(255, 255, 255, 0.18);
}

.filter-pill--active,
.filter-pill--active:hover {
	background-color: var(--color-pink);
}

.filter-pill__dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	flex: 0 0 1.5rem;
	border-radius: 999rem;
	background-color: var(--color-pink);
	color: var(--color-white);
}

.filter-pill--active .filter-pill__dot {
	background-color: var(--color-white);
	color: var(--color-pink);
}

.filter-pill__icon--check {
	display: none;
}

.filter-pill--active .filter-pill__icon--check {
	display: block;
}

.filter-pill--active .filter-pill__icon--plus {
	display: none;
}

.is-filtered-out {
	display: none !important;
}

.case-studies__grid {
	margin-top: 3.75rem;
}

.team-section {
	position: relative;
	overflow: hidden;
	background-color: var(--color-dark);
}

.team-section__title strong {
	color: var(--color-purple);
}

.team-list {
	--team-sticker-bottom: 11.75rem;
	--team-sticker-height: 15.5rem;
	--team-sticker-right: -0.625rem;
	position: relative;
	margin-top: 2.5rem;
}

.team-list > [class*="col-"] .team-card {
	height: 44rem;
}

.team-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.625rem;
	border-radius: 20rem 20rem 1.5rem 1.5rem;
	color: var(--color-white);
}

.team-card--green {
	background-color: var(--color-green);
}

.team-card--purple {
	background-color: var(--color-purple);
}

.team-card--pink {
	background-color: var(--color-pink);
}

.team-card--blue {
	background-color: var(--color-blue);
}

.team-card__image-wrap {
	height: 26.75rem;
	border-radius: 22.5rem;
	overflow: hidden;
}

.team-card__image-wrap picture {
	display: block;
	height: 100%;
}

.team-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.team-card:hover .team-card__image {
	transform: scale(1.04);
}

.team-card__body {
	position: relative;
	z-index: 2;
	padding: 0 1.5rem 2.5rem 1.5rem;
	margin-top: auto;
}

.team-card__role {
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.13125rem;
	line-height: 1.42857;
	text-transform: uppercase;
}

.team-card__name {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

.team-section__sticker {
	position: absolute;
	right: var(--team-sticker-right);
	bottom: var(--team-sticker-bottom);
	z-index: 4;
	height: var(--team-sticker-height);
	pointer-events: none;
}

.team-section__sticker-image {
	width: auto;
	height: 100%;
}

.online-section {
	overflow: hidden;
	background-color: #15151a;
}

.online-section__content {
	position: relative;
	min-height: 35rem;
}

.online-section__text {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	padding-bottom: 4.75rem;
}

.online-section__title {
	margin-top: auto;
}

.online-section__lead {
	max-width: 28rem;
}

.online-section__title strong {
	color: var(--color-blue);
}

.online-section__visual {
	position: relative;
}

.online-section__brand {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: flex-end;
	transform: translateY(-50%);
	user-select: none;
}

.online-section__brand svg {
	display: block;
	width: 100%;
	height: auto;
}

.online-section__visual picture {
	position: absolute;
	right: 0;
	bottom: -6rem;
	z-index: 1;
	display: block;
	width: min(38rem, 100%);
}

.online-section__image {
	width: 100%;
	height: auto;
}

.process-section {
	overflow: hidden;
	background-color: #1b1b1d;
	position: relative;
}

.process-section__content {
	align-items: flex-start;
}

.process-section__media {
	position: relative;
	z-index: 2;
	min-height: 31.5rem;
	overflow: hidden;
	border-radius: 1.5rem;
}

.process-section__media--empty {
	background-color: rgba(18, 17, 21, 0.72);
}

.process-section__media picture {
	position: absolute;
	inset: 0;
	display: block;
}

.process-section__media-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.process-section__text {
	position: relative;
	z-index: 3;
	padding-bottom: 0;
}

.process-section__title strong {
	color: var(--color-purple);
}

.process-section__lead {
	max-width: 15rem;
}

.process-section__visual {
	position: absolute;
	right: 2rem;
	bottom: 0;
	z-index: 1;
	width: min(34rem, 42vw);
	pointer-events: none;
}

.process-section__image {
	width: 100%;
	height: auto;
}

.cta-section {
	background-color: #15151a;
}

.cta-section__content {
	min-height: 32rem;
}

.cta-section__text {
	display: flex;
	flex-direction: column;
}

.cta-section__title {
	margin-top: auto;
}

.cta-section__title strong {
	color: var(--color-green);
}

.cta-section__lead {
	max-width: 27rem;
	line-height: 1.5;
}

.cta-form {
	scroll-margin-top: 7rem;
}

.cta-form__label {
	display: block;
	margin-bottom: 0.875rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
}

.cta-form__control {
	display: block;
	width: 100%;
	min-height: 3.75rem;
	border: 0;
	border-radius: 999rem;
	background-color: rgba(255, 255, 255, 0.04);
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	padding: 0 1.75rem;
	outline: none;
}

.cta-form__control::placeholder {
	color: rgba(255, 255, 255, 0.78);
}

.cta-form__control:focus {
	box-shadow: 0 0 0 0.125rem rgba(72, 177, 111, 0.38);
}

.cta-form__control--message {
	min-height: 13.875rem;
	border-radius: 1.5rem;
	padding-top: 1.25rem;
	resize: vertical;
}

.cta-form__button {
	width: 100%;
	min-height: 3.75rem;
}

.site-footer {
	overflow: hidden;
	background-color: var(--color-dark);
}

.site-footer__content {
	position: relative;
	padding: 6rem 0 2rem;
}

.site-footer__title {
	font-size: 2rem;
	line-height: 1.1;
}

.site-footer__text {
	max-width: 24rem;
	font-size: 1.125rem;
	line-height: 1.45;
}

.site-footer__socials {
	list-style: none;
}

.site-footer__intro {
	position: relative;
	z-index: 2;
}

.site-footer__main {
	position: relative;
	z-index: 2;
}

.site-footer__social {
	display: inline-flex;
	width: 2.375rem;
	height: 2.375rem;
	align-items: center;
	justify-content: center;
	border: 0.125rem solid var(--color-white);
	border-radius: 50%;
	color: var(--color-white);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
	background-color: var(--color-white);
	color: var(--color-dark);
	transform: translateY(-0.125rem);
}

.site-footer__newsletter-title {
	display: block;
	margin-bottom: 1.5rem;
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.1;
}

.site-footer__newsletter-title strong {
	color: var(--color-pink);
	font: inherit;
}

.site-footer__newsletter-control {
	display: flex;
	width: min(100%, 38rem);
	min-height: 4rem;
	align-items: center;
	border-radius: 999rem;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 0.3125rem;
}

.site-footer__newsletter-control input {
	min-width: 0;
	flex: 1 1 auto;
	border: 0;
	background: transparent;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 600;
	padding: 0 1.5rem;
	outline: none;
}

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

.site-footer__newsletter-control button {
	min-height: 3.375rem;
	border: 0;
	border-radius: 999rem;
	background-color: var(--color-white);
	color: var(--color-dark);
	font-size: 1rem;
	font-weight: 700;
	padding: 0 2rem;
}

.site-footer__newsletter-control:has(input.is-invalid) {
	outline: 0.125rem solid #ff6b6b;
	outline-offset: 0.15rem;
}

.site-footer__newsletter-success {
	margin-top: 0.75rem;
	margin-bottom: 0;
	color: var(--color-green);
	font-weight: 700;
}

.site-footer__nav {
	margin-top: 2.5rem;
}

.site-footer__nav-title {
	margin-bottom: 1rem;
	color: var(--color-pink);
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1125rem;
	line-height: 1.4;
	text-transform: uppercase;
}

.site-footer__links {
	list-style: none;
}

.site-footer__links li + li {
	margin-top: 0.75rem;
}

.site-footer__links a {
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.9375rem;
	font-weight: 600;
	transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	color: var(--color-white);
}

.site-footer__brand {
	margin-top: 5rem;
	pointer-events: none;
}

.site-footer__brand svg {
	display: block;
	width: 100%;
	height: auto;
}

.site-footer__copy {
	margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.14);
	font-size: 0.875rem;
	text-align: center;
}

.studies-hero {
	overflow: hidden;
	background-color: var(--color-dark);
}

.studies-hero__content {
	padding-top: 20rem;
	padding-bottom: 4rem;
}

.studies-hero__title {
	text-wrap: balance;
}

.studies-hero__title h2 {
	font-size: 3.5rem;
}

.studies-hero__title strong {
	color: var(--color-pink);
}

.studies-hero__lead {
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
}

.studies-hero__visual {
	position: relative;
}

.studies-hero__phones {
	position: absolute;
	top: 50%;
	right: -3rem;
	z-index: 1;
	width: min(51rem, 120%);
	transform: translateY(-50%);
}

.studies-hero__phone-image {
	width: 100%;
	height: auto;
}

.benefits-section {
	position: relative;
	overflow: hidden;
	background-color: #17161a;
}

.benefits-section__brand {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	width: 96rem;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.benefits-section__brand svg {
	width: 100%;
	height: auto;
}

.benefits-section__content {
	position: relative;
	z-index: 1;
}

.benefits-section__intro {
	max-width: 46.75rem;
	margin: 0 auto;
}

.benefits-section__title {
	max-width: 41.75rem;
	margin-right: auto;
	margin-left: auto;
}

.benefits-section__title strong {
	color: var(--color-purple);
}

.benefits-section__lead {
	line-height: 1.5;
}

.benefits-list {
	max-width: 49.875rem;
	margin-top: 3.75rem;
	margin-right: auto;
	margin-left: auto;
}

.benefit-card {
	padding: 1.875rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 1.5rem;
	background-color: rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(1.25rem);
}

.benefit-card__icon {
	display: block;
	margin-bottom: 3rem;
}

.benefit-card__text {
	line-height: 1.5;
}

.realizacie-section {
	overflow: hidden;
	background-color: var(--color-dark);
}

.realizacie-section__title strong {
	color: var(--color-green);
}

.realizacie-section__lead {
	max-width: 49rem;
	line-height: 1.5;
}

.realizacie-phones {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	margin-top: 5rem;
}

.realizacie-phone {
	flex: 0 0 16rem;
}

.realizacie-phone__image {
	width: 100%;
	height: auto;
	transition: transform 0.35s ease;
}

.realizacie-phone:hover .realizacie-phone__image {
	transform: translateY(-0.75rem) scale(1.03);
}

.steps-section {
	background-color: var(--color-surface);
}

.steps-section__intro {
	position: sticky;
	top: 9rem;
}

.steps-section__title strong {
	color: var(--color-green);
}

.steps-section__lead {
	line-height: 1.5;
}

.steps-list {
	display: grid;
	grid-auto-rows: 1fr;
	gap: 1.25rem;
}

.step-card {
	padding: 1.875rem;
	border-radius: 1.5rem;
	color: var(--color-white);
}

.step-card--green {
	background-color: var(--color-green);
}

.step-card--purple {
	background-color: var(--color-purple);
}

.step-card--pink {
	background-color: var(--color-pink);
}

.step-card--blue {
	background-color: var(--color-blue);
}

.step-card__label {
	margin-bottom: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.13125rem;
	line-height: 1.42857;
	text-transform: uppercase;
}

.step-card__title {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.06rem;
}

.step-card__text {
	line-height: 1.5;
}

.gain-section {
	overflow: hidden;
	background-color: var(--color-dark);
}

.gain-section .container {
	position: relative;
}

.gain-section .section-kicker {
	margin-bottom: 0;
}

.gain-section__title {
	font-size: 3rem;
	letter-spacing: -0.09rem;
}

.gain-section__title strong {
	color: var(--color-pink);
}

.gain-stat__text {
	line-height: 1.5;
}

.gain-stat__value {
	margin-top: auto;
	padding-top: 1.75rem;
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.09rem;
}

.gain-section__content {
	position: relative;
	z-index: 1;
}

.gain-section__avocado {
	position: absolute;
	bottom: -22.5rem;
	left: -6rem;
	z-index: 0;
	width: min(28rem, 38%);
	pointer-events: none;
}

.gain-section__avocado-image {
	width: 100%;
	height: auto;
}

.faq-section {
	position: relative;
	overflow: clip;
	background-color: var(--color-surface-strong);
}

.faq-section__content {
	position: relative;
	z-index: 1;
}

.faq-section__intro {
	position: sticky;
	top: 9rem;
}

.faq-section__aside {
	padding-bottom: 18rem;
}

.faq-section__avocado {
	position: absolute;
	bottom: -12rem;
	left: -2rem;
	z-index: 0;
	width: min(26rem, 30%);
	pointer-events: none;
}

.faq-section__avocado-image {
	width: 100%;
	height: auto;
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	padding: 1.875rem;
	border-radius: 2rem;
}

.faq-item__head {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	border: 0;
	background: transparent;
	color: var(--color-white);
	padding: 0;
	text-align: left;
	cursor: pointer;
}

.faq-item__question {
	flex: 1 1 auto;
	min-width: 0;
}

.faq-item__icon {
	display: inline-flex;
	width: 3.75rem;
	height: 3.75rem;
	flex: 0 0 3.75rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--color-white);
	color: var(--color-green);
	transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
	transform: rotate(180deg);
}

.faq-item__icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.faq-item__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-item__body {
	grid-template-rows: 1fr;
}

.faq-item__body-inner {
	overflow: hidden;
}

.faq-item__answer {
	padding-top: 1.5rem;
	line-height: 1.5;
}

.image-banner {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1440 / 500;
	background-color: var(--color-dark);
}

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

.cta-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--color-dark);
}

.cta-hero__content {
	position: relative;
	z-index: 1;
}

.cta-hero__title {
	max-width: 32rem;
	margin-right: auto;
	margin-left: auto;
	font-weight: 800;
	line-height: 1.05;
}

.cta-hero__avocado {
    position: absolute;
    bottom: -16rem;
    right: -0.5rem;
    z-index: 0;
    pointer-events: none;
    width: auto;
    height: 43rem;
}

.cta-hero__avocado-image {
	display: block;
	width: auto;
	height: 100%;
	max-width: none;
}

.about-hero {
	overflow: hidden;
	background-color: var(--color-dark);
}

.about-hero__content {
	padding-top: 12rem;
	padding-bottom: 6.25rem;
}

.about-hero__title {
	max-width: 56rem;
	text-wrap: balance;
}

.about-hero__title strong {
	color: var(--color-pink);
}

.about-hero__lead {
	max-width: 44rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
}

.about-hero__gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4.5rem;
}

.about-photo {
	position: relative;
	flex: 0 0 auto;
	width: 25rem;
	border-radius: 1.75rem;
	padding: 0.875rem;
}

.about-photo + .about-photo {
	margin-left: -2.5rem;
}

.about-photo__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 1rem;
	object-fit: cover;
}

.about-photo--purple {
	z-index: 1;
	background-color: var(--color-purple);
	transform: rotate(-2.69deg);
}

.about-photo--yellow {
	z-index: 2;
	background-color: var(--color-yellow);
	transform: rotate(12.17deg);
}

.about-photo--pink {
	z-index: 3;
	background-color: var(--color-pink);
	transform: rotate(-13.724deg);
}

.audience-section {
	overflow: hidden;
	background-color: #17161a;
}

.audience-section__title strong {
	color: var(--color-purple);
}

.audience-section__lead {
	max-width: 24rem;
	line-height: 1.5;
}

.audience-section__grid {
	margin-top: 3.75rem;
}

.core-section {
	overflow: hidden;
	background-color: var(--color-surface-strong);
}

.core-section__title {
	max-width: 56rem;
}

.core-section__lead {
	max-width: 56.5rem;
	line-height: 1.5;
}

.core-section__rows {
	margin-top: 3.75rem;
}

.feature-block {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-right: 2.5rem;
}

.feature-block__icon {
	color: var(--color-white);
}

.feature-block__icon svg {
	width: 2.25rem;
	height: auto;
}

.feature-block__title {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	font-weight: 800;
	line-height: normal;
	letter-spacing: -0.0675rem;
}

.feature-gallery {
	display: flex;
	gap: 1.25rem;
	align-items: stretch;
}

.feature-gallery__stack {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	flex-direction: column;
	gap: 1.25rem;
}

.feature-gallery__tall {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	flex-direction: column;
	padding: 2.5rem 0;
}

.feature-gallery__link {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 1.5rem;
}

.feature-gallery__tall .feature-gallery__link {
	flex: 1 1 auto;
	min-height: 0;
}

.feature-gallery picture {
	display: block;
	width: 100%;
	height: 100%;
}

.feature-gallery__image {
	display: block;
	width: 100%;
	border-radius: 1.5rem;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.feature-gallery__link:hover .feature-gallery__image,
.feature-gallery__link:focus-visible .feature-gallery__image {
	transform: scale(1.04);
}

.feature-gallery__image--sm {
	height: 17.5rem;
}

.feature-gallery__image--tall {
	height: 100%;
}

.results-section {
	overflow: hidden;
	background-color: var(--color-dark);
}

.results-section__title strong {
	color: var(--color-pink);
}

.results-section__lead {
	max-width: 24rem;
	line-height: 1.5;
}

.results-cards {
	margin-top: 3.75rem;
}

.results-card {
	position: relative;
	padding: 0 1.875rem 1.875rem;
	border-radius: 20rem 20rem 1.5rem 1.5rem;
	color: var(--color-white);
}

.results-card--purple {
	padding-top: 7.5rem;
	background-color: var(--color-purple);
}

.results-card--pink {
	padding-top: 13.75rem;
	background-color: var(--color-pink);
}

.results-card--green {
	padding-top: 16.25rem;
	background-color: var(--color-green);
}

.results-card--blue {
	padding-top: 12.5rem;
	background-color: var(--color-blue);
}

.results-card__avocado {
	position: absolute;
	left: 50%;
	top: -3rem;
	width: 68%;
	transform: translateX(-50%);
	pointer-events: none;
}

.results-card__avocado-image {
	display: block;
	width: 100%;
	height: auto;
}

.results-card__body {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 1rem;
}

.results-card__value {
	font-family: var(--font-heading);
	font-size: 2.75rem;
	font-weight: 800;
	line-height: normal;
	letter-spacing: -0.0825rem;
}

.story-section {
	overflow: hidden;
	background-color: var(--color-surface);
}

.story-section__text {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.story-section__content {
	margin-top: auto;
	margin-bottom: auto;
	padding-right: 2.5rem;
}

.story-section__title strong {
	color: var(--color-purple);
}

.story-section__lead {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	line-height: 1.3;
	color: var(--color-white);
}

.story-section__content p:not(.story-section__lead) {
	color: rgba(255, 255, 255, 0.7);
}

.story-section__media {
	position: relative;
	display: flex;
	height: 100%;
	min-height: 38rem;
	align-items: center;
	justify-content: center;
}

.story-section__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	pointer-events: none;
	user-select: none;
}

.story-section__backdrop svg {
	display: block;
	width: min(34rem, 100%);
	height: auto;
}

.story-section__image {
	position: relative;
	z-index: 1;
	width: 28rem;
	max-width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 20rem 20rem 1.5rem 1.5rem;
	overflow: hidden;
	background-color: #d9d9d9;
}

.story-section__image-el {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CASE STUDY DETAIL */
.case-detail-hero {
	overflow-x: clip;
	padding-top: 9rem;
	padding-bottom: 1rem;
}

.case-detail-hero .container {
	position: relative;
}

.case-detail-hero__back {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 6rem;
}

.case-detail-hero__main {
	padding-right: 3.75rem;
}

.case-detail-hero__lead {
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.case-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.case-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 1.5rem;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--color-white);
}

.case-detail-hero__meta {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.case-detail-meta__label {
	margin-bottom: 0.625rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.13125rem;
	line-height: 1.42857;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.case-detail-meta__value {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-white);
}

.case-detail-figure {
	overflow: hidden;
	border-radius: 1.5rem;
}

.case-detail-figure__link {
	display: block;
	height: 100%;
	cursor: pointer;
}

.case-detail-figure__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 598 / 400;
	transition: transform 0.35s ease;
}

.case-detail-figure__link:hover .case-detail-figure__image,
.case-detail-figure__link:focus-visible .case-detail-figure__image {
	transform: scale(1.04);
}

.case-detail-figure--wide .case-detail-figure__image {
	aspect-ratio: 1236 / 695;
}

.case-detail-cover {
	padding-top: 2.5rem;
	position: relative;
	z-index: 2;
}

.case-detail-intro {
	padding-top: 6.25rem;
}

.case-detail-intro__content {
	max-width: 50rem;
}

.case-detail-intro__text {
	line-height: 1.5;
}

.case-detail-gallery {
	padding-top: 2.5rem;
}

.case-detail-gallery--last {
	padding-bottom: 6.25rem;
}

.case-detail-stats {
	padding-top: 5rem;
}

.case-stats {
	display: flex;
	align-items: flex-end;
	gap: 1.875rem;
}

.case-stat {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	padding: 7.5rem 1.875rem 1.875rem;
	border-radius: 20rem 20rem 1.5rem 1.5rem;
	color: var(--color-white);
}

.case-stat--tall {
	padding-top: 13.75rem;
}

.case-stat .results-card__avocado {
	top: auto;
	bottom: calc(100% - 6rem);
	width: 58%;
}

.case-stat--purple {
	background-color: var(--color-purple);
}

.case-stat--pink {
	background-color: var(--color-pink);
}

.case-stat--green {
	background-color: var(--color-green);
}

.case-stat--blue {
	background-color: var(--color-blue);
}

.case-stat__label {
	margin-bottom: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.13125rem;
	line-height: 1.42857;
	text-transform: uppercase;
}

.case-stat__value {
	margin-bottom: 1rem;
	font-family: var(--font-heading);
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.0825rem;
}

.case-stat__text {
	line-height: 1.5;
}

.case-detail-features {
	padding-top: 3.75rem;
}

.case-feature {
	padding: 1.875rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 1.5rem;
}

.case-feature__number {
	margin-bottom: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.13125rem;
	line-height: 1.42857;
	text-transform: uppercase;
	color: var(--color-purple);
}

.case-feature__title {
	margin-bottom: 1rem;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.3333;
	letter-spacing: -0.045rem;
}

.case-feature__text {
	line-height: 1.5;
}

.similar-projects {
	background-color: var(--color-surface);
}

.similar-projects__title {
	font-size: 4rem;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.12rem;
}

.similar-projects__title strong {
	font-weight: 400;
	color: var(--color-purple);
}

.similar-projects__intro {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-start;
}

.similar-projects__lead {
	line-height: 1.5;
}

.similar-projects__grid {
	margin-top: 3.75rem;
}

.case-studies-hero {
	padding-top: 12rem;
}

/* SCROLL REVEAL START */
.reveal-section {
	opacity: 0;
	transform: translateY(2.5rem);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.reveal-section.is-visible {
	opacity: 1;
	transform: none;
}
/* SCROLL REVEAL END */

/* CONTACT START */
.contact-hero {
	padding-top: 12rem;
}

.contact-hero__intro {
	max-width: 48rem;
}

.contact-hero__title strong {
	color: var(--color-pink);
}

.contact-hero__lead {
	line-height: 1.5;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	height: 100%;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: 1.5rem;
	background-color: var(--color-surface);
	color: var(--color-white);
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
	transform: translateY(-0.125rem);
	background-color: var(--color-surface-strong);
}

.contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	flex: 0 0 3.5rem;
	border-radius: 999rem;
	color: var(--color-white);
}

.contact-card--purple .contact-card__icon {
	background-color: var(--color-purple);
}

.contact-card--pink .contact-card__icon {
	background-color: var(--color-pink);
}

.contact-card--green .contact-card__icon {
	background-color: var(--color-green);
}

.contact-card--purple:hover {
	border-color: var(--color-purple);
}

.contact-card--pink:hover {
	border-color: var(--color-pink);
}

.contact-card--green:hover {
	border-color: var(--color-green);
}

.contact-card__label {
	margin-bottom: 0.35rem;
	color: var(--color-light);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	opacity: 0.7;
}

.contact-card__value {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	line-height: 1.3;
	word-break: break-word;
}

.contact-socials {
	margin-top: auto;
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: 1.5rem;
	background-color: var(--color-surface);
}

.contact-socials__title {
	margin-bottom: 1rem;
	color: var(--color-light);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	opacity: 0.7;
}

.contact-socials__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-map {
	position: relative;
	height: 100%;
	min-height: 28rem;
	border: 1px solid var(--color-border);
	border-radius: 1.5rem;
	background-color: var(--color-surface);
	overflow: hidden;
}

.contact-map__frame {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 28rem;
	border: 0;
	filter: grayscale(1) invert(0.92) brightness(0.9) contrast(0.9);
}
/* CONTACT END */

/* BLOG START */
.blog-hero {
	padding-top: 12rem;
}

.blog-hero__intro {
	max-width: 48rem;
}

.blog-hero__title strong {
	color: var(--color-purple);
}

.blog-hero__lead {
	line-height: 1.5;
}

.blog-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	background-color: var(--color-surface);
	color: var(--color-white);
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.blog-card:hover,
.blog-card:focus-visible {
	transform: translateY(-0.25rem);
	border-color: var(--color-purple);
	background-color: var(--color-surface-strong);
	color: var(--color-white);
}

.blog-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: var(--color-dark);
}

.blog-card__media picture {
	position: absolute;
	inset: 0;
	display: block;
}

.blog-card__image {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image,
.blog-card:focus-visible .blog-card__image {
	transform: scale(1.04);
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1 1 auto;
	padding: 1.5rem;
}

.blog-card__date {
	color: var(--color-light);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
	opacity: 0.7;
}

.blog-card__title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.045rem;
}

.blog-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--color-light);
	font-weight: 600;
	line-height: 1.5;
}

.blog-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-start;
	margin-top: auto;
	padding: 0.625rem 1.25rem;
	border-radius: 999rem;
	background-color: var(--color-surface-strong);
	color: var(--color-white);
	font-size: 0.9375rem;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-card:hover .blog-card__more,
.blog-card:focus-visible .blog-card__more {
	background-color: var(--color-purple);
	color: var(--color-white);
}

.blog-card__more-icon {
	display: inline-flex;
	transition: transform 0.2s ease;
}

.blog-card:hover .blog-card__more-icon,
.blog-card:focus-visible .blog-card__more-icon {
	transform: translateX(0.2rem);
}
/* BLOG END */

/* BLOG POST START */
.post-hero {
	padding-top: 12rem;
}

.post-back {
	position: fixed;
	left: 1.5rem;
	bottom: 1.5rem;
	z-index: 40;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.post-back .site-button,
.post-back .site-icon-button {
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.45);
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-light);
	font-size: 0.9375rem;
	font-weight: 600;
	opacity: 0.7;
}

.post-meta li {
	display: inline-flex;
	align-items: center;
}

.post-meta li + li::before {
	content: "";
	width: 0.3rem;
	height: 0.3rem;
	margin-right: 1.5rem;
	border-radius: 999rem;
	background-color: var(--color-purple);
}

.post-cover {
	margin-top: 4rem;
}

.post-cover__media {
	width: 100%;
	height: clamp(20rem, 55vh, 34rem);
	background-image: url("../images/temp/projekt_1.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.post-content {
	color: var(--color-light);
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.75;
}

.post-content > *:first-child {
	margin-top: 0;
}

.post-content > *:last-child {
	margin-bottom: 0;
}

.post-content p {
	margin: 0 0 1.5rem;
}

.post-content__lead {
	color: var(--color-white);
	font-size: 1.3125rem;
	line-height: 1.55;
}

.post-content h2 {
	margin: 3rem 0 1rem;
	font-size: clamp(1.75rem, 3.5vw, 2.125rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--color-white);
}

.post-content h3 {
	margin: 2.5rem 0 0.875rem;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-white);
}

.post-content strong {
	color: var(--color-white);
	font-weight: 800;
}

.post-content a {
	color: var(--color-purple);
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: color 0.2s ease;
}

.post-content a:hover {
	color: var(--color-pink);
}

.post-content ul,
.post-content ol {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin: 0 0 1.5rem;
	padding-left: 1.5rem;
}

.post-content li {
	padding-left: 0.5rem;
	line-height: 1.6;
}

.post-content li::marker {
	color: var(--color-purple);
	font-weight: 700;
}

.post-content figure {
	margin: 2.5rem 0;
}

.post-content picture {
	display: block;
}

.post-content img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1rem;
}

.post-content figcaption {
	margin-top: 0.875rem;
	color: var(--color-light);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	opacity: 0.65;
}

.post-content blockquote {
	position: relative;
	margin: 2.5rem 0;
	padding: 2.25rem 2rem 2rem 4rem;
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	background-color: var(--color-surface);
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 1.375rem;
	font-weight: 400;
	line-height: 1.4;
}

.post-content blockquote::before {
	content: "\201C";
	position: absolute;
	top: 0.75rem;
	left: 1.25rem;
	color: var(--color-purple);
	font-family: var(--font-heading);
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1;
}

.post-content blockquote cite {
	display: block;
	margin-top: 1rem;
	color: var(--color-light);
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-style: normal;
	font-weight: 600;
	opacity: 0.7;
}

.post-content hr {
	margin: 2.5rem 0;
	border: 0;
	border-top: 1px solid var(--color-border);
}
/* BLOG POST END */

/* TEAM PAGE START */
.team-hero {
	padding-top: 12rem;
}

.team-hero__intro {
	max-width: 48rem;
}

.team-hero__title strong {
	color: var(--color-purple);
}

.team-hero__lead {
	line-height: 1.5;
}
/* TEAM PAGE END */

/* SERVICES PAGE START */
.services-hero {
	padding-top: 12rem;
}

.services-hero__intro {
	max-width: 48rem;
}

.services-hero__title strong {
	color: var(--color-purple);
}

.services-hero__lead {
	line-height: 1.5;
}

.service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	background-color: var(--color-surface);
	color: var(--color-white);
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-visible {
	transform: translateY(-0.25rem);
	background-color: var(--color-surface-strong);
	color: var(--color-white);
}

.service-card--green:hover,
.service-card--green:focus-visible {
	border-color: var(--color-green);
}

.service-card--purple:hover,
.service-card--purple:focus-visible {
	border-color: var(--color-purple);
}

.service-card--pink:hover,
.service-card--pink:focus-visible {
	border-color: var(--color-pink);
}

.service-card--blue:hover,
.service-card--blue:focus-visible {
	border-color: var(--color-blue);
}

.service-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: var(--color-surface-strong);
}

.service-card--green .service-card__media {
	background-color: var(--color-green);
}

.service-card--purple .service-card__media {
	background-color: var(--color-purple);
}

.service-card--pink .service-card__media {
	background-color: var(--color-pink);
}

.service-card--blue .service-card__media {
	background-color: var(--color-blue);
}

.service-card__media picture {
	position: absolute;
	inset: 0;
	display: block;
}

.service-card__image {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.service-card:hover .service-card__image,
.service-card:focus-visible .service-card__image {
	transform: scale(1.04);
}

.service-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1 1 auto;
	padding: 1.5rem;
}

.service-card__title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.045rem;
}

.service-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--color-light);
	font-weight: 600;
	line-height: 1.5;
}

.service-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	font-weight: 600;
}

.service-card--green .service-card__more {
	color: var(--color-green);
}

.service-card--purple .service-card__more {
	color: var(--color-purple);
}

.service-card--pink .service-card__more {
	color: var(--color-pink);
}

.service-card--blue .service-card__more {
	color: var(--color-blue);
}

.service-card__more-icon {
	display: inline-flex;
	transition: transform 0.2s ease;
}

.service-card:hover .service-card__more-icon,
.service-card:focus-visible .service-card__more-icon {
	transform: translateX(0.2rem);
}
/* SERVICES PAGE END */

/* ERROR PAGE START */
.error-section {
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding-top: 12rem;
	padding-bottom: 6.25rem;
}

.error-section > .container {
	display: flex;
	justify-content: center;
}

.error-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 34rem;
	text-align: center;
}

.error-page__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.5rem;
	height: 5.5rem;
	margin-bottom: 2rem;
	border-radius: 999rem;
	background-color: var(--color-surface-strong);
	border: 0.0625rem solid var(--color-border);
	color: var(--color-green);
}

.error-page__title {
	margin-bottom: 1rem;
	font-size: 6rem;
	line-height: 1;
}

.error-page__text {
	margin-bottom: 2rem;
	color: var(--color-light);
}
/* ERROR PAGE END */

/* LEGAL PAGES START */
.legal-hero {
	padding-top: 12rem;
}

.legal-hero__intro {
	max-width: 48rem;
}

.legal-hero__title strong {
	color: var(--color-purple);
}

.legal-hero__lead {
	color: var(--color-light);
	line-height: 1.6;
}

.legal-content {
	max-width: 52rem;
}

.legal-content__updated {
	margin-bottom: 2.5rem;
	color: var(--color-green);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.13125rem;
	text-transform: uppercase;
}

.legal-content h2 {
	margin-top: 2.75rem;
	margin-bottom: 1rem;
	font-size: 1.75rem;
}

.legal-content h2:first-of-type {
	margin-top: 0;
}

.legal-content p {
	margin-bottom: 1.25rem;
	color: var(--color-light);
	line-height: 1.7;
}

.legal-content ul {
	margin-bottom: 1.5rem;
	padding-left: 1.25rem;
	color: var(--color-light);
}

.legal-content li {
	margin-bottom: 0.625rem;
	line-height: 1.6;
}

.legal-content a {
	color: var(--color-green);
	text-decoration: underline;
	text-underline-offset: 0.2rem;
}

.legal-content a:hover {
	color: var(--color-white);
}

.legal-content__note {
	margin-top: 2.5rem;
	font-size: 0.9375rem;
}

.legal-table {
	width: 100%;
	margin-bottom: 1.5rem;
	border-collapse: collapse;
}

.legal-table th,
.legal-table td {
	padding: 0.875rem 1rem;
	border: 0.0625rem solid var(--color-border);
	text-align: left;
	vertical-align: top;
	line-height: 1.5;
}

.legal-table th {
	background-color: var(--color-surface-strong);
	font-family: var(--font-heading);
	font-weight: 400;
}

.legal-table td {
	color: var(--color-light);
}
/* LEGAL PAGES END */

/* CONTACT FORM START */
.cta-form__check {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	margin: 0;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--color-light);
}

.cta-form__checkbox {
	flex: 0 0 1.15rem;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.15rem;
	accent-color: var(--color-green);
	cursor: pointer;
}

.cta-form__check-text a {
	color: var(--color-green);
	text-decoration: underline;
	text-underline-offset: 0.2rem;
}

.cta-form__check-text a:hover {
	color: var(--color-white);
}

.invalid-feedback {
	display: none;
	margin-top: 0.5rem;
	padding-left: 1.75rem;
	color: #ff6b6b;
	font-size: 0.85rem;
	font-weight: 600;
}

.invalid-feedback:not(:empty) {
	display: block;
}

.cta-form__control.is-invalid {
	box-shadow: 0 0 0 0.125rem rgba(255, 107, 107, 0.55);
}

.cta-form__checkbox.is-invalid {
	outline: 0.125rem solid #ff6b6b;
	outline-offset: 0.15rem;
}

.cta-form__error {
	margin-top: 0.75rem;
	color: #ff6b6b;
	font-size: 0.9rem;
	font-weight: 600;
}

.error-page__title--thanks {
	font-size: 3.5rem;
}
/* CONTACT FORM END */

/* BACK TO TOP START */
.back-to-top {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 1030;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: var(--color-purple);
	color: var(--color-white);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.75rem);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease;
}

.back-to-top:hover {
	background-color: var(--color-pink);
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* BACK TO TOP END */