:root {
	--color-primary: #4779C2;
	--color-secondary: #2C5AA0;
	--color-accent: #E8F1F8;
	--color-text: #1A1A1A;
	--color-text-light: #666666;
	--color-border: #E0E0E0;
	--color-bg: #FFFFFF;
	--color-footer: #1A2637;
	--color-success: #27AE60;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--radius: 8px;
	--radius-lg: 12px;
	--transition: all 0.3s ease;
	--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
	:root {
		--color-bg: #0D0D0D;
		--color-text: #FFFFFF;
		--color-text-light: #CCCCCC;
		--color-border: #333333;
		--color-footer: #050505;
		--color-accent: #1A2F4A;
	}
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
	font-family: var(--font-main);
	color: var(--color-text);
	background-color: var(--color-bg);
	line-height: 1.6;
	transition: var(--transition);
}

.progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	width: 0%;
	z-index: 1000;
	transition: width 0.2s ease;
}

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	transition: var(--transition);
}

.header.scrolled {
	box-shadow: var(--shadow-md);
}

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

.logo {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-primary);
	text-decoration: none;
	transition: var(--transition);
}

.logo:hover { transform: scale(1.05); }

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

.nav-desktop a {
	color: var(--color-text);
	text-decoration: none;
	transition: var(--transition);
	position: relative;
}

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

.nav-desktop a:hover::after { width: 100%; }

.burger-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.burger-menu span {
	width: 24px;
	height: 3px;
	background: var(--color-text);
	transition: var(--transition);
	border-radius: 2px;
}

.nav-mobile {
	display: flex;
	flex-direction: column;
	gap: 0;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	padding: 1rem;
	gap: 1rem;
}

.nav-mobile a {
	color: var(--color-text);
	text-decoration: none;
	transition: var(--transition);
}

.nav-mobile a:hover { color: var(--color-primary); }

.header-minimal {
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--color-border);
	max-width: 1200px;
	margin: 0 auto;
}

.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding: 4rem 2rem;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hero-pattern {
	width: 100%;
	height: 100%;
	opacity: 0.5;
}

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

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

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

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

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--radius);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	color: white;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
	background: var(--color-accent);
	transform: translateY(-2px);
}

.stats-block {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--color-accent);
	border-radius: var(--radius-lg);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--color-text-light);
	font-size: 0.95rem;
}

.about-section {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.about-section h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
	color: var(--color-text);
}

.about-section > p {
	font-size: 1.1rem;
	color: var(--color-text-light);
	text-align: center;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

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

.about-card {
	padding: 2rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	text-align: center;
	transition: var(--transition);
}

.about-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
	border-color: var(--color-primary);
}

.card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	color: var(--color-primary);
	transition: var(--transition);
}

.about-card:hover .card-icon {
	transform: scale(1.1);
}

.about-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.about-card p {
	color: var(--color-text-light);
	font-size: 0.95rem;
	line-height: 1.6;
}

.how-it-works {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.how-it-works h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

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

.step {
	position: relative;
	padding: 2rem;
	padding-top: 4rem;
	text-align: center;
}

.step-number {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: bold;
}

.step h3 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.step p {
	color: var(--color-text-light);
	font-size: 0.95rem;
	line-height: 1.6;
}

.features {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.features h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

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

.feature-card {
	padding: 2rem;
	background: linear-gradient(135deg, var(--color-accent), transparent);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	text-align: center;
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-4px);
	border-color: var(--color-primary);
}

.feature-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 1.5rem;
	color: var(--color-primary);
}

.feature-card h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.feature-card p {
	color: var(--color-text-light);
	font-size: 0.95rem;
}

