﻿@charset "utf-8";
/* CSS Document 



*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-dark: #0d0d0d;
	--bg-card: #1a1a1a;
	--bg-elevated: #242424;
	--accent: #f59e0b;
	--accent-light: #fbbf24;
	--accent-dark: #d97706;
	--text-primary: #fafafa;
	--text-secondary: #a3a3a3;
	--text-muted: #737373;
	--border: #2e2e2e;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
}

body.preloader-active {
	overflow: hidden;
}

/* Preloader */
.preloader {
	--preloader-arc-r: 98;
	--preloader-arc-c: calc(2 * 3.141592653589793 * var(--preloader-arc-r) * 1px);
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 72% 38%, rgba(245, 158, 11, 0.14) 0%, transparent 34%),
		radial-gradient(circle at 18% 78%, rgba(217, 119, 6, 0.08) 0%, transparent 28%),
		var(--bg-dark);
	overflow: hidden;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.preloader-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.preloader-noise {
	position: absolute;
	inset: 0;
	opacity: 0.08;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: preloader-noise-shift 0.35s steps(2) infinite;
	pointer-events: none;
}

.preloader-vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.preloader-stage {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
	width: min(1120px, 92vw);
	padding: 0 0 4.5rem;
	transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, filter 0.75s ease;
}

.preloader.preloader-done .preloader-stage {
	transform: scale(1.04);
	opacity: 0;
	filter: blur(8px);
}

.preloader-copy {
	position: relative;
}

.preloader-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1.25rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-muted);
	animation: preloader-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preloader-kicker-index {
	color: var(--accent);
}

.preloader-title {
	margin: 0;
	font-size: clamp(3.4rem, 8vw, 6.4rem);
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: -0.05em;
}

.preloader-title-line {
	display: block;
	overflow: hidden;
}

