@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* CSS Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Dark Theme - Primary Background */
	--bg-primary: #0a0a0f;
	--bg-secondary: #12121a;
	--bg-tertiary: #1a1a25;
	--bg-hover: #22222f;

	/* Glass Effects */
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-bg-hover: rgba(255, 255, 255, 0.06);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-border-hover: rgba(255, 255, 255, 0.15);

	/* Text Colors */
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.7);
	--text-muted: rgba(255, 255, 255, 0.5);
	--text-inverse: #0a0a0f;

	/* Brand Colors - Vibrant Gradient */
	--brand-primary: #fbbf24;
	--brand-primary-hover: #f59e0b;
	--brand-secondary: #fcd34d;
	--brand-accent: #fde047;

	/* Neon Accent Colors */
	--neon-purple: #a855f7;
	--neon-blue: #3b82f6;
	--neon-cyan: #06b6d4;
	--neon-pink: #ec4899;
	--neon-green: #10b981;

	/* Accent Colors */
	--accent-success: #10b981;
	--accent-warning: #f59e0b;
	--accent-error: #ef4444;
	--accent-info: #3b82f6;

	/* Border Colors */
	--border-light: rgba(255, 255, 255, 0.1);
	--border-medium: rgba(255, 255, 255, 0.15);
	--border-dark: rgba(255, 255, 255, 0.05);

	/* Shadow Colors */
	--shadow-sm: rgba(251, 191, 36, 0.1);
	--shadow-md: rgba(251, 191, 36, 0.15);
	--shadow-lg: rgba(251, 191, 36, 0.2);
	--shadow-xl: rgba(251, 191, 36, 0.25);
	--shadow-glow: 0 0 60px rgba(251, 191, 36, 0.3);

	/* Gradient Stops */
	--gradient-start: #fbbf24;
	--gradient-end: #f59e0b;
	--gradient-purple: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
	--gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
	--gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

	/* Preloader */
	--preloader-bg: #0a0a0f;
}

.new-footer {
	min-height: auto;
	background: linear-gradient(180deg, var(--bg-primary) 0%, #05050a 100%);
	color: var(--text-primary);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 3rem 2rem;
	position: relative;
	overflow: visible;
}

.new-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(
			ellipse 80% 50% at 50% 20%,
			rgba(251, 191, 36, 0.04) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse 60% 40% at 20% 80%,
			rgba(168, 85, 247, 0.02) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse 60% 40% at 80% 80%,
			rgba(59, 130, 246, 0.02) 0%,
			transparent 60%
		);
	pointer-events: none;
	opacity: 0.12;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family:
		"Poppins",
		"Inter",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		"Roboto",
		"Oxygen",
		"Ubuntu",
		"Cantarell",
		"Helvetica Neue",
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

body.preloading {
	overflow: hidden;
}

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

.preloader-video {
	width: min(60vw, 520px);
	max-width: 80vw;
	max-height: 60vh;
	height: auto;
	object-fit: contain;
}

.preloader--hide {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
}

body.theme-transition,
body.theme-transition * {
	transition:
		background-color 0.35s ease,
		color 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		fill 0.35s ease,
		stroke 0.35s ease;
}

/* Animated Background Mesh */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(
			ellipse 80% 80% at 50% -20%,
			rgba(168, 85, 247, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse 60% 60% at 80% 50%,
			rgba(251, 191, 36, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse 60% 60% at 20% 80%,
			rgba(59, 130, 246, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: -1;
	animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

/* Custom Scrollbar - Glass Effect */
::-webkit-scrollbar {
	width: 10px;
}

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

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--brand-primary), var(--neon-purple));
	border-radius: 5px;
	border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--brand-secondary), var(--neon-pink));
}

::selection {
	background: var(--brand-primary);
	color: var(--text-inverse);
}

/* Utility Classes */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Barba page transitions */
.page-transition {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--neon-purple) 0%,
		var(--neon-blue) 50%,
		var(--brand-primary) 100%
	);
	transform: scaleX(0);
	transform-origin: left;
	z-index: 9999;
	pointer-events: none;
}

[data-barba="container"] {
	min-height: 100vh;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--brand-primary) 0%,
		var(--neon-purple) 50%,
		var(--brand-secondary) 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
	0% {
		background-position: 0% center;
	}

	100% {
		background-position: 200% center;
	}
}

/* ==========================================
   GLASSMORPHISM BASE CLASSES
   ========================================== */
.glass {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
}

.glass-card {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(255, 255, 255, 0.02) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
	background: var(--glass-bg-hover);
	border-color: var(--glass-border-hover);
	transform: translateY(-5px);
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	25% {
		transform: translateY(-15px) rotate(1deg);
	}

	75% {
		transform: translateY(-8px) rotate(-1deg);
	}
}

@keyframes float-delayed {
	0%,
	100% {
		transform: translateY(0px);
	}

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

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

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

@keyframes spin-slow {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.1);
	}
}

@keyframes glow-pulse {
	0%,
	100% {
		box-shadow:
			0 0 20px rgba(251, 191, 36, 0.3),
			0 0 40px rgba(251, 191, 36, 0.1);
	}

	50% {
		box-shadow:
			0 0 40px rgba(251, 191, 36, 0.5),
			0 0 80px rgba(251, 191, 36, 0.2);
	}
}

@keyframes border-flow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes morph {
	0%,
	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}

	25% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}

	50% {
		border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
	}

	75% {
		border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
	}
}

