/* ========================================
   CSS Custom Properties (Variables)
   ======================================== */

:root {
	--bg-primary: #0c0a09;
	--bg-secondary: #141210;
	--bg-card: rgba(22, 20, 17, 0.7);
	--bg-card-hover: rgba(30, 27, 22, 0.85);
	--bg-glass: rgba(255, 248, 235, 0.03);
	--bg-glass-border: rgba(197, 164, 100, 0.1);
	--text-primary: #faf6f0;
	--text-secondary: #b8a88a;
	--text-muted: #9a8a74;
	--accent-1: #c5a464;
	--accent-2: #d4af37;
	--accent-3: #a07850;
	--accent-4: #b49664;
	--gradient-primary: linear-gradient(135deg, #c5a464, #d4af37);
	--gradient-secondary: linear-gradient(135deg, #c5a464, #a07850);
	--gradient-dark: linear-gradient(180deg, #0c0a09, #141210);
	--border-radius: 16px;
	--border-radius-sm: 8px;
	--border-radius-lg: 24px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
	--shadow-glow: 0 0 40px rgba(197, 164, 100, 0.15);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	--nav-height: 80px;
	--container-width: 1200px;
}

/* ========================================
   Reset & Base
   ======================================== */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

html {
	scroll-behavior: auto;
	scroll-padding-top: var(--nav-height);
	background: #0c0a09;
	overscroll-behavior: none;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.7;
	overflow-x: hidden;
	overscroll-behavior: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	min-height: 100dvh;
}

#smooth-scroll-wrapper {
	background: var(--bg-primary);
}

::selection {
	background: rgba(197, 164, 100, 0.4);
	color: #fff;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

img {
	max-width: 100%;
	display: block;
}

/* ========================================
   Layout
   ======================================== */

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	transition: background 0.6s ease;
}

.section::before {
	display: none;
}

.section > .container,
.section > .vision-bg {
	position: relative;
	z-index: 1;
}

/* ========================================
   Typography
   ======================================== */

.gradient-text {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ========================================
   Preloader
   ======================================== */

.preloader {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: var(--bg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

.preloader-inner {
	text-align: center;
}

.preloader-logo {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 32px;
	letter-spacing: -1px;
}

.preloader-bar {
	width: 200px;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
}

.preloader-progress {
	width: 0;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 3px;
	animation: preloaderProgress 1.2s ease-out forwards;
}

@keyframes preloaderProgress {
	to {
		width: 100%;
	}
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--nav-height);
	z-index: 1000;
	transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--bg-primary);
	border-bottom: 1px solid transparent;
}

.navbar.scrolled {
	background: rgba(12, 10, 9, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom-color: rgba(255, 255, 255, 0.05);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.nav-hidden {
	transform: translateY(-110%);
}

.nav-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -1px;
	display: flex;
	align-items: center;
}

.logo-ai {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo-mesis {
	color: var(--text-primary);
}

.nav-links {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-link {
	padding: 8px 16px;
	border-radius: var(--border-radius-sm);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: var(--transition);
	position: relative;
}

.nav-link:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.05);
}

.nav-link.nav-cta {
	background: var(--gradient-primary);
	color: #fff;
	padding: 8px 24px;
}

.nav-link.nav-cta:hover {
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.4);
	transform: translateY(-1px);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 32px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text-primary);
	position: absolute;
	left: 0;
	transition: var(--transition);
	border-radius: 2px;
}

.nav-toggle span:nth-child(1) {
	top: 0;
}

.nav-toggle span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
	bottom: 0;
}

.nav-toggle.active span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 320px;
		height: 100vh;
		height: 100svh;
		background: rgba(12, 10, 9, 0.97);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 100px 32px 40px;
		gap: 0;
		transition: var(--transition-slow);
		border-left: 1px solid rgba(197, 164, 100, 0.1);
		box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
	}

	.nav-links.active {
		right: 0;
	}

	.nav-toggle {
		display: block;
	}

	.nav-links li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.nav-links li:last-child {
		border-bottom: none;
		margin-top: 16px;
	}

	.nav-link {
		font-size: 1.05rem;
		padding: 16px 8px;
		width: 100%;
		display: block;
		text-align: left;
		letter-spacing: 0.3px;
	}

	.nav-link.nav-cta {
		text-align: center;
		padding: 14px 24px;
		border-radius: 10px;
	}

	/* Hero mobile adjustments */
	.hero {
		padding-bottom: 20px;
	}

	.hero-badge {
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: 0.72rem;
		padding: 5px 12px;
	}

	.hero-title {
		font-size: clamp(1.7rem, 5.5vw, 2.8rem);
		margin-bottom: 8px;
	}

	.hero-subtitle {
		font-size: 0.68rem;
		letter-spacing: 1.5px;
		margin-bottom: 8px;
		gap: 4px;
	}

	.hero-desc {
		font-size: 0.85rem;
		margin-bottom: 16px;
		line-height: 1.5;
	}

	.hero-buttons {
		margin-bottom: 24px;
		gap: 8px;
	}

	.hero-buttons .btn {
		padding: 10px 20px;
		font-size: 0.82rem;
	}

	.hero-stats {
		gap: 20px;
	}

	.stat-number {
		font-size: 1.4rem;
	}

	.stat-plus {
		font-size: 0.85rem;
	}

	.stat-label {
		font-size: 0.68rem;
		margin-top: 1px;
	}

	.stat-divider {
		height: 22px;
	}

	/* Cookie banner mobile fix */
	.cookie-banner {
		bottom: 12px;
		bottom: calc(12px + env(safe-area-inset-bottom));
	}
}

/* ========================================
   Hero
   ======================================== */

.hero {
	min-height: 100vh;
	min-height: var(--vh, 100dvh);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding-top: var(--nav-height);
	padding-bottom: 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(197, 164, 100, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(197, 164, 100, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-particles {
	position: absolute;
	inset: 0;
}

.hero-particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgba(197, 164, 100, 0.5);
	border-radius: 50%;
	animation: particleFloat linear infinite;
}

@keyframes particleFloat {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-10vh) scale(1);
		opacity: 0;
	}
}

.hero-gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hero-orb-1 {
	width: 500px;
	height: 500px;
	background: var(--accent-1);
	top: -100px;
	right: -100px;
	animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
	width: 400px;
	height: 400px;
	background: var(--accent-2);
	bottom: -100px;
	left: -100px;
	animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
	width: 300px;
	height: 300px;
	background: var(--accent-3);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
	0%,
	100% {
		transform: translate(0, 0);
	}
	33% {
		transform: translate(30px, -30px);
	}
	66% {
		transform: translate(-20px, 20px);
	}
}

/* Hero Portraits */

.hero-portrait {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 38%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.hero-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	opacity: 0.18;
	filter: grayscale(20%);
	transition: opacity 1s ease;
}