.preloader-title-line:first-child {
	color: var(--text-primary);
	animation: preloader-title-reveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.preloader-title-accent {
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(245, 158, 11, 0.85);
	text-shadow: 0 0 40px rgba(245, 158, 11, 0.18);
	animation: preloader-title-reveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.preloader-status {
	margin: 1.35rem 0 0;
	max-width: 22rem;
	font-size: 0.95rem;
	color: var(--text-secondary);
	min-height: 1.5em;
	animation: preloader-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.preloader-status.is-changing {
	animation: preloader-status-swap 0.45s ease;
}

.preloader-core {
	position: relative;
	width: min(78vw, 320px);
	aspect-ratio: 1;
	justify-self: center;
	animation: preloader-core-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.preloader-arc {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.preloader-arc-track,
.preloader-arc-progress {
	fill: none;
	stroke-width: 3;
}

.preloader-arc-track {
	stroke: rgba(255, 255, 255, 0.06);
}

.preloader-arc-progress {
	stroke: url(#preloaderArcGradient);
	stroke-linecap: round;
	stroke-dasharray: var(--preloader-arc-c);
	stroke-dashoffset: var(--preloader-arc-c);
	filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.55));
	transition: stroke-dashoffset 0.28s ease;
}

.preloader-radar {
	position: absolute;
	inset: 10%;
	border-radius: 50%;
	overflow: hidden;
}

.preloader-radar-face {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		repeating-radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0 1px, transparent 1px 18px),
		radial-gradient(circle at center, rgba(245, 158, 11, 0.05) 0%, transparent 68%);
	opacity: 0.75;
}

.preloader-radar-sweep {
	position: absolute;
	inset: -20%;
	background: conic-gradient(from 0deg, transparent 0deg, rgba(245, 158, 11, 0.28) 28deg, transparent 56deg);
	animation: preloader-radar-spin 3.2s linear infinite;
}

.preloader-radar-ticks {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: repeating-conic-gradient(
		from -90deg,
		rgba(245, 158, 11, 0.55) 0deg 1.5deg,
		transparent 1.5deg 30deg
	);
	mask: radial-gradient(circle, transparent 58%, #000 59%, #000 92%, transparent 93%);
	opacity: 0.35;
}

.preloader-sonar {
	position: absolute;
	inset: 0;
}

.preloader-sonar span {
	position: absolute;
	inset: 22%;
	border-radius: 50%;
	border: 1px solid rgba(245, 158, 11, 0.45);
	animation: preloader-sonar 3.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.preloader-sonar span:nth-child(2) { animation-delay: 0.9s; }
.preloader-sonar span:nth-child(3) { animation-delay: 1.8s; }
.preloader-sonar span:nth-child(4) { animation-delay: 2.7s; }

.preloader-emblem {
	position: absolute;
	inset: 28%;
	display: grid;
	place-items: center;
}

.preloader-emblem-orbit {
	position: absolute;
	inset: -18%;
	border-radius: 50%;
	border: 1px dashed rgba(245, 158, 11, 0.28);
	animation: preloader-orbit-spin 9s linear infinite;
}

.preloader-emblem-orbit::before {
	content: '';
	position: absolute;
	top: -4px;
	left: 50%;
	width: 8px;
	height: 8px;
	margin-left: -4px;
	border-radius: 50%;
	background: var(--accent-light);
	box-shadow: 0 0 16px rgba(251, 191, 36, 0.85);
}

.preloader-emblem-frame {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
	background:
		linear-gradient(145deg, rgba(245, 158, 11, 0.22), rgba(245, 158, 11, 0.04)),
		rgba(16, 16, 16, 0.92);
	border: 1px solid rgba(245, 158, 11, 0.35);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.05),
		0 0 40px rgba(245, 158, 11, 0.18);
	animation: preloader-emblem-breathe 2.8s ease-in-out infinite;
}

.preloader-logo {
	position: relative;
	z-index: 1;
	width: 58%;
	height: 58%;
	object-fit: contain;
	filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.45));
	animation: preloader-logo-pop 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.preloader-core-percent {
	position: absolute;
	right: 0;
	bottom: -0.35rem;
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--accent-light);
	font-variant-numeric: tabular-nums;
	text-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
}

.preloader-core-percent::after {
	content: '%';
	font-size: 0.55em;
	color: var(--accent);
	margin-left: 0.08em;
}

.preloader-wave-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 120px;
	mask-image: linear-gradient(to top, #000 55%, transparent 100%);
	pointer-events: none;
}

.preloader-wave {
	width: 200%;
	height: 100%;
	animation: preloader-wave-drift 8s linear infinite;
}

.preloader-wave-path {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.preloader-wave-path-1 {
	stroke: rgba(245, 158, 11, 0.55);
	stroke-dasharray: 12 18;
	animation: preloader-wave-draw 2.4s ease-in-out infinite;
}

.preloader-wave-path-2 {
	stroke: rgba(251, 191, 36, 0.22);
	stroke-width: 3;
	transform: translateY(6px);
	animation: preloader-wave-draw 2.4s ease-in-out infinite reverse;
}

.preloader-exit-burst {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	pointer-events: none;
}

.preloader-exit-burst::before {
	content: '';
	width: 24vmin;
	height: 24vmin;
	border-radius: 50%;
	border: 2px solid rgba(245, 158, 11, 0.65);
	box-shadow: 0 0 40px rgba(245, 158, 11, 0.35);
	opacity: 0;
	transform: scale(0.2);
}

.preloader.preloader-done .preloader-exit-burst::before {
	animation: preloader-burst 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes preloader-noise-shift {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-2%, 1%, 0); }
}

@keyframes preloader-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes preloader-title-reveal {
	from {
		opacity: 0;
		transform: translateY(110%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes preloader-status-swap {
	0% { opacity: 1; transform: translateY(0); }
	45% { opacity: 0; transform: translateY(-8px); }
	55% { opacity: 0; transform: translateY(10px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes preloader-core-in {
	from {
		opacity: 0;
		transform: scale(0.82) rotate(-8deg);
	}
	to {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

@keyframes preloader-radar-spin {
	to { transform: rotate(360deg); }
}

@keyframes preloader-orbit-spin {
	to { transform: rotate(360deg); }
}

@keyframes preloader-sonar {
	0% {
		transform: scale(0.55);
		opacity: 0.75;
	}
	100% {
		transform: scale(1.35);
		opacity: 0;
	}
}

@keyframes preloader-emblem-breathe {
	0%, 100% {
		box-shadow:
			inset 0 0 0 1px rgba(255, 255, 255, 0.05),
			0 0 40px rgba(245, 158, 11, 0.18);
	}
	50% {
		box-shadow:
			inset 0 0 0 1px rgba(255, 255, 255, 0.08),
			0 0 56px rgba(245, 158, 11, 0.32);
	}
}

@keyframes preloader-logo-pop {
	0% {
		opacity: 0;
		transform: scale(0.35) rotate(-18deg);
	}
	70% {
		transform: scale(1.08) rotate(4deg);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

@keyframes preloader-wave-drift {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes preloader-wave-draw {
	0%, 100% { stroke-dashoffset: 0; opacity: 0.55; }
	50% { stroke-dashoffset: 36; opacity: 1; }
}

@keyframes preloader-burst {
	0% {
		opacity: 0.85;
		transform: scale(0.2);
	}
	100% {
		opacity: 0;
		transform: scale(8);
	}
}

@media (max-width: 820px) {
	.preloader-stage {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding-bottom: 5.5rem;
		text-align: center;
	}

	.preloader-copy {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.preloader-status {
		max-width: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.preloader-noise,
	.preloader-radar-sweep,
	.preloader-sonar span,
	.preloader-emblem-orbit,
	.preloader-emblem-frame,
	.preloader-wave,
	.preloader-wave-path {
		animation: none !important;
	}
}

/* Navigation */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 1.25rem 0;
	background: transparent;
	border: none;
	pointer-events: none;
	transition: padding 0.35s ease;
}

.site-nav.scrolled {
	padding-top: 0.65rem;
}

.nav-shell {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	pointer-events: auto;
	background: rgba(16, 16, 16, 0.72);
	backdrop-filter: blur(28px) saturate(160%);
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.04),
		0 12px 48px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
	overflow: hidden;
	transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.site-nav.scrolled .nav-shell {
	background: rgba(12, 12, 12, 0.92);
	border-color: rgba(245, 158, 11, 0.18);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.08),
		0 16px 56px rgba(0, 0, 0, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(245, 158, 11, 0.07) 0%, transparent 38%),
		linear-gradient(300deg, rgba(245, 158, 11, 0.04) 0%, transparent 42%);
	pointer-events: none;
}

.nav-shell-glow {
	position: absolute;
	top: -120%;
	left: 50%;
	width: 55%;
	height: 240%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.14) 0%, transparent 68%);
	pointer-events: none;
	animation: nav-glow-drift 8s ease-in-out infinite alternate;
}

@keyframes nav-glow-drift {
	from { transform: translateX(-58%) translateY(0); opacity: 0.7; }
	to { transform: translateX(-42%) translateY(4%); opacity: 1; }
}

.nav-container {
	max-width: none;
	margin: 0;
	padding: 0.65rem 0.85rem 0.65rem 1.15rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 1.5rem;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.logo img {
	height: 56px;
	width: auto;
	display: block;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
	animation: logo-hover 0.45s ease forwards;
}

@keyframes logo-hover {
	0% {
		transform: scale(1);
		filter: drop-shadow(0 0 0 transparent);
	}
	50% {
		transform: scale(1.12);
		filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.5));
	}
	100% {
		transform: scale(1.08);
		filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.35));
	}
}

.nav-menu {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.nav-marker {
	position: absolute;
	bottom: 0.15rem;
	left: 0;
	height: 2px;
	width: 0;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
	box-shadow: 0 0 14px rgba(245, 158, 11, 0.55);
	opacity: 0;
	transition:
		left 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
		width 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
		opacity 0.25s ease;
	pointer-events: none;
}

.nav-marker.visible {
	opacity: 1;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.nav-links li {
	position: relative;
}

.nav-links li:not(:last-child)::after {
	display: none;
}

.nav-links a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
}

.nav-links a::before {
	display: none;
}

.nav-index {
	font-size: 0.58rem;
	font-weight: 700;
	color: var(--accent);
	opacity: 0.45;
	letter-spacing: 0.12em;
	transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.04);
	transform: translateY(-1px);
}

.nav-links a:hover .nav-index {
	opacity: 1;
	color: var(--accent-light);
}

.nav-links a.active {
	color: var(--accent-light);
	background: rgba(245, 158, 11, 0.08);
}

.nav-links a.active .nav-index {
	opacity: 1;
	color: var(--accent-light);
}

.nav-links a.nav-link-contact {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	color: var(--bg-dark);
	font-weight: 700;
	margin-left: 0.5rem;
	padding: 0.65rem 1.1rem;
	border-radius: 999px;
	gap: 0.5rem;
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
	overflow: hidden;
	isolation: isolate;
}

.nav-links a.nav-link-contact::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
	transform: translateX(-120%);
	transition: transform 0.55s ease;
}

.nav-links a.nav-link-contact:hover {
	color: var(--bg-dark);
	background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}

.nav-links a.nav-link-contact:hover::after {
	transform: translateX(120%);
}

.nav-links a.nav-link-contact.active {
	background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
	color: var(--bg-dark);
}

.nav-contact-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

.nav-links a.nav-link-contact:hover .nav-contact-arrow {
	transform: translateX(4px);
}

/* Services dropdown — desktop only */
@media (min-width: 961px) {
	.nav-shell {
		overflow: visible;
	}

	.nav-item-dropdown {
		position: relative;
	}

	.nav-link-dropdown {
		padding-right: 0.65rem;
	}

	.nav-dropdown-chevron {
		display: block;
		flex-shrink: 0;
		margin-left: -0.15rem;
		opacity: 0.45;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.nav-item-dropdown:hover .nav-dropdown-chevron,
	.nav-item-dropdown:focus-within .nav-dropdown-chevron {
		opacity: 1;
		transform: rotate(180deg);
		color: var(--accent-light);
	}

	.nav-dropdown-panel {
		position: absolute;
		top: calc(100% + 0.45rem);
		left: 50%;
		z-index: 20;
		min-width: 22rem;
		padding: 0.85rem;
		border-radius: 16px;
		background: rgba(12, 12, 12, 0.96);
		backdrop-filter: blur(28px) saturate(160%);
		border: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow:
			0 0 0 1px rgba(245, 158, 11, 0.06),
			0 20px 56px rgba(0, 0, 0, 0.55),
			inset 0 1px 0 rgba(255, 255, 255, 0.06);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateX(-50%) translateY(8px);
		transition:
			opacity 0.28s ease,
			visibility 0.28s ease,
			transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
	}

	.nav-dropdown-panel::before {
		content: '';
		position: absolute;
		top: -0.55rem;
		left: 0;
		right: 0;
		height: 0.55rem;
	}

	.nav-item-dropdown:hover .nav-dropdown-panel,
	.nav-item-dropdown:focus-within .nav-dropdown-panel {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
	}

	.nav-dropdown-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		margin-bottom: 0.65rem;
		padding-bottom: 0.65rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.nav-dropdown-kicker {
		font-size: 0.62rem;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--accent);
	}

	.nav-dropdown-all {
		font-size: 0.72rem;
		font-weight: 600;
		color: var(--text-muted);
		text-decoration: none;
		transition: color 0.2s ease;
		white-space: nowrap;
	}

	.nav-dropdown-all:hover {
		color: var(--accent-light);
	}

	.nav-dropdown-links {
		margin: 0;
		padding: 0;
		list-style: none;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0.2rem;
	}

	.nav-dropdown-links a {
		display: flex;
		align-items: center;
		gap: 0.45rem;
		padding: 0.55rem 0.65rem;
		border-radius: 10px;
		font-size: 0.78rem;
		font-weight: 500;
		color: var(--text-secondary);
		text-decoration: none;
		transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
		white-space: nowrap;
	}

	.nav-dropdown-links a:hover,
	.nav-dropdown-links a.active {
		color: var(--text-primary);
		background: rgba(245, 158, 11, 0.08);
	}

	.nav-dropdown-links a:hover {
		transform: translateX(2px);
	}

	.nav-dropdown-index {
		font-size: 0.56rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		color: var(--accent);
		opacity: 0.55;
		min-width: 1.1rem;
		transition: opacity 0.2s ease, color 0.2s ease;
	}

	.nav-dropdown-links a:hover .nav-dropdown-index,
	.nav-dropdown-links a.active .nav-dropdown-index {
		opacity: 1;
		color: var(--accent-light);
	}
}

@media (max-width: 960px) {
	.nav-dropdown-panel,
	.nav-dropdown-chevron {
		display: none !important;
	}
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hero Section */
.hero {
	/* min-height: 100vh; */
	/* Uncomment for full-screen hero */
	display: flex;
	align-items: center;
	padding: 8rem 2rem 4rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	position: relative;
	z-index: 3;
}

.hero-buttons a {
	position: relative;
	z-index: 3;
	cursor: pointer;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.hero-badge span {
	color: var(--accent);
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.hero h1 .highlight {
	color: var(--accent);
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 480px;
}

.btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: all 0.2s;
}

.btn-secondary:hover {
	border-color: var(--text-secondary);
	background: var(--bg-card);
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Hero Dashboard */
.dashboard-wrapper {
	position: relative;
	z-index: 1;
	pointer-events: none;
}

.dashboard-wrapper .dashboard-card {
	pointer-events: auto;
}

.dashboard-card {
	background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 1.35rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.06),
		0 24px 60px rgba(0, 0, 0, 0.55);
	position: relative;
	overflow: hidden;
}

.dashboard-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.07) 0%, transparent 55%);
	pointer-events: none;
}

.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.15rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	z-index: 1;
}

.dashboard-header-left {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.dashboard-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
	animation: dashboard-pulse 2s ease-in-out infinite;
}

@keyframes dashboard-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.55; transform: scale(0.85); }
}

.dashboard-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: 0.01em;
}

.dashboard-view-toggle {
	display: flex;
	gap: 0.25rem;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.2rem;
}

.dashboard-view {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.dashboard-view:hover {
	color: var(--text-primary);
}

.dashboard-view.active {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
}

.dashboard-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.dashboard-kpi {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 0.85rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.dashboard-kpi:hover {
	border-color: rgba(245, 158, 11, 0.25);
	background: rgba(245, 158, 11, 0.05);
	transform: translateY(-2px);
}

.dashboard-kpi.active {
	border-color: rgba(245, 158, 11, 0.45);
	background: rgba(245, 158, 11, 0.08);
	box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.12);
}

.dashboard-kpi-label {
	font-size: 0.65rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.dashboard-kpi-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--accent-light);
	line-height: 1.1;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.dashboard-kpi-value.updating {
	opacity: 0;
	transform: translateY(4px);
}

.dashboard-kpi-hint {
	font-size: 0.65rem;
	color: var(--text-muted);
}

.dashboard-chart-wrap {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 0.85rem 0.85rem 0.5rem;
	margin-bottom: 1rem;
}

.dashboard-chart-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.85rem;
	gap: 0.5rem;
}

.dashboard-chart-label {
	font-size: 0.75rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.dashboard-chart-total {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-light);
}

.dashboard-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.4rem;
	height: 150px;
	padding-top: 0.5rem;
	position: relative;
}

.dashboard-chart::before {
	content: '';
	position: absolute;
	inset: 0.5rem 0 1.6rem;
	background: repeating-linear-gradient(
		to top,
		rgba(255, 255, 255, 0.04) 0,
		rgba(255, 255, 255, 0.04) 1px,
		transparent 1px,
		transparent 25%
	);
	pointer-events: none;
	border-radius: 4px;
}

.dashboard-bar-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	gap: 0.45rem;
	position: relative;
	z-index: 1;
}

.dashboard-bar {
	width: 100%;
	max-width: 36px;
	height: 0;
	border-radius: 6px 6px 2px 2px;
	background: linear-gradient(to top, var(--accent-dark) 0%, var(--accent) 55%, var(--accent-light) 100%);
	cursor: pointer;
	transition:
		height 0.65s cubic-bezier(0.34, 1.2, 0.64, 1),
		box-shadow 0.25s ease,
		filter 0.25s ease,
		opacity 0.25s ease;
	box-shadow: 0 0 0 rgba(245, 158, 11, 0);
}

.dashboard-card.ready .dashboard-bar {
	height: var(--h);
}

