* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #2563eb;
	--primary-dark: #1d4ed8;
	--secondary: #7c3aed;
	--accent: #06b6d4;
	--dark: #0f172a;
	--light: #f8fafc;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--light);
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Logo Animation */
@keyframes pulse-glow {
	0%, 100% { filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.5)); }
	50% { filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.8)); }
}

@keyframes rotate-slow {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

/* Header */
header {
	background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
	padding: 1.5rem 0;
	position: relative;
	top: 0;
	z-index: 100;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-svg {
	width: 70px;
	height: 70px;
	animation: pulse-glow 3s infinite, float 6s infinite;
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-main {
	font-size: 2.2rem;
	font-weight: 700;
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #22d3ee 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 2px;
	line-height: 1;
}

.logo-subtitle {
	font-size: 0.75rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 0.3rem;
}

nav ul {
	display: flex;
	gap: 3rem;
	list-style: none;
}

nav a {
	color: #e2e8f0;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
	transition: color 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

nav a::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	transition: width 0.3s;
}

nav a:hover { color: #60a5fa; }
nav a:hover::before { width: 100%; }

.header-cta {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}

.header-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

/* Hero Section */
.hero {
	min-height: 90vh;
	background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 2rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(99,102,241,0.1) 1px, transparent 1px);
	background-size: 60px 60px;
	animation: rotate-slow 100s linear infinite;
}

.hero-content {
	max-width: 1200px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(99, 102, 241, 0.2);
	border: 2px solid #6366f1;
	color: #818cf8;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 2.5rem;
	animation: pulse-glow 3s infinite;
}

.hero h1 {
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 700;
	color: white;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero h1 .gradient {
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #22d3ee 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: #94a3b8;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 1.2rem 2.5rem;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.7);
}

.btn-glass {
	background: rgba(255,255,255,0.1);
	color: white;
	border: 2px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(10px);
}

.btn-glass:hover {
	background: rgba(255,255,255,0.2);
	border-color: rgba(255,255,255,0.4);
}

/* Sections */
section { padding: 6rem 2rem; }

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-tag {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1.5rem;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--dark);
}

.section-subtitle {
	font-size: 1.2rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

/* About */
.about { background: white; }

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.about-card {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 3rem;
	border-radius: 24px;
	border: 2px solid #e2e8f0;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 5px;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
	transform: scaleX(0);
	transition: transform 0.3s;
}

.about-card:hover::before { transform: scaleX(1); }

.about-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.12);
	border-color: transparent;
}

.about-icon-wrapper {
	width: 80px; height: 80px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.about-card h3 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--dark);
}

.about-card p {
	color: #64748b;
	line-height: 1.8;
	font-size: 1.05rem;
}

/* Who We Are */
.who { background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%); }

.who-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.who-image-wrapper {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 30px;
	padding: 3rem;
	box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3);
	position: relative;
	overflow: hidden;
}

.who-image-wrapper::before {
	content: '';
	position: absolute;
	top: -50%; right: -50%;
	width: 200%; height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
	background-size: 30px 30px;
	animation: rotate-slow 60s linear infinite;
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.stat-box {
	background: rgba(255,255,255,0.95);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
}

.stat-label {
	color: #64748b;
	font-size: 0.95rem;
	margin-top: 0.5rem;
}

.who-content h3 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--dark);
	line-height: 1.2;
}

.who-content p {
	color: #64748b;
	font-size: 1.15rem;
	margin-bottom: 1.5rem;
	line-height: 1.9;
}

.features-list { list-style: none; margin: 2rem 0; }

.features-list li {
	padding: 1rem 0;
	padding-left: 3rem;
	position: relative;
	color: #475569;
	font-size: 1.05rem;
}

.features-list li::before {
	content: '✓';
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	width: 35px; height: 35px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
}

/* Pricing */
.pricing-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	border-radius: 30px;
	padding: 4rem;
	color: white;
	box-shadow: 0 30px 60px rgba(37, 99, 235, 0.4);
	position: relative;
	overflow: hidden;
}

.pricing-wrapper::before {
	content: '🔥';
	position: absolute;
	top: 20px; right: -35px;
	background: rgba(255,255,255,0.2);
	padding: 0.5rem 4rem;
	transform: rotate(45deg);
	font-size: 1.5rem;
}

.pricing-header {
	text-align: center;
	margin-bottom: 3rem;
}

.pricing-header h3 { font-size: 2rem; margin-bottom: 1rem; }

.pricing-amount {
	font-size: 5rem;
	font-weight: 700;
	margin: 2rem 0;
	text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-amount span { font-size: 1.5rem; opacity: 0.9; }

.pricing-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin: 3rem 0;
}

.pricing-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255,255,255,0.1);
	border-radius: 12px;
}

