:root {
	/* Hiflylabs-inspired color palette */
	--bg-color: #ffffff;
	--bg-alt: #fafafa;
	--primary-color: #000000;
	--accent-color: #0066ff;
	--text-color: #000000;
	--text-muted: #666666;
	--text-light: #999999;
	--border-color: #e5e5e5;
	--font-main: 'Inter', sans-serif;
	--container-width: 1200px;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	color: var(--primary-color);
}

h1 {
	font-size: 4.5rem;
	font-weight: 600;
	letter-spacing: -0.03em;
}

h2 {
	font-size: 2.75rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

p {
	margin-bottom: 1.5rem;
	color: var(--text-muted);
	font-size: 1.125rem;
	line-height: 1.8;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
}

/* Layout */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 40px;
}

section {
	padding: 120px 0;
	position: relative;
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 24px 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

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

.logo {
	height: 32px;
}

nav {
	display: flex;
	align-items: center;
	gap: 48px;
}

nav a {
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--text-color);
	position: relative;
}

nav a:hover {
	color: var(--accent-color);
}

nav a:not(.btn):hover::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--accent-color);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid var(--primary-color);
	font-size: 0.95rem;
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: #333;
	border-color: #333;
	transform: translateY(-1px);
}

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

.btn-secondary:hover {
	background-color: var(--bg-alt);
	border-color: var(--text-muted);
}

.btn-large {
	padding: 16px 36px;
	font-size: 1.05rem;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	background: var(--bg-color);
}

.hero-content {
	max-width: 800px;
}

.hero h1 {
	margin-bottom: 2rem;
	line-height: 1.1;
}

.hero p {
	font-size: 1.25rem;
	max-width: 600px;
	margin-bottom: 3rem;
	line-height: 1.7;
	color: var(--text-muted);
}

.hero-buttons {
	display: flex;
	gap: 16px;
}

.subtitle {
	font-size: 1rem;
	color: var(--text-light);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
	background-color: var(--bg-color);
	padding: 80px 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	text-align: center;
}

.benefit-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 24px;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
	background-color: var(--bg-alt);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-color), #004db8);
	border-radius: 20px;
	margin-bottom: 1.5rem;
	color: white;
}

.benefit-item h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.benefit-item p {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 280px;
	margin: 0;
}

/* Services Section */
.services {
	background-color: var(--bg-alt);
	padding: 120px 0;
}

.section-title {
	margin-bottom: 4rem;
	text-align: left;
}

.section-intro {
	font-size: 1.25rem;
	color: var(--text-muted);
	max-width: 700px;
	margin-bottom: 5rem;
	line-height: 1.7;
}

.service {
	padding: 60px 0;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	gap: 100px;
	align-items: flex-start;
}

.service:last-child {
	border-bottom: none;
}

.service-number {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-light);
	min-width: 60px;
	letter-spacing: 0.05em;
}

.service-content {
	flex: 1;
}

.service h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.service p {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 600px;
	margin-bottom: 0;
}

/* About Section */
.about {
	padding: 120px 0;
}

.about-container {
	display: flex;
	gap: 100px;
	align-items: center;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	text-align: left;
	margin-bottom: 2rem;
}

.about-text p {
	font-size: 1.125rem;
	line-height: 1.8;
}

.about-visual {
	flex: 1;
	display: flex;
	justify-content: center;
}

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

.result-card {
	background: white;
	padding: 32px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.result-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.result-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.result-label {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Contact Section */
.contact {
	background-color: var(--bg-alt);
	padding: 120px 0;
}

.contact-box {
	background: var(--primary-color);
	border-radius: 12px;
	padding: 80px 60px;
	text-align: center;
	color: white;
}

.contact-box h2 {
	color: white;
	margin-bottom: 1.5rem;
}

.contact-box p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto 2.5rem auto;
	font-size: 1.125rem;
}

.contact-box .btn-primary {
	background: white;
	color: var(--primary-color);
	border-color: white;
}

.contact-box .btn-primary:hover {
	background: #f5f5f5;
	border-color: #f5f5f5;
}

.email-link {
	margin-top: 24px;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
}

.email-link a {
	color: white;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.email-link a:hover {
	color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
	padding: 60px 0;
	background: white;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 16px;
	font-weight: 400;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-links {
	display: flex;
	gap: 40px;
}

.footer-links a {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 400;
}

.footer-links a:hover {
	color: var(--primary-color);
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
	animation-delay: 0.15s;
}

.delay-2 {
	animation-delay: 0.3s;
}

.delay-3 {
	animation-delay: 0.45s;
}

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

.scroll-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
	h1 {
		font-size: 3.5rem;
	}

	h2 {
		font-size: 2.25rem;
	}

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

	.service {
		gap: 60px;
	}

	.about-container {
		flex-direction: column;
		gap: 60px;
	}

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

@media (max-width: 768px) {
	h1 {
		font-size: 2.75rem;
	}

	h2 {
		font-size: 2rem;
	}

	section {
		padding: 80px 0;
	}

	.container {
		padding: 0 24px;
	}

	nav {
		gap: 24px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.benefit-item {
		padding: 32px 20px;
	}

	.service {
		flex-direction: column;
		gap: 20px;
		padding: 40px 0;
	}

	.service h3 {
		font-size: 1.5rem;
	}

	.contact-box {
		padding: 60px 32px;
	}

	.footer-content {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}

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

@media (max-width: 480px) {
	h1 {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.hero p {
		font-size: 1.05rem;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero-buttons .btn {
		width: 100%;
	}

	.benefit-icon {
		width: 64px;
		height: 64px;
		border-radius: 16px;
	}

	.service h3 {
		font-size: 1.25rem;
	}
}