.hero:hover .hero-portrait img {
	opacity: 0.22;
}

.hero-portrait-left {
	left: 0;
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 85%, transparent 100%);
	mask-composite: intersect;
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 85%, transparent 100%);
	-webkit-mask-composite: source-in;
}

.hero-portrait-right {
	right: 0;
	mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 85%, transparent 100%);
	mask-composite: intersect;
	-webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 85%, transparent 100%);
	-webkit-mask-composite: source-in;
}

.hero-portrait::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(197, 164, 100, 0.04) 0%, transparent 60%);
	pointer-events: none;
}

/* Hero Content */

.hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 24px;
	will-change: transform, opacity;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: 100px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.2);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--accent-2);
	margin-bottom: 32px;
}

.hero-badge i {
	color: var(--accent-2);
}

.hero-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -2px;
}

.hero-subtitle {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 16px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	word-spacing: 6px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.hero-subtitle .subtitle-dot {
	color: var(--accent-1);
	margin: 0 4px;
	font-weight: 700;
}

.hero-desc {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

/* Hero Buttons */

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: var(--transition);
	font-family: inherit;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--gradient-primary);
	color: #fff;
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 8px 40px rgba(197, 164, 100, 0.5);
	transform: translateY(-2px);
}

.btn-primary::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: var(--transition);
}

.btn-primary:hover::after {
	opacity: 1;
}

.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.btn-lg {
	padding: 16px 40px;
	font-size: 1rem;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ========================================
   Contact Chat Hint
   ======================================== */

.contact-chat-hint {
	text-align: center;
	margin-top: 20px;
}

.contact-chat-hint p {
	color: var(--text-muted);
	font-size: 0.88rem;
}

.contact-chat-hint a {
	color: var(--accent-1);
	font-weight: 500;
	transition: var(--transition);
}

.contact-chat-hint a:hover {
	color: var(--accent-2);
	text-decoration: underline;
}

.contact-chat-hint a i {
	margin-right: 4px;
}

/* ========================================
   Section Hint
   ======================================== */

.section-hint {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	padding: 8px 20px;
	border-radius: 100px;
	background: rgba(197, 164, 100, 0.08);
	border: 1px solid rgba(197, 164, 100, 0.15);
	font-size: 0.85rem;
	color: var(--accent-2);
	font-weight: 500;
	animation: hintPulse 2.5s ease-in-out infinite;
}

.section-hint i {
	font-size: 0.75rem;
	animation: hintArrowBounce 1.5s ease-in-out infinite;
}

@keyframes hintPulse {
	0%,
	100% {
		opacity: 0.8;
	}
	50% {
		opacity: 1;
	}
}

@keyframes hintArrowBounce {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(4px);
	}
}

/* ========================================
   Hero Stats
   ======================================== */

.hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.stat {
	text-align: center;
}

.stat-number {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.stat-plus {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	display: block;
	font-size: 0.82rem;
	color: var(--text-secondary);
	margin-top: 2px;
}

.stat-divider {
	width: 1px;
	height: 36px;
	background: rgba(255, 255, 255, 0.1);
}

/* Hero Scroll Indicator */

.hero-scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: 0.75rem;
	animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.scroll-wheel {
	width: 3px;
	height: 8px;
	background: var(--accent-1);
	border-radius: 3px;
	animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(8px);
		opacity: 0.3;
	}
}

@keyframes scrollBounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(8px);
	}
}

/* ========================================
   Section Header
   ======================================== */

.section-header {
	text-align: center;
	margin-bottom: 72px;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 100px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.15);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--accent-2);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.section-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 16px;
}

.section-desc {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* ========================================
   About
   ======================================== */

.about {
	background: var(--bg-secondary);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.about-lead {
	font-size: 1.25rem;
	color: var(--text-primary);
	margin-bottom: 16px;
	line-height: 1.8;
}

.about-text p {
	color: var(--text-secondary);
	margin-bottom: 16px;
	line-height: 1.8;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

.about-feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.feature-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 12px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: var(--accent-2);
}

.about-feature h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.about-feature p {
	font-size: 0.9rem;
	margin-bottom: 0 !important;
}

/* About Visual / Orbit */

.about-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	order: -1;
	max-width: 100%;
	margin: 0 auto;
	overflow: visible;
}

.about-card-stack {
	position: relative;
	width: 160px;
	height: 160px;
	margin-top: 10px;
	margin-bottom: 60px;
	margin-left: auto;
	margin-right: calc(50% - 80px);
}

.orbit-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130px;
	height: 130px;
	margin: -65px 0 0 -65px;
	border: 1px dashed rgba(197, 164, 100, 0.15);
	border-radius: 50%;
}

.orbit-ring-2 {
	width: 70px;
	height: 70px;
	margin: -35px 0 0 -35px;
	border-style: dotted;
	border-color: rgba(197, 164, 100, 0.1);
}

.orbit-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--gradient-primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	box-shadow: 0 0 30px rgba(197, 164, 100, 0.25), 0 0 60px rgba(197, 164, 100, 0.1);
	z-index: 3;
}

.orbit-center i {
	font-size: 0.9rem;
	color: #0c0a09;
}

.orbit-center span {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.5rem;
	font-weight: 700;
	color: #0c0a09;
	letter-spacing: 1px;
}

.orbit-item {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	z-index: 2;
}

.oi-1 {
	animation: orbitSpin 40s linear infinite;
}

.oi-2 {
	animation: orbitSpin 40s linear infinite;
	animation-delay: -10s;
}

.oi-3 {
	animation: orbitSpin 40s linear infinite;
	animation-delay: -20s;
}

.oi-4 {
	animation: orbitSpin 40s linear infinite;
	animation-delay: -30s;
}

@keyframes orbitSpin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.orbit-dot {
	position: absolute;
	top: -5px;
	left: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent-2);
	box-shadow: 0 0 14px var(--accent-1), 0 0 4px var(--accent-2);
	transform: translateX(65px);
}

.orbit-label {
	position: absolute;
	top: -14px;
	left: 0;
	transform: translateX(65px) translateX(10px);
	padding: 3px 7px;
	border-radius: 10px;
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	backdrop-filter: blur(10px);
	white-space: nowrap;
	font-size: 0.55rem;
	font-weight: 600;
	color: var(--text-primary);
	box-shadow: var(--shadow-sm);
	display: flex;
	align-items: center;
	gap: 8px;
}

.oi-1 .orbit-label {
	animation: counterSpinMobile 40s linear infinite;
}

.oi-2 .orbit-label {
	animation: counterSpinMobile 40s linear infinite;
	animation-delay: -10s;
}

.oi-3 .orbit-label {
	animation: counterSpinMobile 40s linear infinite;
	animation-delay: -20s;
}

