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

body {
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.7;
	color: #1a202c;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	background-attachment: fixed;
}

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

/* Navigation */
.navbar {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 1.2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #10b981, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	letter-spacing: -1px;
}

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

.nav-menu {
	display: flex;
	list-style: none;
	gap: 40px;
}

.nav-menu a {
	color: #4a5568;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 50%;
	background: linear-gradient(135deg, #10b981, #059669);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-menu a:hover {
	color: #10b981;
	transform: translateY(-2px);
}

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

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

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

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
}

.cookie-content {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	padding: 40px;
	border-radius: 20px;
	max-width: 500px;
	margin: 20px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cookie-content h3 {
	margin-bottom: 20px;
	color: #2d3748;
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, #10b981, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cookie-content p {
	margin-bottom: 30px;
	color: #4a5568;
	line-height: 1.6;
}

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

.btn-accept,
.btn-decline {
	padding: 12px 24px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-accept {
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.btn-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.btn-decline {
	background: rgba(74, 85, 104, 0.1);
	color: #4a5568;
	border: 2px solid rgba(74, 85, 104, 0.2);
}

.btn-decline:hover {
	background: rgba(74, 85, 104, 0.2);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	padding: 140px 0 100px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.03)"><polygon points="1000,100 1000,0 0,100"/></svg>');
	background-size: 100% 100%;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 30px;
	line-height: 1.1;
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff, #e2e8f0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 40px;
	opacity: 0.95;
	line-height: 1.6;
	font-weight: 400;
}

.cta-button {
	display: inline-block;
	background: rgba(255, 255, 255, 0.95);
	color: #059669;
	padding: 18px 35px;
	text-decoration: none;
	border-radius: 15px;
	font-weight: 700;
	font-size: 18px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform 0.5s ease;
}

.hero-image img:hover {
	transform: perspective(1000px) rotateY(0deg);
}

/* Page Header */
.page-header {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.03)"><polygon points="1000,100 1000,0 0,100"/></svg>');
	background-size: 100% 100%;
}

.page-header h1 {
	font-size: 3.5rem;
	margin-bottom: 25px;
	font-weight: 800;
	position: relative;
	z-index: 1;
}

.page-header p {
	font-size: 1.3rem;
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

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

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

.why-ai {
	padding: 100px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	position: relative;
	margin: 60px 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.why-ai h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 60px;
	color: #2d3748;
	font-weight: 800;
	background: linear-gradient(135deg, #10b981, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.why-text p {
	font-size: 1.2rem;
	margin-bottom: 25px;
	color: #4a5568;
	line-height: 1.8;
}

.why-emoji span {
	font-size: 8rem;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
	animation: float 3s ease-in-out infinite;
}

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

/* Quick Start Cards */
.quick-start {
	padding: 100px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	position: relative;
	margin: 60px 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.quick-start h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 60px;
	color: #2d3748;
	font-weight: 800;
	background: linear-gradient(135deg, #10b981, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.quick-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	padding: 40px;
	border-radius: 25px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	position: relative;
	overflow: hidden;
}

.quick-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #10b981, #059669);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.quick-card:hover::before {
	transform: scaleX(1);
}

.quick-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.quick-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 25px;
	transition: transform 0.3s ease;
}

.quick-card:hover img {
	transform: scale(1.05);
}

.quick-card h3 {
	font-size: 1.6rem;
	margin-bottom: 18px;
	color: #2d3748;
	font-weight: 700;
}

.quick-card p {
	color: #4a5568;
	line-height: 1.7;
	font-size: 1.1rem;
}

/* Content Sections */
.work-productivity,
.learning-development,
.getting-started {
	padding: 100px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	position: relative;
	margin: 60px 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.personal-organization,
.health-wellness {
	padding: 100px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	position: relative;
	margin: 60px 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.creative-entertainment {
	padding: 100px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	position: relative;
	margin: 60px 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

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

.content-with-image.reverse {
	grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse .content-text {
	order: 2;
}

.content-with-image.reverse .content-image {
	order: 1;
}

.content-emoji {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: center;
}

.emoji-icon {
	font-size: 5rem;
	text-align: center;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
	animation: float 3s ease-in-out infinite;
}

.content-text h2,
.content-text h3 {
	font-size: 2.8rem;
	margin-bottom: 35px;
	color: #2d3748;
	font-weight: 800;
	line-height: 1.2;
}

.content-text p {
	font-size: 1.2rem;
	margin-bottom: 25px;
	color: #4a5568;
	line-height: 1.8;
}

.content-text strong {
	color: #10b981;
	font-weight: 700;
}

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

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

.content-text-only p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: #555;
	line-height: 1.8;
}

/* Creative Grid */
.creative-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.creative-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.creative-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.creative-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.creative-card:hover img {
	transform: scale(1.1);
}

.creative-card h3 {
	font-size: 1.5rem;
	margin: 25px 25px 15px;
	color: #2d3748;
	font-weight: 700;
}

.creative-card p {
	padding: 0 25px 25px;
	color: #4a5568;
	line-height: 1.7;
	font-size: 1.1rem;
}

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

.creative-description p {
	font-size: 1.2rem;
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 25px;
}

/* FAQ Section */
.faq {
	padding: 100px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	position: relative;
	margin: 60px 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.faq h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 60px;
	color: #2d3748;
	font-weight: 800;
	background: linear-gradient(135deg, #10b981, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.faq-item {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	border-radius: 15px;
	margin-bottom: 25px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
	width: 100%;
	padding: 25px 30px;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.2rem;
	font-weight: 700;
	color: #2d3748;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.faq-icon {
	font-size: 1.8rem;
	background: linear-gradient(135deg, #10b981, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.3s ease;
	font-weight: 300;
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.5);
}

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

.faq-answer p {
	padding: 0 30px 25px 30px;
	color: #4a5568;
	line-height: 1.7;
	font-size: 1.1rem;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		rgba(16, 185, 129, 0.1),
		rgba(5, 150, 105, 0.1)
	);
	backdrop-filter: blur(20px);
	position: relative;
	margin: 60px 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 60px;
	color: #fff;
	font-weight: 800;
	background-clip: text;
}

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

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: #fff;
	font-weight: 700;
}

.contact-item p {
	color: #fff;
	line-height: 1.7;
	font-size: 1.1rem;
}

.contact-form {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	padding: 50px;
	border-radius: 25px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 18px 20px;
	border: 2px solid rgba(74, 85, 104, 0.1);
	border-radius: 12px;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
	transform: translateY(-2px);
}

.submit-btn {
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	padding: 18px 35px;
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

.form-message {
	margin-top: 25px;
	padding: 18px;
	border-radius: 12px;
	text-align: center;
	font-weight: 600;
	backdrop-filter: blur(20px);
}

.form-message.success {
	background: rgba(34, 197, 94, 0.1);
	color: #059669;
	border: 2px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
	background: rgba(239, 68, 68, 0.1);
	color: #dc2626;
	border: 2px solid rgba(239, 68, 68, 0.2);
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #1a202c, #2d3748);
	color: white;
	padding: 80px 0 30px;
	position: relative;
	margin: 60px 20px 0;
	border-radius: 30px 30px 0 0;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

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

.footer-section h4 {
	font-size: 1.3rem;
	margin-bottom: 25px;
	color: #f7fafc;
	font-weight: 700;
}

.footer-section p {
	color: #cbd5e0;
	line-height: 1.7;
	font-size: 1.1rem;
}

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

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: #cbd5e0;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.footer-section ul li a:hover {
	color: #10b981;
	transform: translateX(5px);
}

.footer-section p a {
	color: #cbd5e0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section p a:hover {
	color: #10b981;
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
}

.footer-bottom p {
	color: #a0aec0;
	font-size: 1.1rem;
}

/* Legal Pages */
.legal-page {
	padding: 140px 0 100px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	min-height: 100vh;
	margin: 0 20px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.legal-page h1 {
	font-size: 1.5rem;
	margin-bottom: 25px;
	color: #2d3748;
	font-weight: 800;
	background: linear-gradient(135deg, #10b981, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.legal-page h2 {
	font-size: 1.5rem;
	margin: 50px 0 25px;
	color: #2d3748;
	font-weight: 700;
}

.legal-page h3 {
	font-size: 1.5rem;
	margin: 35px 0 18px;
	color: #2d3748;
	font-weight: 600;
}

.legal-page p {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 18px;
	color: #4a5568;
}

.legal-page ul,
.legal-page ol {
	margin: 18px 0 18px 35px;
}

.legal-page li {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 10px;
	color: #4a5568;
}

.legal-page section {
	margin-bottom: 40px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 15px;
	border-left: 4px solid #10b981;
}

.legal-page a {
	color: #10b981;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
	.container {
		padding: 0 30px;
	}

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

	.hero .container {
		gap: 60px;
	}

	.content-text h2,
	.content-text h3 {
		font-size: 2.5rem;
	}

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

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

@media (max-width: 992px) {
	.nav-container {
		padding: 0 30px;
	}

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

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

	.page-header h1 {
		font-size: 3rem;
	}

	.page-header p {
		font-size: 1.2rem;
	}

	.content-with-image,
	.content-with-image.reverse {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.content-with-image.reverse .content-text,
	.content-with-image.reverse .content-image {
		order: initial;
	}

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

	.why-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.content-emoji {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 30px;
		color: #fff;
	}

	.emoji-icon {
		font-size: 4.5rem;
	}

	.why-emoji span {
		font-size: 7rem;
	}

	.quick-cards {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	.creative-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.creative-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		flex-direction: column;
		background-color: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
		padding: 30px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

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

	.nav-menu li {
		margin: 15px 0;
	}

	.container {
		padding: 0 25px;
	}

	.hero {
		padding: 120px 0 80px;
		min-height: auto;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 50px;
	}

	.hero-content h1 {
		font-size: 2.8rem;
		margin-bottom: 25px;
	}

	.hero-content p {
		font-size: 1.1rem;
		margin-bottom: 35px;
	}

	.page-header {
		padding: 120px 0 60px;
	}

	.page-header h1 {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}

	.page-header p {
		font-size: 1.1rem;
	}

	.why-ai h2,
	.quick-start h2,
	.faq h2,
	.contact h2 {
		font-size: 2.5rem;
		margin-bottom: 50px;
	}

	.content-text h2,
	.content-text h3 {
		font-size: 2.2rem;
		margin-bottom: 25px;
	}

	.content-text p,
	.content-text-only p {
		font-size: 1.1rem;
		margin-bottom: 20px;
	}

	.why-text p {
		font-size: 1.1rem;
		margin-bottom: 20px;
	}

	.quick-card {
		padding: 30px;
	}

	.quick-card h3 {
		font-size: 1.4rem;
		margin-bottom: 15px;
	}

	.quick-card p {
		font-size: 1rem;
	}

	.creative-card h3 {
		font-size: 1.3rem;
		margin: 20px 20px 12px;
	}

	.creative-card p {
		padding: 0 20px 20px;
		font-size: 1rem;
	}

	.creative-description p {
		font-size: 1.1rem;
		margin-bottom: 20px;
	}

	.faq-question {
		padding: 20px 25px;
		font-size: 1.1rem;
	}

	.faq-answer p {
		padding: 0 25px 20px 25px;
		font-size: 1rem;
	}

	.contact-item h3 {
		font-size: 1.3rem;
		margin-bottom: 10px;
	}

	.contact-item p {
		font-size: 1rem;
	}

	.contact-form {
		padding: 35px;
	}

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

	.form-group input,
	.form-group textarea {
		padding: 16px 18px;
		font-size: 1rem;
	}

	.submit-btn {
		padding: 16px 30px;
		font-size: 1rem;
	}

	.form-message {
		margin-top: 20px;
		padding: 15px;
		font-size: 0.9rem;
	}

	.footer {
		padding: 60px 0 25px;
	}

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

	.footer-section h4 {
		font-size: 1.2rem;
		margin-bottom: 20px;
	}

	.footer-section p,
	.footer-section ul li a {
		font-size: 1rem;
	}

	.footer-bottom p {
		font-size: 1rem;
	}

	.legal-page {
		padding: 120px 0 80px;
		margin: 0 15px;
	}

	.legal-page h1 {
		margin-bottom: 20px;
	}

	.legal-page h2 {
		font-size: 1.8rem;
		margin: 40px 0 20px;
	}

	.legal-page h3 {
		font-size: 1.4rem;
		margin: 30px 0 15px;
	}

	.legal-page p,
	.legal-page li {
		font-size: 1.1rem;
		margin-bottom: 15px;
	}

	.legal-page section {
		padding: 25px;
		margin-bottom: 30px;
	}

	.work-productivity,
	.learning-development,
	.getting-started,
	.personal-organization,
	.health-wellness,
	.creative-entertainment,
	.why-ai,
	.quick-start,
	.faq,
	.contact {
		margin: 40px 15px;
		padding: 70px 0;
	}

	.cookie-content {
		padding: 30px;
		margin: 20px;
	}

	.cookie-buttons {
		flex-direction: column;
		gap: 12px;
	}

	.btn-accept,
	.btn-decline {
		padding: 14px 24px;
		font-size: 15px;
	}
}

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

	.nav-container {
		padding: 0 15px;
		height: 70px;
	}

	.nav-logo a {
		font-size: 24px;
	}

	.nav-menu {
		top: 70px;
		padding: 25px 0;
	}

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

	.hero-content h1 {
		font-size: 2.2rem;
		line-height: 1.2;
	}

	.hero-content p {
		font-size: 1rem;
		margin-bottom: 30px;
	}

	.cta-button {
		padding: 16px 28px;
		font-size: 16px;
	}

	.page-header {
		padding: 100px 0 50px;
	}

	.page-header h1 {
		font-size: 2rem;
		line-height: 1.2;
	}

	.page-header p {
		font-size: 1rem;
	}

	.why-ai h2,
	.quick-start h2,
	.faq h2,
	.contact h2 {
		font-size: 2rem;
		margin-bottom: 40px;
		line-height: 1.2;
	}

	.content-text h2,
	.content-text h3 {
		font-size: 1.8rem;
		margin-bottom: 20px;
		line-height: 1.3;
	}

	.content-text p,
	.content-text-only p,
	.why-text p {
		font-size: 1rem;
		margin-bottom: 18px;
		line-height: 1.7;
	}

	.why-emoji span {
		font-size: 5rem;
	}

	.emoji-icon {
		font-size: 3.5rem;
	}

	.quick-card {
		padding: 25px;
	}

	.quick-card img {
		height: 180px;
		margin-bottom: 20px;
	}

	.quick-card h3 {
		font-size: 1.3rem;
		margin-bottom: 12px;
	}

	.quick-card p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.creative-card img {
		height: 180px;
	}

	.creative-card h3 {
		font-size: 1.2rem;
		margin: 18px 18px 10px;
	}

	.creative-card p {
		padding: 0 18px 18px;
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.creative-description p {
		font-size: 1rem;
		margin-bottom: 18px;
		line-height: 1.7;
	}

	.faq-question {
		padding: 18px 20px;
		font-size: 1rem;
	}

	.faq-icon {
		font-size: 1.6rem;
	}

	.faq-answer p {
		padding: 0 20px 18px 20px;
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.contact-content {
		gap: 30px;
	}

	.contact-info {
		gap: 25px;
	}

	.contact-item h3 {
		font-size: 1.2rem;
		margin-bottom: 8px;
	}

	.contact-item p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.contact-form {
		padding: 25px;
	}

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

	.form-group input,
	.form-group textarea {
		padding: 14px 16px;
		font-size: 0.95rem;
	}

	.submit-btn {
		padding: 14px 25px;
		font-size: 0.95rem;
	}

	.form-message {
		margin-top: 20px;
		padding: 15px;
		font-size: 0.9rem;
	}

	.footer {
		padding: 50px 0 20px;
	}

	.footer-content {
		gap: 30px;
	}

	.footer-section h4 {
		font-size: 1.1rem;
		margin-bottom: 18px;
	}

	.footer-section p,
	.footer-section ul li a {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.footer-section ul li {
		margin-bottom: 10px;
	}

	.footer-bottom {
		padding-top: 25px;
	}

	.footer-bottom p {
		font-size: 0.9rem;
	}

	.legal-page {
		padding: 100px 0 60px;
		margin: 0 10px;
	}

	.legal-page h1 {
		margin-bottom: 18px;
		line-height: 1.2;
	}

	.legal-page h2 {
		font-size: 1.5rem;
		margin: 35px 0 18px;
		line-height: 1.3;
	}

	.legal-page h3 {
		font-size: 1.2rem;
		margin: 25px 0 12px;
		line-height: 1.3;
	}

	.legal-page p,
	.legal-page li {
		font-size: 1rem;
		margin-bottom: 12px;
		line-height: 1.7;
	}

	.legal-page ul,
	.legal-page ol {
		margin: 15px 0 15px 25px;
	}

	.legal-page section {
		padding: 20px;
		margin-bottom: 25px;
	}

	.work-productivity,
	.learning-development,
	.getting-started,
	.personal-organization,
	.health-wellness,
	.creative-entertainment,
	.why-ai,
	.quick-start,
	.faq,
	.contact {
		margin: 25px 10px;
		padding: 50px 0;
	}

	.cookie-content {
		padding: 20px;
		margin: 15px;
		max-width: calc(100vw - 30px);
	}

	.cookie-content h3 {
		font-size: 1.3rem;
		margin-bottom: 15px;
	}

	.cookie-content p {
		font-size: 0.95rem;
		margin-bottom: 25px;
		line-height: 1.6;
	}

	.btn-accept,
	.btn-decline {
		padding: 12px 20px;
		font-size: 14px;
	}
}

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

	.nav-container {
		padding: 0 12px;
	}

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

	.page-header h1 {
		font-size: 1.8rem;
	}

	.why-ai h2,
	.quick-start h2,
	.faq h2,
	.contact h2 {
		font-size: 1.8rem;
	}

	.content-text h2,
	.content-text h3 {
		font-size: 1.6rem;
	}

	.quick-card,
	.contact-form {
		padding: 20px;
	}

	.legal-page {
		margin: 0 8px;
	}

	.legal-page section {
		padding: 15px;
	}

	.work-productivity,
	.learning-development,
	.getting-started,
	.personal-organization,
	.health-wellness,
	.creative-entertainment,
	.why-ai,
	.quick-start,
	.faq,
	.contact {
		margin: 20px 8px;
		padding: 40px 0;
	}

	.cookie-content {
		padding: 18px;
		margin: 12px;
	}
}