.dashboard-bar:hover,
.dashboard-bar.highlighted {
	filter: brightness(1.12);
	box-shadow: 0 0 18px rgba(245, 158, 11, 0.45);
}

.dashboard-bar.dimmed {
	opacity: 0.35;
}

.dashboard-bar-label {
	font-size: 0.62rem;
	color: var(--text-muted);
	font-weight: 500;
}

.dashboard-tooltip {
	position: absolute;
	pointer-events: none;
	background: rgba(20, 20, 20, 0.96);
	border: 1px solid rgba(245, 158, 11, 0.35);
	border-radius: 8px;
	padding: 0.45rem 0.65rem;
	font-size: 0.72rem;
	color: var(--text-primary);
	white-space: nowrap;
	opacity: 0;
	transform: translate(-50%, -8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 10;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.dashboard-tooltip.visible {
	opacity: 1;
	transform: translate(-50%, -12px);
}

.dashboard-tooltip strong {
	color: var(--accent-light);
	font-weight: 700;
}

.dashboard-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.dashboard-footer-text {
	font-size: 0.78rem;
	color: var(--text-muted);
	transition: opacity 0.25s ease;
}

.dashboard-footer-text.updating {
	opacity: 0;
}

.dashboard-status {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.72rem;
	font-weight: 500;
	color: #4ade80;
}

.status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

/* Guitar Section */
.guitar-wrapper {
	position: relative;
	z-index: 1;
	pointer-events: none;
}

.guitar-wrapper .guitar-card {
	pointer-events: auto;
}

.guitar-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.guitar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}

.guitar-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-secondary);
}

.guitar-controls {
	display: flex;
	gap: 0.5rem;
}

.chord-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-family: inherit;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s;
}

.chord-btn:hover {
	background: var(--accent);
	color: var(--bg-dark);
	border-color: var(--accent);
}

.chord-btn.active {
	background: var(--accent);
	color: var(--bg-dark);
	border-color: var(--accent);
}

/* Mini Guitar Fretboard */
.guitar-neck {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.fretboard {
	background:
		repeating-linear-gradient(90deg,
			transparent 0px,
			rgba(60, 30, 20, 0.15) 1px,
			transparent 2px,
			transparent 6px),
		linear-gradient(180deg,
			#3d2517 0%,
			#2a1810 20%,
			#1f120b 50%,
			#2a1810 80%,
			#3d2517 100%);
	border-radius: 6px;
	border: 3px solid #1a0f08;
	border-top: none;
}

.nut {
	height: 10px;
	background: linear-gradient(180deg,
			#f5f5dc 0%,
			#d4cba8 50%,
			#c9c098 100%);
	border-radius: 6px 6px 0 0;
}

.fretboard-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(6, 32px);
	position: relative;
}

.string-labels {
	position: absolute;
	left: -28px;
	top: 0;
	height: calc(6 * 32px);
	display: flex;
	flex-direction: column;
}

.string-label {
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: var(--text-muted);
	font-weight: 500;
}

.fret {
	position: relative;
	border-right: 2px solid #c0a080;
	border-bottom: 1px solid rgba(200, 200, 200, 0.4);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.1s;
}

.fret:hover {
	background: rgba(245, 158, 11, 0.15);
}

.fret::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* String thickness - thicker for lower strings */
.fret[data-string="0"]::after {
	height: 1px;
	background: linear-gradient(90deg,
			rgba(200, 180, 160, 0.4),
			rgba(240, 220, 200, 0.7),
			rgba(200, 180, 160, 0.4));
}

.fret[data-string="1"]::after {
	height: 1px;
	background: linear-gradient(90deg,
			rgba(200, 180, 160, 0.4),
			rgba(240, 220, 200, 0.7),
			rgba(200, 180, 160, 0.4));
}

.fret[data-string="2"]::after {
	height: 2px;
	background: linear-gradient(90deg,
			rgba(190, 170, 150, 0.5),
			rgba(230, 210, 190, 0.8),
			rgba(190, 170, 150, 0.5));
}

.fret[data-string="3"]::after {
	height: 2px;
	background: linear-gradient(90deg,
			rgba(180, 160, 140, 0.5),
			rgba(220, 200, 180, 0.8),
			rgba(180, 160, 140, 0.5));
}

.fret[data-string="4"]::after {
	height: 3px;
	background: linear-gradient(90deg,
			rgba(160, 140, 120, 0.5),
			rgba(200, 180, 160, 0.85),
			rgba(160, 140, 120, 0.5));
	box-shadow: 0 0 2px rgba(200, 180, 160, 0.3);
}

.fret[data-string="5"]::after {
	height: 4px;
	background: linear-gradient(90deg,
			rgba(150, 130, 110, 0.5),
			rgba(190, 170, 150, 0.9),
			rgba(150, 130, 110, 0.5));
	box-shadow: 0 0 3px rgba(190, 170, 150, 0.4);
}

.note-marker {
	width: 18px;
	height: 18px;
	background: var(--accent);
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 0.5rem;
	font-weight: 700;
	color: var(--bg-dark);
	z-index: 2;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

.note-marker.show {
	display: flex;
}

.note-marker.playing {
	animation: notePulse 0.3s ease;
}

@keyframes notePulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}

.fret-marker {
	position: absolute;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	pointer-events: none;
}

.guitar-footer {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.guitar-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.guitar-hint {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.footer-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.clear-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	padding: 0.3rem 0.6rem;
	border-radius: 5px;
	font-size: 0.7rem;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.15s;
}

.clear-btn:hover {
	background: var(--border);
	color: var(--text-primary);
}

.sound-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.toggle-switch {
	width: 36px;
	height: 20px;
	background: var(--bg-elevated);
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	transition: background 0.2s;
}

.toggle-switch.active {
	background: var(--accent);
}

.toggle-switch::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: var(--text-primary);
	border-radius: 50%;
	top: 2px;
	left: 2px;
	transition: transform 0.2s;
}

.toggle-switch.active::after {
	transform: translateX(16px);
}

/* Song Player */
.song-player {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--bg-elevated);
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
}

.play-btn {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border: none;
	border-radius: 50%;
	color: var(--bg-dark);
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
	flex-shrink: 0;
}

.play-btn:hover {
	background: var(--accent-light);
	transform: scale(1.05);
}

.play-btn.playing {
	background: var(--accent-dark);
}

.song-info {
	flex: 1;
	min-width: 0;
}

.song-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.song-progress {
	width: 100%;
	height: 3px;
	background: var(--border);
	border-radius: 2px;
	margin-top: 4px;
	overflow: hidden;
}

.song-progress-bar {
	height: 100%;
	background: var(--accent);
	width: 0%;
	transition: width 0.1s linear;
}

.song-select {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	padding: 0.3rem 0.5rem;
	border-radius: 5px;
	font-size: 0.7rem;
	font-family: inherit;
	cursor: pointer;
}

.song-select:focus {
	outline: none;
	border-color: var(--accent);
}

/* Features Section */
.features {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.about-section {
	background-image: url('images/bg1.jpg');
}

.about-section,
.vision-section,
.testimonials {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.about-section::before,
.vision-section::before,
.testimonials::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(13, 13, 13, 0.72);
	pointer-events: none;
	z-index: 0;
}

.about-section::after,
.vision-section::after,
.testimonials::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, var(--bg-dark) 0%, rgba(13, 13, 13, 0.75) 10%, transparent 28%),
		linear-gradient(to top, var(--bg-dark) 0%, rgba(13, 13, 13, 0.75) 10%, transparent 28%);
	pointer-events: none;
	z-index: 0;
}

.about-section .section-container,
.vision-section .section-container,
.testimonials .section-container {
	position: relative;
	z-index: 1;
}

.vision-section {
	background-image: url('images/bg2.jpg');
}

.testimonials {
	background-image: url('images/bg3.jpg');
	padding: 6rem 2rem;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature-card {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.feature-icon {
	width: 56px;
	height: 56px;
	background: var(--bg-elevated);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--accent);
	transition: all 0.3s;
}

.feature-card:hover .feature-icon {
	background: var(--accent);
	color: var(--bg-dark);
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* About Section */
.about-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-intro {
	position: sticky;
	top: 7rem;
}

.about-intro-plate {
	background: rgba(13, 13, 13, 0.82);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 2rem 2.25rem;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.about-title {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.about-lead {
	font-size: 1.1rem;
	color: var(--text-primary);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.about-text {
	font-size: 0.98rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 1.75rem;
}

.about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.about-tag {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--accent-light);
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.2);
	border-radius: 999px;
	padding: 0.4rem 0.85rem;
	letter-spacing: 0.02em;
}

.about-activities {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about-activity {
	display: flex;
	gap: 1.25rem;
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.5rem;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-activity:hover {
	border-color: rgba(245, 158, 11, 0.35);
	transform: translateX(6px);
	box-shadow: -4px 0 0 var(--accent);
}

.about-activity-num {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.1em;
	flex-shrink: 0;
	padding-top: 0.2rem;
}

.about-activity-body h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.about-activity-body p {
	font-size: 0.92rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* Vision Section */
.pricing {
	padding: 6rem 2rem;
}

.vision-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem;
}

.vision-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
}

.vision-intro {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.75;
}

.vision-interactive {
	max-width: 820px;
	margin: 0 auto;
}

.vision-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 1.25rem;
	background: rgba(13, 13, 13, 0.55);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 0.3rem;
}

.vision-tab {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.vision-tab:hover {
	color: var(--text-primary);
}

.vision-tab.active {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 2px 14px rgba(245, 158, 11, 0.35);
}

.vision-display {
	position: relative;
	min-height: 220px;
	margin-bottom: 1.25rem;
}

.vision-panel {
	background: rgba(13, 13, 13, 0.82);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 2rem 2.25rem;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
	position: absolute;
	inset: 0;
}

.vision-panel.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	position: relative;
}

.vision-panel-num {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.12em;
	margin-bottom: 0.75rem;
}

.vision-panel h3 {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.vision-panel p {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.75;
}

.vision-pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.65rem;
}

.vision-pillar {
	background: rgba(13, 13, 13, 0.55);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 14px;
	padding: 1rem 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.vision-pillar:hover {
	border-color: rgba(245, 158, 11, 0.3);
	transform: translateY(-3px);
}

.vision-pillar.active {
	border-color: rgba(245, 158, 11, 0.5);
	background: rgba(245, 158, 11, 0.1);
	box-shadow: 0 0 24px rgba(245, 158, 11, 0.12);
}

.vision-pillar-icon {
	font-size: 0.85rem;
	color: var(--accent);
	transition: transform 0.3s ease;
}

.vision-pillar.active .vision-pillar-icon {
	transform: scale(1.2);
	color: var(--accent-light);
}

.vision-pillar-label {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--text-secondary);
	letter-spacing: 0.03em;
}

.vision-pillar.active .vision-pillar-label {
	color: var(--accent-light);
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: stretch;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition:
		transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
		border-color 0.35s ease,
		box-shadow 0.35s ease;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	border-color: rgba(245, 158, 11, 0.35);
	box-shadow:
		0 20px 48px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(245, 158, 11, 0.08);
}

.testimonial-card:hover::before {
	transform: scaleX(1);
}

.testimonial-stars {
	color: var(--accent);
	font-size: 1rem;
	margin-bottom: 1rem;
	transition: transform 0.35s ease, filter 0.35s ease, letter-spacing 0.35s ease;
}

.testimonial-card:hover .testimonial-stars {
	transform: scale(1.05);
	filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.45));
	letter-spacing: 0.12em;
}

.testimonial-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	flex: 1;
	transition: color 0.35s ease;
}