.oi-4 .orbit-label {
	animation: counterSpinMobile 40s linear infinite;
	animation-delay: -30s;
}

.oi-1 .orbit-dot {
	animation: none;
}

@keyframes counterSpinMobile {
	from {
		transform: translateX(65px) translateX(10px) rotate(0deg);
	}
	to {
		transform: translateX(65px) translateX(10px) rotate(-360deg);
	}
}

.orbit-label i {
	font-size: 1rem;
	color: var(--accent-2);
}

/* ========================================
   Vision
   ======================================== */

.vision {
	position: relative;
	overflow: hidden;
}

.vision-bg {
	position: absolute;
	inset: 0;
}

.vision-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(197, 164, 100, 0.08) 0%, transparent 70%);
}

.vision-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.vision-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.3;
	margin: 20px 0 24px;
}

.vision-desc {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 60px;
}

.vision-pillars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.pillar {
	padding: 40px 32px;
	border-radius: var(--border-radius);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	transition: var(--transition);
}

.pillar:hover {
	border-color: rgba(197, 164, 100, 0.3);
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}

.pillar-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: #fff;
	margin: 0 auto 20px;
}

.pillar h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.pillar p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* ========================================
   Services
   ======================================== */

.services {
	background: var(--bg-secondary);
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.service-card {
	position: relative;
	display: block;
	padding: 40px 32px;
	border-radius: var(--border-radius);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	transition: var(--transition);
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.service-glow {
	position: absolute;
	top: 0;
	left: 50%;
	width: 200px;
	height: 1px;
	background: var(--gradient-primary);
	transform: translateX(-50%);
	opacity: 0;
	transition: var(--transition);
	box-shadow: 0 0 40px 20px rgba(197, 164, 100, 0.1);
}

.service-card:hover {
	border-color: rgba(197, 164, 100, 0.3);
	transform: translateY(-4px);
	background: var(--bg-card-hover);
	z-index: 10;
	position: relative;
}

.service-card:hover .service-glow {
	opacity: 1;
}

.service-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--accent-2);
	margin-bottom: 24px;
	transition: var(--transition);
}

.service-card:hover .service-icon {
	background: var(--gradient-primary);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.3);
}

.service-card h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.service-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 20px;
	line-height: 1.7;
}

.service-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.service-features li i {
	color: var(--accent-2);
	font-size: 0.7rem;
}

.service-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(197, 164, 100, 0.1);
	color: var(--accent-1);
	transition: var(--transition);
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.service-arrow:hover {
	background: var(--gradient-primary);
	color: #fff;
	transform: translateX(4px);
	box-shadow: 0 4px 16px rgba(197, 164, 100, 0.3);
}

.service-card:hover .service-arrow {
	background: var(--gradient-primary);
	color: #fff;
	transform: translateX(4px);
}

/* ========================================
   Why Us
   ======================================== */

.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 80px;
}

.why-card {
	text-align: center;
	padding: 40px 24px;
	border-radius: var(--border-radius);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	transition: var(--transition);
}

.why-card:hover {
	border-color: rgba(197, 164, 100, 0.3);
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}

.why-icon {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	margin: 0 auto 20px;
}

.why-card h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.why-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* ========================================
   For Whom
   ======================================== */

