@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

/* Hide scrollbars but keep functionality */
* {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
}

*::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

:root {
	--bg: #000000;
	--surface: #0A0A0A;
	--surface-light: #141414;
	--text: #FFFFFF;
	--text-secondary: #8B8B8B;
	--accent: #3B82F6;
	--accent-glow: rgba(59, 130, 246, 0.5);
	--accent-secondary: #7c3aed;
	--success: #10B981;
	--border: rgba(255, 255, 255, 0.08);
	--gradient: linear-gradient(180deg, #3B82F6 0%, #8B5CF6 100%);
	--gradient-accent: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* Canvas Background */
#canvas-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.5;
}

/* Grid Background */
.grid-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	z-index: 1;
	opacity: 0.3;
	animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 10;
}

/* Gradient Text */
.gradient-text {
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Navigation */
body > nav,
header > nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	z-index: 1000;
	padding: 16px 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo:hover {
	transform: translateY(-1px);
}

.logo-avatar {
	position: relative;
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.logo-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid transparent;
	background: linear-gradient(var(--bg), var(--bg)) padding-box,
				var(--gradient-accent) border-box;
	transition: all 0.3s ease;
}

.logo:hover .logo-avatar img {
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.logo-status {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 12px;
	height: 12px;
	background: #10b981;
	border-radius: 50%;
	border: 2px solid var(--bg);
	animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
	50% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

.logo-text {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.3px;
	background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

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

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: var(--text);
}

.nav-links a:hover::after {
	width: 100%;
}

/* Language Selector */
.lang-selector {
	position: relative;
	margin-left: 24px;
}

.lang-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text);
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	font-size: 14px;
}

.lang-btn:hover {
	border-color: var(--accent);
	background: var(--surface-light);
}

.lang-btn .chevron {
	transition: transform 0.3s ease;
}

.lang-selector.active .lang-btn .chevron {
	transform: rotate(180deg);
}

.current-lang {
	font-weight: 600;
}

.lang-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 8px;
	min-width: 150px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.lang-selector.active .lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px 12px;
	background: none;
	border: none;
	border-radius: 8px;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	font-size: 14px;
	text-align: left;
}

.lang-option:hover {
	background: var(--surface-light);
	color: var(--text);
}

.lang-option.active {
	background: rgba(59, 130, 246, 0.1);
	color: var(--accent);
}

.lang-flag {
	font-weight: 700;
	font-size: 12px;
	padding: 2px 6px;
	background: var(--surface-light);
	border-radius: 4px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-top: 80px;
}

