/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: #666;
	font-size: 1.1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background-color: #000;
	color: #fff;
}

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

.btn-secondary {
	background-color: transparent;
	color: #000;
	border: 2px solid #000;
}

.btn-secondary:hover {
	background-color: #000;
	color: #fff;
	transform: translateY(-2px);
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #eee;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #000;
	text-decoration: none;
}

.nav-logo img {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	color: #666;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #000;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background-color: #000;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	padding: 150px 0 100px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
	margin-bottom: 1.5rem;
	color: #000;
}

.hero-content p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Features Section */
.features {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-header h2 {
	color: #000;
	margin-bottom: 1rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	border-radius: 8px;
	background: #f8f9fa;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	color: #000;
	margin-bottom: 1rem;
}

/* Applications Section */
.applications {
	padding: 100px 0;
	background: #f8f9fa;
}

.applications-content {
	max-width: 800px;
	margin: 0 auto;
}

.app-text h3 {
	color: #000;
	margin-bottom: 1.5rem;
}

.benefits-list {
	list-style: none;
	margin-top: 2rem;
}

.benefits-list li {
	padding: 0.5rem 0;
	color: #666;
	position: relative;
	padding-left: 1.5rem;
}

.benefits-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #000;
	font-weight: bold;
}

/* Checkbox Styles */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.4;
	gap: 10px;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-container:hover .checkmark {
	border-color: #000;
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
	background-color: #000;
	border-color: #000;
}

.checkbox-container input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-container input[type='checkbox']:focus + .checkmark {
	outline: 2px solid #000;
	outline-offset: 2px;
}

/* Content Wrapper */
.content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

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

.content-wrapper.reverse .content-image {
	order: -1;
}

.content-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Tools Grid */
.tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.tool-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.tool-card:hover {
	transform: translateY(-5px);
}

.tool-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.tool-content {
	padding: 1.5rem;
}

.tool-content h3 {
	color: #000;
	margin-bottom: 1rem;
}

.tool-content ul {
	list-style: none;
	margin-top: 1rem;
}

.tool-content li {
	padding: 0.25rem 0;
	color: #666;
	position: relative;
	padding-left: 1rem;
}

.tool-content li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #000;
}

/* Implementation Steps */
.implementation-steps {
	margin-top: 2rem;
}

.step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	margin-right: 1rem;
	flex-shrink: 0;
}

.step-content h4 {
	color: #000;
	margin-bottom: 0.5rem;
}

/* Success Stories */
.story-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	text-align: center;
}

.stat h3 {
	font-size: 3rem;
	color: #000;
	margin-bottom: 0.5rem;
}

.stat p {
	color: #666;
}

/* Challenges Grid */
.challenges-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.challenge-item {
	text-align: center;
	padding: 2rem;
}

.challenge-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.challenge-item h3 {
	color: #000;
	margin-bottom: 1rem;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: #f8f9fa;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item h4 {
	color: #000;
	margin-bottom: 0.5rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px;
	border: 2px solid #eee;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #000;
}

/* Page Header */
.page-header {
	padding: 150px 0 100px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
	margin-bottom: 1rem;
	color: #000;
}

/* Getting Started */
.getting-started {
	padding: 100px 0;
}

/* CTA Section */
.cta-section,
.contact-cta {
	padding: 100px 0;
	text-align: center;
	background: #000;
	color: #fff;
}

.cta-content h2 {
	color: #fff;
	margin-bottom: 1rem;
}

.cta-content p {
	color: #ccc;
	margin-bottom: 2rem;
}

.cta-section .btn-primary {
	background-color: #fff;
	color: #000;
}

.cta-section .btn-primary:hover {
	background-color: #f0f0f0;
}

/* FAQ Section */
.faq-section {
	padding: 100px 0;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid #eee;
	margin-bottom: 1rem;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	cursor: pointer;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: #000;
}

.faq-question h3 {
	margin: 0;
	color: #333;
	font-size: 1.25rem;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #666;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding-bottom: 1.5rem;
}

.faq-answer p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

/* Legal Pages */
.legal-page {
	padding: 150px 0 100px;
	max-width: 800px;
	margin: 0 auto;
}

.legal-page h1 {
	font-size: 1.5rem;
	color: #000;
	margin-bottom: 2rem;
}

.legal-page h2 {
	color: #000;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.legal-page h3 {
	color: #333;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
}

.legal-page ul,
.legal-page ol {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.legal-page li {
	margin-bottom: 0.5rem;
	color: #666;
}

/* Footer */
.footer {
	background: #000;
	color: #fff;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	color: #fff;
	margin-bottom: 1rem;
}

.footer-section p {
	color: #ccc;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 2rem;
	text-align: center;
}

.footer-bottom p {
	color: #ccc;
	margin: 0;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	padding: 2rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-modal.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.cookie-content h3 {
	color: #fff;
	margin-bottom: 1rem;
}

.cookie-content p {
	color: #ccc;
	margin-bottom: 1.5rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.btn-accept,
.btn-decline {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-accept {
	background-color: #fff;
	color: #000;
}

.btn-accept:hover {
	background-color: #f0f0f0;
}

.btn-decline {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-decline:hover {
	background-color: #fff;
	color: #000;
}

.privacy-link {
	color: #ccc;
	text-decoration: underline;
	font-size: 0.9rem;
}

.privacy-link:hover {
	color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background-color: #fff;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: left 0.3s ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.content-wrapper,
	.content-wrapper.reverse {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.content-wrapper.reverse .content-image {
		order: 0;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cookie-buttons {
		flex-direction: column;
		align-items: center;
	}

	.features-grid,
	.tools-grid,
	.challenges-grid {
		grid-template-columns: 1fr;
	}

	.story-stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	h1 {
		font-size: 2rem;
	}

	.hero {
		padding: 120px 0 80px;
	}

	.section-header,
	.applications,
	.features,
	.contact,
	.getting-started,
	.faq-section {
		padding: 60px 0;
	}

	.feature-card,
	.tool-card,
	.challenge-item {
		padding: 1.5rem;
	}
}
