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

:root {
	--primary-color: #2563eb;
	--secondary-color: #64748b;
	--text-color: #1e293b;
	--text-light: #64748b;
	--background-color: #ffffff;
	--surface-color: #f8fafc;
	--border-color: #e2e8f0;
	--success-color: #22c55e;
	--warning-color: #f59e0b;
	--error-color: #ef4444;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
}

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

/* Header */
.header {
	background: var(--background-color);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-content h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

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

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 1rem;
}

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

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

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* Why AI Section */
.why-ai {
	background: var(--surface-color);
}

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

.benefit-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.benefit-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Applications Section */
.app-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

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

/* Solutions Page */
.solutions-hero {
	padding: 3rem 0;
	background: var(--surface-color);
}

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

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

.solution-card {
	background: white;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.solution-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 1.5rem 1.5rem 1rem;
}

.solution-card p {
	margin: 0 1.5rem 1.5rem;
	color: var(--text-light);
}

.solution-benefits {
	display: flex;
	gap: 0.5rem;
	margin: 0 1.5rem 1.5rem;
}

.benefit-tag {
	background: var(--surface-color);
	color: var(--primary-color);
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Creative Solutions */
.creative-solutions {
	background: var(--surface-color);
}

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

.content-text h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.creative-features {
	margin-top: 2rem;
}

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

.feature-item h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.content-image img {
	width: 100%;
	border-radius: 1rem;
}

/* Personal Solutions */
.personal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.personal-item {
	background: white;
	padding: 1.5rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease;
}

.personal-item:hover {
	transform: translateY(-3px);
}

.personal-emoji {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.personal-item h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq {
	background: var(--surface-color);
}

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

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

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

.faq-question:hover {
	background: var(--surface-color);
}

.faq-question h3 {
	font-size: 1.125rem;
	font-weight: 600;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform 0.3s ease;
}

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

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

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

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

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

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

.contact-item h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid var(--border-color);
	border-radius: 0.5rem;
	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: var(--primary-color);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.875rem;
	line-height: 1.4;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	min-width: 18px;
	height: 18px;
	cursor: pointer;
}

.checkbox-container input[type='checkbox']:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--text-color);
	color: white;
	padding: 1rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

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

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

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

.btn-accept,
.btn-decline {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
	background: #16a34a;
}

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

.btn-decline:hover {
	background: white;
	color: var(--text-color);
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10001;
	justify-content: center;
	align-items: center;
}

.modal.show {
	display: flex;
}

.modal-content {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.modal-content h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.modal-content p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-color);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 1rem auto;
}

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

.success-icon {
	font-size: 3rem;
	color: var(--success-color);
	margin-bottom: 1rem;
}

/* Footer */
.footer {
	background: var(--text-color);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-column h4 {
	font-weight: 600;
	margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

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

/* Pages */
.legal-page {
	margin: 0 auto;
	padding: 2rem 0;
	min-height: calc(100vh - 200px);
}

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

.last-updated {
	color: var(--text-light);
	margin-bottom: 2rem;
	font-style: italic;
}

.legal-content {
	max-width: 800px;
}

.legal-content section {
	margin-bottom: 2rem;
	padding: 0;
}

.legal-content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.legal-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

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

.cookie-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

.cookie-type {
	background: var(--surface-color);
	padding: 1.5rem;
	border-radius: 0.5rem;
}

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

/* Success Message */
.success-message {
	background: var(--success-color);
	color: white;
	padding: 1rem;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	text-align: center;
	display: none;
}

.success-message.show {
	display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 1rem;
		border-top: 1px solid var(--border-color);
	}

	.nav-menu.active {
		display: flex;
	}

	.hero .container,
	.solutions-hero .container,
	.content-layout,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.hero-buttons {
		flex-direction: column;
	}

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

	.app-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

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

	.footer-links {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

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

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

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

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

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