* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	overflow-x: hidden;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateX(0) translateY(0); }
	25% { transform: translateX(10px) translateY(-10px); }
	50% { transform: translateX(-5px) translateY(10px); }
	75% { transform: translateX(-10px) translateY(-5px); }
}

.hero-content {
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 2rem;
	z-index: 2;
	position: relative;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	opacity: 0;
	animation: slideUp 1s ease 0.5s forwards;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	opacity: 0;
	animation: slideUp 1s ease 0.7s forwards;
}

.hero .subtitle {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 2rem;
	opacity: 0;
	animation: slideUp 1s ease 0.9s forwards;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cta-button {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	opacity: 0;
	animation: slideUp 1s ease 1.1s forwards;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Main Content */
.main-content {
	padding: 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	padding-top:4rem;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1rem;
	position: relative;
}

.section-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 2px;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 6rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: white;
}

.feature-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.feature-card p {
	color: #64748b;
	line-height: 1.6;
}

/* Company Story Section */
.company-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin: 6rem 0;
}

.story-content h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.story-content p {
	color: #64748b;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.story-visual {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea, #764ba2);
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lab-illustration {
	width: 80%;
	height: 80%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, #2c3e50, #3498db);
	padding: 4rem 0;
	color: white;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.stat-item h4 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-item p {
	opacity: 0.9;
}

.stat-item-static h4 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-item-static p {
	opacity: 0.9;
}

/* Footer */
.footer {
	background: #1a202c;
	color: white;
	text-align: center;
	padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero h1 { font-size: 2.5rem; }
	.hero p { font-size: 1.1rem; }
	.company-story { grid-template-columns: 1fr; gap: 2rem; }
	.nav-links { display: none; }
	.mobile-menu-toggle { display: flex; }
	.section-header h2 { font-size: 2rem; }
	.story-visual { height: 300px; }
	
	.navbar {
		padding: 1rem 1.5rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}