.testimonial-card:hover .testimonial-text {
	color: var(--text-primary);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1.5rem;
}

.testimonial-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.testimonial-avatar-anon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-muted);
}

.testimonial-card:hover .testimonial-avatar-anon {
	border-color: rgba(245, 158, 11, 0.4);
	box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
	transform: scale(1.06);
	color: var(--accent-light);
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-secondary);
	transition: color 0.35s ease;
}

.testimonial-card:hover .testimonial-name {
	color: var(--accent-light);
}

/* CTA Section */
.cta {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Contact page */
.contact-page {
	padding: 8rem 2rem 5rem;
	position: relative;
}

.contact-header {
	max-width: 640px;
	margin-bottom: 2.5rem;
}

.contact-index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.contact-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.contact-intro {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 1.5rem;
	align-items: start;
}

.contact-info-shell,
.contact-form-shell {
	position: relative;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 22px;
	padding: 2rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.contact-info-shell::before,
.contact-form-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
		linear-gradient(315deg, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
	pointer-events: none;
}

.contact-info-shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-info-heading {
	margin: 0 0 0.25rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary);
}

.contact-info-lead {
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.contact-info-card {
	position: relative;
	z-index: 1;
	padding: 1rem 1.1rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.contact-info-card:hover {
	border-color: rgba(245, 158, 11, 0.22);
	background: rgba(245, 158, 11, 0.04);
	transform: translateX(4px);
}

.contact-info-label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
}

.contact-info-value {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--text-primary);
}

.contact-info-value a {
	color: var(--accent-light);
	text-decoration: none;
	border-bottom: 1px solid rgba(251, 191, 36, 0.28);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-info-value a:hover {
	color: var(--accent);
	border-color: var(--accent);
}

.contact-hours-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.contact-hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.88rem;
	color: var(--text-secondary);
}

.contact-hours-list span:last-child {
	color: var(--text-primary);
	font-weight: 500;
}

.contact-hours-list .closed {
	color: var(--text-muted);
}

.contact-form-shell {
	position: relative;
	z-index: 1;
}

.contact-form-title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary);
}

.contact-form-desc {
	margin: 0 0 1.35rem;
	font-size: 0.86rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.contact-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.contact-field label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	padding: 0.82rem 0.95rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.28);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.92rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
	color: var(--text-muted);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: rgba(245, 158, 11, 0.45);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
	background: rgba(0, 0, 0, 0.38);
}

.contact-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a3a3a3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.95rem center;
	padding-right: 2.25rem;
}

.contact-field select option {
	background: var(--bg-dark);
	color: var(--text-primary);
}

.contact-field textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-top: 0.25rem;
}

.contact-consent input {
	margin-top: 0.2rem;
	accent-color: var(--accent);
	flex-shrink: 0;
}

.contact-consent label {
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--text-secondary);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
}

.contact-consent a {
	color: var(--accent-light);
	text-decoration: none;
	border-bottom: 1px solid rgba(251, 191, 36, 0.28);
}

.contact-consent a:hover {
	color: var(--accent);
	border-color: var(--accent);
}

.contact-submit {
	align-self: flex-start;
	margin-top: 0.35rem;
	padding: 0.95rem 1.75rem;
	border: 2px solid var(--bg-dark);
	border-radius: 12px;
	background: var(--accent);
	color: var(--bg-dark);
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 0 0 1px var(--bg-dark);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 10px 28px rgba(245, 158, 11, 0.28);
}

.contact-submit:focus-visible {
	outline: 2px solid rgba(245, 158, 11, 0.55);
	outline-offset: 3px;
}

.contact-form-note {
	margin: 0;
	font-size: 0.78rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.contact-map-section {
	margin-top: 1.5rem;
}

.contact-map-shell {
	position: relative;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 22px;
	padding: 1.5rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.contact-map-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
		linear-gradient(315deg, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
	pointer-events: none;
}

.contact-map-header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.contact-map-title {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
}

.contact-map-desc {
	margin: 0;
	font-size: 0.88rem;
	color: var(--text-secondary);
}

.contact-map-link {
	flex-shrink: 0;
	padding: 0.65rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(245, 158, 11, 0.28);
	background: rgba(245, 158, 11, 0.08);
	color: var(--accent-light);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-map-link:hover {
	background: rgba(245, 158, 11, 0.14);
	border-color: rgba(245, 158, 11, 0.45);
	transform: translateY(-1px);
}

.contact-map-frame {
	position: relative;
	z-index: 1;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.05);
}

.contact-map-frame iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
	filter: grayscale(20%) contrast(1.05);
}

.contact-modal {
	position: fixed;
	inset: 0;
	z-index: 9600;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact-modal.visible {
	opacity: 1;
	visibility: visible;
}

.contact-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(6px);
}

.contact-modal-panel {
	position: relative;
	z-index: 1;
	width: min(100%, 440px);
	padding: 1.75rem 1.5rem 1.35rem;
	background: linear-gradient(145deg, rgba(22, 22, 22, 0.98) 0%, rgba(12, 12, 12, 0.99) 100%);
	border: 1px solid rgba(245, 158, 11, 0.22);
	border-radius: 20px;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.06),
		0 28px 80px rgba(0, 0, 0, 0.65);
	text-align: center;
	transform: translateY(16px) scale(0.96);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.visible .contact-modal-panel {
	transform: translateY(0) scale(1);
}

.contact-modal-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.1) 0%, transparent 55%),
		linear-gradient(180deg, rgba(245, 158, 11, 0.03) 0%, transparent 30%);
	pointer-events: none;
}

.contact-modal-close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 2;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-secondary);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact-modal-close:hover {
	border-color: rgba(245, 158, 11, 0.35);
	color: var(--accent-light);
	background: rgba(245, 158, 11, 0.08);
}

