:root {
	color-scheme: dark;
	--page-bg: #08080a;
	--text-primary: #f5f7fa;
	--text-muted: rgba(245, 247, 250, 0.58);
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.12);
	--active-bg: rgba(255, 255, 255, 0.16);
	--cyan: rgba(67, 210, 255, 0.2);
	--accent-start: #bf31d7;
	--accent-end: #f19cf0;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.fade-up {
	opacity: 0;
	transform: translateY(40px);
	will-change: transform, opacity;
}

body {
	min-width: 320px;
	margin: 0;
	background:
		radial-gradient(circle at 50% 5%, var(--cyan), transparent 24rem),
		radial-gradient(circle at 12% 72%, rgba(19, 112, 180, 0.13), transparent 24rem),
		var(--page-bg);
	background-attachment: fixed;
	color: var(--text-primary);
	font-family: 'Poppins', sans-serif;
}

body.modal-open {
	overflow: hidden;
}

.site-header {
	position: fixed;
	z-index: 10;
	top: 16px;
	left: 50%;
	width: min(940px, calc(100% - 32px));
	transform: translateX(-50%);
}

.floating-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 6px 8px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 100px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
}

.brand-mark,
.nav-link,
.project-button {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.brand-mark {
	display: none;
}

.nav-links {
	display: flex;
	flex: 1;
	justify-content: center;
	gap: 2px;
}

.nav-link {
	padding: 10px 14px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.nav-link.is-active {
	color: var(--text-primary);
	background: var(--active-bg);
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
	outline: none;
}

.nav-link:hover,
.nav-link:focus-visible {
	color: #62c9ff;
	background: rgba(98, 201, 255, 0.12);
	box-shadow: 0 0 18px rgba(98, 201, 255, 0.18);
	outline: none;
}

.burger {
	display: none;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 100px;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.burger span,
.burger::before,
.burger::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 20px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transform: translateX(-50%);
	transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.burger::before {
	top: 16px;
}

.burger span {
	top: 21px;
}

.burger::after {
	top: 26px;
}

.burger.is-open::before {
	top: 21px;
	transform: translateX(-50%) rotate(45deg);
}

.burger.is-open span {
	opacity: 0;
}

.burger.is-open::after {
	top: 21px;
	transform: translateX(-50%) rotate(-45deg);
}

.nav-menu {
	display: none;
}

.project-button {
	padding: 10px 18px;
	border: 0;
	border-radius: 100px;
	background: linear-gradient(100deg, #bf31d7, #f19cf0);
	box-shadow: 0 12px 32px rgba(191, 49, 215, 0.28);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.project-button:hover,
.project-button:focus-visible {
	box-shadow: 0 16px 38px rgba(191, 49, 215, 0.42);
	outline: none;
}

.portfolio-section {
	min-height: 100vh;
	scroll-margin-top: 90px;
}

.projects-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(36px, 6vh, 66px) clamp(24px, 8.4vw, 116px) 96px;
}

.projects-content {
	width: min(100%, 1180px);
	margin-inline: auto;
}

.projects-intro {
	margin-top: clamp(26px, 5vh, 50px);
	text-align: center;
}

.projects-intro-title {
	margin: 0;
	font-size: clamp(3.5rem, 6.5vw, 5.5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.projects-intro-title__blur {
	display: inline-block;
	padding: 0 0.12em;
	background: linear-gradient(90deg, #bf31d7 0%, #d99bea 42%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-style: italic;
	filter: blur(1.5px);
	text-shadow: 0 0 18px rgba(245, 247, 250, 0.6);
}

.projects-intro-text {
	max-width: 720px;
	margin: 18px auto 0;
	color: var(--text-primary);
	opacity: 0.82;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
}

.projects-gallery-title {
	max-width: 720px;
	margin: clamp(26px, 5vh, 50px) auto 0;
	text-align: center;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 700;
	line-height: 1.2;
}

.projects-gallery-title__blur {
	display: inline-block;
	padding: 0 0.12em;
	background: linear-gradient(90deg, #bf31d7 0%, #d99bea 42%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-style: italic;
	filter: blur(1.5px);
	text-shadow: 0 0 18px rgba(245, 247, 250, 0.6);
}

.projects-carousel {
	position: relative;
	display: block;
	width: calc(100% + clamp(24px, 8.4vw, 116px) * 2);
	margin: clamp(26px, 5vh, 50px) calc(clamp(24px, 8.4vw, 116px) * -1) 0;
}

.projects-stage {
	position: relative;
	height: clamp(360px, 54vh, 600px);
	overflow: hidden;
	perspective: 1600px;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.projects-stage::before,
.projects-stage::after {
	display: none;
}

.projects-slides {
	position: relative;
	height: 100%;
}

.project-slide {
	position: absolute;
	top: 50%;
	left: 50%;
	width: clamp(170px, 18vw, 260px);
	aspect-ratio: 9 / 16;
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 0 38px rgba(67, 210, 255, 0.08);
	object-fit: cover;
	opacity: 0;
	transform: translate(-50%, -50%);
	transform-style: preserve-3d;
	transition: opacity 260ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
	will-change: transform, opacity;
	cursor: pointer;
}

.project-slide.is-active {
	opacity: 1;
}

.project-slide.is-active:focus-visible {
	outline: 3px solid var(--text-primary);
	outline-offset: 6px;
}

.projects-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: var(--text-primary);
	cursor: pointer;
	font: inherit;
	transform: translateY(-50%);
	transition: background-color 180ms ease, transform 180ms ease;
}

.projects-arrow--prev {
	left: clamp(12px, 4vw, 40px);
}

.projects-arrow--next {
	right: clamp(12px, 4vw, 40px);
}

.projects-arrow-icon {
	width: 20px;
	height: 20px;
}

.projects-arrow:hover,
.projects-arrow:focus-visible {
	background: rgba(0, 0, 0, 0.75);
	outline: none;
	transform: translateY(-50%) scale(1.08);
}

.services-section {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(64px, 9vh, 88px) clamp(24px, 8.4vw, 116px) 96px;
}

.services-content {
	width: min(100%, 1180px);
	margin-inline: auto;
}

.services-title {
	margin: 0;
	text-align: center;
	font-size: clamp(3.5rem, 6.5vw, 5.5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.services-list {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: clamp(12px, 2.2vh, 22px);
	margin: 0;
	padding: clamp(64px, 10vh, 96px) 0 48px;
	list-style: none;
}

.services-list__item {
	position: relative;
	isolation: isolate;
	display: inline-block;
	padding: 0.02em 0.13em 0.08em;
	color: var(--text-primary);
	font-size: clamp(1.5rem, 3.4vw, 3.4rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.03;
	text-align: center;
	filter: blur(4px);
	transition: color 220ms ease, transform 220ms ease, filter 220ms ease;
}

.services-list__item::before {
	position: absolute;
	bottom: 0.08em;
	left: -0.03em;
	z-index: -1;
	width: calc(100% + 0.06em);
	height: 0.42em;
	background: linear-gradient(100deg, var(--accent-start), var(--accent-end));
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
	will-change: transform;
}

.services-list__item:hover {
	color: #fff;
	filter: blur(0);
	transform: translateY(-0.04em) scale(1.08);
}

.services-list__item:hover::before {
	transform: scaleX(1);
}

.services-gallery {
	position: relative;
	width: calc(100% + clamp(24px, 8.4vw, 116px) * 2);
	margin: clamp(48px, 8vh, 88px) calc(clamp(24px, 8.4vw, 116px) * -1) 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
	mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.media-caption {
	margin: clamp(12px, 2.5vh, 20px) 0 0;
	color: var(--text-muted);
	font-size: 0.78rem;
	font-weight: 500;
	text-align: center;
}

.services-gallery-track {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 22px);
	width: max-content;
	padding: 28px 0;
	will-change: transform;
	animation: services-gallery-scroll 69s linear infinite;
}

.services-gallery:hover .services-gallery-track {
	animation-play-state: paused;
}

.services-gallery-item {
	position: relative;
	flex: 0 0 auto;
	width: clamp(150px, 18vw, 230px);
	aspect-ratio: 3 / 4;
	margin: 0;
	padding: 0;
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	background: var(--glass-bg);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	font: inherit;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

button.services-gallery-item {
	cursor: pointer;
	appearance: none;
}

button.services-gallery-item:focus-visible {
	outline: 2px solid #62c9ff;
	outline-offset: 3px;
}

.services-gallery-item:nth-child(4n + 1) {
	transform: rotate(-3deg);
}

.services-gallery-item:nth-child(4n + 2) {
	transform: rotate(2deg);
}

.services-gallery-item:nth-child(4n + 3) {
	transform: rotate(-1.5deg);
}

.services-gallery-item:nth-child(4n) {
	transform: rotate(3deg);
}

.services-gallery-item:hover {
	z-index: 1;
	transform: scale(1.06) rotate(0deg);
	box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
}

.services-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes services-gallery-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.services-gallery-track {
		animation: none;
	}
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 40;
	display: grid;
	place-items: center;
	padding: 24px;
}

.gallery-lightbox[hidden] {
	display: none;
}

.gallery-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox-image {
	position: relative;
	max-width: min(90vw, 720px);
	max-height: calc(100vh - 48px);
	border-radius: 16px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
	object-fit: contain;
}

.gallery-lightbox-close {
	position: absolute;
	top: 18px;
	right: 22px;
	z-index: 1;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
	transition: background-color 180ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	outline: none;
}

.pricing-section {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(64px, 9vh, 88px) clamp(24px, 8.4vw, 116px) 96px;
}

.pricing-content {
	width: min(100%, 1180px);
	margin-inline: auto;
}

.pricing-content h2 {
	margin: 0;
	text-align: center;
	font-size: clamp(3.5rem, 6.5vw, 5.5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
	margin-top: clamp(100px, 17vh, 150px);
}

.pricing-card {
	display: flex;
	min-width: 0;
	min-height: 390px;
	flex-direction: column;
	padding: 32px 24px 28px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: linear-gradient(155deg, rgba(28, 39, 48, 0.94), rgba(8, 12, 17, 0.96));
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	color: var(--text-primary);
	transition: transform 240ms ease, box-shadow 240ms ease;
	transform-origin: center;
	will-change: transform;
}

.pricing-card:hover,
.pricing-card:focus-within {
	transform: scale(1.05);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.44), 0 0 26px rgba(67, 210, 255, 0.08);
}

.pricing-card.fade-up.is-revealed {
	transform: scale(1);
}

.pricing-card.fade-up.is-revealed:hover,
.pricing-card.fade-up.is-revealed:focus-within {
	transform: scale(1.05);
}

.pricing-card--featured {
	position: relative;
	overflow: hidden;
	border-color: rgba(255, 255, 255, 0.22);
	background: linear-gradient(135deg, rgba(191, 49, 215, 0.62), rgba(241, 156, 240, 0.3) 52%, rgba(53, 19, 73, 0.56));
	box-shadow: 0 24px 60px rgba(91, 20, 105, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px) saturate(145%);
	-webkit-backdrop-filter: blur(20px) saturate(145%);
	color: #fff;
	transform: scale(1.035);
}

.pricing-card--featured::before {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: inherit;
	background: linear-gradient(125deg, rgba(255, 255, 255, 0.26), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.08));
	content: "";
	pointer-events: none;
}

.pricing-card--featured > * {
	position: relative;
	z-index: 1;
}

.pricing-card--featured:hover,
.pricing-card--featured:focus-within {
	transform: scale(1.07);
	box-shadow: 0 30px 70px rgba(91, 20, 105, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.pricing-card--featured.fade-up.is-revealed {
	transform: scale(1.035);
}

.pricing-card--featured.fade-up.is-revealed:hover,
.pricing-card--featured.fade-up.is-revealed:focus-within {
	transform: scale(1.07);
}

.pricing-card h3 {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 1.65rem);
	font-weight: 600;
	line-height: 1.15;
}

.pricing-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pricing-badge {
	color: #ff9c25;
	font-size: 0.76rem;
	font-weight: 700;
	white-space: nowrap;
}

.pricing-description {
	min-height: 58px;
	margin: 18px 0 20px;
	color: rgba(245, 247, 250, 0.58);
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.2;
}

.pricing-card--featured .pricing-description {
	color: rgba(247, 244, 255, 0.6);
}

.pricing-price {
	margin: -12px 0 20px;
	font-size: clamp(1.65rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.1;
}

.pricing-action {
	display: grid;
	min-height: 40px;
	place-items: center;
	border-radius: 100px;
	background: #fff;
	color: #08080a;
	font-size: 0.76rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 180ms ease, transform 180ms ease;
}

.pricing-card--featured .pricing-action {
	background: linear-gradient(100deg, #bf31d7, #f19cf0);
	box-shadow: 0 10px 24px rgba(191, 49, 215, 0.24);
}

.pricing-action:hover,
.pricing-action:focus-visible {
	background: #572aa8;
	outline: none;
	transform: translateY(-2px);
}

.pricing-card--featured .pricing-action:hover,
.pricing-card--featured .pricing-action:focus-visible {
	background: linear-gradient(100deg, #bf31d7, #f19cf0);
	box-shadow: 0 14px 30px rgba(191, 49, 215, 0.4);
}

.pricing-features {
	display: grid;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0 0 0 20px;
	font-size: 0.73rem;
	font-weight: 500;
	line-height: 1.2;
}

.pricing-features li::marker {
	font-size: 0.7em;
}

.pricing-note {
	margin: 18px 0 0;
	color: #ff9c25;
	font-size: 0.73rem;
	font-weight: 600;
	line-height: 1.3;
}

.info-section {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(64px, 9vh, 88px) clamp(24px, 8.4vw, 116px) 96px;
}

.info-content {
	width: min(100%, 1180px);
	margin-inline: auto;
}

.info-content > h2 {
	margin: 0;
	text-align: center;
	font-size: clamp(3.5rem, 6.5vw, 5.5rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 64px);
	margin-top: clamp(90px, 14vh, 130px);
}

.process-card {
	position: relative;
	min-width: 0;
}

.info-card-number {
	display: block;
	margin-bottom: 8px;
	background: linear-gradient(90deg, #bf31d7 0%, #d99bea 42%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: clamp(3.2rem, 5vw, 4.6rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.process-card h3 {
	margin: 0 0 14px;
	font-size: clamp(1.45rem, 2vw, 2rem);
	font-weight: 700;
	line-height: 1.08;
}

.process-card p,
.contacts-content > p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.45;
}

.process-card:not(:last-child)::after {
	position: absolute;
	top: clamp(2rem, 3vw, 3rem);
	right: clamp(-42px, -3vw, -20px);
	display: inline-block;
	background: linear-gradient(90deg, #bf31d7 0%, #d99bea 42%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	content: "→";
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 400;
	line-height: 1;
}

.info-action {
	display: inline-grid;
	min-height: 44px;
	place-items: center;
	padding: 10px 20px;
	border-radius: 100px;
	background: linear-gradient(100deg, #bf31d7, #f19cf0);
	box-shadow: 0 12px 32px rgba(191, 49, 215, 0.22);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.info-action:hover,
.info-action:focus-visible {
	box-shadow: 0 16px 38px rgba(191, 49, 215, 0.42);
	outline: none;
	transform: translateY(-2px);
}

.contacts-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.contacts-section {
	position: relative;
	padding-top: clamp(124px, 15vh, 148px);
	overflow: hidden;
}

.contacts-glow {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: 120px 120px, auto, auto, auto;
	background-blend-mode: overlay, normal, normal, normal;
	/* fades the dome smoothly into the page background at the top edge */
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 35%, black 70%);
	mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 35%, black 70%);
}

@media (prefers-reduced-motion: reduce) {
	.contacts-glow {
		transition: none;
	}
}

.contacts-content > p {
	max-width: 480px;
	margin: 28px auto 0;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.social-link {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid var(--glass-border);
	border-radius: 50%;
	background: var(--glass-bg);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	color: var(--text-primary);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
	border-color: #62c9ff;
	background: rgba(98, 201, 255, 0.14);
	color: #62c9ff;
	outline: none;
	transform: translateY(-3px);
}

.contacts-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 34px;
}

.contacts-actions .info-action {
	width: min(100%, 280px);
}

.info-action--secondary {
	border: 1px solid var(--glass-border);
	background: transparent;
	box-shadow: none;
	color: var(--text-primary);
}

#about {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0;
	padding: clamp(180px, 20vh, 240px) clamp(24px, 8.4vw, 116px) 80px;
	text-align: left;
}

#about::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.24) 62%, transparent 100%);
	content: "";
	pointer-events: none;
}

.about-background-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.9);
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
	pointer-events: none;
}

.whatsapp-button {
	position: fixed;
	left: calc(100% - clamp(32px, 8vw, 150px) - clamp(120px, 12vw, 165px));
	bottom: 18px;
	z-index: 20;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 16px;
	border: 0;
	border-radius: 100px;
	background: linear-gradient(100deg, #bf31d7, #f19cf0);
	box-shadow: 0 12px 32px rgba(191, 49, 215, 0.28);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	transform: translateX(-50%);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-modal {
	position: fixed;
	inset: 0;
	z-index: 30;
	display: grid;
	place-items: center;
	padding: 24px;
}

.project-modal[hidden] {
	display: none;
}

.project-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.project-modal-panel {
	position: relative;
	width: min(100%, 560px);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	padding: 28px;
	background: rgba(248, 249, 251, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
	color: #08080a;
}

.project-modal-close {
	position: absolute;
	top: 14px;
	right: 18px;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	color: #333;
	cursor: pointer;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
}

.project-modal-panel h2 {
	margin: 0 48px 12px 0;
	font-size: clamp(2.2rem, 6vw, 3.5rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 0.94;
}

.project-modal-panel > p {
	margin: 0 0 28px;
	font-size: 0.9rem;
}

.project-form {
	display: grid;
	gap: 14px;
}

.project-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.project-form input,
.project-form select,
.project-form textarea {
	width: 100%;
	min-height: 42px;
	padding: 11px 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background: rgba(235, 235, 238, 0.72);
	color: #08080a;
	font: inherit;
	font-size: 0.8rem;
}

.project-form textarea {
	min-height: 132px;
	resize: vertical;
}

.project-form input::placeholder,
.project-form textarea::placeholder {
	color: #8a8d94;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
	border-color: #1683ff;
	outline: 2px solid rgba(22, 131, 255, 0.14);
}

.project-submit,
.project-modal-actions a {
	min-height: 42px;
	border: 0;
	border-radius: 100px;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

.project-submit {
	background: #000;
	color: #fff;
	cursor: pointer;
}

.project-submit:hover,
.project-submit:focus-visible {
	background: #1683ff;
	outline: none;
}

.project-modal-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 10px;
}

.project-modal-actions a {
	display: grid;
	place-items: center;
	padding: 10px;
	background: #dedee0;
	color: #08080a;
}

.project-modal-actions a:hover,
.project-modal-actions a:focus-visible {
	background: linear-gradient(100deg, #bf31d7, #f19cf0);
	box-shadow: 0 12px 32px rgba(191, 49, 215, 0.28);
	color: #fff;
	outline: none;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
	transform: translate(-50%, -3px);
	box-shadow: 0 16px 38px rgba(191, 49, 215, 0.42);
	outline: none;
}

.about-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	width: min(100%, 1180px);
}

.about-content h1 {
	margin: 0;
	font-size: clamp(3.6rem, 7.5vw, 7rem);
	font-weight: 800;
	letter-spacing: 1px;
	line-height: 0.94;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.about-content p {
	max-width: 480px;
	margin: 0;
	opacity: 0.82;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 80px;
}

.about-specializations {
	display: flex;
	gap: clamp(24px, 6vw, 64px);
	width: 100%;
	margin-bottom: 58px;
}

.site-footer {
	padding: 24px clamp(24px, 8.4vw, 116px) 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--text-muted);
	text-align: center;
}

.site-footer p {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.specialization-column {
	flex: 1 1 0;
	min-width: 0;
}

.spec-title {
	display: inline-block;
	margin: 0 0 58px;
	padding: 2px 0;
	color: #fff;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.brand-logo-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	min-height: 80px;
	overflow: visible;
}

.brand-logo {
	display: block;
	box-sizing: border-box;
	width: 120px;
	max-width: 120px;
	max-height: 80px;
	height: 80px;
	object-fit: contain;
	filter: invert(1) brightness(1.12) contrast(1.05);
	opacity: 0.85;
	transition: opacity 180ms ease, transform 180ms ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
	opacity: 1;
	transform: scale(1.06);
}

.brand-logo--long-talk {
	transform: scale(0.55);
}

.brand-logo--long-talk:hover,
.brand-logo--long-talk:focus-visible {
	transform: scale(0.61);
}

.brand-logo--orangerie {
	transform: scale(1.5);
}

.brand-logo--orangerie:hover,
.brand-logo--orangerie:focus-visible {
	transform: scale(1.58);
}

@media (max-width: 767px) {
	.site-header {
		top: 10px;
		width: calc(100% - 20px);
	}

	.floating-nav {
		gap: 4px;
		justify-content: space-between;
	}

	.nav-links {
		display: none;
	}

	.burger {
		display: block;
	}

	.project-button {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}

	.nav-menu {
		position: fixed;
		inset: 0;
		z-index: 15;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 12px;
		background: rgba(8, 8, 10, 0.94);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transition: opacity 220ms ease, visibility 220ms ease;
	}

	.nav-menu.is-open {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.nav-menu .nav-link {
		display: flex;
		align-items: center;
		min-height: 44px;
		font-size: 1.5rem;
	}

	body.nav-open {
		overflow: hidden;
	}
}

@media (max-width: 520px) {
	#about {
		padding-inline: 20px;
	}

	.about-break {
		display: none;
	}

	.about-content h1 {
		font-size: clamp(3rem, 15vw, 4.8rem);
	}

	.whatsapp-button {
		left: 50%;
		right: auto;
	}

	.whatsapp-button {
		right: 20px;
		bottom: 16px;
		padding: 12px 18px;
		font-size: 0.875rem;
	}

	.services-active .whatsapp-button {
		display: none;
	}

	.about-content p {
		margin-bottom: 56px;
	}

	.about-specializations {
		flex-direction: column;
		gap: 48px;
	}

	.services-section {
		padding-inline: 20px;
	}

	.projects-section {
		padding: 36px 20px 72px;
	}

	.projects-carousel {
		width: calc(100% + 40px);
		margin: 30px -20px 0;
	}

	.projects-stage {
		height: clamp(360px, 62vh, 540px);
	}

	.projects-arrow {
		width: 44px;
		height: 44px;
	}

	.projects-arrow--prev {
		left: 8px;
	}

	.projects-arrow--next {
		right: 8px;
	}

	.projects-slides {
		width: 100%;
	}

	.project-slide {
		width: min(58vw, 230px);
	}

	.pricing-section {
		padding-inline: 20px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-top: 90px;
	}

	.pricing-card,
	.pricing-card--featured {
		min-height: 360px;
		transform: none;
	}

	.pricing-card--featured:hover,
	.pricing-card--featured:focus-within {
		transform: scale(1.025);
	}

	.services-list {
		padding-top: 100px;
	}

	.services-gallery {
		width: calc(100% + 40px);
		margin-inline: -20px;
	}

	.services-gallery-item {
		width: 150px;
	}

	.process-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 90px;
	}

	.process-card {
		padding-right: 32px;
	}

	.process-card:not(:last-child)::after {
		top: auto;
		right: auto;
		bottom: -18px;
		left: 8px;
		content: "↓";
		font-size: 1.8rem;
	}

	.contacts-actions {
		flex-direction: column;
		align-items: center;
	}

	.brand-logo-grid {
		gap: 24px;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.spec-title {
		margin-bottom: 24px;
	}

	.brand-logo {
		height: 64px;
		max-height: 64px;
	}

	.project-modal {
		padding: 8px;
	}

	.project-modal-panel {
		padding: 22px 20px 20px;
	}

	.project-form-row,
	.project-modal-actions {
		grid-template-columns: 1fr;
	}
}