.hero-content {
	text-align: center;
	animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-label {
	display: inline-block;
	padding: 8px 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.hero h1 {
	font-size: clamp(40px, 7vw, 80px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -2px;
	margin-bottom: 24px;
	background: linear-gradient(180deg, #FFFFFF 0%, #8B8B8B 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero h1 .gradient-text {
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 20px;
	color: var(--text-secondary);
	margin-bottom: 48px;
	font-weight: 400;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-group {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

/* Buttons */
.btn {
	padding: 16px 32px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--gradient-accent);
	color: white;
	box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 50px var(--accent-glow);
}

.btn-secondary {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-secondary:hover {
	background: var(--surface);
	border-color: var(--accent);
}

.btn-lg {
	padding: 20px 40px;
	font-size: 18px;
}

.btn-block {
	width: 100%;
}

/* Stats Grid */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 700px;
	margin: 0 auto;
}

.stat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gradient);
}

.stat-value {
	font-size: 36px;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-label {
	font-size: 14px;
	color: var(--text-secondary);
	margin-top: 8px;
}

/* Sections */
.section {
	padding: 120px 0;
	position: relative;
	z-index: 10;
}

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

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

.section-title {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 16px;
	letter-spacing: -1px;
}

.section-description {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.about-image {
	flex-shrink: 0;
}

.about-image-wrapper {
	position: relative;
	width: 280px;
	height: 280px;
}

.about-image-wrapper img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	position: relative;
	z-index: 2;
	border: 4px solid var(--bg);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.about-image-ring {
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border-radius: 50%;
	border: 2px solid transparent;
	background: linear-gradient(var(--bg), var(--bg)) padding-box,
				linear-gradient(135deg, #00d4ff, #7c3aed, #00d4ff) border-box;
	animation: ringRotate 8s linear infinite;
}

.about-image-ring.ring-2 {
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border-width: 1px;
	opacity: 0.5;
	animation: ringRotate 12s linear infinite reverse;
}

@keyframes ringRotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.about-image-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
	filter: blur(40px);
	z-index: 0;
	animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.about-text {
	max-width: 500px;
}

.about-text .section-header {
	text-align: left;
	margin-bottom: 24px;
}

.about-text .section-title {
	margin-bottom: 20px;
}

.about-text .section-description {
	margin: 0;
	line-height: 1.8;
}

/* Badges */
.about-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-accent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card.featured {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
	border-color: rgba(0, 212, 255, 0.2);
}

.service-card.featured::before {
	opacity: 1;
}

.service-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 12px;
	background: var(--gradient-accent);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-icon {
	width: 64px;
	height: 64px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: var(--accent);
}

.service-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.service-description {
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
}

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

.service-features li {
	position: relative;
	padding-left: 20px;
	padding-bottom: 8px;
	color: var(--text-secondary);
	font-size: 14px;
}

.service-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
}

/* AI Highlight Section */
.ai-highlight {
	background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0f0f2f 100%);
	overflow: hidden;
}

.ai-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.ai-label {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #00d4ff;
	margin-bottom: 24px;
}

.ai-title {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
}

.ai-description {
	color: var(--text-secondary);
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 32px;
}

.ai-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

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

.ai-feature-icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 212, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00d4ff;
	flex-shrink: 0;
}

.ai-feature h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.ai-feature p {
	color: var(--text-secondary);
	font-size: 14px;
	margin: 0;
}

/* AI Visual - Neural Network */
.ai-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.neural-network {
	position: relative;
	width: 100%;
	max-width: 420px;
	aspect-ratio: 400 / 320;
}

.nn-svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
}

/* Conexiones */
.nn-line {
	stroke: rgba(0, 212, 255, 0.15);
	stroke-width: 1.5;
	transition: stroke 0.3s ease;
}

.nn-connections.layer1-2 .nn-line {
	animation: lineGlow1 3s ease-in-out infinite;
}

.nn-connections.layer2-3 .nn-line {
	animation: lineGlow2 3s ease-in-out infinite;
	animation-delay: 0.5s;
}

.nn-connections.layer3-out .nn-line {
	animation: lineGlow3 3s ease-in-out infinite;
	animation-delay: 1s;
}

@keyframes lineGlow1 {
	0%, 100% { stroke: rgba(0, 212, 255, 0.1); }
	50% { stroke: rgba(0, 212, 255, 0.4); }
}

@keyframes lineGlow2 {
	0%, 100% { stroke: rgba(124, 58, 237, 0.1); }
	50% { stroke: rgba(124, 58, 237, 0.4); }
}

@keyframes lineGlow3 {
	0%, 100% { stroke: rgba(0, 212, 255, 0.15); }
	50% { stroke: rgba(0, 212, 255, 0.5); }
}

/* Neuronas */
.nn-neuron {
	transition: all 0.3s ease;
}

.nn-neuron.input {
	fill: url(#inputGradient);
	fill: #00d4ff;
	filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
	animation: neuronPulse 2s ease-in-out infinite;
}

.nn-neuron.hidden {
	fill: #7c3aed;
	filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.5));
	animation: neuronPulse 2s ease-in-out infinite;
	animation-delay: 0.3s;
}

.nn-neuron.output {
	fill: url(#outputGradient);
	fill: linear-gradient(135deg, #00d4ff, #7c3aed);
	background: var(--gradient-accent);
	filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
	animation: outputPulse 2s ease-in-out infinite;
}

/* Crear gradientes via CSS */
.nn-neuron.input {
	fill: #00d4ff;
}

.nn-neuron.hidden {
	fill: #7c3aed;
}

.nn-neuron.output {
	fill: #00d4ff;
	stroke: #7c3aed;
	stroke-width: 3;
}

@keyframes neuronPulse {
	0%, 100% {
		opacity: 0.7;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.08);
	}
}

@keyframes outputPulse {
	0%, 100% {
		opacity: 0.8;
		filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
	}
	50% {
		opacity: 1;
		filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.9));
	}
}