.for-whom {
	padding: 40px 24px;
	border-radius: var(--border-radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
}

.for-whom-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.for-whom-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.whom-item {
	text-align: center;
	padding: 24px;
}

.whom-item i {
	font-size: 2rem;
	color: var(--accent-2);
	margin-bottom: 16px;
	display: block;
}

.whom-item h4 {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.whom-item p {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

/* ========================================
   Team
   ======================================== */

.team {
	background: var(--bg-secondary);
}

.team-hero-image {
	position: relative;
	width: 100%;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(197, 164, 100, 0.12);
}

.team-hero-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-hero-image:hover img {
	transform: scale(1.03);
}

.team-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px 28px 24px;
	background: linear-gradient(to top, rgba(12, 10, 9, 0.85) 0%, rgba(12, 10, 9, 0.4) 60%, transparent 100%);
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.team-hero-overlay span {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--accent-2);
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.team-hero-overlay span i {
	font-size: 0.95rem;
	opacity: 0.8;
}

/* Team Carousel */

.team-carousel {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	perspective: 1200px;
}

.team-carousel-track {
	position: relative;
}

.team-carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	will-change: transform, opacity;
}

.team-carousel-slide.active {
	position: relative;
	transform: translateX(0) scale(1) rotateY(0);
	opacity: 1;
	z-index: 3;
	pointer-events: auto;
}

.team-carousel-slide.peek-right {
	transform: translateX(65%) scale(0.88) rotateY(-6deg);
	opacity: 0.55;
	z-index: 2;
	pointer-events: auto;
	filter: brightness(0.6);
}

.team-carousel-slide.peek-left {
	transform: translateX(-65%) scale(0.88) rotateY(6deg);
	opacity: 0.55;
	z-index: 2;
	pointer-events: auto;
	filter: brightness(0.6);
}

.team-carousel-slide.hidden-right {
	transform: translateX(120%) scale(0.7);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

.team-carousel-slide.hidden-left {
	transform: translateX(-120%) scale(0.7);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

.team-carousel-slide.peek-right:hover,
.team-carousel-slide.peek-left:hover {
	opacity: 0.75;
	filter: brightness(0.75);
	transform: translateX(60%) scale(0.9) rotateY(-4deg);
}

.team-carousel-slide.peek-left:hover {
	transform: translateX(-60%) scale(0.9) rotateY(4deg);
}

/* Team Card */

.team-card-single {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 36px 24px;
	border-radius: var(--border-radius-lg, 20px);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	transition: var(--transition);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.team-carousel-slide.active .team-card-single:hover {
	border-color: rgba(197, 164, 100, 0.3);
	box-shadow: var(--shadow-glow), 0 12px 48px rgba(0, 0, 0, 0.4);
}

.team-photo-large {
	position: relative;
	margin-bottom: 28px;
}

.team-photo-large img {
	width: 150px;
	height: 180px;
	border-radius: 20px;
	object-fit: cover;
	object-position: center top;
	border: 3px solid rgba(197, 164, 100, 0.3);
	transition: var(--transition-slow, 0.5s ease);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.team-card-single:hover .team-photo-large img {
	border-color: var(--accent-2);
	box-shadow: 0 12px 40px rgba(197, 164, 100, 0.25);
	transform: scale(1.03);
}

.team-photo-badge {
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 18px;
	border-radius: 100px;
	background: var(--gradient-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: #0c0a09;
	white-space: nowrap;
	box-shadow: 0 4px 16px rgba(197, 164, 100, 0.3);
}

.team-card-single .team-info {
	max-width: 530px;
}

.team-card-single .team-info h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.team-card-single .team-role {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent-2);
	margin-bottom: 20px;
}

.team-card-single .team-info p {
	font-size: 0.8rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin-bottom: 24px;
}

.team-card-single .team-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

.team-card-single .team-tags span {
	padding: 6px 16px;
	border-radius: 100px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.15);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--text-secondary);
}

.team-card-single .team-social {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.team-card-single .team-social a {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: var(--text-secondary);
	transition: var(--transition);
}

.team-card-single .team-social a:hover {
	background: var(--accent-1);
	color: #fff;
	border-color: var(--accent-1);
	transform: translateY(-2px);
}

/* Team Carousel Nav */

.team-carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 36px;
	position: relative;
	z-index: 10;
}

.team-carousel-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	color: var(--text-secondary);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.team-carousel-btn:hover {
	background: var(--gradient-primary);
	color: #0c0a09;
	border-color: transparent;
	transform: scale(1.1);
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.3);
}

.team-carousel-dots {
	display: flex;
	gap: 10px;
}

.team-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(197, 164, 100, 0.2);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}

.team-carousel-dot.active {
	background: var(--accent-2);
	box-shadow: 0 0 12px rgba(197, 164, 100, 0.4);
	transform: scale(1.3);
}

.team-carousel-dot:hover {
	background: rgba(197, 164, 100, 0.5);
}

.team-carousel-counter {
	text-align: center;
	margin-top: 16px;
	position: relative;
	z-index: 10;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	color: var(--text-muted, #666);
}

.team-carousel-counter .current {
	color: var(--accent-2);
	font-weight: 700;
	font-size: 1rem;
}

/* ========================================
   Cases Carousel
   ======================================== */

.cases-carousel {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	perspective: 1200px;
}

.cases-carousel-track {
	position: relative;
}

.cases-carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	will-change: transform, opacity;
}

.cases-carousel-slide.active {
	position: relative;
	transform: translateX(0) scale(1) rotateY(0);
	opacity: 1;
	z-index: 3;
	pointer-events: auto;
}

.cases-carousel-slide.peek-right {
	transform: translateX(65%) scale(0.88) rotateY(-6deg);
	opacity: 0.55;
	z-index: 2;
	pointer-events: auto;
	filter: brightness(0.6);
}

.cases-carousel-slide.peek-left {
	transform: translateX(-65%) scale(0.88) rotateY(6deg);
	opacity: 0.55;
	z-index: 2;
	pointer-events: auto;
	filter: brightness(0.6);
}

.cases-carousel-slide.hidden-right {
	transform: translateX(120%) scale(0.7);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

.cases-carousel-slide.hidden-left {
	transform: translateX(-120%) scale(0.7);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

.cases-carousel-slide.peek-right:hover,
.cases-carousel-slide.peek-left:hover {
	opacity: 0.75;
	filter: brightness(0.75);
	transform: translateX(60%) scale(0.9) rotateY(-4deg);
}

.cases-carousel-slide.peek-left:hover {
	transform: translateX(-60%) scale(0.9) rotateY(4deg);
}

/* Case Card */

.case-card-single {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 36px 24px;
	border-radius: var(--border-radius-lg, 20px);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	transition: var(--transition);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.cases-carousel-slide.active .case-card-single:hover {
	border-color: rgba(197, 164, 100, 0.3);
	box-shadow: var(--shadow-glow), 0 12px 48px rgba(0, 0, 0, 0.4);
}

.case-photo-large {
	position: relative;
	margin-bottom: 28px;
	width: 100%;
	max-width: 400px;
}

.case-photo-large img {
	width: 100%;
	height: 160px;
	border-radius: 20px;
	object-fit: cover;
	object-position: center top;
	border: 3px solid rgba(197, 164, 100, 0.3);
	transition: var(--transition-slow, 0.5s ease);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.case-card-single:hover .case-photo-large img {
	border-color: var(--accent-2);
	box-shadow: 0 12px 40px rgba(197, 164, 100, 0.25);
	transform: scale(1.03);
}

.case-photo-badge {
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 18px;
	border-radius: 100px;
	background: var(--gradient-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: #0c0a09;
	white-space: nowrap;
	box-shadow: 0 4px 16px rgba(197, 164, 100, 0.3);
}

.case-card-single .case-info {
	max-width: 520px;
}

.case-card-single .case-info h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.case-role {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent-2);
	margin-bottom: 20px;
}

.case-card-single .case-info p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 24px;
}

.case-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

.case-tags span {
	padding: 6px 16px;
	border-radius: 100px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.15);
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--text-secondary);
}

/* Cases Carousel Nav */

.cases-carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 36px;
	position: relative;
	z-index: 10;
}

.cases-carousel-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	color: var(--text-secondary);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.cases-carousel-btn:hover {
	background: var(--gradient-primary);
	color: #0c0a09;
	border-color: transparent;
	transform: scale(1.1);
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.3);
}

.cases-carousel-dots {
	display: flex;
	gap: 10px;
}

.cases-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(197, 164, 100, 0.2);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}

.cases-carousel-dot.active {
	background: var(--accent-2);
	box-shadow: 0 0 12px rgba(197, 164, 100, 0.4);
	transform: scale(1.3);
}

.cases-carousel-dot:hover {
	background: rgba(197, 164, 100, 0.5);
}

.cases-carousel-counter {
	text-align: center;
	margin-top: 16px;
	position: relative;
	z-index: 10;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	color: var(--text-muted, #666);
}

.cases-carousel-counter .current {
	color: var(--accent-2);
	font-weight: 700;
	font-size: 1rem;
}

/* ========================================
   Cases Grid
   ======================================== */

.cases-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.case-card {
	border-radius: var(--border-radius);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	overflow: hidden;
	transition: var(--transition);
}

.case-card:hover {
	border-color: rgba(197, 164, 100, 0.3);
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}

.case-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.case-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(197, 164, 100, 0.2), rgba(212, 175, 55, 0.2));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: rgba(255, 255, 255, 0.2);
}

.case-overlay {
	position: absolute;
	top: 16px;
	left: 16px;
}

.case-category {
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(12, 10, 9, 0.7);
	backdrop-filter: blur(10px);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-2);
}

.case-content {
	padding: 24px;
}

.case-content h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.case-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 20px;
}

.case-stats {
	display: flex;
	gap: 24px;
}

.case-stats div {
	text-align: center;
}

.case-stats strong {
	display: block;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.case-stats span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* ========================================
   Blog
   ======================================== */

.blog {
	background: var(--bg-secondary);
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.blog-card {
	border-radius: var(--border-radius);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	overflow: hidden;
	transition: var(--transition);
}

.blog-card:hover {
	border-color: rgba(197, 164, 100, 0.3);
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}

.blog-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.blog-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(197, 164, 100, 0.15), rgba(160, 120, 80, 0.15));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: rgba(255, 255, 255, 0.15);
}