.benefits {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.benefits h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

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

.benefit-item {
	text-align: center;
	padding: 2rem;
	background: var(--color-accent);
	border-radius: var(--radius-lg);
	border-left: 4px solid var(--color-primary);
}

.benefit-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.benefit-item p {
	color: var(--color-text-light);
	font-size: 0.9rem;
}

.testimonials {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.testimonials h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

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

.testimonial-card {
	padding: 2rem;
	background: var(--color-accent);
	border-radius: var(--radius-lg);
	border-left: 4px solid var(--color-primary);
}

.stars {
	color: #FFB800;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	letter-spacing: 0.1rem;
}

.testimonial-text {
	color: var(--color-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.avatar {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.author-name {
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.author-role {
	color: var(--color-text-light);
	font-size: 0.85rem;
}

.faq {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.faq h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

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

.faq-item {
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 1rem;
}

.faq-item summary {
	padding: 1.5rem;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
	color: var(--color-text);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-item summary:hover {
	color: var(--color-primary);
	background: var(--color-accent);
	border-radius: var(--radius);
}

.faq-item[open] summary {
	color: var(--color-primary);
}

.faq-item p {
	padding: 0 1.5rem 1.5rem 1.5rem;
	color: var(--color-text-light);
	line-height: 1.7;
}

.cta-banner {
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	color: white;
	text-align: center;
	padding: 4rem 2rem;
	margin: 6rem 0 0 0;
}

.cta-banner h2 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.cta-banner p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.contact-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.contact-card {
	max-width: 600px;
	margin: 0 auto;
	padding: 3rem;
	background: var(--color-accent);
	border-radius: var(--radius-lg);
}

.contact-card h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

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

.contact-form input,
.contact-form textarea {
	padding: 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	font-family: var(--font-main);
	font-size: 1rem;
	color: var(--color-text);
	background: var(--color-bg);
	transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(71, 121, 194, 0.1);
}

.contact-form button {
	align-self: flex-start;
}

.footer {
	background: var(--color-footer);
	color: white;
	margin-top: 6rem;
	padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.footer-col p {
	margin-bottom: 0.5rem;
	opacity: 0.9;
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-col a {
	display: block;
	margin-bottom: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
}

.footer-col a:hover {
	color: white;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	opacity: 0.8;
	font-size: 0.9rem;
}

.footer-minimal {
	background: var(--color-footer);
	color: white;
	text-align: center;
	padding: 2rem;
	opacity: 0.9;
	font-size: 0.9rem;
}

.footer-minimal a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.footer-minimal a:hover {
	color: white;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--color-footer);
	color: white;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	z-index: 999;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
	display: none;
}

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

.legal-page {
	max-width: 900px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.legal-page h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.last-updated {
	color: var(--color-text-light);
	font-size: 0.9rem;
	margin-bottom: 3rem;
}

.legal-page h2 {
	font-size: 1.5rem;
	margin: 2.5rem 0 1rem 0;
}

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

.cookie-table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
	background: var(--color-accent);
	border-radius: var(--radius);
	overflow: hidden;
}

.cookie-table thead {
	background: var(--color-primary);
	color: white;
}

.cookie-table th,
.cookie-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.cookie-table tr:last-child td {
	border-bottom: none;
}

.thank-you-page {
	max-width: 600px;
	margin: 6rem auto;
	padding: 0 2rem;
	text-align: center;
}

.thank-you-icon {
	width: 120px;
	height: 120px;
	color: var(--color-success);
	margin: 0 auto 2rem;
}

.thank-you-page h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--color-success);
}

.thank-you-page p {
	color: var(--color-text-light);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.confirmation-text {
	margin-bottom: 2rem;
}

.breadcrumb {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 2rem;
	font-size: 0.95rem;
	color: var(--color-text-light);
}

.breadcrumb a {
	color: var(--color-primary);
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.hero-page {
	max-width: 1000px;
	margin: 4rem auto;
	padding: 0 2rem;
	text-align: center;
}

.hero-badge {
	display: inline-block;
	background: var(--color-accent);
	color: var(--color-primary);
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.hero-page h1 {
	font-size: 2.8rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-page > p {
	font-size: 1.2rem;
	color: var(--color-text-light);
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-visual {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

.hero-visual svg {
	width: 300px;
	height: 200px;
	max-width: 100%;
}

.about-full {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.about-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 6rem;
}

.about-row.reverse {
	direction: rtl;
}

.about-row.reverse > * {
	direction: ltr;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.about-text p {
	color: var(--color-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

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

.about-visual svg {
	width: 100%;
	max-width: 400px;
}

.values-section {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
}

.values-section h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

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

.value-card {
	text-align: center;
	padding: 2rem;
	background: var(--color-accent);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
}

.value-icon {
	font-size: 3rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.value-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

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

.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.hero-title { font-size: 2.2rem; }
	.hero-subtitle { font-size: 1.1rem; }
	.nav-desktop { display: none; }
	.burger-menu { display: flex; }
	.about-row { grid-template-columns: 1fr; gap: 2rem; }
	.about-row.reverse { direction: ltr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.hero-buttons { flex-direction: column; }
	.btn { width: 100%; }
	.footer-content { grid-template-columns: 1fr; }
	.cookie-banner {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.cookie-buttons { width: 100%; flex-direction: column; }
	.cookie-banner .btn { width: 100%; }
	.features h2, .benefits h2, .testimonials h2, .faq h2 { font-size: 2rem; }
	.steps-container { grid-template-columns: 1fr; }
	.contact-form button { width: 100%; }
}
