:root {
	--primary-color: #1a1a1a;
	--secondary-color: #666666;
	--accent-color: #0066cc;
	--background-color: #ffffff;
	--surface-color: #f8f9fa;
	--border-color: #e5e5e5;
	--text-color: #333333;
	--text-light: #666666;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--radius: 8px;
	--transition: all 0.3s ease;
}

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

body {
	font-family: 'Noto Sans', 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;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cal Sans', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
}

h2 {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
	font-size: clamp(1.25rem, 3vw, 2rem);
}

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

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

.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-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

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

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

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

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

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

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

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

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 24px;
	border-radius: var(--radius);
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 1rem;
}

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

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

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

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

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

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

.hero-image {
	text-align: center;
	margin-top: 3rem;
}

.ai-icon {
	font-size: 4rem;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Page Hero */
.page-hero {
	padding: 120px 0 60px;
	background: var(--surface-color);
	text-align: center;
}

.page-hero-content {
	max-width: 600px;
	margin: 0 auto;
}

/* About Section */
.about {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 4rem;
}

.section-header p {
	color: var(--text-light);
	font-size: 1.1rem;
}

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

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

.benefits-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.benefits-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

/* Features Section */
.features {
	padding: 80px 0;
	background: var(--surface-color);
}

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

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

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

.feature-image {
	margin-bottom: 1.5rem;
}

.emoji {
	font-size: 3rem;
}

/* Applications Page */
.app-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

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

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

.app-text {
	max-width: 100%;
}

.app-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.feature-list {
	list-style: none;
	margin-top: 1.5rem;
}

.feature-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.feature-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

.productivity {
	padding: 80px 0;
}

.automation {
	padding: 80px 0;
	background: var(--surface-color);
}

.applications-grid {
	padding: 80px 0;
}

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

.app-card {
	background: white;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

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

.app-card .app-image {
	height: 200px;
	overflow: hidden;
}

.app-card .app-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.app-card .app-content {
	padding: 1.5rem;
	display: block;
}

/* FAQ Section */
.faq {
	padding: 80px 0;
}

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

.faq-item {
	background: white;
	border-radius: var(--radius);
	margin-bottom: 1rem;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	transition: var(--transition);
}

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

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent-color);
	transition: var(--transition);
}

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

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

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

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	margin: 0;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.4;
	gap: 0.75rem;
}

.checkbox-label input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 0;
	height: 0;
}

.checkmark {
	display: block;
	width: 20px;
	height: 20px;
	background-color: white;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	position: relative;
	transition: var(--transition);
}

.checkbox-label:hover input ~ .checkmark {
	border-color: var(--accent-color);
}

.checkbox-label input:checked ~ .checkmark {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.checkmark:after {
	content: '';
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
	display: block;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: var(--surface-color);
}

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

.contact-info {
	background: white;
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

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

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

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: var(--radius);
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-color);
}

.form-status {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: var(--radius);
	text-align: center;
}

.form-status.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-status.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 2rem;
	border-radius: var(--radius);
	text-align: center;
	min-width: 300px;
	max-width: 90%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

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

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

/* Cookie Notice */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	color: white;
	padding: 1.5rem;
	z-index: 1001;
	transition: var(--transition);
}

.cookie-notice.hidden {
	transform: translateY(100%);
}

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

.cookie-content h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.2rem;
}

.cookie-content p {
	margin: 0;
	flex: 1;
	font-size: 0.95rem;
}

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

.btn-accept,
.btn-decline {
	padding: 8px 16px;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
}

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

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

.btn-accept:hover {
	background: #0052a3;
}

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

/* Footer */
.footer {
	background: var(--primary-color);
	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 ul {
	list-style: none;
}

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

.footer-section ul li a {
	color: #cccccc;
	text-decoration: none;
	transition: var(--transition);
}

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

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

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

.legal-page .container {
	max-width: 800px;
}

.legal-page h1 {
	font-style: 1.5rem;
	margin-bottom: 0.5rem;
}

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

.legal-page section {
	font-style: 1.5rem;
	margin-bottom: 2rem;
}

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

.legal-page h3 {
	color: var(--primary-color);
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

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

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

.legal-page a {
	color: var(--accent-color);
	text-decoration: none;
}

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

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

.text-center {
	text-align: center;
}

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

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: start;
		align-items: center;
		padding-top: 2rem;
		transition: var(--transition);
		box-shadow: var(--shadow);
	}

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

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

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

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

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

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

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

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

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

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

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

	.section-animate {
		transform: translateY(20px);
	}
}

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

	.hero,
	.about,
	.features,
	.faq,
	.contact,
	.productivity,
	.automation,
	.applications-grid {
		padding: 60px 0;
	}

	.nav-container {
		padding: 1rem 15px;
	}

	.hero-buttons .btn-primary,
	.hero-buttons .btn-secondary {
		width: 100%;
		text-align: center;
		max-width: 250px;
	}
}