@keyframes particle-float {
	0%,
	100% {
		transform: translateY(0) translateX(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh) translateX(20px);
		opacity: 0;
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

/* Tippy.js Custom Animations */
.tippy-box[data-animation="fade-scale"][data-state="hidden"] {
	opacity: 0;
	transform: scale(0.95) translateY(8px);
}

.tippy-box[data-animation="fade-scale"][data-state="visible"] {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.tippy-box[data-theme~="light-border"] {
	border-radius: 16px;
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	color: var(--text-primary);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tippy-arrow {
	color: var(--brand-primary);
}

/* ==========================================
   HEADER STYLES - GLASSMORPHISM
   ========================================== */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 1rem 0;
}

header.scrolled {
	background: rgba(10, 10, 15, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--glass-border);
	padding: 0.5rem 0;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

@media (max-width: 768px) {
	.header-content {
		height: 60px;
	}

	.logo img {
		height: 36px;
		width: 36px;
	}

	.logo span {
		font-size: 1.1rem;
	}
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.logo::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-gold);
	transition: width 0.3s ease;
}

.logo:hover::after {
	width: 100%;
}

.logo:hover {
	transform: scale(1.02);
}

.logo img {
	height: 44px;
	width: 44px;
	border-radius: 12px;
	object-fit: cover;
	border: 2px solid var(--glass-border);
	box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
	transition: all 0.3s ease;
}

.logo:hover img {
	border-color: var(--brand-primary);
	box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.logo span {
	color: var(--text-primary);
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: -0.5px;
}

nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

nav a:not(.btn)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--brand-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

nav a:not(.btn):hover {
	color: var(--text-primary);
}

nav a:not(.btn):hover::after {
	width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
	background: none;
	border: none;
	color: var(--text-primary);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
	width: 40px;
	height: 40px;
}

.theme-toggle:hover {
	background: var(--glass-bg-hover);
}

.theme-toggle svg {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	position: absolute;
	width: 20px;
	height: 20px;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.theme-toggle .sun-icon {
	opacity: 1;
	transform: rotate(0deg);
}

.theme-toggle .moon-icon {
	opacity: 0;
	transform: rotate(-180deg);
}

.theme-toggle.dark .sun-icon {
	opacity: 0;
	transform: rotate(180deg);
}

.theme-toggle.dark .moon-icon {
	opacity: 1;
	transform: rotate(0deg);
}

/* Buttons - Glassmorphism Style */
.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	color: var(--text-inverse);
	box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow:
		0 10px 40px rgba(251, 191, 36, 0.4),
		0 0 0 1px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
	background: var(--glass-bg);
	color: var(--text-primary);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: var(--glass-bg-hover);
	border-color: var(--brand-primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Navigation */
.mobile-menu-btn {
	display: none;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--text-primary);
	padding: 0.75rem;
	cursor: pointer;
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.mobile-nav {
	display: none;
}

@media (max-width: 768px) {
	nav {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mobile-nav {
		display: none;
		position: absolute;
		top: 70px;
		left: 1rem;
		right: 1rem;
		background: rgba(10, 10, 15, 0.95);
		backdrop-filter: blur(20px);
		border: 1px solid var(--glass-border);
		border-radius: 20px;
		padding: 1.5rem;
		z-index: 999;
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	}

	.mobile-nav.open {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		animation: fade-in-up 0.3s ease forwards;
	}

	.mobile-nav a {
		color: var(--text-secondary);
		text-decoration: none;
		font-weight: 500;
		padding: 0.75rem 1rem;
		border-radius: 12px;
		transition: all 0.3s ease;
	}

	.mobile-nav a:hover {
		background: var(--glass-bg);
		color: var(--text-primary);
	}

	.mobile-nav .btn {
		width: 100%;
		justify-content: center;
		margin-top: 0.5rem;
	}
}

/* ==========================================
   HERO SECTION - IMMERSIVE GLASSMORPHISM
   ========================================== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 8rem 0 4rem;
}

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

/* Animated Orbs */
.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: morph 20s ease-in-out infinite;
}

.orb-1 {
	top: 10%;
	left: 15%;
	width: 500px;
	height: 500px;
	background: linear-gradient(
		135deg,
		rgba(168, 85, 247, 0.4),
		rgba(251, 191, 36, 0.2)
	);
	animation-delay: 0s;
}

.orb-2 {
	bottom: 10%;
	right: 15%;
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		rgba(251, 191, 36, 0.3),
		rgba(59, 130, 246, 0.2)
	);
	animation-delay: -5s;
}

.orb-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(
		circle,
		rgba(251, 191, 36, 0.1) 0%,
		transparent 70%
	);
	filter: blur(100px);
	animation: pulse 8s ease-in-out infinite;
}

@media (max-width: 768px) {
	.orb-1 {
		width: 250px;
		height: 250px;
		left: 5%;
	}

	.orb-2 {
		width: 200px;
		height: 200px;
		right: 5%;
	}

	.orb-3 {
		width: 350px;
		height: 350px;
	}
}

.grid-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	background-image:
		linear-gradient(var(--brand-primary) 1px, transparent 1px),
		linear-gradient(90deg, var(--brand-primary) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

/* Hero Grid Layout */
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 10;
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: left;
	max-width: 600px;
}

/* Hero Badge - Glass */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	padding: 0.6rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	animation: fade-in-up 0.8s ease forwards;
}

.badge-dot {
	width: 10px;
	height: 10px;
	background: var(--brand-primary);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
	box-shadow: 0 0 10px var(--brand-primary);
}

h1 {
	font-size: clamp(1.75rem, 3.5vw, 2.8rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	animation: fade-in-up 0.8s ease forwards;
	animation-delay: 0.1s;
	opacity: 0;
	letter-spacing: -2px;
}

.subheadline {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: var(--text-secondary);
	max-width: 500px;
	margin: 0 0 2.5rem;
	line-height: 1.8;
	animation: fade-in-up 0.8s ease forwards;
	animation-delay: 0.2s;
	opacity: 0;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	margin-bottom: 3rem;
	animation: fade-in-up 0.8s ease forwards;
	animation-delay: 0.3s;
	opacity: 0;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1rem;
	border-radius: 16px;
}

.btn-secondary .fa {
	font-size: 1.2rem;
}

/* Hero Stats - Glass Cards */
.hero-stats {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--glass-border);
	animation: fade-in-up 0.8s ease forwards;
	animation-delay: 0.4s;
	opacity: 0;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.stat-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-inverse);
	font-size: 1.1rem;
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
	transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.stat-label {
	font-size: 0.8rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: var(--glass-border);
}

/* Hero Visual Section */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fade-in 1s ease forwards;
	animation-delay: 0.5s;
	opacity: 0;
}

.visual-container {
	position: relative;
	width: 100%;
	max-width: 550px;
	height: 500px;
}

.floating-cards-wrapper {
	display: contents;
}

/* Main Image Card - Glass Effect */
.main-image-card {
	position: absolute;
	top: 25%;
	left: 25%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	border-radius: 30px;
	overflow: hidden;
	z-index: 5;
	animation: float 6s ease-in-out infinite;
}

.main-image-card::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 32px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--neon-purple),
		var(--neon-blue)
	);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: border-flow 4s linear infinite;
	background-size: 200% 200%;
}

