:root {
	--bg: #0a0e13;
	--bg-secondary: #0f141a;
	--panel: #161b22;
	--text: #e6edf3;
	--text-secondary: #8b949e;
	--text-muted: #6e7681;
	--brand: #58a6ff;
	--brand-dark: #1f6feb;
	--accent: #00d4aa;
	--accent-dark: #00a87e;
	--line: #21262d;
	--line-subtle: #30363d;
	--glow-brand: 0 0 0 1px rgba(88, 166, 255, 0.1), 0 8px 24px rgba(88, 166, 255, 0.2);
	--glow-accent: 0 0 0 1px rgba(0, 212, 170, 0.1), 0 8px 24px rgba(0, 212, 170, 0.15);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
	color: var(--text);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	width: min(1200px, 90%);
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 14, 19, 0.7);
	backdrop-filter: blur(12px) saturate(180%);
	border-bottom: 1px solid transparent;
	transition: var(--transition);
}

.site-header.scrolled {
	background: rgba(10, 14, 19, 0.85);
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.brand-logo {
	height: 42px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(88, 166, 255, 0.3));
}

.brand-name {
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.01em;
}

.nav {
	display: flex;
	gap: 6px;
}

.nav a {
	color: var(--text-secondary);
	text-decoration: none;
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	font-weight: 500;
	font-size: 15px;
	transition: var(--transition);
	position: relative;
}

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

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 8px;
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.nav-toggle:hover {
	background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	margin: 5px 0;
	transition: var(--transition);
	border-radius: 2px;
}

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

.hero-bg {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(1200px 600px at 20% -10%, rgba(88, 166, 255, 0.15), transparent 70%),
		radial-gradient(1000px 500px at 80% -15%, rgba(0, 212, 170, 0.12), transparent 70%);
	pointer-events: none;
}

.hero-inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	position: relative;
	z-index: 1;
}

.hero-badge {
	background: linear-gradient(135deg, rgba(88, 166, 255, 0.15), rgba(0, 212, 170, 0.1));
	border: 1px solid var(--line-subtle);
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	backdrop-filter: blur(8px);
}

.hero h1 {
	margin: 0;
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	max-width: 900px;
}

.gradient-text {
	background: linear-gradient(135deg, var(--brand), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.lead {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.7;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--brand), var(--brand-dark));
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	box-shadow: var(--glow-brand);
	transition: var(--transition);
	border: 0;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 0 1px rgba(88, 166, 255, 0.2), 0 12px 32px rgba(88, 166, 255, 0.3);
}

.btn:active {
	transform: translateY(0) scale(0.98);
}

.btn.alt {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
	border: 1px solid var(--line-subtle);
	box-shadow: none;
}

.btn.alt:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--line);
	box-shadow: var(--shadow-sm);
}

.hero-stats {
	display: flex;
	gap: 48px;
	margin-top: 32px;
	flex-wrap: wrap;
	justify-content: center;
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.stat strong {
	font-size: 32px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--brand), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat span {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 500;
}

.section {
	padding: 80px 0;
}

.section.alt {
	background: rgba(22, 27, 34, 0.4);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.section-header {
	margin-bottom: 48px;
}

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

.label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--brand);
	margin-bottom: 12px;
}

.section-header h2 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	margin: 0 0 12px 0;
	letter-spacing: -0.02em;
}

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

.grid {
	display: grid;
	gap: 24px;
}

.grid.two {
	grid-template-columns: repeat(2, 1fr);
}

.grid.three {
	grid-template-columns: repeat(3, 1fr);
}

.grid.align-center {
	align-items: center;
}

.card {
	background: linear-gradient(135deg, rgba(22, 27, 34, 0.8), rgba(22, 27, 34, 0.6));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(88, 166, 255, 0.05), transparent);
	opacity: 0;
	transition: var(--transition);
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--line-subtle);
}

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

.card.highlight {
	border-color: rgba(88, 166, 255, 0.3);
	box-shadow: var(--glow-brand);
}

.card.service {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.card-icon {
	font-size: 40px;
	margin-bottom: 16px;
	filter: grayscale(0.2);
}

.card h3 {
	margin: 0 0 12px 0;
	font-size: 22px;
	font-weight: 700;
}

.card p {
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.6;
}

.card-footer {
	margin-top: auto;
	padding-top: 20px;
	color: var(--brand);
}

.bullets {
	list-style: none;
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--text-secondary);
}

.bullets svg {
	flex-shrink: 0;
	color: var(--accent);
	margin-top: 2px;
}

.feature-list {
	list-style: none;
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.feature-list li {
	padding: 8px 0;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--line);
}

.feature-list li:last-child {
	border-bottom: 0;
}

.card.website {
	padding: 0;
	background: linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(15, 20, 26, 0.8));
}

.browser-bar {
	padding: 12px 16px;
	background: rgba(33, 38, 45, 0.6);
	border-bottom: 1px solid var(--line);
}

.dots {
	display: flex;
	gap: 8px;
}

.dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--line-subtle);
}

.dots span:nth-child(1) {
	background: #ff5f56;
}

.dots span:nth-child(2) {
	background: #ffbd2e;
}

.dots span:nth-child(3) {
	background: #27c93f;
}