/* Pulsos de datos */
.nn-pulse {
	fill: #00d4ff;
	filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.8));
	opacity: 0.9;
}

.nn-pulse.pulse-1, .nn-pulse.pulse-3, .nn-pulse.pulse-5, .nn-pulse.pulse-8 {
	fill: #00d4ff;
}

.nn-pulse.pulse-2, .nn-pulse.pulse-4, .nn-pulse.pulse-6, .nn-pulse.pulse-9 {
	fill: #7c3aed;
	filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.8));
}

.nn-pulse.pulse-7, .nn-pulse.pulse-10 {
	fill: #fff;
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

/* Labels */
.nn-label {
	fill: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	font-family: inherit;
	text-anchor: middle;
	font-weight: 500;
}

.nn-output-text {
	fill: #0a0a0f;
	font-size: 12px;
	font-weight: 700;
	text-anchor: middle;
	font-family: inherit;
}

/* Hover effect en toda la red */
.neural-network:hover .nn-line {
	stroke: rgba(0, 212, 255, 0.3);
}

.neural-network:hover .nn-neuron {
	filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.8));
}

.neural-network:hover .nn-neuron.output {
	filter: drop-shadow(0 0 30px rgba(0, 212, 255, 1));
}

/* Projects Grid */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.project-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.project-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-image {
	width: 100%;
	height: 180px;
	background: var(--gradient);
	position: relative;
	overflow: hidden;
}

.project-content {
	padding: 24px;
}

.project-category {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 12px;
}

