:root {
	--primary-color: #FF6B35;
	--secondary-color: #F7931E;
	--dark-blue: #1E3A8A;
	--light-blue: #3B82F6;
	--text-dark: #1F2937;
	--text-light: #6B7280;
	--bg-light: #F9FAFB;
	--bg-white: #FFFFFF;
	--gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
	--gradient-blue: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

/* Header */
.head {
	background: var(--bg-white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

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

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

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

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

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

/* Hero Section */
.hero {
	background: var(--gradient-blue);
	padding: 8rem 2rem 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	top: -50%;
	left: -50%;
	animation: float 20s linear infinite;
}

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

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3rem;
	color: white;
	margin-bottom: 1.5rem;
	font-weight: 800;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	background: var(--gradient-primary);
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

/* Quick Access Cards */
.quick-access {
	padding: 4rem 2rem;
	background: var(--bg-light);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.section-subtitle {
	text-align: center;
	color: var(--text-light);
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.cards-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.card-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: white;
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* Features Section */
.features {
	padding: 4rem 2rem;
	background: white;
}

.features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.feature-item {
	text-align: center;
	padding: 2rem;
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: scale(1.05);
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(247,147,30,0.1) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
	background: var(--gradient-primary);
	color: white;
	transform: rotate(10deg);
}

.feature-item h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.feature-item p {
	color: var(--text-light);
	font-size: 0.95rem;
}

/* Tutorial Section */
.tutorials {
	padding: 4rem 2rem;
	background: var(--bg-light);
}

.tutorial-tabs {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.tab-button {
	padding: 0.75rem 2rem;
	border: none;
	background: white;
	border-radius: 50px;
	font-weight: 600;
	color: var(--text-dark);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-button.active {
	background: var(--gradient-primary);
	color: white;
	transform: scale(1.05);
}

.tutorial-content {
	max-width: 1000px;
	margin: 0 auto;
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tutorial-item {
	display: none;
}

.tutorial-item.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.tutorial-item h3 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.step-list {
	list-style: none;
	margin-left: 0;
}

.step-list li {
	position: relative;
	padding-left: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.step-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

.step-list li:nth-child(1)::before { content: '1'; }
.step-list li:nth-child(2)::before { content: '2'; }
.step-list li:nth-child(3)::before { content: '3'; }
.step-list li:nth-child(4)::before { content: '4'; }
.step-list li:nth-child(5)::before { content: '5'; }

/* Notification Templates */
.templates {
	padding: 4rem 2rem;
	background: white;
}

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

.template-card {
	background: var(--bg-light);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

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

.template-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.template-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.template-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
}

.template-preview {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	font-size: 0.9rem;
	color: var(--text-light);
	border: 1px solid rgba(0,0,0,0.05);
	line-height: 1.8;
}

/* CTA Section */
.cta-section {
	padding: 5rem 2rem;
	background: var(--gradient-blue);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	top: -150px;
	right: -150px;
}

.cta-section::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
	bottom: -200px;
	left: -200px;
}

.cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.cta-content p {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 2.5rem;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-secondary {
	background: white;
	color: var(--dark-blue);
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 640px) {
	.hero h1 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.nav-menu {
		display: none;
	}

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

	.cta-content h2 {
		font-size: 2rem;
	}
}