.contact-modal-index {
	position: absolute;
	top: 1rem;
	left: 1.15rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.contact-modal-icon {
	position: relative;
	z-index: 1;
	width: 58px;
	height: 58px;
	margin: 0.35rem auto 1rem;
	border-radius: 16px;
	display: grid;
	place-items: center;
	font-size: 1.45rem;
	font-weight: 700;
}

.contact-modal.is-success .contact-modal-icon {
	background: rgba(74, 222, 128, 0.12);
	border: 1px solid rgba(74, 222, 128, 0.35);
	color: #4ade80;
	box-shadow: 0 0 24px rgba(74, 222, 128, 0.15);
}

.contact-modal.is-success .contact-modal-icon::before {
	content: '✓';
}

.contact-modal.is-error .contact-modal-icon {
	background: rgba(248, 113, 113, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.35);
	color: #f87171;
	box-shadow: 0 0 24px rgba(248, 113, 113, 0.12);
}

.contact-modal.is-error .contact-modal-icon::before {
	content: '!';
}

.contact-modal-title {
	position: relative;
	z-index: 1;
	margin: 0 0 0.55rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.contact-modal-text {
	position: relative;
	z-index: 1;
	margin: 0 0 1rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.contact-modal-errors {
	position: relative;
	z-index: 1;
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
	text-align: left;
	background: rgba(248, 113, 113, 0.06);
	border: 1px solid rgba(248, 113, 113, 0.18);
	border-radius: 12px;
	padding: 0.75rem 0.9rem;
}

.contact-modal-errors li {
	font-size: 0.84rem;
	line-height: 1.5;
	color: #fecaca;
}

.contact-modal-errors li + li {
	margin-top: 0.35rem;
}

.contact-modal-btn {
	position: relative;
	z-index: 1;
	padding: 0.78rem 1.35rem;
	border: 2px solid var(--bg-dark);
	border-radius: 11px;
	background: var(--accent);
	color: var(--bg-dark);
	font-family: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 0 0 1px var(--bg-dark);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal-btn:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 8px 22px rgba(245, 158, 11, 0.24);
}

body.contact-modal-open {
	overflow: hidden;
}

.contact-field.is-invalid input,
.contact-field.is-invalid select,
.contact-field.is-invalid textarea {
	border-color: rgba(248, 113, 113, 0.55);
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.contact-consent.is-invalid {
	padding: 0.65rem 0.75rem;
	border-radius: 12px;
	background: rgba(248, 113, 113, 0.06);
	border: 1px solid rgba(248, 113, 113, 0.18);
}

/* Pricing page */
.pricing-page {
	padding: 8rem 2rem 5rem;
	position: relative;
}

.pricing-header {
	max-width: 680px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.pricing-index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.pricing-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.pricing-intro {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.pricing-billing-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 2.25rem;
}

.pricing-billing-toggle {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem;
	background: rgba(13, 13, 13, 0.55);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 0.3rem;
}

.pricing-billing-option {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.55rem 1.15rem;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pricing-billing-option:hover {
	color: var(--text-primary);
}

.pricing-billing-option.active {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 2px 14px rgba(245, 158, 11, 0.35);
}

.pricing-billing-note {
	margin: 0;
	font-size: 0.84rem;
	color: var(--text-muted);
	text-align: center;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	align-items: stretch;
	margin-bottom: 4rem;
}

.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 22px;
	padding: 2rem 1.75rem 1.75rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
		linear-gradient(315deg, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
	pointer-events: none;
}

.pricing-card:hover {
	border-color: rgba(245, 158, 11, 0.22);
	transform: translateY(-4px);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.1),
		0 28px 72px rgba(0, 0, 0, 0.55);
}

.pricing-card-featured {
	border-color: rgba(245, 158, 11, 0.35);
	background: rgba(18, 18, 18, 0.92);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.12),
		0 28px 80px rgba(0, 0, 0, 0.55),
		0 0 48px rgba(245, 158, 11, 0.08);
}

.pricing-card-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 1;
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	background: var(--accent);
	color: var(--bg-dark);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pricing-card-index {
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: 0.65rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.pricing-card-name {
	position: relative;
	z-index: 1;
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text-primary);
}

.pricing-card-tagline {
	position: relative;
	z-index: 1;
	margin: 0 0 1.25rem;
	font-size: 0.86rem;
	line-height: 1.55;
	color: var(--text-secondary);
	min-height: 2.65rem;
}

.pricing-card-price {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card-amount {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	transition: opacity 0.25s ease;
}

.pricing-card-amount.is-switching {
	opacity: 0.35;
}

.pricing-card-amount-custom {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.pricing-card-period {
	font-size: 0.88rem;
	color: var(--text-muted);
	transition: opacity 0.25s ease;
}

.pricing-card-period.is-switching {
	opacity: 0.35;
}

.pricing-card-period-custom {
	font-size: 0.82rem;
	text-transform: lowercase;
}

.pricing-card-features {
	position: relative;
	z-index: 1;
	flex: 1;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.pricing-card-features li {
	position: relative;
	padding-left: 1.15rem;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.pricing-card-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 700;
}

.pricing-card-btn {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	padding: 0.85rem 1.25rem;
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.pricing-card-btn:hover {
	border-color: rgba(245, 158, 11, 0.35);
	background: rgba(245, 158, 11, 0.08);
	color: var(--accent-light);
	transform: translateY(-1px);
}

.pricing-card-btn-primary {
	border-color: var(--bg-dark);
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 0 0 1px var(--bg-dark);
}

.pricing-card-btn-primary:hover {
	background: var(--accent-light);
	color: var(--bg-dark);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 8px 22px rgba(245, 158, 11, 0.24);
}

.pricing-includes {
	margin-bottom: 3.5rem;
}

.pricing-includes-header {
	max-width: 560px;
	margin-bottom: 1.75rem;
}

.pricing-includes-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--text-primary);
}

.pricing-includes-desc {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.pricing-includes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.pricing-include-item {
	position: relative;
	padding: 1.35rem 1.25rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.pricing-include-item:hover {
	border-color: rgba(245, 158, 11, 0.22);
	background: rgba(245, 158, 11, 0.04);
	transform: translateY(-3px);
}

.pricing-include-num {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.pricing-include-item h3 {
	margin: 0 0 0.4rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-primary);
}

.pricing-include-item p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.pricing-faq-shell {
	position: relative;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 2rem;
	align-items: start;
	padding: 2rem;
	border-radius: 22px;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
}

.pricing-faq-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
}

.pricing-faq-intro {
	position: relative;
	z-index: 1;
}

.pricing-faq-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--text-primary);
}

.pricing-faq-desc {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.pricing-faq-list {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.pricing-faq-item {
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.pricing-faq-item[open] {
	border-color: rgba(245, 158, 11, 0.22);
	background: rgba(245, 158, 11, 0.04);
}

.pricing-faq-item summary {
	padding: 1rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.pricing-faq-item summary::-webkit-details-marker {
	display: none;
}

.pricing-faq-item summary::after {
	content: '+';
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: rgba(245, 158, 11, 0.12);
	color: var(--accent);
	font-size: 1rem;
	font-weight: 700;
	transition: transform 0.25s ease, background 0.25s ease;
}

.pricing-faq-item[open] summary::after {
	content: '−';
	background: var(--accent);
	color: var(--bg-dark);
}

.pricing-faq-item p {
	margin: 0;
	padding: 0 1.1rem 1rem;
	font-size: 0.86rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.pricing-email-modal .contact-modal-panel {
	text-align: left;
}

.pricing-email-step[hidden] {
	display: none;
}

.pricing-email-modal-icon {
	position: relative;
	z-index: 1;
	width: 58px;
	height: 58px;
	margin: 0.35rem auto 1rem;
	border-radius: 16px;
	display: grid;
	place-items: center;
	font-size: 1.35rem;
	font-weight: 700;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.35);
	color: var(--accent-light);
	box-shadow: 0 0 24px rgba(245, 158, 11, 0.12);
}

.pricing-email-modal .contact-modal-title,
.pricing-email-modal .contact-modal-text {
	text-align: center;
}

.pricing-email-form {
	position: relative;
	z-index: 1;
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pricing-email-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.pricing-email-field label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.pricing-email-field input {
	width: 100%;
	padding: 0.78rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.9rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-email-field input::placeholder {
	color: var(--text-muted);
}

.pricing-email-field input:focus {
	outline: none;
	border-color: rgba(245, 158, 11, 0.45);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.pricing-email-field.is-invalid input {
	border-color: rgba(248, 113, 113, 0.55);
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.pricing-email-submit {
	width: 100%;
	padding: 0.85rem 1.25rem;
	border: 2px solid var(--bg-dark);
	border-radius: 11px;
	background: var(--accent);
	color: var(--bg-dark);
	font-family: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 0 0 1px var(--bg-dark);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pricing-email-submit:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 8px 22px rgba(245, 158, 11, 0.24);
}

.pricing-email-result-actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
}

.pricing-email-result-actions .contact-modal-btn {
	flex: 1 1 auto;
	min-width: 120px;
}

.pricing-email-retry {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-primary);
	box-shadow: none;
}

.pricing-email-retry:hover {
	border-color: rgba(245, 158, 11, 0.35);
	background: rgba(245, 158, 11, 0.08);
	color: var(--accent-light);
	box-shadow: none;
}

.pricing-email-modal[data-pricing-modal-state="result"] .contact-modal-index {
	display: none;
}

.pricing-email-modal.is-success[data-pricing-modal-state="result"] .contact-modal-panel,
.pricing-email-modal.is-error[data-pricing-modal-state="result"] .contact-modal-panel {
	text-align: center;
}

/* Process page */
.process-page {
	padding: 8rem 2rem 5rem;
	position: relative;
}

.process-header {
	max-width: 680px;
	margin: 0 auto 2.75rem;
	text-align: center;
}

.process-index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.process-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.process-intro {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.process-interactive {
	max-width: 900px;
	margin: 0 auto 4rem;
}

.process-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 1.25rem;
	background: rgba(13, 13, 13, 0.55);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 0.3rem;
}

.process-tab {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.process-tab:hover {
	color: var(--text-primary);
}

.process-tab.active {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 2px 14px rgba(245, 158, 11, 0.35);
}

.process-display {
	position: relative;
	min-height: 260px;
	margin-bottom: 1.25rem;
}

.process-panel {
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 2rem 2.25rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 16px 48px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
	position: absolute;
	inset: 0;
}

.process-panel.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	position: relative;
}

.process-panel-num {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.12em;
	margin-bottom: 0.75rem;
}

.process-panel h2 {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.process-panel p {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 1rem;
}

.process-panel-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.process-panel-list li {
	position: relative;
	padding-left: 1.15rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.process-panel-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 700;
}

.process-timeline {
	margin-bottom: 3.5rem;
}

.process-timeline-header {
	max-width: 560px;
	margin-bottom: 1.75rem;
}

.process-timeline-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--text-primary);
}

.process-timeline-desc {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.process-timeline-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.process-timeline-item {
	position: relative;
	display: flex;
	gap: 1rem;
	padding: 1.35rem 1.25rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.process-timeline-item:hover {
	border-color: rgba(245, 158, 11, 0.22);
	background: rgba(245, 158, 11, 0.04);
	transform: translateX(4px);
}

.process-timeline-marker {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.28);
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.06em;
}

.process-timeline-body h3 {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-primary);
}

.process-timeline-body p {
	margin: 0 0 0.55rem;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.process-timeline-duration {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--accent);
}

.process-principles-header {
	margin-bottom: 1.5rem;
}

.process-principles-title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--text-primary);
}

.process-principles-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.process-principle-card {
	position: relative;
	padding: 1.35rem 1.25rem;
	border-radius: 16px;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.05);
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.process-principle-card:hover {
	border-color: rgba(245, 158, 11, 0.22);
	transform: translateY(-3px);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.1),
		0 16px 40px rgba(0, 0, 0, 0.4);
}

.process-principle-num {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.process-principle-card h3 {
	margin: 0 0 0.4rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-primary);
}

.process-principle-card p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

/* Case studies page */
.case-studies-page {
	padding: 8rem 2rem 5rem;
	position: relative;
}

.case-studies-header {
	max-width: 680px;
	margin: 0 auto 2.25rem;
	text-align: center;
}

.case-studies-index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.case-studies-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.case-studies-intro {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.case-studies-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem;
	margin-bottom: 2rem;
	background: rgba(13, 13, 13, 0.55);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 0.3rem;
	max-width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.case-studies-filter {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.case-studies-filter:hover {
	color: var(--text-primary);
}

.case-studies-filter.active {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 2px 14px rgba(245, 158, 11, 0.35);
}

.case-studies-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 3.5rem;
}

.case-study-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 22px;
	padding: 1.75rem 1.65rem 1.5rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease;
}

.case-study-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.case-study-card:hover {
	border-color: rgba(245, 158, 11, 0.25);
	transform: translateY(-4px);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.1),
		0 28px 72px rgba(0, 0, 0, 0.55);
}

.case-study-card:hover::before {
	transform: scaleX(1);
}

.case-study-card.is-hidden {
	display: none;
}

.case-study-featured {
	grid-column: 1 / -1;
	padding: 2rem 2rem 1.75rem;
	border-color: rgba(245, 158, 11, 0.2);
}

.case-study-featured .case-study-metrics {
	grid-template-columns: repeat(3, 1fr);
}

.case-study-index {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.case-study-tag {
	display: inline-block;
	margin-bottom: 0.65rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.case-study-title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--text-primary);
}

.case-study-summary {
	margin: 0 0 1.15rem;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--text-secondary);
	flex: 1;
}

.case-study-metrics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-bottom: 1.15rem;
	padding: 1rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study-metric {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.case-study-metric-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--accent-light);
	letter-spacing: -0.02em;
}

.case-study-metric-label {
	font-size: 0.72rem;
	line-height: 1.4;
	color: var(--text-muted);
}

.case-study-services {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.case-study-services li {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--accent-light);
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.2);
	border-radius: 999px;
	padding: 0.32rem 0.7rem;
}

.case-studies-stats-shell {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 2rem;
	align-items: center;
	padding: 2rem;
	border-radius: 22px;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
}

.case-studies-stats-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--text-primary);
}

.case-studies-stats-desc {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.case-studies-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.case-studies-stat {
	padding: 1.25rem 1.15rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.case-studies-stat:hover {
	border-color: rgba(245, 158, 11, 0.22);
	background: rgba(245, 158, 11, 0.04);
	transform: translateY(-3px);
}

.case-studies-stat-value {
	display: block;
	margin-bottom: 0.25rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--accent-light);
	letter-spacing: -0.02em;
}

.case-studies-stat-label {
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--text-secondary);
}

/* Services page */
.services-page {
	padding: 8rem 2rem 5rem;
	position: relative;
}

.services-header {
	max-width: 680px;
	margin: 0 auto 2.75rem;
	text-align: center;
}

.services-index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.services-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.services-intro {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.services-showcase {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 3.5rem;
	align-items: stretch;
}

.service-item {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.5rem 1.45rem 1.35rem;
	background: rgba(16, 16, 16, 0.88);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 20px;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.04),
		0 18px 48px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-light), var(--accent-dark));
	opacity: 0.55;
	transition: opacity 0.3s ease, width 0.3s ease;
}