.project-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.project-description {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	padding: 4px 12px;
	background: var(--surface-light);
	border-radius: 100px;
	font-size: 12px;
	color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-slider {
	overflow: hidden;
	margin: 0 -24px;
	padding: 0 24px;
}

.testimonials-track {
	display: flex;
	gap: 24px;
	animation: testimonialScroll 30s linear infinite;
}

@keyframes testimonialScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

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

.testimonial-card {
	flex-shrink: 0;
	width: 400px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateY(-4px);
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.testimonial-content blockquote {
	color: var(--text);
	font-size: 15px;
	line-height: 1.7;
	font-style: italic;
	margin: 0 0 24px 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-avatar {
	width: 48px;
	height: 48px;
	background: var(--gradient-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-info strong {
	font-size: 15px;
	font-weight: 600;
}

.author-info span {
	font-size: 13px;
	color: var(--text-secondary);
}

/* Clients Section */
.clients-section {
	margin-top: 60px;
	text-align: center;
}

.clients-title {
	font-size: 14px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 32px;
}

.clients-logos {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.client-logo {
	padding: 16px 24px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.client-logo:hover {
	border-color: var(--accent);
}

.client-logo span {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-secondary);
}

/* Pricing Section - Premium Design */
.pricing-section {
	position: relative;
	overflow: hidden;
}

.pricing-bg-effects {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.pricing-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.4;
}

.pricing-glow-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
	top: -200px;
	left: -200px;
	animation: pricingGlow1 8s ease-in-out infinite;
}

.pricing-glow-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
	bottom: -150px;
	right: -150px;
	animation: pricingGlow2 10s ease-in-out infinite;
}

@keyframes pricingGlow1 {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
	50% { transform: translate(50px, 30px) scale(1.1); opacity: 0.5; }
}

@keyframes pricingGlow2 {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
	50% { transform: translate(-30px, -20px) scale(1.15); opacity: 0.45; }
}

/* Hourly Rate Banner */
.hourly-rate-banner {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 20px;
	padding: 24px 32px;
	margin-bottom: 48px;
	position: relative;
	overflow: hidden;
}

.hourly-rate-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.hourly-rate-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
}

.hourly-rate-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00d4ff;
}

.hourly-rate-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hourly-rate-label {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 500;
}

.hourly-rate-price {
	font-size: 36px;
	font-weight: 800;
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.hourly-rate-unit {
	font-size: 18px;
	font-weight: 500;
}

.hourly-rate-desc {
	color: var(--text-secondary);
	font-size: 14px;
	padding-left: 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pricing Grid */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

/* Pricing Cards */
.pricing-card {
	background: rgba(10, 10, 15, 0.8);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	padding: 40px 32px;
	text-align: center;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.pricing-card-glow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 200px;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.pricing-starter .pricing-card-glow {
	background: rgba(0, 212, 255, 0.4);
}

.pricing-professional .pricing-card-glow {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(124, 58, 237, 0.4));
}

.pricing-enterprise .pricing-card-glow {
	background: rgba(124, 58, 237, 0.4);
}

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

.pricing-card:hover {
	transform: translateY(-12px);
	border-color: rgba(255, 255, 255, 0.2);
}

/* Starter Card */
.pricing-starter {
	border-color: rgba(0, 212, 255, 0.2);
}

.pricing-starter:hover {
	border-color: rgba(0, 212, 255, 0.5);
	box-shadow: 0 20px 60px -20px rgba(0, 212, 255, 0.3);
}

/* Professional Card - Featured */
.pricing-card.featured {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
	border: 2px solid transparent;
	background-clip: padding-box;
	position: relative;
	z-index: 2;
}

.pricing-card.featured::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 30px;
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	z-index: -1;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.pricing-card.featured:hover::before {
	opacity: 1;
}

.pricing-card.featured:hover {
	transform: translateY(-16px);
	box-shadow: 0 30px 80px -20px rgba(0, 212, 255, 0.4), 0 30px 80px -20px rgba(124, 58, 237, 0.3);
}

/* Enterprise Card */
.pricing-enterprise {
	border-color: rgba(124, 58, 237, 0.2);
}

.pricing-enterprise:hover {
	border-color: rgba(124, 58, 237, 0.5);
	box-shadow: 0 20px 60px -20px rgba(124, 58, 237, 0.3);
}

/* Badge */
.pricing-badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 24px;
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	border-radius: 0 0 16px 16px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: white;
	box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

/* Icon */
.pricing-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .pricing-icon {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
	border-color: rgba(0, 212, 255, 0.3);
}

/* Header */
.pricing-header {
	margin-bottom: 24px;
}

.pricing-name {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text);
}

.pricing-card.featured .pricing-name {
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pricing-desc {
	color: var(--text-secondary);
	font-size: 14px;
	margin: 0;
	line-height: 1.5;
}

.pricing-card.featured .pricing-desc {
	color: rgba(255, 255, 255, 0.85);
}

/* Price */
.pricing-price {
	margin-bottom: 28px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card.featured .pricing-price {
	border-top-color: rgba(255, 255, 255, 0.15);
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price-from {
	display: block;
	font-size: 13px;
	color: var(--text-secondary);
	font-weight: 500;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pricing-card.featured .price-from {
	color: rgba(255, 255, 255, 0.7);
}

.price-amount {
	font-size: 42px;
	font-weight: 800;
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
}

.pricing-card.featured .price-amount {
	font-size: 48px;
}

.price-custom {
	font-size: 28px;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -0.5px;
}

.pricing-card.featured .price-custom {
	font-size: 32px;
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Features */
.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px 0;
	text-align: left;
}

.pricing-features li {
	position: relative;
	padding: 14px 0 14px 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--text-secondary);
	font-size: 14px;
	transition: color 0.3s ease;
}

.pricing-card.featured .pricing-features li {
	color: rgba(255, 255, 255, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-features li::after {
	content: '✓';
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	font-weight: 700;
	color: #00d4ff;
}

.pricing-card:hover .pricing-features li {
	color: var(--text);
}

/* Buttons */
.btn-pricing {
	display: block;
	width: 100%;
	padding: 16px 24px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-pricing-primary {
	background: linear-gradient(135deg, #00d4ff, #7c3aed);
	color: white;
	box-shadow: 0 8px 24px -8px rgba(0, 212, 255, 0.5);
}

.btn-pricing-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px -8px rgba(0, 212, 255, 0.6);
}

.btn-pricing-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-pricing-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(0, 212, 255, 0.4);
	color: #00d4ff;
}

/* Bottom CTA */
.pricing-bottom-cta {
	text-align: center;
	padding: 40px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
}

.pricing-note {
	color: var(--text-secondary);
	font-size: 16px;
	margin: 0 0 20px 0;
	line-height: 1.6;
}

.pricing-main-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 40px;
	font-size: 16px;
}

/* Contact Section */
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: var(--surface);
	border-radius: 32px;
	overflow: hidden;
	border: 1px solid var(--border);
	min-height: 650px;
}

.contact-info {
	background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0f0f2f 100%);
	padding: 60px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.contact-info-content {
	position: relative;
	z-index: 2;
}

.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	color: #00d4ff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 32px;
}

.contact-badge .pulse {
	width: 8px;
	height: 8px;
	background: #00d4ff;
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

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

.contact-info h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #fff;
}

.contact-info > .contact-info-content > p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin-bottom: 40px;
}

.contact-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-feature {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.contact-feature:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(0, 212, 255, 0.2);
	transform: translateX(8px);
}

.feature-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00d4ff;
	flex-shrink: 0;
}

.feature-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.feature-text strong {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

.feature-text span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

/* Contact Decoration */
.contact-decoration {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(0, 212, 255, 0.1);
}

.deco-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: -100px;
	animation: float 20s ease-in-out infinite;
}

.deco-2 {
	width: 200px;
	height: 200px;
	bottom: -50px;
	left: -50px;
	border-color: rgba(124, 58, 237, 0.1);
	animation: float 15s ease-in-out infinite reverse;
}

.deco-3 {
	width: 100px;
	height: 100px;
	top: 50%;
	right: 20%;
	border-color: rgba(0, 212, 255, 0.15);
	animation: float 10s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	33% { transform: translate(10px, -10px) rotate(5deg); }
	66% { transform: translate(-5px, 5px) rotate(-3deg); }
}

/* Contact Form */
.contact-form-wrapper {
	padding: 60px;
	background: var(--bg);
	display: flex;
	align-items: center;
}

.contact-form {
	width: 100%;
}

.form-header {
	margin-bottom: 32px;
}

.form-header h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
}

.form-header p {
	font-size: 15px;
	color: var(--text-secondary);
}

.form-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 28px;
}

.input-group {
	position: relative;
}

.input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	transition: all 0.3s ease;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.input-group.textarea .input-icon {
	top: 20px;
	transform: none;
}

.input-group input,
.input-group textarea,
.input-group select {
	width: 100%;
	padding: 18px 20px 18px 52px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	color: var(--text);
	font-family: inherit;
	font-size: 15px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.input-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238B8B8B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 48px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
	color: var(--text-secondary);
	opacity: 0.6;
}

.input-group textarea {
	min-height: 120px;
	resize: vertical;
	line-height: 1.6;
}

.input-highlight {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 14px;
	pointer-events: none;
	opacity: 0;
	transition: all 0.4s ease;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.input-group input:hover,
.input-group textarea:hover,
.input-group select:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--accent);
	box-shadow:
		0 0 0 4px rgba(0, 212, 255, 0.1),
		0 10px 40px -10px rgba(0, 0, 0, 0.4);
}