.main-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Floating Cards - Glassmorphism */
.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border: 1px solid var(--glass-border);
	z-index: 10;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.floating-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.floating-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: var(--brand-primary);
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(251, 191, 36, 0.2);
}

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-inverse);
	font-size: 1.2rem;
	box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.card-content {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.card-title {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text-primary);
}

.card-desc {
	font-size: 0.75rem;
	color: var(--text-secondary);
}

/* Card Positions & Animations - Hexagon Layout */
.card-1 {
	top: 5%;
	left: 0;
	animation: float 6s ease-in-out infinite;
}

.card-2 {
	bottom: 15%;
	left: -5%;
	animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
	top: 20%;
	right: -5%;
	animation: float 6s ease-in-out infinite 2s;
}

.card-4 {
	top: 50%;
	left: -10%;
	transform: translateY(-50%);
	animation: float 6s ease-in-out infinite 3s;
}

.card-5 {
	bottom: 0%;
	left: 0%;
	animation: float 6s ease-in-out infinite 1.5s;
}

.card-6 {
	bottom: 5%;
	right: -5%;
	animation: float 6s ease-in-out infinite 2.5s;
}

/* Decorative Elements */
.deco-circle {
	position: absolute;
	border-radius: 50%;
	border: 1px dashed var(--glass-border);
	z-index: 1;
}

.deco-1 {
	width: 400px;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: spin-slow 40s linear infinite;
}

.deco-2 {
	width: 500px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.5;
	animation: spin-slow 60s linear infinite reverse;
}

.deco-dots {
	position: absolute;
	bottom: 5%;
	right: 10%;
	width: 80px;
	height: 80px;
	background-image: radial-gradient(var(--brand-primary) 2px, transparent 2px);
	background-size: 12px 12px;
	opacity: 0.3;
	z-index: 1;
}

/* Mobile Responsive - Hero */
@media (max-width: 768px) {
	.hero {
		min-height: 100vh;
		padding: 6rem 0 3rem;
	}

	.hero-grid {
		display: block;
	}

	.hero-visual {
		display: none;
	}

	.hero-stats {
		display: none;
	}

	.hero-content {
		text-align: center;
		max-width: 100%;
		padding: 2rem 0;
	}

	.hero .hero-badge {
		margin: 0 auto 2rem;
	}

	.hero h1 {
		font-size: 2.25rem;
		text-align: center;
		margin-bottom: 1.5rem;
		line-height: 1.2;
		opacity: 1;
	}

	.hero .subheadline {
		font-size: 1rem;
		text-align: center;
		margin: 0 auto 2.5rem;
		max-width: 100%;
		opacity: 1;
	}

	.hero .hero-cta {
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 0;
		opacity: 1;
	}

	.hero .hero-cta .btn {
		width: 100%;
		justify-content: center;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
	.hero-grid {
		gap: 2rem;
	}

	.visual-container {
		height: 420px;
	}

	.main-image-card {
		width: 240px;
		height: 240px;
	}

	.floating-card {
		padding: 0.875rem 1rem;
	}

	h1 {
		font-size: clamp(2rem, 4vw, 2.75rem);
	}
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section {
	padding: 8rem 0;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-tag {
	color: var(--brand-primary);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 1rem;
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(251, 191, 36, 0.1);
	border: 1px solid rgba(251, 191, 36, 0.2);
	border-radius: 50px;
}

h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.8rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
}

.section-description {
	color: var(--text-secondary);
	font-size: 1.125rem;
	max-width: 48rem;
	margin: 0 auto;
	line-height: 1.8;
}

@media (max-width: 768px) {
	section {
		padding: 4rem 0;
	}

	.section-header {
		margin-bottom: 2.5rem;
	}

	h2 {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}

	.container {
		padding: 0 1rem;
	}
}

/* ==========================================
   PROBLEM SOLUTION SECTION
   ========================================== */
.problem-solution-section {
	padding: 8rem 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		180deg,
		var(--bg-primary) 0%,
		var(--bg-secondary) 100%
	);
}

@media (max-width: 768px) {
	.problem-solution-section {
		padding: 4rem 0;
	}
}

.ps-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(
			circle 800px at 20% 50%,
			rgba(239, 68, 68, 0.08) 0%,
			transparent 70%
		),
		radial-gradient(
			circle 600px at 80% 50%,
			rgba(251, 191, 36, 0.08) 0%,
			transparent 70%
		);
	pointer-events: none;
}

