:root {
	--primary-dark: #0a1128;
	--primary-blue: #1e40af;
	--accent-blue: #3b82f6;
	--bg-light: #f8fafc;
	--text-main: #334155;
	--text-light: #94a3b8;
	--white: #ffffff;
}

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

body {
	/* font-family: 'Inter', sans-serif; */
	color: var(--text-main);
	background-color: var(--bg-light);
	line-height: 1.6;
}
html { scroll-behavior: smooth; }
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.service-gradient { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
.tech-pill { @apply px-3 py-1 bg-blue-50 text-blue-700 text-xs font-semibold rounded-full border border-blue-100; }
.gradient-bg {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.service-card:hover {
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	background-color: var(--primary-dark);
	color: var(--white);
	padding: 100px 0 80px;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
	font-weight: 300;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin: 80px 0 48px;
}

.section-header h2 {
	font-size: 2.25rem;
	color: var(--primary-dark);
	margin-bottom: 16px;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--text-main);
	max-width: 700px;
	margin: 0 auto;
}

/* Solutions Grid */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-bottom: 80px;
}

.card {
	background: var(--white);
	border-radius: 12px;
	padding: 40px 32px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-top: 4px solid var(--accent-blue);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card h3 {
	font-size: 1.5rem;
	color: var(--primary-dark);
	margin-bottom: 12px;
}

.card .subtitle {
	font-style: italic;
	color: var(--accent-blue);
	margin-bottom: 20px;
	font-size: 0.95rem;
	display: block;
}

.card ul {
	list-style: none;
}

.card ul li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 0.95rem;
}

.card ul li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--accent-blue);
	font-weight: bold;
}

/* Tech Stack Section */
.tech-stack {
	background-color: var(--white);
	padding: 80px 0;
	text-align: center;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.tech-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.tech-tag {
	background-color: var(--bg-light);
	color: var(--primary-dark);
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	border: 1px solid #e2e8f0;
}

/* CTA Section */
.cta {
	text-align: center;
	padding: 100px 0;
	background-color: var(--primary-dark);
	color: var(--white);
}

.cta h2 {
	font-size: 2.25rem;
	margin-bottom: 24px;
}

.cta p {
	font-size: 1.125rem;
	color: var(--text-light);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn {
	display: inline-block;
	background-color: var(--accent-blue);
	color: var(--white);
	padding: 16px 36px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125rem;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: var(--primary-blue);
}

.btn-readmore {
	display: inline-block;
	background-color: var(--accent-blue);
	color: var(--white);
	padding: 10px 15px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.75rem;
	transition: background-color 0.3s ease;
}

.btn-readmore:hover {
	background-color: var(--primary-blue);
}

/* Footer */
footer {
	background-color: #050a15;
	color: var(--text-light);
	text-align: center;
	padding: 32px 0;
	font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 { font-size: 2.25rem; }
	.section-header h2 { font-size: 1.875rem; }
	.card { padding: 24px; }
}