.pricing-feature-icon {
	width: 40px; height: 40px;
	background: rgba(255,255,255,0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}

/* Projects */
.projects { background: white; }

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.project-item {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 1.4rem 1.6rem;
	border-radius: 16px;
	border: 2px solid #e2e8f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: all 0.3s;
}

.project-item:hover {
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.12);
}

.project-info {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.project-name {
	font-weight: 600;
	color: var(--dark);
	font-size: 1rem;
	line-height: 1.3;
}

.project-links {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.project-links a {
	color: var(--primary);
	text-decoration: underline;
	font-size: 0.85rem;
	font-weight: 500;
	width: fit-content;
}

.project-links a:hover { color: var(--secondary); }

.project-badge {
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}

.project-badge a {
	color: white;
	text-decoration: none;
}

.badge-ready { background: linear-gradient(135deg, #10b981, #34d399); color: white; }
.badge-progress { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: white; }

/* Contact */
.contact {
	background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
	color: white;
}

.contact .section-title { color: white; }
.contact .section-subtitle { color: #94a3b8; }

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.contact-card {
	background: rgba(255,255,255,0.05);
	padding: 3rem;
	border-radius: 24px;
	border: 1px solid rgba(255,255,255,0.1);
	text-align: center;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.contact-card:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-5px);
	border-color: rgba(99, 102, 241, 0.5);
}

.contact-icon {
	width: 80px; height: 80px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin: 0 auto 2rem;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.contact-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-card p { color: #94a3b8; margin-bottom: 1.5rem; }

.contact-card a {
	color: #60a5fa;
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 600;
	transition: color 0.3s;
}

.contact-card a:hover { color: #a78bfa; }

/* Footer */
footer {
	background: var(--dark);
	color: white;
	padding: 3rem 2rem 2rem;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-text { color: #94a3b8; margin-bottom: 2rem; }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 2rem;
	margin-top: 2rem;
	color: #64748b;
	font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
	.header-container { flex-direction: column; gap: 1.5rem; }
	nav ul { gap: 1.5rem; }
	.hero h1 { font-size: 2.5rem; }
	.who-wrapper { grid-template-columns: 1fr; }
	.about-grid { grid-template-columns: 1fr; }
	.pricing-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	/* Header */
	.header-container { padding: 0 1rem; gap: 0.75rem; }

	.logo-svg { width: 48px; height: 48px; }
	.logo-main { font-size: 1.6rem; }
	.logo-subtitle { font-size: 0.65rem; letter-spacing: 2px; }

	nav ul { flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
	nav a { font-size: 0.8rem; }

	.header-cta { padding: 0.7rem 1.2rem; font-size: 0.8rem; }

	/* Hero */
	.hero { padding: 3rem 1rem; min-height: auto; }
	.hero h1 { font-size: 1.8rem; }
	.hero-subtitle { font-size: 1rem; }
	.hero-badge { font-size: 0.8rem; padding: 0.6rem 1rem; }
	.hero-buttons { flex-direction: column; align-items: stretch; }
	.btn { justify-content: center; padding: 0.9rem 1.5rem; font-size: 0.9rem; }

	/* Sections */
	section { padding: 3rem 1rem; }
	.section-title { font-size: 1.8rem; }
	.section-subtitle { font-size: 1rem; }

	/* About */
	.about-grid { grid-template-columns: 1fr; gap: 1.2rem; }
	.about-card { padding: 1.8rem 1.4rem; }
	.about-icon-wrapper { width: 60px; height: 60px; font-size: 1.8rem; margin-bottom: 1.2rem; }
	.about-card h3 { font-size: 1.3rem; }
	.about-card p { font-size: 0.95rem; }

	/* Who */
	.who-wrapper { grid-template-columns: 1fr; gap: 2rem; }
	.who-image-wrapper { padding: 1.5rem; border-radius: 20px; }
	.stats-grid { gap: 1rem; }
	.stat-box { padding: 1.2rem 0.8rem; }
	.stat-number { font-size: 2rem; }
	.stat-label { font-size: 0.8rem; }
	.who-content h3 { font-size: 1.8rem; }
	.who-content p { font-size: 1rem; }
	.features-list li { font-size: 0.95rem; }

	/* Pricing */
	.pricing-wrapper { padding: 2rem 1.2rem; border-radius: 20px; margin-top: 2.5rem !important; }
	.pricing-amount { font-size: 2.8rem; }
	.pricing-amount span { font-size: 1.1rem; }
	.pricing-features { grid-template-columns: 1fr; gap: 0.8rem; margin: 1.5rem 0; }
	.pricing-header h3 { font-size: 1.4rem; }

	/* Projects */
	.projects-grid { grid-template-columns: 1fr; gap: 0.8rem; }
	.project-item { padding: 1rem; }
	.project-name { font-size: 0.9rem; }
	.project-links a { font-size: 0.8rem; }

	/* Contact */
	.contact-grid { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; }
	.contact-card { padding: 2rem 1.4rem; }
	.contact-card a { font-size: 1.1rem; }
}