.ps-content-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 1024px) {
	.ps-content-wrapper {
		grid-template-columns: 1fr auto 1fr;
		gap: 2rem;
		align-items: stretch;
	}
}

.ps-left-side,
.ps-right-side {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.ps-text-block {
	text-align: center;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 2.5rem;
	transition: all 0.4s ease;
}

.ps-text-block:hover {
	border-color: var(--glass-border-hover);
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
	.ps-text-block {
		text-align: left;
	}

	.ps-right-side .ps-text-block {
		text-align: right;
	}
}

.ps-text-block h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.ps-text-block p {
	color: var(--text-secondary);
	line-height: 1.8;
	font-size: 0.95rem;
	margin-bottom: 2rem;
}

@media (max-width: 768px) {
	.ps-content-wrapper {
		gap: 2rem;
	}

	.ps-text-block {
		padding: 1.5rem;
	}

	.ps-text-block h3 {
		font-size: 1.5rem;
	}

	.ps-text-block p {
		font-size: 0.9rem;
	}
}

/* List Items */
.ps-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.ps-list-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	transition: all 0.3s ease;
	padding: 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
}

.ps-list-item:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(-5px);
}

@media (min-width: 1024px) {
	.ps-right-side .ps-list-item {
		flex-direction: row-reverse;
	}

	.ps-right-side .ps-list-item:hover {
		transform: translateX(5px);
	}
}

.ps-number {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ef4444, #f87171);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	min-width: 40px;
}