.website-preview {
	padding: 32px;
	display: grid;
	gap: 12px;
}

.preview-line {
	height: 12px;
	background: linear-gradient(90deg, var(--line-subtle), var(--line));
	border-radius: 6px;
}

.preview-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 12px;
}

.preview-box {
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--line-subtle), var(--line));
	border-radius: var(--radius-sm);
}

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

.contact-info {
	position: sticky;
	top: 100px;
}

.info-grid {
	display: grid;
	gap: 24px;
	margin-top: 32px;
}

.info-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.info-item svg {
	flex-shrink: 0;
	color: var(--brand);
	margin-top: 4px;
}

.info-item strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
}

.info-item a,
.info-item span {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 15px;
}

.info-item a:hover {
	color: var(--text);
	text-decoration: underline;
}

.map-container {
	margin-top: 32px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-md);
}

.map-container iframe {
	display: block;
	width: 100%;
	height: 300px;
}

.contact {
	display: grid;
	gap: 20px;
	background: rgba(22, 27, 34, 0.4);
	padding: 40px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
}

.row {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}

.input-group {
	position: relative;
}

.input-group input,
.input-group textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	background: rgba(10, 14, 19, 0.6);
	color: var(--text);
	font-size: 15px;
	font-family: inherit;
	outline: none;
	transition: var(--transition);
}

.input-group label {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 15px;
	pointer-events: none;
	transition: var(--transition);
	background: rgba(10, 14, 19, 0.9);
	padding: 0 6px;
}

.input-group textarea + label {
	top: 20px;
	transform: translateY(0);
}

.input-group input:focus,
.input-group textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
	top: -10px;
	transform: translateY(0);
	font-size: 13px;
	color: var(--brand);
}

.site-footer {
	border-top: 1px solid var(--line);
	padding: 60px 0 30px;
	background: rgba(10, 14, 19, 0.8);
}

.footer-inner {
	display: grid;
	gap: 40px;
}

.footer-grid {
	display: grid;
	gap: 40px;
	grid-template-columns: 1.5fr repeat(3, 1fr);
}

.footer-col {
	display: grid;
	gap: 12px;
	align-content: start;
}

.footer-col a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 15px;
	transition: var(--transition);
}

.footer-col a:hover {
	color: var(--text);
}

.footer-title {
	display: block;
	color: var(--text);
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 8px;
}

.footer-text {
	margin: 12px 0 0 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
}

.social {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-sm);
	color: var(--text-secondary);
	transition: var(--transition);
	border: 1px solid var(--line);
}

.social a:hover {
	background: rgba(88, 166, 255, 0.1);
	color: var(--brand);
	border-color: var(--brand);
	transform: translateY(-2px);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid var(--line);
	padding-top: 30px;
	color: var(--text-muted);
	font-size: 14px;
	flex-wrap: wrap;
}

.reveal {
	opacity: 0;
	transform: translateY(30px) scale(0.98);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.card.testimonial {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: left;
	padding: 28px;
}

.card.testimonial .rating {
	color: #ffd700;
	font-size: 20px;
	letter-spacing: 2px;
}

.card.testimonial p {
	flex: 1;
	font-style: italic;
	line-height: 1.7;
	color: var(--text-secondary);
}

.card.testimonial .author {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.card.testimonial .author strong {
	color: var(--text);
	font-size: 15px;
}

.card.testimonial .author span {
	color: var(--text-muted);
	font-size: 13px;
}

@media (max-width: 1024px) {
	.container {
		width: min(1200px, 92%);
	}

	.grid.two {
		grid-template-columns: 1fr;
	}

	.grid.three {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.contact-info {
		position: static;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.header-inner {
		padding: 14px 0;
	}

	.brand-name {
		display: none;
	}

	.nav {
		display: none;
		position: absolute;
		right: 16px;
		top: 70px;
		background: linear-gradient(135deg, rgba(22, 27, 34, 0.98), rgba(15, 20, 26, 0.98));
		border: 1px solid var(--line-subtle);
		border-radius: var(--radius-lg);
		padding: 12px;
		flex-direction: column;
		width: min(280px, 90vw);
		box-shadow: var(--shadow-lg);
		backdrop-filter: blur(12px);
		transform-origin: top right;
		animation: menuOut 0.2s ease forwards;
	}

	.nav a {
		padding: 14px 16px;
		border-radius: var(--radius-md);
		width: 100%;
	}

	.nav.open {
		display: flex;
		animation: menuIn 0.25s ease forwards;
	}

	.nav-toggle {
		display: block;
	}

	.hero {
		padding: 60px 0 50px;
	}

	.hero h1 {
		font-size: clamp(28px, 8vw, 40px);
	}

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

	.hero-stats {
		gap: 32px;
	}

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

	.section {
		padding: 60px 0;
	}

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

	.section-header h2 {
		font-size: clamp(26px, 7vw, 36px);
	}

	.grid.three {
		grid-template-columns: 1fr;
	}

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

	.contact {
		padding: 28px 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.cta {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
	}

	.hero-stats {
		width: 100%;
		gap: 24px;
	}

	.stat {
		flex: 1;
	}
}

@keyframes menuIn {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(-10px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes menuOut {
	from {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
	to {
		opacity: 0;
		transform: scale(0.95) translateY(-10px);
	}
}