.blog-date {
	position: absolute;
	bottom: 16px;
	left: 16px;
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(12, 10, 9, 0.8);
	backdrop-filter: blur(10px);
	font-size: 0.75rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 6px;
}

.blog-content {
	padding: 24px;
}

.blog-tags {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.blog-tags span {
	padding: 4px 10px;
	border-radius: 100px;
	background: rgba(197, 164, 100, 0.1);
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--accent-2);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.blog-content h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}

.blog-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 16px;
}

.blog-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent-1);
	transition: var(--transition);
}

.blog-read-more:hover {
	color: var(--accent-2);
	gap: 12px;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
	position: relative;
	overflow: hidden;
}

.testimonials-carousel {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
	perspective: 1200px;
}

.testimonials-carousel-track {
	position: relative;
}

.testimonials-carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	will-change: transform, opacity;
}

.testimonials-carousel-slide.active {
	position: relative;
	transform: translateX(0) scale(1) rotateY(0);
	opacity: 1;
	z-index: 3;
	pointer-events: auto;
}

.testimonials-carousel-slide.peek-right {
	transform: translateX(65%) scale(0.88) rotateY(-6deg);
	opacity: 0.55;
	z-index: 2;
	pointer-events: auto;
	filter: brightness(0.6);
}

.testimonials-carousel-slide.peek-left {
	transform: translateX(-65%) scale(0.88) rotateY(6deg);
	opacity: 0.55;
	z-index: 2;
	pointer-events: auto;
	filter: brightness(0.6);
}

.testimonials-carousel-slide.hidden-right {
	transform: translateX(120%) scale(0.7);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

.testimonials-carousel-slide.hidden-left {
	transform: translateX(-120%) scale(0.7);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

.testimonials-carousel-slide.peek-right:hover,
.testimonials-carousel-slide.peek-left:hover {
	opacity: 0.75;
	filter: brightness(0.75);
	transform: translateX(60%) scale(0.9) rotateY(-4deg);
}

.testimonials-carousel-slide.peek-left:hover {
	transform: translateX(-60%) scale(0.9) rotateY(4deg);
}

/* Testimonial Card */

.testimonial-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 44px 36px 36px;
	border-radius: 20px;
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	transition: var(--transition);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.testimonials-carousel-slide.active .testimonial-card:hover {
	border-color: rgba(197, 164, 100, 0.3);
	box-shadow: var(--shadow-glow), 0 12px 48px rgba(0, 0, 0, 0.4);
}

.testimonial-quote-icon {
	position: absolute;
	top: 20px;
	left: 28px;
	font-size: 2rem;
	color: rgba(197, 164, 100, 0.1);
	line-height: 1;
}

.testimonial-stars {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 20px;
}

.testimonial-stars i {
	color: #f5a623;
	font-size: 0.95rem;
}

.testimonial-rating {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-left: 8px;
	background: rgba(245, 166, 35, 0.1);
	padding: 3px 10px;
	border-radius: 100px;
}

.testimonial-text {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.85;
	margin-bottom: 28px;
	font-style: italic;
	max-width: 480px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.testimonial-avatar span {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: #0c0a09;
}

.testimonial-author-info {
	text-align: left;
}

.testimonial-author-info h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 2px;
}

.testimonial-author-info span {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
}

.testimonial-project-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border-radius: 100px;
	background: rgba(197, 164, 100, 0.08);
	border: 1px solid rgba(197, 164, 100, 0.15);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-2);
}

.testimonial-project-tag i {
	font-size: 0.65rem;
}

/* Testimonials Carousel Nav */

.testimonials-carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 36px;
	position: relative;
	z-index: 10;
}

.testimonials-carousel-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	color: var(--text-secondary);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.testimonials-carousel-btn:hover {
	background: var(--gradient-primary);
	color: #0c0a09;
	border-color: transparent;
	transform: scale(1.1);
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.3);
}

.testimonials-carousel-dots {
	display: flex;
	gap: 10px;
}

.testimonials-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(197, 164, 100, 0.2);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}

.testimonials-carousel-dot.active {
	background: var(--accent-2);
	box-shadow: 0 0 12px rgba(197, 164, 100, 0.4);
	transform: scale(1.3);
}

.testimonials-carousel-dot:hover {
	background: rgba(197, 164, 100, 0.5);
}

.testimonials-carousel-counter {
	text-align: center;
	margin-top: 16px;
	position: relative;
	z-index: 10;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	color: var(--text-muted, #666);
}

.testimonials-carousel-counter .current {
	color: var(--accent-2);
	font-weight: 700;
	font-size: 1rem;
}

/* ========================================
   CTA
   ======================================== */

.cta {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(197, 164, 100, 0.12) 0%, transparent 70%);
}

.cta-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
}

.cta-content h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 16px;
	line-height: 1.3;
}

.cta-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ========================================
   Contact
   ======================================== */

.contact {
	background: var(--bg-secondary);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: start;
}

.contact-item {
	display: flex;
	gap: 16px;
	margin-bottom: 28px;
}

.contact-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 12px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-2);
}

.contact-item h3 {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.contact-item a:hover {
	color: var(--accent-2);
}

.contact-socials {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.social-link {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--text-secondary);
	transition: var(--transition);
}

.social-link:hover {
	background: var(--accent-1);
	color: #fff;
	border-color: var(--accent-1);
	transform: translateY(-2px);
}

/* Contact Form */

.contact-form {
	padding: 24px;
	border-radius: var(--border-radius);
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
}

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

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.95rem;
	transition: var(--transition);
	outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--accent-1);
	box-shadow: 0 0 0 3px rgba(197, 164, 100, 0.1);
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0a0c0'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.form-group select option {
	background: var(--bg-primary);
	color: var(--text-primary);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Contact Map */

.contact-map iframe {
	transition: filter 0.4s ease;
}

.contact-map iframe:hover {
	filter: grayscale(0) brightness(1) contrast(1) !important;
}

/* ========================================
   Cookie Banner
   ======================================== */

.cookie-banner {
	position: fixed;
	bottom: 90px;
	left: 12px;
	right: 12px;
	z-index: 10000;
	padding: 0;
	transform: translateY(30px);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
	pointer-events: none;
	max-width: calc(100% - 24px);
	border-radius: 16px;
}

.cookie-banner.visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.cookie-banner-inner {
	background: rgba(20, 18, 16, 0.97);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(197, 164, 100, 0.15);
	border-radius: 16px;
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(197, 164, 100, 0.06);
}

.cookie-icon {
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 8px;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: #0c0a09;
}

.cookie-text {
	flex: 1;
}

.cookie-header-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.cookie-header-row h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.cookie-text p {
	font-size: 0.72rem;
	color: var(--text-secondary);
	line-height: 1.45;
	margin: 2px 0 0;
}