.ps-right-side .ps-number,
.solution-number {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ps-text {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Connector */
.ps-connector {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	position: relative;
}

@media (min-width: 1024px) {
	.ps-connector {
		display: flex;
	}
}

.ps-line-vertical {
	width: 3px;
	min-height: 100px;
	flex: 1;
	background: linear-gradient(
		180deg,
		rgba(239, 68, 68, 0.8),
		var(--brand-secondary)
	);
	border-radius: 2px;
}

.ps-connector-box {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 2px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	z-index: 10;
	animation: float 4s ease-in-out infinite;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ps-connector-icon {
	width: 28px;
	height: 28px;
}

/* ==========================================
   SERVICES SECTION - GLASSMORPHISM CARDS
   ========================================== */
.iq-features {
	padding: 8rem 0;
	background: var(--bg-primary);
	overflow: visible;
	position: relative;
}

.iq-features::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		ellipse 80% 50% at 50% 50%,
		rgba(251, 191, 36, 0.05) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.services-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	margin-top: 4rem;
	flex-wrap: wrap;
}

.services-circle {
	flex: 0 0 auto;
	width: 500px;
	height: 500px;
	position: relative;
}

.services-circle-left {
	display: flex;
	align-items: center;
	justify-content: center;
}

.holderCircle {
	width: 500px;
	height: 500px;
	border-radius: 100%;
	margin: 30px auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dotCircle {
	width: 100%;
	height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	z-index: 20;
}

.dotCircle .itemDot {
	display: block;
	width: 80px;
	height: 80px;
	position: absolute;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	color: var(--brand-primary);
	border-radius: 20px;
	text-align: center;
	line-height: 80px;
	font-size: 32px;
	z-index: 3;
	cursor: pointer;
	border: 1px solid var(--glass-border);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dotCircle .itemDot .forActive {
	width: 56px;
	height: 56px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.dotCircle .itemDot .forActive::after {
	content: "";
	width: 5px;
	height: 5px;
	border: 3px solid var(--brand-primary);
	bottom: -31px;
	left: -14px;
	filter: blur(1px);
	position: absolute;
	border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
	content: "";
	width: 6px;
	height: 6px;
	filter: blur(5px);
	top: -15px;
	position: absolute;
	transform: rotate(-45deg);
	border: 6px solid var(--brand-primary-hover);
	right: -39px;
}

.dotCircle .itemDot.active .forActive {
	display: block;
}

.round {
	position: absolute;
	width: 420px;
	height: 420px;
	border: 1px dashed var(--glass-border);
	border-radius: 100%;
	top: 40px;
	left: 40px;
	animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
	color: var(--text-inverse);
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	border: 2px solid var(--brand-primary);
	box-shadow:
		0 15px 40px rgba(251, 191, 36, 0.3),
		0 0 30px rgba(251, 191, 36, 0.2);
	transform: scale(1.1);
}

.contentCircle {
	width: 220px;
	height: 220px;
	border-radius: 100%;
	color: var(--text-primary);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contentCircle .CirItem {
	color: var(--text-primary);
	position: absolute;
	text-align: center;
	opacity: 0;
	transform: scale(0);
	transition: 0.5s;
	font-size: 15px;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.CirItem.active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
}

.contentCircle .CirItem i {
	display: none;
}

.title-box .title {
	font-weight: 700;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
	line-height: 1.2;
}

.title-box span {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
}

.title-box p {
	font-size: 0.9rem;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--text-secondary);
}

/* Services Details Panel - Glass */
.services-details-panel {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
	position: relative;
	height: 500px;
	overflow: hidden;
}

.details-content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 2.5rem;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	display: flex;
	flex-direction: column;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
}

.details-content.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.details-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	background: linear-gradient(
		135deg,
		var(--text-primary),
		var(--brand-primary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.details-intro {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.details-features {
	flex: 1;
	margin-bottom: 1.5rem;
	overflow-y: auto;
}

.details-features h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.details-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.details-features li {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
}

.details-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--brand-primary);
	font-weight: bold;
}

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

/* Mobile Services Grid */
.mobile-services-grid {
	display: none;
}

@media (max-width: 768px) {
	.iq-features {
		padding: 4rem 0;
	}

	.mobile-services-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		margin-top: 2rem;
	}

	.mobile-service-card {
		background: var(--glass-bg);
		backdrop-filter: blur(20px);
		border: 1px solid var(--glass-border);
		border-radius: 20px;
		padding: 1.5rem;
		text-align: center;
		cursor: pointer;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.mobile-service-card:hover,
	.mobile-service-card.active {
		background: linear-gradient(
			135deg,
			var(--brand-primary),
			var(--brand-secondary)
		);
		border-color: var(--brand-primary);
		transform: translateY(-5px);
		box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
	}

	.mobile-service-card.active .mobile-service-icon,
	.mobile-service-card.active .mobile-service-title {
		color: var(--text-inverse);
	}

	.mobile-service-icon {
		font-size: 2rem;
		color: var(--brand-primary);
		margin-bottom: 0.75rem;
		transition: color 0.3s ease;
	}

	.mobile-service-title {
		font-size: 0.85rem;
		font-weight: 600;
		color: var(--text-primary);
		line-height: 1.3;
	}

	.services-circle {
		display: none !important;
	}

	.services-details-panel {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: auto;
		margin-top: 1.5rem;
	}

	.details-content {
		position: relative;
		transform: none;
		opacity: 0;
		pointer-events: none;
		padding: 1.5rem;
		display: none;
	}

	.details-content.active {
		display: flex;
		opacity: 1;
		pointer-events: auto;
	}

	.details-content h2 {
		font-size: 1.5rem;
	}

	.details-intro {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 1024px) {
	.services-container {
		flex-direction: column;
		gap: 2rem;
	}

	.services-circle {
		width: 100%;
		max-width: 400px;
		height: 400px;
		margin: 0 auto;
	}

	.services-details-panel {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 350px;
	}
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-us {
	padding: 8rem 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		180deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 100%
	);
}

.why-choose-us::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(
		circle,
		rgba(251, 191, 36, 0.05) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.why-choose-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
}

.why-choose-content {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-choose-circle-bg {
	position: absolute;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	box-shadow:
		0 25px 80px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-choose-text-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.8;
	max-width: 240px;
	z-index: 3;
}

.why-choose-text-content .text-block {
	margin-bottom: 15px;
}

.why-choose-text-content p {
	margin: 0;
}

.why-choose-main-circle {
	position: absolute;
	left: -80px;
	top: 50%;
	transform: translateY(-50%);
	width: 220px;
	height: 220px;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-inverse);
	z-index: 4;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	box-shadow:
		0 20px 60px rgba(251, 191, 36, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1);
	animation: glow-pulse 4s ease-in-out infinite;
}

.why-choose-main-circle:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow:
		0 30px 80px rgba(251, 191, 36, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.2);
}

.why-choose-main-circle h2 {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 0;
	letter-spacing: 2px;
}

.feature-icon {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: black;
	font-size: 48px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
}

.feature-icon:hover {
	transform: scale(1.15);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.feature-icon-1 {
	top: 20px;
	right: 80px;
	background: linear-gradient(
		135deg,
		var(--brand-accent) 0%,
		var(--brand-primary) 100%
	);
	box-shadow:
		-8px -8px 20px rgba(0, 0, 0, 0.2),
		8px 8px 20px rgba(0, 0, 0, 0.3),
		inset -3px -3px 8px rgba(0, 0, 0, 0.15) !important;
	color: black !important;
}

.feature-icon-2 {
	top: 120px;
	right: 0;
	background: linear-gradient(
		135deg,
		var(--brand-secondary) 0%,
		var(--brand-accent) 100%
	);
	box-shadow:
		-6px -6px 16px rgba(0, 0, 0, 0.2),
		6px 6px 16px rgba(0, 0, 0, 0.25),
		inset -2px -2px 6px rgba(0, 0, 0, 0.12) !important;
	color: black !important;
}

.feature-icon-3 {
	bottom: 120px;
	right: 0;
	background: linear-gradient(
		135deg,
		var(--brand-accent) 0%,
		var(--brand-primary) 100%
	);
	box-shadow:
		-6px -6px 16px rgba(0, 0, 0, 0.2),
		6px 6px 16px rgba(0, 0, 0, 0.25),
		inset -2px -2px 6px rgba(0, 0, 0, 0.12) !important;
	color: black !important;
}

.feature-icon-4 {
	bottom: 20px;
	right: 80px;
	background: linear-gradient(
		135deg,
		var(--brand-accent) 0%,
		var(--brand-primary) 100%
	);
	box-shadow:
		-8px -8px 20px rgba(0, 0, 0, 0.2),
		8px 8px 20px rgba(0, 0, 0, 0.3),
		inset -3px -3px 8px rgba(0, 0, 0, 0.15) !important;
	color: black !important;
}

.why-choose-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.feature-description {
	padding: 1.75rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.feature-description::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(251, 191, 36, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.feature-description:hover {
	background: var(--glass-bg-hover);
	border-color: var(--brand-primary);
	transform: translateY(-5px);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(251, 191, 36, 0.1);
}

.feature-description:hover::before {
	left: 100%;
}

.feature-description h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.feature-description p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.why-choose-us {
		padding: 4rem 0;
	}

	.why-choose-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.why-choose-content {
		display: none;
	}

	.why-choose-features {
		gap: 1rem;
	}

	.feature-description {
		padding: 1.25rem;
	}

	.feature-description h3 {
		font-size: 1rem;
	}

	.feature-description p {
		font-size: 0.85rem;
	}
}

/* ==========================================
   ABOUT SECTION - GLASSMORPHISM
   ========================================== */
.about-section {
	position: relative;
	padding: 8rem 0;
	background: linear-gradient(
		180deg,
		var(--bg-primary) 0%,
		var(--bg-secondary) 50%,
		var(--bg-primary) 100%
	);
	overflow: hidden;
}

.about-section::before {
	content: "";
	position: absolute;
	top: 20%;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(168, 85, 247, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.about-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
}

@media (max-width: 1024px) {
	.about-content-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

.about-main {
	padding-right: 2rem;
}

@media (max-width: 1024px) {
	.about-main {
		padding-right: 0;
	}
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	border: 1px solid var(--glass-border);
}

.about-badge .badge-icon {
	font-size: 1.2rem;
}

.about-badge .badge-text {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.about-intro h3 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.about-intro p {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
	font-size: 1.05rem;
}

/* Stats Grid - Glass Cards */
.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	margin-top: 2.5rem;
}

@media (max-width: 768px) {
	.about-section {
		padding: 4rem 0;
	}

	.about-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.about-intro h3 {
		font-size: 1.5rem;
	}

	.about-intro p {
		font-size: 0.95rem;
	}
}

.about-stats .stat-item {
	text-align: center;
	padding: 1.5rem 1rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid var(--glass-border);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stats .stat-item:hover {
	transform: translateY(-8px);
	border-color: var(--brand-primary);
	box-shadow:
		0 25px 50px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(251, 191, 36, 0.15);
}

.stat-number {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.25rem;
}

/* Visual Side - Card Stack */
.about-visual {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

@media (max-width: 1024px) {
	.about-visual {
		min-height: 350px;
	}
}

@media (max-width: 768px) {
	.about-visual {
		min-height: auto;
		padding: 1rem 0;
	}

	.about-decoration {
		display: none;
	}
}

.visual-card-stack {
	position: relative;
	width: 100%;
	max-width: 400px;
	height: 400px;
}

@media (max-width: 768px) {
	.visual-card-stack {
		max-width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.visual-card {
		position: relative !important;
		width: 100% !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
	}
}

.visual-card {
	position: absolute;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 2rem;
	border: 1px solid var(--glass-border);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: 280px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.visual-card:hover {
	transform: scale(1.05) rotate(0deg) !important;
	z-index: 10;
	border-color: var(--brand-primary);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(251, 191, 36, 0.15);
}

.visual-card.card-1 {
	top: 0;
	left: 0;
	z-index: 3;
}

.visual-card.card-2 {
	top: 30%;
	left: 65%;
	z-index: 2;
}

.visual-card.card-3 {
	top: 53%;
	left: 0%;
	z-index: 1;
}

.visual-card .card-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.visual-card .card-icon svg {
	width: 28px;
	height: 28px;
	color: var(--text-inverse);
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.visual-card h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.visual-card p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* About Decoration */
.about-decoration {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.deco-ring {
	position: absolute;
	border: 1px dashed var(--glass-border);
	border-radius: 50%;
	animation: spin-slow 40s linear infinite;
}

.deco-ring.ring-1 {
	width: 450px;
	height: 450px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.deco-ring.ring-2 {
	width: 350px;
	height: 350px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-direction: reverse;
	animation-duration: 30s;
}

.deco-dot {
	position: absolute;
	width: 12px;
	height: 12px;
	background: var(--brand-primary);
	border-radius: 50%;
	box-shadow: 0 0 20px var(--brand-primary);
}

.deco-dot.dot-1 {
	top: 10%;
	right: 20%;
	animation: pulse 2s ease-in-out infinite;
}

.deco-dot.dot-2 {
	bottom: 20%;
	left: 10%;
	animation: pulse 2s ease-in-out infinite 0.5s;
}

/* About CTA */
.about-cta {
	text-align: center;
	margin-top: 4rem;
	position: relative;
	z-index: 10;
}

.about-cta p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.about-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.about-cta-buttons .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.about-cta-buttons .btn .icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.about-cta-buttons .btn-secondary .icon {
	fill: currentColor;
	stroke: none;
}

@media (max-width: 768px) {
	.about-cta {
		margin-top: 2rem;
	}

	.about-cta p {
		font-size: 1rem;
	}

	.about-cta-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.about-cta-buttons .btn {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================
   CTA / CONTACT SECTION - GLASSMORPHISM
   ========================================== */
.cta-section {
	position: relative;
	padding: 8rem 0;
	background: linear-gradient(
		180deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 100%
	);
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(
			ellipse 60% 50% at 30% 50%,
			rgba(251, 191, 36, 0.08) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 60% 50% at 70% 50%,
			rgba(168, 85, 247, 0.05) 0%,
			transparent 70%
		);
	pointer-events: none;
}

.cta-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.cta-card {
	position: relative;
	background: transparent;
	border: none;
}

/* Left Side - Contact Information */
.cta-info {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
}

.cta-info h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-align: left;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	flex-grow: 1;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
	background: var(--glass-bg-hover);
	border-color: var(--brand-primary);
	transform: translateX(5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
	width: 2rem;
	height: 2rem;
	color: var(--brand-primary);
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-item-text h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.contact-item-text p,
.contact-item-text a {
	font-size: 0.95rem;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item-text a:hover {
	color: var(--brand-primary);
}

/* Right Side - Contact Grid */
.cta-grid {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
}

.contact-grid-title {
	text-align: center;
	margin-bottom: 2rem;
}

.contact-grid-title h3 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	margin-top: 3rem;
}

.contact-tiles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1.25rem;
	flex-grow: 1;
}

.contact-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 2rem;
	border-radius: 24px;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	cursor: pointer;
	min-height: 150px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
}

.contact-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-tile:hover::before {
	opacity: 1;
}

.contact-tile:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: var(--brand-primary);
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(251, 191, 36, 0.15);
}

.tile-icon {
	position: relative;
	z-index: 1;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 0.75rem;
	transition: transform 0.3s ease;
}

.contact-tile:hover .tile-icon {
	transform: scale(1.15);
}

.tile-label {
	position: relative;
	z-index: 1;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	color: var(--text-primary);
}

/* Tile-specific colors */
.contact-tile.whatsapp {
	color: #25d366;
}

.contact-tile.whatsapp:hover {
	border-color: #25d366;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(37, 211, 102, 0.2);
}

.contact-tile.email {
	color: #ea4335;
}

.contact-tile.email:hover {
	border-color: #ea4335;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(234, 67, 53, 0.2);
}

.contact-tile.call {
	color: #0088cc;
}

.contact-tile.call:hover {
	border-color: #0088cc;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(0, 136, 204, 0.2);
}

.contact-tile.form {
	color: #673ab7;
}

.contact-tile.form:hover {
	border-color: #673ab7;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(103, 58, 183, 0.2);
}

@media (max-width: 1024px) {
	.cta-split {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.cta-section {
		padding: 4rem 0;
	}

	.cta-info h2 {
		font-size: 2rem;
	}

	.cta-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.contact-details {
		gap: 1rem;
	}

	.contact-item {
		padding: 1rem;
	}

	.contact-grid-title h3 {
		margin-top: 1rem;
		font-size: 1.5rem;
	}

	.contact-tiles {
		gap: 1rem;
	}

	.contact-tile {
		padding: 1.5rem 1rem;
		min-height: 120px;
		border-radius: 20px;
	}

	.tile-icon {
		width: 2.5rem;
		height: 2.5rem;
	}

	.tile-label {
		font-size: 0.95rem;
	}
}

/* ==========================================
   FAQ SECTION - GLASSMORPHISM ACCORDION
   ========================================== */
#faq {
	padding: 8rem 0;
	background: var(--bg-primary);
}

.faq-container {
	max-width: 56rem;
	margin: 0 auto;
}

.faq-item {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
	border-color: var(--glass-border-hover);
	transform: translateY(-2px);
}

.faq-item.open {
	border-color: var(--brand-primary);
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(251, 191, 36, 0.1);
}

.faq-question {
	width: 100%;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.1rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: var(--brand-primary);
}

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: var(--brand-primary);
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 2rem 1.5rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

@media (max-width: 768px) {
	#faq {
		padding: 4rem 0;
	}

	.faq-container {
		padding: 0;
	}

	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}

	.faq-answer p {
		padding: 0 1.5rem 1.25rem;
		font-size: 0.9rem;
	}
}

/* ==========================================
   FOOTER - PREMIUM GLASSMORPHISM
   ========================================== */
.new-footer {
	min-height: 100vh;
	background: linear-gradient(180deg, var(--bg-primary) 0%, #05050a 100%);
	color: var(--text-primary);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 4rem 2rem 2rem;
	position: relative;
	overflow: hidden;
}

.new-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(
			ellipse 80% 50% at 50% 20%,
			rgba(251, 191, 36, 0.08) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse 60% 40% at 20% 80%,
			rgba(168, 85, 247, 0.05) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse 60% 40% at 80% 80%,
			rgba(59, 130, 246, 0.05) 0%,
			transparent 60%
		);
	pointer-events: none;
}

.footer-main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 10;
}

.footer-connect-tag {
	font-size: 1rem;
	color: var(--brand-primary);
	margin-bottom: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.footer-huge-heading {
	font-size: clamp(2.5rem, 10vw, 5.5rem);
	font-weight: 700;
	line-height: 0.9;
	margin-bottom: 3rem;
	letter-spacing: -0.04em;
	background: linear-gradient(
		135deg,
		var(--brand-primary) 0%,
		var(--neon-purple) 50%,
		var(--brand-secondary) 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 5s linear infinite;
}

.footer-contact-btn {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	color: var(--text-inverse);
	padding: 1.25rem 3.5rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	box-shadow: 0 15px 50px rgba(251, 191, 36, 0.3);
	position: relative;
	overflow: hidden;
}

.footer-contact-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.footer-contact-btn:hover::before {
	left: 100%;
}

.footer-contact-btn:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 25px 70px rgba(251, 191, 36, 0.4);
}

.footer-bottom-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 4rem auto;
	width: 100%;
	padding: 0 1rem;
	position: relative;
	z-index: 10;
}

@media (min-width: 768px) {
	.footer-bottom-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem;
		padding: 0 2rem;
		margin: 5rem auto;
	}
}

.footer-col {
	text-align: center;
}

.footer-col-header {
	font-size: 0.875rem;
	color: var(--brand-primary);
	margin-bottom: 1.5rem;
	display: block;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-list li {
	margin-bottom: 1rem;
}

.footer-link-list a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.footer-link-list a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--brand-primary);
	transition: width 0.3s ease;
}

.footer-link-list a:hover {
	color: var(--brand-primary);
	transform: translateX(5px);
}

.footer-link-list a:hover::after {
	width: 100%;
}

.footer-copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem 2rem 0;
	font-size: 0.9rem;
	color: var(--text-muted);
	position: relative;
	z-index: 10;
}

.footer-bottom p {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.new-footer {
		min-height: auto;
		padding: 3rem 1rem 1.5rem;
	}

	.footer-huge-heading {
		font-size: clamp(3rem, 12vw, 5rem);
		margin-bottom: 2rem;
	}

	.footer-contact-btn {
		padding: 1rem 2.5rem;
		font-size: 1rem;
	}

	.footer-link-list a {
		font-size: 1rem;
	}

	.footer-copyright {
		padding: 2rem 1rem 0;
	}
}

/* ==========================================
   ICONS
   ========================================== */
.icon {
	width: 24px;
	height: 24px;
	stroke-width: 2;
	stroke: currentColor;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-sm {
	width: 20px;
	height: 20px;
}

.icon-lg {
	width: 28px;
	height: 28px;
}

.icon-xl {
	width: 32px;
	height: 32px;
}

/* ==========================================
   ANIMATION UTILITIES
   ========================================== */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger animations */
.stagger-1 {
	transition-delay: 0.1s;
}

.stagger-2 {
	transition-delay: 0.2s;
}

.stagger-3 {
	transition-delay: 0.3s;
}

.stagger-4 {
	transition-delay: 0.4s;
}

.stagger-5 {
	transition-delay: 0.5s;
}

/* Hover effects */
.hover-lift {
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-glow:hover {
	box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

/* ==========================================
   PARTICLES (Optional Enhancement)
   ========================================== */
.particles-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--brand-primary);
	border-radius: 50%;
	opacity: 0;
	animation: particle-float 15s infinite;
}

.particle:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
}

.particle:nth-child(2) {
	left: 20%;
	animation-delay: 2s;
}

.particle:nth-child(3) {
	left: 30%;
	animation-delay: 4s;
}

.particle:nth-child(4) {
	left: 40%;
	animation-delay: 6s;
}

.particle:nth-child(5) {
	left: 50%;
	animation-delay: 8s;
}

.particle:nth-child(6) {
	left: 60%;
	animation-delay: 10s;
}

.particle:nth-child(7) {
	left: 70%;
	animation-delay: 12s;
}

.particle:nth-child(8) {
	left: 80%;
	animation-delay: 14s;
}

.particle:nth-child(9) {
	left: 90%;
	animation-delay: 1s;
}

.particle:nth-child(10) {
	left: 15%;
	animation-delay: 3s;
}

/* ==========================================
   POLICIES PAGE STYLES
   ========================================== */
.policies-section {
	min-height: 100vh;
	padding: 12rem 0 6rem;
	position: relative;
	overflow: hidden;
}

.policy-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.policies-section .orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: morph 20s ease-in-out infinite;
}

.policies-section .orb-1 {
	top: 10%;
	left: 15%;
	width: 500px;
	height: 500px;
	background: linear-gradient(
		135deg,
		rgba(168, 85, 247, 0.2),
		rgba(251, 191, 36, 0.1)
	);
	animation-delay: 0s;
}

.policies-section .orb-2 {
	bottom: 10%;
	right: 15%;
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		rgba(251, 191, 36, 0.15),
		rgba(59, 130, 246, 0.1)
	);
	animation-delay: -5s;
}

.policies-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
}

.policies-header h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	letter-spacing: -1px;
}

.policies-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

.policies-toc {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 2.5rem;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
}

.policies-toc h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.policies-toc ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.policies-toc ul li {
	margin: 0;
}

.policies-toc ul li a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	color: var(--text-secondary);
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.policies-toc ul li a:before {
	content: "→";
	font-weight: bold;
	color: var(--brand-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.policies-toc ul li a:hover {
	background: var(--glass-bg-hover);
	color: var(--text-primary);
	border-color: var(--brand-primary);
	padding-left: 1.25rem;
}

.policies-toc ul li a:hover:before {
	opacity: 1;
}

.policies-content {
	position: relative;
	z-index: 10;
	margin-bottom: 4rem;
}

.policy-item {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(255, 255, 255, 0.02) 100%
	);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-item:hover {
	border-color: var(--brand-primary);
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.3),
		0 0 20px rgba(251, 191, 36, 0.1);
	transform: translateY(-2px);
}

.policy-header {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.policy-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.6;
	flex-shrink: 0;
}

.policy-header h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	flex: 1;
}

.policy-badge {
	display: inline-flex;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: rgba(251, 191, 36, 0.1);
	color: var(--brand-primary);
	border: 1px solid rgba(251, 191, 36, 0.3);
	white-space: nowrap;
}

.policy-badge.essential {
	background: rgba(16, 185, 129, 0.1);
	color: var(--accent-success);
	border-color: rgba(16, 185, 129, 0.3);
}

.policy-body {
	margin-left: 4rem;
	padding-left: 1.5rem;
	border-left: 2px solid var(--glass-border);
	transition: border-color 0.3s ease;
}

.policy-item:hover .policy-body {
	border-color: var(--brand-primary);
}

.policy-body p {
	color: var(--text-secondary);
	line-height: 1.8;
	margin: 0;
	font-size: 1rem;
}

.policies-contact {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 3rem;
	text-align: center;
	position: relative;
	z-index: 10;
}

.policies-contact h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.policies-contact p {
	color: var(--text-secondary);
	font-size: 1rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Mobile Responsive - Policies */
@media (max-width: 768px) {
	.policies-section {
		padding: 8rem 0 4rem;
	}

	.policies-header h1 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.policies-header p {
		font-size: 1rem;
	}

	.policies-toc {
		padding: 1.5rem;
		margin-bottom: 3rem;
	}

	.policies-toc h3 {
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}

	.policies-toc ul {
		grid-template-columns: 1fr;
	}

	.policy-item {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.policy-header {
		gap: 1rem;
		flex-wrap: wrap;
	}

	.policy-number {
		font-size: 1.8rem;
	}

	.policy-header h2 {
		font-size: 1.2rem;
		flex-basis: 100%;
	}

	.policy-body {
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		border-top: 2px solid var(--glass-border);
		padding-top: 1rem;
		margin-top: 1rem;
	}

	.policies-contact {
		padding: 2rem 1.5rem;
	}

	.policies-contact h3 {
		font-size: 1.2rem;
	}

	.policies-section .orb-1 {
		width: 250px;
		height: 250px;
		left: 5%;
	}

	.policies-section .orb-2 {
		width: 200px;
		height: 200px;
		right: 5%;
	}
}

/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Print styles */
@media print {
	body::before,
	.hero-bg,
	.orb,
	.particles-container {
		display: none;
	}

	* {
		background: white !important;
		color: black !important;
	}
}