.service-item:hover {
	border-color: rgba(245, 158, 11, 0.22);
	transform: translateY(-4px);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.1),
		0 24px 56px rgba(0, 0, 0, 0.5);
}

.service-item:hover::before {
	opacity: 1;
	width: 4px;
}

.service-item-top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.service-item-meta {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.service-item-num {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.service-item-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.22);
	color: var(--accent-light);
	flex-shrink: 0;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-item:hover .service-item-icon {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--bg-dark);
}

.service-item-badge {
	flex-shrink: 0;
	max-width: 9rem;
	font-size: 0.62rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: right;
	color: var(--text-muted);
	padding: 0.32rem 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-item-title {
	position: relative;
	z-index: 1;
	margin: 0 0 0.55rem;
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--text-primary);
}

.service-item-desc {
	position: relative;
	z-index: 1;
	margin: 0 0 1rem;
	font-size: 0.86rem;
	line-height: 1.6;
	color: var(--text-secondary);
	flex: 1;
	min-height: 4.1rem;
}

.service-item-points {
	position: relative;
	z-index: 1;
	margin: 0 0 1.15rem;
	padding: 0.75rem 0.85rem;
	list-style: none;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
}

.service-item-points li {
	position: relative;
	padding-left: 0.95rem;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--text-muted);
}

.service-item-points li + li {
	margin-top: 0.35rem;
}

.service-item-points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
}

.service-item-btn {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	margin-top: auto;
	padding: 0.75rem 1rem;
	border: 2px solid var(--bg-dark);
	border-radius: 11px;
	background: transparent;
	color: var(--accent-light);
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.35);
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-item-btn:hover {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 0 0 1px var(--bg-dark);
	transform: translateY(-1px);
}

/* Service detail pages */
.service-detail-page {
	padding: 8rem 2rem 5rem;
	position: relative;
}

.service-detail-back {
	margin-bottom: 1.5rem;
}

.service-detail-back a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--text-muted);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.service-detail-back a:hover {
	color: var(--accent-light);
	border-color: rgba(245, 158, 11, 0.35);
}

.service-detail-header {
	max-width: 720px;
	margin-bottom: 2rem;
}

.service-detail-index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.service-detail-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.service-detail-intro {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.service-detail-overview {
	margin-bottom: 2rem;
}

.service-detail-copy {
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

.service-detail-copy:last-child {
	margin-bottom: 0;
}

.service-detail-section-title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.25rem, 2.5vw, 1.55rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
}

.service-detail-benefits {
	margin-bottom: 2.5rem;
}

.service-detail-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.85rem;
}

.service-detail-benefit-card {
	padding: 1.25rem 1.2rem;
	border-radius: 16px;
	background: rgba(16, 16, 16, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.04);
}

.service-detail-benefit-card h3 {
	margin: 0 0 0.45rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--text-primary);
}

.service-detail-benefit-card p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.55;
	color: var(--text-muted);
}

.service-detail-outcomes {
	margin-bottom: 2.5rem;
}

.service-detail-outcomes-panel {
	padding: 1.5rem 1.45rem;
	border-radius: 20px;
	background: rgba(16, 16, 16, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.04);
}

.service-detail-outcomes-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.65rem 1.25rem;
}

.service-detail-outcomes-list li {
	position: relative;
	padding-left: 1.15rem;
	font-size: 0.86rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.service-detail-outcomes-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: 0.72rem;
	font-weight: 700;
}

.service-detail-steps-section {
	margin-bottom: 0;
}

.service-detail-layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 1.5rem;
	align-items: start;
	margin-bottom: 2.5rem;
}

.service-detail-visual {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.06),
		0 24px 64px rgba(0, 0, 0, 0.5);
}

.service-detail-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.service-detail-visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	filter: grayscale(15%) contrast(1.05);
}

.service-detail-body {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.service-detail-panel {
	padding: 1.5rem 1.45rem;
	border-radius: 20px;
	background: rgba(16, 16, 16, 0.88);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.04);
}

.service-detail-panel h2 {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-primary);
}

.service-detail-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.service-detail-list li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.service-detail-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 700;
}

.service-detail-ideal {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.service-detail-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.85rem;
}

.service-detail-step {
	padding: 1.1rem 1rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-detail-step-num {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.service-detail-step h3 {
	margin: 0 0 0.35rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-primary);
}

.service-detail-step p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.55;
	color: var(--text-muted);
}

.service-detail-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.service-detail-cta .btn-primary {
	padding: 0.85rem 1.5rem;
	font-size: 0.88rem;
}

.service-detail-cta-link {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 11px;
	color: var(--text-primary);
	font-size: 0.84rem;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-detail-cta-link:hover {
	border-color: rgba(245, 158, 11, 0.35);
	color: var(--accent-light);
	background: rgba(245, 158, 11, 0.06);
}

.services-delivery {
	margin-bottom: 3rem;
}

.services-delivery-shell {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 2rem;
	align-items: start;
	padding: 2rem;
	border-radius: 22px;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
}

.services-delivery-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--text-primary);
}

.services-delivery-desc {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.services-delivery-link {
	display: inline-flex;
	align-items: center;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--accent-light);
	text-decoration: none;
	border-bottom: 1px solid rgba(251, 191, 36, 0.28);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.services-delivery-link:hover {
	color: var(--accent);
	border-color: var(--accent);
}

.services-delivery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.85rem;
}

.services-delivery-item {
	padding: 1.15rem 1.1rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.services-delivery-item:hover {
	border-color: rgba(245, 158, 11, 0.22);
	background: rgba(245, 158, 11, 0.04);
	transform: translateX(4px);
}

.services-delivery-num {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.services-delivery-item h3 {
	margin: 0 0 0.35rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--text-primary);
}

.services-delivery-item p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.services-cta-panel-shell {
	text-align: center;
	padding: 2rem 1.75rem;
	border-radius: 22px;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(245, 158, 11, 0.18);
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.08),
		0 24px 64px rgba(0, 0, 0, 0.5);
}

.services-cta-panel-title {
	margin: 0 0 0.55rem;
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	font-weight: 700;
	color: var(--text-primary);
}