.input-group:focus-within .input-icon {
	color: var(--accent);
	transform: translateY(-50%) scale(1.1);
}

.input-group.textarea:focus-within .input-icon {
	transform: scale(1.1);
}

/* Submit Button */
.btn-submit {
	position: relative;
	width: 100%;
	padding: 20px 32px;
	background: var(--gradient-accent);
	color: white;
	border: none;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.btn-submit::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.btn-submit:hover::before {
	opacity: 1;
}

.btn-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.btn-icon {
	display: flex;
	transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
	transform: translateX(4px) rotate(-15deg);
}

.btn-submit:hover {
	transform: translateY(-3px);
	box-shadow:
		0 20px 40px -10px rgba(0, 212, 255, 0.4),
		0 10px 20px -5px rgba(124, 58, 237, 0.3);
}

.btn-loader,
.btn-success {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 2;
}

.btn-loader .spinner {
	width: 24px;
	height: 24px;
	animation: rotate 1s linear infinite;
}

.btn-loader .spinner circle {
	stroke-dasharray: 80;
	stroke-dashoffset: 60;
	animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
	100% { transform: rotate(360deg); }
}

@keyframes dash {
	0% { stroke-dashoffset: 80; }
	50% { stroke-dashoffset: 20; }
	100% { stroke-dashoffset: 80; }
}

.btn-submit.loading .btn-content {
	opacity: 0;
}

.btn-submit.loading .btn-loader {
	display: flex;
}

.btn-submit.success .btn-content {
	opacity: 0;
}

.btn-submit.success .btn-success {
	display: flex;
	animation: checkmark 0.5s ease-out;
}

@keyframes checkmark {
	0% { transform: translate(-50%, -50%) scale(0); }
	50% { transform: translate(-50%, -50%) scale(1.2); }
	100% { transform: translate(-50%, -50%) scale(1); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	z-index: 999;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
	position: absolute;
	right: 70px;
	background: var(--surface);
	color: var(--text);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	transition: all 0.3s ease;
	border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Footer */
footer {
	padding: 60px 0 0;
	border-top: 1px solid var(--border);
	position: relative;
	z-index: 10;
	background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.02) 100%);
}

.footer-content {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--border);
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid transparent;
	background: linear-gradient(var(--bg), var(--bg)) padding-box,
				var(--gradient-accent) border-box;
}

