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

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

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

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

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

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

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

.nav-brand a {
	text-decoration: none;
}

.nav-menu {
	display: flex;
	gap: 30px;
}

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

.nav-link:hover,
.nav-link.active {
	color: #059669;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #059669;
	transition: width 0.3s ease;
}

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

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

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

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

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

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

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

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

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	text-align: center;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #064e3b;
}

.hero-content p {
	font-size: 1.25rem;
	color: #065f46;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

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

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

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #064e3b;
}

.section-header p {
	font-size: 1.125rem;
	color: #065f46;
	max-width: 600px;
	margin: 0 auto;
}

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

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

.about-text h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 30px 0 15px;
	color: #064e3b;
}

.about-text p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #374151;
	margin-bottom: 20px;
}

/* Daily AI Section */
.daily-ai {
	padding: 80px 0;
	background: #fff;
}

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

.daily-text h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 30px 0 15px;
	color: #064e3b;
	display: flex;
	align-items: center;
	gap: 10px;
}

.daily-text p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #374151;
	margin-bottom: 20px;
}

/* Smart Home Section */
.smart-home {
	padding: 80px 0;
	background: #f0fdfa;
}

.home-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.home-content h2 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #064e3b;
}

.home-content > p {
	font-size: 1.125rem;
	color: #065f46;
	margin-bottom: 40px;
	line-height: 1.7;
}

.home-features {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.feature {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.emoji {
	font-size: 2rem;
	flex-shrink: 0;
}

.feature h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #064e3b;
}

.feature p {
	color: #065f46;
	line-height: 1.6;
}

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

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

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

.faq-item {
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 20px;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-question:hover {
	color: #059669;
}

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

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	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, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding-bottom: 20px;
}

.faq-answer p {
	color: #374151;
	line-height: 1.7;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #f0fdfa;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info h2 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #064e3b;
}

.contact-info > p {
	font-size: 1.125rem;
	color: #065f46;
	margin-bottom: 40px;
	line-height: 1.7;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #064e3b;
}

.contact-item p {
	color: #065f46;
	line-height: 1.6;
}

/* Contact Form */
.contact-form {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #064e3b;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #059669;
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-group-checkbox input[type='checkbox'] {
	width: auto;
	accent-color: #059669;
	height: 18px;
	width: 18px;
	flex-shrink: 0;
}

.form-group-checkbox label {
	display: inline;
	margin-bottom: 0;
	font-weight: 500;
	color: #374151;
	font-size: 14px;
	line-height: 1.4;
}

/* Footer */
.footer {
	background: #064e3b;
	color: #86efac;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

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

.footer-column h4 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.footer-column a {
	display: block;
	color: #86efac;
	text-decoration: none;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid #065f46;
	padding-top: 30px;
	text-align: center;
}

/* AI Tools Page Styles */
.tools-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%);
	text-align: center;
}

.productivity-tools {
	padding: 80px 0;
	background: #fff;
}

.tools-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.tools-content h2 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #064e3b;
}

.tools-content > p {
	font-size: 1.125rem;
	color: #065f46;
	margin-bottom: 40px;
	line-height: 1.7;
}

.tools-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.tool-item h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #064e3b;
}

.tool-item p {
	color: #065f46;
	line-height: 1.6;
}

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

/* Health & Wellness Section */
.health-wellness {
	padding: 80px 0;
	background: #f0fdfa;
}

.wellness-content {
	max-width: 900px;
	margin: 0 auto;
}

.wellness-text h2 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #064e3b;
	text-align: center;
}

.wellness-text > p {
	font-size: 1.125rem;
	color: #065f46;
	margin-bottom: 40px;
	line-height: 1.7;
	text-align: center;
}

.wellness-features {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.wellness-item h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #064e3b;
}

.wellness-item p {
	color: #065f46;
	line-height: 1.7;
}

/* Tool Cards Section */
.tool-cards {
	padding: 80px 0;
	background: #fff;
}

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

.tool-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

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

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

.card-content {
	padding: 25px;
}

.card-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #064e3b;
}

.card-content p {
	color: #065f46;
	line-height: 1.6;
	margin-bottom: 15px;
}

.card-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.card-tags span {
	background: #d1fae5;
	color: #064e3b;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Creative AI Section */
.creative-ai {
	padding: 80px 0;
	background: #f0fdfa;
}

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

.creative-content h2 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #064e3b;
}

.creative-content > p {
	font-size: 1.125rem;
	color: #065f46;
	margin-bottom: 50px;
	line-height: 1.7;
}

.creative-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	text-align: left;
}

.creative-item {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.creative-item h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #064e3b;
}

.creative-item p {
	color: #065f46;
	line-height: 1.6;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.cookie-content {
	background: #fff;
	margin: 20px;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	margin: 20px auto;
}

.cookie-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #064e3b;
}

.cookie-content p {
	color: #065f46;
	line-height: 1.6;
	margin-bottom: 20px;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
}

.btn-accept {
	background: #059669;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.btn-accept:hover {
	background: #047857;
}

.btn-decline {
	background: #6b7280;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.btn-decline:hover {
	background: #4b5563;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	background: #fff;
}

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
	color: #064e3b;
}

.last-updated {
	color: #065f46;
	margin-bottom: 40px;
	font-style: italic;
}

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

.legal-content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 40px 0 20px;
	color: #064e3b;
}

.legal-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 30px 0 15px;
	color: #065f46;
}

.legal-content p {
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
	margin: 15px 0 15px 30px;
}

.legal-content li {
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: 8px;
}

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

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

	.nav-toggle {
		display: flex;
	}

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

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

	.home-grid,
	.tools-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}

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

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

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

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

	.daily-text h3 {
		font-size: 1.25rem;
	}

	.container {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

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

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