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

:root {
	--primary-color: #6366f1;
	--secondary-color: #8b5cf6;
	--accent-color: #06b6d4;
	--background-dark: #0f172a;
	--background-darker: #020617;
	--surface-dark: #1e293b;
	--surface-darker: #334155;
	--text-primary: #f8fafc;
	--text-secondary: #cbd5e1;
	--text-muted: #94a3b8;
	--border-color: #475569;
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--error-color: #ef4444;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background: linear-gradient(
		135deg,
		var(--background-dark) 0%,
		var(--background-darker) 100%
	);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
}

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

/* Navigation */
.navbar {
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	position: fixed;
	top: 0;
	width: 100%;
	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;
	gap: 10px;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

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

.bar {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		var(--background-dark) 0%,
		var(--surface-dark) 50%,
		var(--background-darker) 100%
	);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(99, 102, 241, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(139, 92, 246, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.hero-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--text-primary),
		var(--primary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* Sections */
.section {
	padding: 80px 0;
	position: relative;
}

.section:nth-child(even) {
	background: rgba(30, 41, 59, 0.3);
}

.section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 3rem;
	text-align: center;
	background: linear-gradient(
		135deg,
		var(--text-primary),
		var(--primary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* 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;
}

.text-content {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

.text-content p {
	margin-bottom: 1.5rem;
}

.image-content img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.image-content img:hover {
	transform: scale(1.02);
}

.content-text-only {
	max-width: 1000px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

.content-text-only p {
	margin-bottom: 1.5rem;
}

.example-item {
	background: var(--surface-dark);
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.example-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.example-item h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

/* Cards Grid */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.card {
	background: var(--surface-dark);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	text-align: center;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border-color: var(--primary-color);
}

.card img {
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
	border-radius: 15px;
}

.card h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

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

/* Learning Grid */
.learning-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.learning-item {
	background: var(--surface-dark);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.learning-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.learning-item h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

/* Support Content */
.support-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.support-content > p {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	color: var(--text-secondary);
}

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

.support-item {
	background: var(--surface-dark);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.support-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.support-item h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

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

.faq-item {
	background: var(--surface-dark);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--primary-color);
}

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

.faq-question:hover {
	background: rgba(99, 102, 241, 0.1);
}

.faq-question h3 {
	color: var(--text-primary);
	font-size: 1.1rem;
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--primary-color);
	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;
	background: rgba(15, 23, 42, 0.5);
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 1.5rem;
	color: var(--text-secondary);
	margin: 0;
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
	color: var(--text-primary);
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.contact-item {
	margin-bottom: 2rem;
}

.contact-item strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: var(--text-secondary);
	margin: 0;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--surface-dark);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-muted);
}

.form-group-checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.form-group-checkbox input[type='checkbox'] {
	width: auto;
	padding: 0;
	accent-color: var(--primary-color);
}

.form-group-checkbox label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	cursor: pointer;
}

.submit-btn {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Footer */
.footer {
	background: var(--background-darker);
	padding: 3rem 0 1rem;
	border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

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

.footer-section a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-muted);
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--surface-dark);
	border-top: 1px solid var(--border-color);
	padding: 2rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.cookie-content h3 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.cookie-content p {
	color: var(--text-secondary);
	margin: 0;
	max-width: 600px;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.btn-accept,
.btn-decline {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

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

.btn-accept:hover {
	background: var(--secondary-color);
}

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

.btn-decline:hover {
	background: var(--surface-darker);
	color: var(--text-primary);
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 60px;
	min-height: 100vh;
}

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--text-primary);
}

.legal-page h2 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.legal-page h3 {
	font-size: 1.2rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.legal-page p {
	margin-bottom: 1rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
	margin-bottom: 1rem;
	padding-left: 2rem;
	color: var(--text-secondary);
}

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

/* Form Status Modal */
.status-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.7);
	backdrop-filter: blur(5px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 11000;
}

.status-modal.show {
	display: flex;
}

.status-modal-content {
	background: var(--surface-dark);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	text-align: center;
}

.spinner {
	border: 6px solid var(--surface-darker);
	border-top: 6px solid var(--primary-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin_anim 1s linear infinite;
	margin: 0 auto;
}

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

.success-message p {
	color: var(--text-primary);
	font-size: 1.2rem;
	margin-top: 1.5rem;
	margin-bottom: 0;
}

.checkmark {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: block;
	stroke-width: 3;
	stroke: var(--success-color);
	stroke-miterlimit: 10;
	margin: 0 auto;
	box-shadow: inset 0px 0px 0px var(--success-color);
	animation: fill_anim 0.4s ease-in-out 0.4s forwards,
		scale_anim 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 3;
	stroke-miterlimit: 10;
	stroke: var(--success-color);
	fill: none;
	animation: stroke_anim 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke_anim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke_anim {
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes scale_anim {
	0%,
	100% {
		transform: none;
	}
	50% {
		transform: scale3d(1.1, 1.1, 1);
	}
}

@keyframes fill_anim {
	100% {
		box-shadow: inset 0px 0px 0px 40px var(--success-color);
	}
}

/* Animations */
.animate-section {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: var(--background-dark);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
		padding: 2rem 0;
	}

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

	.nav-toggle {
		display: flex;
	}

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

	.nav-toggle.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.nav-toggle.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

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

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

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

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

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

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

	.section {
		padding: 60px 0;
	}

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

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

	.support-features {
		grid-template-columns: 1fr;
	}
}

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

	.hero h1 {
		font-size: 2rem;
	}

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

	.section h2 {
		font-size: 1.8rem;
	}

	.card,
	.example-item,
	.learning-item,
	.support-item {
		padding: 1.5rem;
	}
}