.footer-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
}

.footer-tagline {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.footer-brand .social-links {
	justify-content: flex-start;
	gap: 12px;
	margin-bottom: 0;
	margin-top: 8px;
}

.footer-brand .social-link {
	width: 40px;
	height: 40px;
}

.footer-links h4,
.footer-contact h4 {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.footer-links nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: static;
	background: none;
	border: none;
	padding: 0;
	backdrop-filter: none;
}

.footer-links nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links nav a:hover {
	color: var(--accent);
	transform: translateX(4px);
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 12px;
}

.footer-contact-item svg {
	color: var(--accent);
	flex-shrink: 0;
}

.footer-contact-item a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
}

.footer-copyright {
	color: var(--text-secondary);
	font-size: 13px;
}

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

.footer-legal a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: var(--accent);
}

/* Social Links */
.social-links {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

.social-link {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--surface);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	transform: translateY(-4px);
}

/* Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	padding: 20px;
}

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

.modal-content {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	max-width: 600px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	transform: scale(0.9) translateY(20px);
	transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	z-index: 10;
}

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

.modal-body {
	padding: 48px;
}

.modal-body h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 24px;
	padding-right: 40px;
}

.modal-body h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
	margin-top: 24px;
	margin-bottom: 12px;
}

.modal-body p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.modal-body ul {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.7;
	margin-left: 20px;
	margin-bottom: 16px;
}

.modal-body ul li {
	margin-bottom: 8px;
}

.modal-body .last-updated {
	font-size: 12px;
	color: var(--text-secondary);
	opacity: 0.7;
	margin-top: 32px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.modal-body h4 {
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	margin-top: 20px;
	margin-bottom: 10px;
}

.modal-body .cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: 13px;
}

.modal-body .cookie-table th,
.modal-body .cookie-table td {
	padding: 10px 12px;
	text-align: left;
	border: 1px solid var(--border);
}

.modal-body .cookie-table th {
	background: var(--card);
	color: var(--text);
	font-weight: 600;
}

.modal-body .cookie-table td {
	color: var(--text-secondary);
}

.modal-body a {
	color: var(--primary);
	text-decoration: none;
}

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

/* Toast */
.toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--success);
	color: white;
	padding: 16px 32px;
	border-radius: 12px;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 10000;
	font-weight: 500;
}