.cookie-text a {
	color: var(--accent-2);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.cookie-text a:hover {
	color: var(--accent-1);
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
	width: 100%;
	flex-wrap: wrap;
	justify-content: stretch;
}

.cookie-btn {
	padding: 8px 10px;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 0.73rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	white-space: nowrap;
	flex: 1;
	text-align: center;
}

.cookie-accept {
	background: var(--gradient-primary);
	color: #0c0a09;
	box-shadow: 0 4px 16px rgba(197, 164, 100, 0.25);
}

.cookie-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(197, 164, 100, 0.35);
}

.cookie-decline {
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-secondary);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-decline:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
}

.cookie-customize {
	background: rgba(197, 164, 100, 0.12);
	color: var(--accent-2);
	border: 1px solid rgba(197, 164, 100, 0.2);
}

.cookie-customize:hover {
	background: rgba(197, 164, 100, 0.2);
	transform: translateY(-2px);
}

/* ========================================
   Cookie Modal
   ======================================== */

.cookie-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10001;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.cookie-modal-overlay.visible {
	opacity: 1;
	pointer-events: auto;
}

.cookie-modal {
	width: 100%;
	max-width: 600px;
	max-height: 90vh;
	background: rgba(20, 18, 16, 0.98);
	border: 1px solid rgba(197, 164, 100, 0.15);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 100px rgba(197, 164, 100, 0.05);
	transform: translateY(20px) scale(0.97);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal-overlay.visible .cookie-modal {
	transform: translateY(0) scale(1);
}

.cookie-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid rgba(197, 164, 100, 0.1);
}

.cookie-modal-title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cookie-modal-title i {
	font-size: 1.2rem;
	color: var(--accent-2);
}

.cookie-modal-title h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-primary);
}

.cookie-modal-close {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-secondary);
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.cookie-modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
}

.cookie-modal-body {
	padding: 20px;
	overflow-y: auto;
	flex: 1;
}

.cookie-modal-intro {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 16px;
}

.cookie-modal-intro a {
	color: var(--accent-2);
	text-decoration: none;
	font-weight: 600;
}

.cookie-modal-intro a:hover {
	text-decoration: underline;
}

.cookie-category {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 12px;
}

.cookie-category-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.cookie-category-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cookie-category-name {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
}

.cookie-always-active {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #4ade80;
	background: rgba(74, 222, 128, 0.1);
	padding: 3px 10px;
	border-radius: 100px;
}

.cookie-category-desc {
	font-size: 0.82rem;
	color: var(--text-muted, #888);
	line-height: 1.7;
	margin: 0;
}

.cookie-toggle {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	flex-shrink: 0;
}

.cookie-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-toggle-slider {
	position: absolute;
	cursor: pointer;
	inset: 0;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	transition: var(--transition);
}

.cookie-toggle-slider::before {
	content: '';
	position: absolute;
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background: var(--text-secondary);
	border-radius: 50%;
	transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
	background: var(--accent-2);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
	transform: translateX(20px);
	background: #0c0a09;
}

.cookie-modal-footer {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding: 16px 20px;
	border-top: 1px solid rgba(197, 164, 100, 0.1);
	flex-direction: column;
}

.cookie-modal-footer .cookie-btn {
	width: 100%;
	text-align: center;
}

/* ========================================
   Chat CTA Section
   ======================================== */

.chat-cta-section {
	padding: 60px 0 80px;
	position: relative;
	background: var(--bg-primary);
}

.chat-cta-box {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	gap: 20px;
	padding: 32px 24px;
	background: var(--bg-card);
	border: 1px solid var(--bg-glass-border);
	border-radius: var(--border-radius-lg);
	position: relative;
	overflow: hidden;
	transition: var(--transition);
}

.chat-cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gradient-primary);
	opacity: 0.6;
}

.chat-cta-box:hover {
	border-color: rgba(197, 164, 100, 0.25);
	box-shadow: var(--shadow-glow);
}

.chat-cta-icon {
	width: 64px;
	height: 64px;
	min-width: 64px;
	border-radius: 18px;
	background: rgba(197, 164, 100, 0.1);
	border: 1px solid rgba(197, 164, 100, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: var(--accent-2);
}

.chat-cta-text {
	flex: 1;
}

.chat-cta-text h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.chat-cta-text p {
	color: var(--text-secondary);
	font-size: 0.92rem;
	line-height: 1.6;
}

.chat-cta-btn {
	white-space: nowrap;
	flex-shrink: 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
	padding: 80px 0 0;
	padding-bottom: env(safe-area-inset-bottom, 0px);
	background: var(--bg-primary);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-bottom: 60px;
}

.footer-brand p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 16px 0;
	line-height: 1.7;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: var(--text-secondary);
	transition: var(--transition);
}

.footer-socials a:hover {
	background: var(--accent-1);
	color: #fff;
}

.footer-links h3,
.footer-newsletter h3 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 0.9rem;
	color: var(--text-secondary);
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--accent-2);
	padding-left: 4px;
}

.footer-newsletter p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 16px;
}

.newsletter-form {
	display: flex;
	gap: 8px;
}

.newsletter-form input {
	flex: 1;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.9rem;
	outline: none;
	transition: var(--transition);
}

.newsletter-form input:focus {
	border-color: var(--accent-1);
}

.newsletter-form input::placeholder {
	color: var(--text-muted);
}

.newsletter-form button {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 10px;
	background: var(--gradient-primary);
	border: none;
	color: #fff;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-form button:hover {
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.4);
	transform: translateY(-2px);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.85rem;
	color: var(--text-muted);
	gap: 12px;
	text-align: center;
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-links a {
	color: var(--text-muted);
	font-size: 0.85rem;
}

.footer-bottom-links a:hover {
	color: var(--text-secondary);
}

/* ========================================
   Animations (Scroll)
   ======================================== */

