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

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

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

/* Header */
.header {
	padding: 0 15px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0 !important;
}

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

.nav-brand img {
	height: 40px;
	width: auto;
}

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

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: #2563eb;
}

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

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

/* Main Content */
main {
	margin-top: 80px;
}

/* Sections */
section {
	padding: 4rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h1,
.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1f2937;
}

.section-header p {
	font-size: 1.1rem;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 6rem 0;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	color: #6b7280;
	margin-bottom: 2rem;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Tools Hero */
.tools-hero {
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	padding: 6rem 0 4rem;
}

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

.btn-primary {
	background: #2563eb;
	color: white;
}

.btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary:hover {
	background: #2563eb;
	color: white;
	transform: translateY(-2px);
}

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

.content-grid.reverse {
	direction: rtl;
}

.content-grid.reverse > * {
	direction: ltr;
}

.content-text h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.content-text p {
	color: #6b7280;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.content-text ul {
	list-style: none;
	margin-top: 1.5rem;
}

.content-text li {
	color: #6b7280;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.content-text li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
}

.content-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* App Cards */
.apps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.app-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #e5e7eb;
}

.app-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.app-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.app-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.app-card p {
	color: #6b7280;
	font-size: 1rem;
}

/* Learning Grid */
.learning-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 800px;
	margin: 0 auto;
}

.learning-emoji {
	font-size: 4rem;
	text-align: center;
}

.learning-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.learning-content p {
	color: #6b7280;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

/* Contact Section */
.contact {
	background: #f8fafc;
}

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

.contact-info h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.contact-info p {
	color: #6b7280;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item strong {
	color: #1f2937;
	display: block;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: #6b7280;
	margin: 0;
}

/* Contact Form */
.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	color: #374151;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 6px;
	font-weight: 600;
}

.form-message.success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

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

.faq-question:hover {
	background: #f8fafc;
}

.faq-question h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1f2937;
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #6b7280;
	transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
	color: #6b7280;
	margin: 0;
}

/* Footer */
.footer {
	background: #1f2937;
	color: white;
	padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: #9ca3af;
	margin-bottom: 1rem;
}

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

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

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

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

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

/* Legal Pages */
.legal-page {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem 0 4rem;
	margin-top: 80px;
}

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.legal-page h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1f2937;
	margin: 2rem 0 1rem;
}

.legal-page h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #374151;
	margin: 1.5rem 0 0.5rem;
}

.legal-page p {
	color: #6b7280;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
	color: #6b7280;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.legal-page li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.legal-page a {
	color: #2563eb;
	text-decoration: none;
}

.legal-page a:hover {
	text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	max-width: 400px;
	z-index: 10000;
	transition: all 0.3s ease;
}

.cookie-modal.hidden {
	transform: translateY(100px);
	opacity: 0;
	pointer-events: none;
}

.cookie-content {
	padding: 1.5rem;
}

.cookie-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.cookie-content p {
	color: #6b7280;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.cookie-buttons {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.cookie-buttons button {
	flex: 1;
	padding: 0.5rem;
	border-radius: 6px;
	border: none;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: #374151;
	cursor: pointer;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto !important;
	margin: 0;
	margin-top: 0.1rem;
	transform: scale(1.1);
	cursor: pointer;
}

.checkbox-label input[type='checkbox']:focus {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

.cookie-link {
	color: #2563eb;
	text-decoration: none;
	font-size: 0.8rem;
}

.cookie-link:hover {
	text-decoration: underline;
}

/* Form Modal */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.form-modal.show {
	opacity: 1;
	visibility: visible;
}

.form-modal-content {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	max-width: 400px;
	margin: 0 20px;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.form-modal.show .form-modal-content {
	transform: scale(1);
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #e5e7eb;
	border-top: 4px solid #2563eb;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.form-modal h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.form-modal p {
	color: #6b7280;
	margin: 0;
}

.form-modal .success-icon {
	font-size: 3rem;
	color: #10b981;
	margin-bottom: 1rem;
}

/* Utility Classes */
.hidden {
	display: none !important;
}

/* Animation Classes */
.section-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.section-animate.animate-in {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 1rem 0 !important;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		display: flex;
		padding: 15px !important;
	}

	.nav-toggle {
		display: flex;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 2.2rem;
	}

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

	.content-grid.reverse {
		direction: ltr;
	}

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

	.learning-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 1rem;
	}

	.section-header h1,
	.section-header h2 {
		font-size: 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.cookie-modal {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

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

	section {
		padding: 3rem 0;
	}

	.hero {
		padding: 4rem 0;
	}

	.hero-content h1 {
		font-size: 1.8rem;
	}

	.section-header h1,
	.section-header h2 {
		font-size: 1.6rem;
	}

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

	.app-card {
		padding: 1.5rem;
	}

	.legal-page {
		padding: 1rem 0 2rem;
	}

}