.toast.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

/* Honeypot */
.hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
	overflow: hidden;
	pointer-events: none;
}

/* Loading Animation */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	animation: fadeOut 1s forwards 1s;
}

@keyframes fadeOut {
	to {
		opacity: 0;
		visibility: hidden;
	}
}

.loader-text {
	font-size: 24px;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: loaderPulse 1s ease infinite;
}

@keyframes loaderPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 1024px) {
	.services-grid,
	.projects-grid,
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-content {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.ai-visual {
		order: -1;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: rgba(0, 0, 0, 0.95);
		flex-direction: column;
		padding: 24px;
		gap: 0;
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		border-bottom: 1px solid var(--border);
	}

	.nav-links a {
		display: block;
		padding: 16px 0;
		font-size: 16px;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.lang-selector {
		margin-left: auto;
		margin-right: 16px;
	}

	.hero h1 {
		font-size: 36px;
		letter-spacing: -1px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cta-group {
		flex-direction: column;
		align-items: center;
	}

	.services-grid,
	.projects-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card.featured {
		transform: none;
	}

	.pricing-card.featured:hover {
		transform: translateY(-8px);
	}

	.hourly-rate-banner {
		padding: 20px;
	}

	.hourly-rate-content {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.hourly-rate-desc {
		padding-left: 0;
		border-left: none;
		padding-top: 16px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.hourly-rate-price {
		font-size: 32px;
	}

	.pricing-bottom-cta {
		padding: 28px 20px;
	}

	.pricing-glow-1,
	.pricing-glow-2 {
		display: none;
	}

	.about-content {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.about-image-wrapper {
		width: 200px;
		height: 200px;
	}

	.about-text .section-header {
		text-align: center;
	}

	.about-badges {
		justify-content: center;
	}

	.section-title {
		font-size: 32px;
	}

	.ai-title {
		font-size: 28px;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.contact-info {
		padding: 40px 24px;
	}

	.contact-info h2 {
		font-size: 28px;
	}

	.contact-form-wrapper {
		padding: 40px 24px;
	}

	.form-header h3 {
		font-size: 24px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}

	.footer-brand {
		align-items: center;
	}

	.footer-brand .social-links {
		justify-content: center;
	}

	.footer-links nav {
		align-items: center;
	}

	.footer-contact-item {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.footer-legal {
		flex-wrap: wrap;
		justify-content: center;
	}

	.testimonial-card {
		width: 320px;
	}

	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 54px;
		height: 54px;
	}

	.modal-body {
		padding: 32px 24px;
	}

	.modal-body h2 {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.section {
		padding: 80px 0;
	}

	.hero h1 {
		font-size: 28px;
	}

	.stat-value {
		font-size: 28px;
	}

	.service-card,
	.project-card,
	.pricing-card {
		padding: 24px;
	}

	.testimonial-card {
		width: 280px;
		padding: 24px;
	}

	.clients-logos {
		gap: 16px;
	}

	.client-logo {
		padding: 12px 16px;
	}
}
