/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
	top: -100px;
	right: -100px;
	animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
	flex: 1;
	z-index: 1;
}

.hero h1 {
	font-size: 56px;
	line-height: 1.2;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #ff6b00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 20px;
	color: #b0b0b0;
	margin-bottom: 40px;
	max-width: 600px;
}

.cta-button {
	display: inline-block;
	padding: 18px 40px;
	background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.hero-visual {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.chat-preview {
	background: rgba(26, 26, 46, 0.8);
	border: 1px solid rgba(255, 107, 0, 0.3);
	border-radius: 20px;
	padding: 30px;
	backdrop-filter: blur(10px);
	max-width: 400px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.chat-message {
	background: rgba(255, 107, 0, 0.1);
	border-left: 3px solid #ff6b00;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 10px;
	animation: slideIn 0.5s ease-out;
}
@keyframes slideIn {
	from { opacity: 0; transform: translateX(-20px); }
	to { opacity: 1; transform: translateX(0); }
}
.chat-message strong {
	color: #ff6b00;
	display: block;
	margin-bottom: 8px;
}
/* Features Section */
.features {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-title {
	text-align: center;
	font-size: 42px;
	margin-bottom: 60px;
	background: linear-gradient(135deg, #ffffff 0%, #ff6b00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.feature-card {
	background: rgba(26, 26, 46, 0.6);
	border: 1px solid rgba(255, 107, 0, 0.2);
	border-radius: 15px;
	padding: 40px;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: #ff6b00;
	box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #ff6b00;
}
.feature-card p {
	color: #b0b0b0;
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	text-align: center;
	background: linear-gradient(135deg, #16213e 0%, #0f0f0f 100%);
}

.cta-section h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 20px;
	color: #b0b0b0;
	margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		flex-direction: column;
		text-align: center;
	}

	.hero h1 {
		font-size: 36px;
	}

	.hero p {
		font-size: 16px;
	}

	.nav-links {
		display: none;
	}

	.chat-preview {
		margin-top: 40px;
	}
}