.services-cta-panel-desc {
	max-width: 520px;
	margin: 0 auto 1.25rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.services-cta-panel-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.services-cta-btn {
	padding: 0.78rem 1.35rem;
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.services-cta-btn:hover {
	border-color: rgba(245, 158, 11, 0.35);
	background: rgba(245, 158, 11, 0.08);
	color: var(--accent-light);
	transform: translateY(-1px);
}

.services-cta-btn-primary {
	border-color: var(--bg-dark);
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 0 0 1px var(--bg-dark);
}

.services-cta-btn-primary:hover {
	background: var(--accent-light);
	color: var(--bg-dark);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 8px 22px rgba(245, 158, 11, 0.24);
}

/* Legal pages */
.legal-page {
	padding: 8rem 2rem 5rem;
	position: relative;
}

.legal-page-shell {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 22px;
	padding: 2.5rem 2.5rem 2rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.legal-page-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
		linear-gradient(315deg, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
	pointer-events: none;
}

.legal-page-header {
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-page-index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.legal-page-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 0.85rem;
	color: var(--text-primary);
}

.legal-page-intro {
	max-width: 640px;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.legal-page-content {
	position: relative;
	z-index: 1;
}

.legal-block + .legal-block {
	margin-top: 1.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-block h2 {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 0.65rem;
	color: var(--text-primary);
}

.legal-block p {
	font-size: 0.94rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

.legal-block p + p {
	margin-top: 0.75rem;
}

.legal-block ul {
	margin: 0.65rem 0 0;
	padding-left: 1.2rem;
}

.legal-block li {
	font-size: 0.94rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.legal-block li + li {
	margin-top: 0.35rem;
}

.legal-block a {
	color: var(--accent-light);
	text-decoration: none;
	border-bottom: 1px solid rgba(251, 191, 36, 0.28);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-block li em {
	font-style: normal;
	color: var(--text-muted);
	font-size: 0.88rem;
}

.footer-legal a.is-current {
	color: var(--accent-light);
}

.footer-legal a.is-current::after {
	transform: scaleX(1);
}

/* Footer */
.site-footer {
	position: relative;
	padding: 3rem 1.25rem 2rem;
	background: var(--bg-dark);
}

.footer-container {
	max-width: 1180px;
	margin: 0 auto;
}

.footer-shell {
	position: relative;
	background: rgba(16, 16, 16, 0.85);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 22px;
	padding: 2.5rem 2.5rem 1.75rem;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 24px 64px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.footer-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
		linear-gradient(315deg, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
	pointer-events: none;
}

.footer-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(4rem, 12vw, 9rem);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.02);
	letter-spacing: -0.04em;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	gap: 0;
	position: relative;
	z-index: 1;
}

.footer-panel {
	padding: 0 2rem;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.footer-panel:first-child {
	padding-left: 0;
}

.footer-panel:last-child {
	padding-right: 0;
}

.footer-panel:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-panel.footer-visible {
	opacity: 1;
	transform: translateY(0);
}

.footer-panel:nth-child(1).footer-visible { transition-delay: 0.06s; }
.footer-panel:nth-child(2).footer-visible { transition-delay: 0.16s; }
.footer-panel:nth-child(3).footer-visible { transition-delay: 0.26s; }

.footer-index {
	display: block;
	font-size: 0.62rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.14em;
	margin-bottom: 1rem;
	opacity: 0.7;
	transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-panel:hover .footer-index {
	opacity: 1;
	color: var(--accent-light);
}

.footer-logo {
	display: inline-block;
	margin-bottom: 1.15rem;
}

.footer-logo img {
	height: 52px;
	width: auto;
	display: block;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.footer-logo:hover img {
	animation: logo-hover 0.45s ease forwards;
}

.footer-desc {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.75;
	max-width: 320px;
}

.footer-heading {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.25rem;
	letter-spacing: 0.01em;
}

.footer-contact-blocks {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

.footer-contact-block {
	transition: transform 0.3s ease;
}

.footer-panel:hover .footer-contact-block {
	transform: translateX(3px);
}

.footer-contact-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent);
	margin-bottom: 0.4rem;
}

.footer-contact-value {
	color: var(--text-secondary);
	font-size: 0.88rem;
	line-height: 1.65;
}

.footer-link {
	color: var(--text-primary);
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: color 0.25s ease;
}

.footer-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.footer-link:hover {
	color: var(--accent-light);
}

.footer-link:hover::after {
	transform: scaleX(1);
}

.footer-hours-timeline {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

.footer-hours-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: padding-left 0.3s ease, background 0.3s ease;
}

.footer-hours-item:last-child {
	border-bottom: none;
}

.footer-hours-item:hover {
	padding-left: 6px;
}

.footer-hours-marker {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	margin-top: 0.45rem;
	position: relative;
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-hours-marker.active {
	background: var(--accent);
	box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.footer-hours-item:hover .footer-hours-marker {
	transform: scale(1.25);
}

.footer-hours-item:hover .footer-hours-marker.active {
	box-shadow: 0 0 14px rgba(245, 158, 11, 0.65);
}

.footer-hours-content {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	flex: 1;
}

.footer-hours-day {
	font-size: 0.82rem;
	color: var(--text-muted);
	font-weight: 500;
}

.footer-hours-time {
	font-size: 0.92rem;
	color: var(--text-primary);
	font-weight: 600;
}

.footer-hours-time.closed {
	color: var(--text-muted);
	font-weight: 500;
}

.footer-bottom {
	position: relative;
	z-index: 1;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	text-align: center;
	font-size: 0.82rem;
	color: var(--text-muted);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.55s ease 0.3s, transform 0.55s ease 0.3s;
}

.footer-copyright {
	margin: 0;
	display: block;
	width: 100%;
	line-height: 1.5;
}

.footer-legal {
	position: static;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
	width: 100%;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	pointer-events: auto;
}

.footer-bottom.footer-visible {
	opacity: 1;
	transform: translateY(0);
}

.footer-legal a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.78rem;
	transition: color 0.25s ease;
	position: relative;
}

.footer-legal a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.footer-legal a:hover {
	color: var(--accent-light);
}

.footer-legal a:hover::after {
	transform: scaleX(1);
}

.footer-legal-sep {
	color: rgba(255, 255, 255, 0.15);
	font-size: 0.78rem;
}

/* Scroll to top */
.scroll-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 900;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 2px solid var(--bg-dark);
	border-radius: 14px;
	background: var(--accent);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 8px 24px rgba(0, 0, 0, 0.35);
	color: var(--bg-dark);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0.35s ease,
		background 0.25s ease,
		box-shadow 0.25s ease;
	pointer-events: none;
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.scroll-top:hover {
	background: var(--accent-light);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 12px 32px rgba(245, 158, 11, 0.35);
	transform: translateY(-2px);
}

.scroll-top:focus-visible {
	outline: 2px solid var(--bg-dark);
	outline-offset: 3px;
}

.scroll-top svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Cookie consent popup */
.cookie-consent {
	position: fixed;
	left: 1.25rem;
	bottom: 1.25rem;
	z-index: 950;
	max-width: min(380px, calc(100vw - 2.5rem));
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(18px);
	transition:
		opacity 0.45s ease,
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.45s ease;
}

.cookie-consent.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cookie-consent.hiding {
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
}

.cookie-consent-popup {
	pointer-events: auto;
}

.cookie-consent-card {
	position: relative;
	padding: 1.1rem 1.15rem 1rem;
	background: linear-gradient(145deg, rgba(22, 22, 22, 0.97) 0%, rgba(12, 12, 12, 0.98) 100%);
	backdrop-filter: blur(28px) saturate(160%);
	border: 1px solid rgba(245, 158, 11, 0.2);
	border-radius: 18px;
	box-shadow:
		0 0 0 1px rgba(245, 158, 11, 0.05),
		0 16px 48px rgba(0, 0, 0, 0.55);
	overflow: hidden;
}

.cookie-consent-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(245, 158, 11, 0.07) 0%, transparent 42%),
		radial-gradient(circle at top right, rgba(245, 158, 11, 0.08) 0%, transparent 52%);
	pointer-events: none;
}

.cookie-consent-index {
	position: absolute;
	top: 0.85rem;
	right: 0.95rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--accent);
}

.cookie-consent-header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	padding-right: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-consent-brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
}

.cookie-consent-emblem {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
	background:
		linear-gradient(145deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.04)),
		rgba(16, 16, 16, 0.95);
	border: 1px solid rgba(245, 158, 11, 0.28);
}

.cookie-consent-emblem img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

.cookie-consent-kicker {
	margin: 0 0 0.1rem;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.cookie-consent-title {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
}

.cookie-consent-toggle {
	display: flex;
	flex-shrink: 0;
	gap: 0.2rem;
	padding: 0.18rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--border);
}

.cookie-consent-mode {
	border: none;
	background: transparent;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.68rem;
	font-weight: 600;
	padding: 0.35rem 0.62rem;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cookie-consent-mode:hover {
	color: var(--text-primary);
}

.cookie-consent-mode.active {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.cookie-consent-lead {
	position: relative;
	z-index: 1;
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.cookie-consent-lead a {
	color: var(--accent-light);
	text-decoration: none;
	border-bottom: 1px solid rgba(251, 191, 36, 0.28);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-lead a:hover {
	color: var(--accent);
	border-color: var(--accent);
}

.cookie-consent-tags {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.85rem;
}

.cookie-consent-tag {
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-muted);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.cookie-consent-tag.is-on {
	color: var(--accent-light);
	background: rgba(245, 158, 11, 0.1);
	border-color: rgba(245, 158, 11, 0.28);
}

.cookie-consent-tag.is-off {
	opacity: 0.45;
}

.cookie-consent-footer {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-consent-note {
	min-width: 0;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.cookie-consent-apply {
	flex-shrink: 0;
	padding: 0.62rem 1rem;
	border: 2px solid var(--bg-dark);
	border-radius: 10px;
	background: var(--accent);
	color: var(--bg-dark);
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 0 0 1px var(--bg-dark);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cookie-consent-apply:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
	box-shadow:
		0 0 0 1px var(--bg-dark),
		0 8px 22px rgba(245, 158, 11, 0.24);
}

.cookie-consent-apply:focus-visible {
	outline: 2px solid rgba(245, 158, 11, 0.55);
	outline-offset: 3px;
}

body.cookie-consent-visible .scroll-top {
	bottom: 9.5rem;
}

@media (max-width: 520px) {
	.cookie-consent {
		left: 0.85rem;
		bottom: 0.85rem;
		max-width: calc(100vw - 1.7rem);
	}

	.cookie-consent-header {
		flex-direction: column;
		padding-right: 0;
	}

	.cookie-consent-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-consent-apply {
		width: 100%;
	}

	body.cookie-consent-visible .scroll-top {
		bottom: 12rem;
	}
}
/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mobile-menu-btn:hover {
	background: rgba(245, 158, 11, 0.1);
	border-color: rgba(245, 158, 11, 0.35);
}

.mobile-menu-btn.active {
	background: rgba(245, 158, 11, 0.15);
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
	display: block;
	position: absolute;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.mobile-menu-icon {
	top: 50%;
	transform: translate(-50%, -50%);
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
	content: '';
	transform: translateX(-50%);
}

.mobile-menu-icon::before {
	top: -6px;
}

.mobile-menu-icon::after {
	top: 6px;
}

.mobile-menu-btn.active .mobile-menu-icon {
	background: transparent;
}

.mobile-menu-btn.active .mobile-menu-icon::before {
	top: 0;
	transform: translateX(-50%) rotate(45deg);
	background: var(--accent-light);
}

.mobile-menu-btn.active .mobile-menu-icon::after {
	top: 0;
	transform: translateX(-50%) rotate(-45deg);
	background: var(--accent-light);
}

/* Responsive */
@media (max-width: 1100px) and (min-width: 961px) {
	.nav-container {
		padding: 0.6rem 0.75rem 0.6rem 1rem;
		gap: 1rem;
	}

	.nav-links a {
		padding: 0.6rem 0.55rem;
		font-size: 0.75rem;
		gap: 0.3rem;
	}

	.nav-index {
		font-size: 0.52rem;
	}

	.logo img {
		height: 48px;
	}
}

@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		order: 1;
	}

	.dashboard-wrapper,
	.guitar-wrapper {
		order: 0;
		max-width: 500px;
		margin: 0 auto;
		width: 100%;
	}

	.hero-description {
		margin: 0 auto 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.about-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-intro {
		position: static;
		text-align: center;
	}

	.about-intro-plate {
		padding: 1.5rem 1.25rem;
	}

	.about-tags {
		justify-content: center;
	}

	.features-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.vision-pillars {
		grid-template-columns: repeat(2, 1fr);
	}

	.vision-panel {
		padding: 1.5rem 1.25rem;
	}

	.vision-tabs {
		border-radius: 16px;
		padding: 0.4rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-panel {
		padding: 0;
		border-right: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		padding-bottom: 2rem;
	}

	.footer-panel:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.footer-brand-col {
		grid-column: auto;
	}

	.footer-desc {
		max-width: none;
	}

	.legal-page {
		padding: 7rem 1.5rem 4rem;
	}

	.legal-page-shell {
		padding: 2rem 1.75rem 1.75rem;
	}

	.contact-page {
		padding: 7rem 1.5rem 4rem;
	}

	.pricing-page {
		padding: 7rem 1.5rem 4rem;
	}

	.process-page {
		padding: 7rem 1.5rem 4rem;
	}

	.case-studies-page {
		padding: 7rem 1.5rem 4rem;
	}

	.services-page {
		padding: 7rem 1.5rem 4rem;
	}

	.service-detail-page {
		padding: 7rem 1.5rem 4rem;
	}

	.services-showcase {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-detail-layout {
		grid-template-columns: 1fr;
	}

	.service-detail-steps {
		grid-template-columns: 1fr;
	}

	.service-detail-benefits-grid {
		grid-template-columns: 1fr;
	}

	.service-detail-outcomes-list {
		grid-template-columns: 1fr;
	}

	.services-delivery-shell {
		grid-template-columns: 1fr;
		padding: 1.75rem;
	}

	.case-studies-grid {
		grid-template-columns: 1fr;
	}

	.case-study-featured {
		grid-column: auto;
	}

	.case-study-featured .case-study-metrics {
		grid-template-columns: repeat(3, 1fr);
	}

	.case-studies-stats-shell {
		grid-template-columns: 1fr;
		padding: 1.75rem;
	}

	.process-timeline-list {
		grid-template-columns: 1fr;
	}

	.process-principles-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}

	.pricing-includes-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-faq-shell {
		grid-template-columns: 1fr;
		padding: 1.75rem;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-map-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-map-link {
		width: 100%;
		text-align: center;
	}
}

body.nav-menu-open {
	overflow: hidden;
}

@media (max-width: 960px) {

	.site-nav {
		padding: 0.75rem 0.85rem 0;
	}

	.nav-shell.menu-open {
		overflow: visible;
	}

	.nav-menu {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
		z-index: 2;
	}

	.nav-menu.active {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: var(--mobile-menu-top, 5.25rem);
		left: 0.85rem;
		right: 0.85rem;
		width: auto;
		flex: none;
		z-index: 1100;
		max-height: calc(100vh - var(--mobile-menu-top, 5.25rem) - 1rem);
		overflow-y: auto;
		background: rgba(10, 10, 10, 0.97);
		backdrop-filter: blur(28px);
		border: 1px solid rgba(245, 158, 11, 0.15);
		border-radius: 16px;
		padding: 0.65rem;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
		animation: nav-dropdown-in 0.35s ease;
	}

	.nav-menu.active .nav-marker {
		display: none;
	}

	.nav-menu.active .nav-links {
		flex-direction: column;
		width: 100%;
		gap: 0.35rem;
	}

	.nav-menu.active .nav-links li {
		width: 100%;
		animation: nav-item-in 0.4s ease forwards;
		opacity: 0;
	}

	.nav-menu.active .nav-links li:nth-child(1) { animation-delay: 0.05s; }
	.nav-menu.active .nav-links li:nth-child(2) { animation-delay: 0.09s; }
	.nav-menu.active .nav-links li:nth-child(3) { animation-delay: 0.13s; }
	.nav-menu.active .nav-links li:nth-child(4) { animation-delay: 0.17s; }
	.nav-menu.active .nav-links li:nth-child(5) { animation-delay: 0.21s; }
	.nav-menu.active .nav-links li:nth-child(6) { animation-delay: 0.25s; }

	.nav-menu.active .nav-links a {
		width: 100%;
		padding: 1rem 1.1rem;
		font-size: 0.95rem;
		border-radius: 12px;
		border: 1px solid transparent;
	}

	.nav-menu.active .nav-links a:hover,
	.nav-menu.active .nav-links a.active {
		border-color: rgba(245, 158, 11, 0.2);
		background: rgba(245, 158, 11, 0.06);
		transform: translateX(4px);
	}

	.nav-menu.active .nav-index {
		font-size: 0.65rem;
		min-width: 1.4rem;
	}

	.nav-menu.active .nav-links a.nav-link-contact {
		margin-left: 0;
		margin-top: 0.35rem;
		justify-content: center;
		padding: 1rem 1.25rem;
		background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
		color: var(--bg-dark);
		border: 1px solid transparent;
		box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
	}

	.nav-menu.active .nav-links a.nav-link-contact:hover,
	.nav-menu.active .nav-links a.nav-link-contact.active {
		background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
		color: var(--bg-dark);
		border-color: rgba(245, 158, 11, 0.35);
		transform: translateX(4px);
		box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
	}

	@keyframes nav-dropdown-in {
		from {
			opacity: 0;
			transform: translateY(-10px) scale(0.98);
		}
		to {
			opacity: 1;
			transform: translateY(0) scale(1);
		}
	}

	@keyframes nav-item-in {
		from {
			opacity: 0;
			transform: translateX(-16px);
		}
		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.hero {
		padding: 6rem 1rem 3rem;
	}

	.dashboard-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.dashboard-kpis {
		grid-template-columns: 1fr;
	}

	.dashboard-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.dashboard-card {
		padding: 1rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.stat {
		text-align: center;
	}

	.guitar-card {
		padding: 1rem;
	}

	.fretboard-grid {
		grid-template-rows: repeat(6, 28px);
	}

	.string-labels {
		height: calc(6 * 28px);
		left: -24px;
	}

	.string-label {
		height: 28px;
		font-size: 0.6rem;
	}

	.note-marker {
		width: 14px;
		height: 14px;
		font-size: 0.4rem;
	}

	.footer-shell {
		padding: 1.75rem 1.25rem 1.25rem;
		border-radius: 18px;
	}

	.legal-page {
		padding: 6.5rem 1rem 3.5rem;
	}

	.legal-page-shell {
		padding: 1.5rem 1.15rem 1.25rem;
		border-radius: 18px;
	}

	.legal-page-title {
		font-size: 1.85rem;
	}

	.contact-page {
		padding: 6.5rem 1rem 3.5rem;
	}

	.pricing-page {
		padding: 6.5rem 1rem 3.5rem;
	}

	.process-page {
		padding: 6.5rem 1rem 3.5rem;
	}

	.case-studies-page {
		padding: 6.5rem 1rem 3.5rem;
	}

	.services-page {
		padding: 6.5rem 1rem 3.5rem;
	}

	.services-showcase {
		grid-template-columns: 1fr;
	}

	.service-item {
		padding: 1.25rem 1.15rem 1.15rem;
		border-radius: 18px;
	}

	.service-item-desc {
		min-height: auto;
	}

	.service-detail-page {
		padding: 6.5rem 1rem 3.5rem;
	}

	.service-detail-visual img {
		min-height: 220px;
	}

	.service-detail-panel {
		padding: 1.25rem 1.1rem;
		border-radius: 18px;
	}

	.service-detail-cta {
		flex-direction: column;
	}

	.service-detail-cta .btn-primary,
	.service-detail-cta-link {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.service-detail-benefit-card {
		padding: 1.1rem 1rem;
	}

	.services-delivery-shell {
		padding: 1.35rem 1.15rem;
		border-radius: 18px;
	}

	.services-delivery-grid {
		grid-template-columns: 1fr;
	}

	.services-cta-panel-shell {
		padding: 1.5rem 1.15rem;
		border-radius: 18px;
	}

	.services-cta-panel-actions {
		flex-direction: column;
	}

	.services-cta-btn {
		width: 100%;
		text-align: center;
	}

	.case-studies-filters {
		border-radius: 16px;
		padding: 0.4rem;
		max-width: 100%;
	}

	.case-studies-filter {
		padding: 0.55rem 0.75rem;
		font-size: 0.75rem;
	}

	.case-study-card {
		padding: 1.35rem 1.15rem 1.25rem;
		border-radius: 18px;
	}

	.case-study-featured .case-study-metrics,
	.case-study-metrics {
		grid-template-columns: 1fr 1fr;
	}

	.case-studies-stats-shell {
		padding: 1.35rem 1.15rem;
		border-radius: 18px;
	}

	.case-studies-stats-grid {
		grid-template-columns: 1fr 1fr;
	}

	.process-tabs {
		border-radius: 16px;
		padding: 0.4rem;
	}

	.process-tab {
		padding: 0.55rem 0.75rem;
		font-size: 0.75rem;
	}

	.process-panel {
		padding: 1.5rem 1.25rem;
	}

	.process-principles-grid {
		grid-template-columns: 1fr;
	}

	.pricing-billing-toggle {
		border-radius: 16px;
		padding: 0.4rem;
		width: 100%;
	}

	.pricing-billing-option {
		flex: 1;
		text-align: center;
		padding: 0.65rem 0.75rem;
		font-size: 0.78rem;
	}

	.pricing-card {
		padding: 1.5rem 1.25rem 1.35rem;
		border-radius: 18px;
	}

	.pricing-card-tagline {
		min-height: auto;
	}

	.pricing-includes-grid {
		grid-template-columns: 1fr;
	}

	.pricing-faq-shell {
		padding: 1.35rem 1.15rem;
		border-radius: 18px;
	}

	.contact-info-shell,
	.contact-form-shell {
		padding: 1.35rem 1.15rem;
		border-radius: 18px;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
	}

	.contact-submit {
		width: 100%;
	}

	.contact-map-shell {
		padding: 1.15rem;
		border-radius: 18px;
	}

	.contact-map-frame iframe {
		height: 280px;
	}

	.footer-grid {
		text-align: left;
	}

	.footer-desc {
		margin: 0;
	}

	.footer-hours-item {
		max-width: none;
	}

	.scroll-top {
		right: 1rem;
		bottom: 1rem;
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}
}