.animate-on-scroll {
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.animate-on-scroll[data-parallax="left"],
.animate-on-scroll[data-parallax="right"],
.animate-on-scroll[data-parallax="up"] {
	transform: translateY(15px) translateX(0);
}

.animate-on-scroll[data-parallax="scale"] {
	transform: scale(0.97) translateY(10px);
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* ========================================
   Section Background Image
   ======================================== */

.section-bg-image {
	position: absolute;
	inset: -30px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.06;
	z-index: 0;
	transition: opacity 1s ease;
	pointer-events: none;
	will-change: auto;
	transform: none !important;
}

.section:hover .section-bg-image {
	opacity: 0.1;
}

/* ========================================
   Scrollbar
   ======================================== */

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: rgba(197, 164, 100, 0.3);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(197, 164, 100, 0.5);
}

/* ========================================
   Toast
   ======================================== */

.toast {
	position: fixed;
	bottom: 32px;
	right: 32px;
	padding: 16px 24px;
	border-radius: 12px;
	background: rgba(22, 20, 17, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(212, 175, 55, 0.3);
	color: var(--accent-2);
	font-size: 0.9rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 9999;
	transform: translateY(100px);
	opacity: 0;
	transition: var(--transition);
}

.toast.show {
	transform: translateY(0);
	opacity: 1;
}

/* ========================================
   Scroll To Top Button
   ======================================== */

.scroll-top-btn {
	position: fixed;
	bottom: 28px;
	right: 120px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(22, 20, 17, 0.85);
	border: 1px solid rgba(197, 164, 100, 0.25);
	color: var(--gold-primary, #c5a464);
	font-size: 1rem;
	cursor: pointer;
	z-index: 998;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.25s ease, border-color 0.25s ease;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top-btn:hover {
	background: rgba(197, 164, 100, 0.2);
	border-color: rgba(197, 164, 100, 0.5);
	box-shadow: 0 4px 25px rgba(197, 164, 100, 0.25);
	transform: translateY(-2px);
}

/* ========================================
   Chatbot
   ======================================== */

.chatbot-toggle {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	z-index: 9998;
	box-shadow: 0 6px 30px rgba(197, 164, 100, 0.35);
	transition: var(--transition);
	animation: chatPulse 3s ease-in-out infinite;
}

.chatbot-toggle:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 40px rgba(197, 164, 100, 0.5);
}

@keyframes chatPulse {
	0%,
	100% {
		box-shadow: 0 6px 30px rgba(197, 164, 100, 0.35);
	}
	50% {
		box-shadow: 0 6px 40px rgba(197, 164, 100, 0.55);
	}
}

.chatbot-window {
	position: fixed;
	bottom: 100px;
	right: 28px;
	width: 380px;
	max-height: 520px;
	border-radius: var(--border-radius);
	background: var(--bg-secondary);
	border: 1px solid rgba(197, 164, 100, 0.15);
	box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: translateY(20px) scale(0.95);
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-window.open {
	transform: translateY(0) scale(1);
	opacity: 1;
	visibility: visible;
}

.chatbot-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: var(--gradient-primary);
	color: #0c0a09;
}

.chatbot-header-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.chatbot-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: #0c0a09;
}

.chatbot-header h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.chatbot-header span {
	font-size: 0.75rem;
	opacity: 0.7;
}

.chatbot-close {
	background: none;
	border: none;
	color: #0c0a09;
	font-size: 1.1rem;
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.chatbot-close:hover {
	background: rgba(0, 0, 0, 0.15);
}

.chatbot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-height: 350px;
	min-height: 300px;
}

.chat-msg {
	display: flex;
	max-width: 85%;
}

.chat-msg.bot {
	align-self: flex-start;
}

.chat-msg.user {
	align-self: flex-end;
}

.chat-bubble {
	padding: 12px 16px;
	border-radius: 16px;
	font-size: 0.88rem;
	line-height: 1.6;
}

.chat-msg.bot .chat-bubble {
	background: var(--bg-card);
	border: 1px solid rgba(197, 164, 100, 0.1);
	color: var(--text-primary);
	border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-bubble {
	background: var(--gradient-primary);
	color: #0c0a09;
	border-bottom-right-radius: 4px;
	font-weight: 500;
}

.chat-suggestion {
	display: block;
	width: 100%;
	padding: 8px 12px;
	margin-top: 6px;
	border-radius: 10px;
	border: 1px solid rgba(197, 164, 100, 0.2);
	background: rgba(197, 164, 100, 0.08);
	color: var(--accent-2);
	font-size: 0.8rem;
	font-family: inherit;
	cursor: pointer;
	text-align: left;
	transition: var(--transition);
}

.chat-suggestion:hover {
	background: rgba(197, 164, 100, 0.18);
	border-color: var(--accent-1);
}

.chatbot-input {
	display: flex;
	gap: 8px;
	padding: 12px 16px;
	border-top: 1px solid rgba(197, 164, 100, 0.1);
	background: var(--bg-primary);
}

.chatbot-input input {
	flex: 1;
	padding: 10px 16px;
	border-radius: 12px;
	border: 1px solid rgba(197, 164, 100, 0.12);
	background: var(--bg-card);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.9rem;
	outline: none;
	transition: var(--transition);
}

.chatbot-input input:focus {
	border-color: var(--accent-1);
}

.chatbot-input input::placeholder {
	color: var(--text-muted);
}

.chatbot-input button {
	width: 42px;
	height: 42px;
	min-width: 42px;
	border-radius: 12px;
	background: var(--gradient-primary);
	border: none;
	color: #0c0a09;
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.chatbot-input button:hover {
	box-shadow: 0 4px 20px rgba(197, 164, 100, 0.4);
	transform: translateY(-1px);
}

/* Chat Typing */

.chat-typing {
	display: flex;
	gap: 4px;
	padding: 12px 16px;
	align-items: center;
}

.chat-typing span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-1);
	opacity: 0.4;
	animation: typingDot 1.4s infinite;
}

.chat-typing span:nth-child(2) {
	animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes typingDot {
	0%,
	100% {
		opacity: 0.3;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(-4px);
	}
}

/* ========================================
   Cursor Glow (hidden on mobile)
   ======================================== */

.cursor-glow {
	display: none;
}

/* ========================================
   iOS Safe Area
   ======================================== */

@supports (-webkit-touch-callout: none) {
	body {
		min-height: 100dvh;
	}
}

/* ========================================
   Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
	.animate-on-scroll {
		transition: opacity 0.3s ease;
		transform: none !important;
	}

	.animate-on-scroll.visible {
		transform: none !important;
	}
}

/* ========================================
   RESPONSIVE: >= 768px (desktop)
   ======================================== */

@media (min-width: 768px) {
	.section {
		padding: 120px 0;
	}

	/* Navbar */
	.nav-links {
		position: static;
		width: auto;
		max-width: none;
		height: auto;
		background: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		padding: 0;
		gap: 8px;
		border-left: none;
		box-shadow: none;
	}

	.nav-toggle {
		display: none;
	}

	.nav-links li {
		border-bottom: none;
	}

	.nav-links li:last-child {
		margin-top: 0;
	}

	.nav-link {
		font-size: 0.9rem;
		padding: 8px 16px;
		width: auto;
		display: inline-block;
		text-align: center;
		letter-spacing: normal;
	}

	.nav-link.nav-cta {
		text-align: center;
		padding: 8px 24px;
		border-radius: var(--border-radius-sm);
	}

	/* Hero */
	.hero {
		padding-bottom: 80px;
	}

	.hero-portrait {
		display: block;
		width: 38%;
	}

	.hero-portrait img {
		opacity: 0.18;
	}

	.hero-content {
		padding-top: 0;
	}

	.hero-badge {
		margin-top: 0;
		margin-bottom: 28px;
		font-size: 0.85rem;
		padding: 8px 20px;
	}

	.hero-title {
		font-size: clamp(2.5rem, 6vw, 4.5rem);
		margin-bottom: 24px;
	}

	.hero-subtitle {
		font-size: 0.85rem;
		letter-spacing: 3px;
		margin-bottom: 16px;
		gap: 8px;
	}

	.hero-desc {
		font-size: 1.15rem;
		margin-bottom: 40px;
		line-height: 1.8;
	}

	.hero-buttons {
		margin-bottom: 60px;
		gap: 16px;
	}

	.hero-stats {
		flex-direction: row;
		gap: 32px;
	}

	.stat-number {
		font-size: 2.2rem;
	}

	.stat-plus {
		font-size: 1.3rem;
	}

	.stat-label {
		font-size: 0.82rem;
	}

	.stat-divider {
		height: 36px;
	}

	.hero-buttons {
		flex-direction: row;
		justify-content: center;
		gap: 16px;
	}

	.hero-buttons .btn {
		padding: 14px 32px;
		font-size: 0.95rem;
		gap: 10px;
	}

	/* About */
	.about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 80px;
	}

	.about-visual {
		order: 0;
	}

	.about-card-stack {
		width: 380px;
		height: 380px;
		margin-left: 50px;
		margin-bottom: 0;
		margin-right: 0;
	}

	.orbit-ring {
		width: 300px;
		height: 300px;
		margin: -150px 0 0 -150px;
	}

	.orbit-ring-2 {
		width: 160px;
		height: 160px;
		margin: -80px 0 0 -80px;
	}

	.orbit-center {
		width: 70px;
		height: 70px;
	}

	.orbit-center i {
		font-size: 1.4rem;
	}

	.orbit-center span {
		font-size: 0.75rem;
	}

	.orbit-dot {
		transform: translateX(150px);
	}

	.orbit-label {
		transform: translateX(150px) translateX(16px);
		padding: 8px 14px;
		font-size: 0.8rem;
	}

	.oi-1 .orbit-label {
		animation: counterSpin 40s linear infinite;
	}

	.oi-2 .orbit-label {
		animation: counterSpin 40s linear infinite;
		animation-delay: -10s;
	}

	.oi-3 .orbit-label {
		animation: counterSpin 40s linear infinite;
		animation-delay: -20s;
	}

	.oi-4 .orbit-label {
		animation: counterSpin 40s linear infinite;
		animation-delay: -30s;
	}

	@keyframes counterSpin {
		from {
			transform: translateX(150px) translateX(16px) rotate(0deg);
		}
		to {
			transform: translateX(150px) translateX(16px) rotate(-360deg);
		}
	}

	/* Vision */
	.vision-pillars {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Grids: services, cases, blog */
	.services-grid,
	.cases-grid,
	.blog-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.services-grid {
		row-gap: 70px;
	}

	/* Why grid */
	.why-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* For whom */
	.for-whom {
		padding: 60px;
	}

	.for-whom-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Team */
	.team-hero-image {
		margin-bottom: 48px;
	}

	.team-hero-overlay span {
		font-size: 1.1rem;
	}

	.team-carousel {
		max-width: 700px;
	}

	.team-card-single {
		padding: 48px 40px;
	}

	.team-photo-large img {
		width: 180px;
		height: 210px;
	}

	.team-card-single .team-info h3 {
		font-size: 1.5rem;
	}

	.team-card-single .team-info p {
		font-size: 0.86rem;
	}

	/* Cases card */
	.case-card-single {
		padding: 48px 40px;
	}

	.case-photo-large img {
		height: 210px;
	}

	.case-card-single .case-info h3 {
		font-size: 1.5rem;
	}

	.case-card-single .case-info p {
		font-size: 0.92rem;
	}

	/* Contact */
	.contact-grid {
		grid-template-columns: 1fr 1.5fr;
	}

	.contact-form {
		padding: 40px;
	}

	.form-row {
		grid-template-columns: 1fr 1fr;
	}

	/* Footer */
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: row;
		gap: 0;
		text-align: left;
	}

	/* CTA */
	.cta-buttons {
		flex-direction: row;
	}

	/* Chat CTA */
	.chat-cta-box {
		flex-direction: row;
		text-align: left;
		padding: 40px 48px;
		gap: 32px;
	}

	/* Cookie banner */
	.cookie-banner {
		bottom: 60px;
		left: 24px;
		right: auto;
		max-width: 420px;
		border-radius: 20px;
	}

	.cookie-banner-inner {
		padding: 24px 26px;
		gap: 16px;
		border-radius: 20px;
	}

	.cookie-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
		border-radius: 12px;
		font-size: 1.1rem;
	}

	.cookie-header-row h3 {
		font-size: 0.95rem;
	}

	.cookie-text p {
		font-size: 0.8rem;
		line-height: 1.55;
		margin-top: 0;
	}

	.cookie-actions {
		gap: 8px;
	}

	.cookie-btn {
		padding: 9px 18px;
		font-size: 0.8rem;
		border-radius: 10px;
	}

	/* Cookie modal */
	.cookie-modal {
		max-height: 85vh;
	}

	.cookie-modal-header {
		padding: 24px 28px 20px;
	}

	.cookie-modal-title h3 {
		font-size: 1.1rem;
	}

	.cookie-modal-body {
		padding: 24px 28px;
	}

	.cookie-modal-footer {
		padding: 20px 28px;
		flex-direction: row;
	}

	.cookie-modal-footer .cookie-btn {
		width: auto;
	}

	/* Chatbot */
	.chatbot-window {
		right: 28px;
		left: auto;
		width: 380px;
		bottom: 100px;
		max-height: 520px;
	}

	.chatbot-toggle {
		bottom: 28px;
		right: 28px;
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		box-shadow: 0 6px 30px rgba(197, 164, 100, 0.35);
		animation: chatPulse 3s ease-in-out infinite;
		transition: var(--transition);
	}

	.scroll-top-btn {
		bottom: 28px;
		right: 120px;
		width: 44px;
		height: 44px;
		font-size: 1rem;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
		transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.25s ease, border-color 0.25s ease;
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}

	/* Animations */
	.animate-on-scroll {
		transform: translateY(50px);
		transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.animate-on-scroll[data-parallax="left"] {
		transform: translateX(-70px) translateY(15px);
	}

	.animate-on-scroll[data-parallax="right"] {
		transform: translateX(70px) translateY(15px);
	}

	.animate-on-scroll[data-parallax="up"] {
		transform: translateY(50px);
	}

	.animate-on-scroll[data-parallax="scale"] {
		transform: scale(0.88) translateY(25px);
	}

	/* Section bg image */
	.section-bg-image {
		will-change: transform;
	}
}
