:root {
	--primary: #5B3FFF;
	--primary-dark: #4831CC;
	--primary-light: #7C66FF;
	--secondary: #FF3F7E;
	--accent: #FFD23F;
	--dark: #0F0F1E;
	--dark-secondary: #1A1A2E;
	--light: #FFFFFF;
	--gray-100: #F8F9FA;
	--gray-200: #E9ECEF;
	--gray-300: #DEE2E6;
	--gray-400: #CED4DA;
	--gray-500: #ADB5BD;
	--gray-600: #6C757D;
	--gray-700: #495057;
	--gray-800: #343A40;
	--gray-900: #212529;
	--gradient-primary: linear-gradient(135deg, #5B3FFF 0%, #FF3F7E 100%);
	--gradient-dark: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
	--shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
	--shadow-md: 0 5px 15px rgba(0,0,0,0.08);
	--shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
	--shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
	--shadow-2xl: 0 30px 80px rgba(0,0,0,0.2);
}

.container_div {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Hero Section - Premium Design */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: var(--gradient-dark);
	overflow: hidden;
	padding-top: 100px;
}

/* Animated Background */
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.3;
}

.hero-bg::before {
	content: '';
	position: absolute;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	top: -400px;
	right: -200px;
	animation: float-slow 20s ease-in-out infinite;
	filter: blur(100px);
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
	border-radius: 50%;
	bottom: -300px;
	left: -100px;
	animation: float-slow 25s ease-in-out infinite reverse;
	filter: blur(80px);
}

@keyframes float-slow {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--light);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 24px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 30px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	animation: fadeInDown 0.8s ease-out;
}

.hero-badge .badge-icon {
	width: 20px;
	height: 20px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}

.hero-section h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	margin-bottom: 24px;
	letter-spacing: -2px;
	line-height: 1.1;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section h1 span {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 300;
	opacity: 0.9;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Stats - Glass Morphism */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.stat-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: fadeInUp 0.8s ease-out 0.6s both;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 20px 40px rgba(91, 63, 255, 0.3);
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-value {
	font-size: 3.5rem;
	font-weight: 900;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.8;
	font-weight: 400;
}

/* Features Section - Modern Cards */
.features-section {
	padding: 120px 0;
	background: var(--gray-100);
	position: relative;
}

.section_div-header {
	text-align: center;
	margin-bottom: 80px;
}

.section_div-label {
	display: inline-block;
	padding: 8px 20px;
	background: var(--primary);
	color: var(--light);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.section_div-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 140%;
	font-weight: 900;
	color: var(--dark);
	letter-spacing: -1px;
	margin-bottom: 20px;
}

.section_div-desc {
	font-size: 1.2rem;
	color: var(--gray-600);
	max-width: 600px;
	margin: 0 auto;
}

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

.feature-card {
	background: var(--light);
	border-radius: 24px;
	padding: 48px 40px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--gray-200);
}

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

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-2xl);
	border-color: transparent;
}

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

.feature-icon-wrapper {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.feature-icon-wrapper::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon-wrapper::after {
	transform: translate(-50%, -50%) scale(2);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--light);
	position: relative;
	z-index: 1;
}

.feature-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 15px;
}

.feature-desc {
	color: var(--gray-600);
	line-height: 1.8;
	font-size: 1.05rem;
}

/* Programs Section - Premium Grid */
.programs-section {
	padding: 120px 0;
	background: var(--light);
	position: relative;
	overflow: hidden;
}

.programs-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -200px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
	opacity: 0.05;
	border-radius: 50%;
}

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

.program-card {
	background: var(--light);
	border: 2px solid var(--gray-200);
	border-radius: 24px;
	padding: 48px 36px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
}

.program-card::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	background: var(--gradient-primary);
	opacity: 0.05;
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.program-card:hover::before {
	top: -150%;
	left: -150%;
}

.program-card:hover {
	transform: translateY(-12px);
	border-color: var(--primary);
	box-shadow: 0 30px 60px rgba(91, 63, 255, 0.2);
}

.program-icon-box {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	background: var(--gray-100);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.4s ease;
}

.program-card:hover .program-icon-box {
	background: var(--gradient-primary);
	transform: scale(1.1) rotate(5deg);
}

.program-icon {
	font-size: 3rem;
	color: var(--primary);
	transition: all 0.4s ease;
}

.program-card:hover .program-icon {
	color: var(--light);
	transform: scale(1.1);
}

.program-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
}

.program-count {
	font-size: 4rem;
	font-weight: 900;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	font-family: 'Poppins', sans-serif;
}

.program-list {
	list-style: none;
	text-align: left;
}

.program-list li {
	padding: 12px 0;
	color: var(--gray-700);
	font-size: 0.95rem;
	position: relative;
	padding-left: 30px;
	transition: all 0.3s ease;
}

.program-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: bold;
	transition: all 0.3s ease;
}

.program-card:hover .program-list li {
	padding-left: 40px;
	color: var(--gray-800);
}

/* Solution Section - Modern Split Layout */
.solution-section {
	padding: 120px 0;
	background: var(--dark);
	color: var(--light);
	position: relative;
	overflow: hidden;
}

.solution-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: stretch;
}

.solution-content h3 {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 30px;
	line-height: 1.2;
}

.solution-content h3 span {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.solution-desc {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 40px;
	line-height: 1.8;
}

.solution-features {
	list-style: none;
}

.solution-features li {
	padding: 20px 0;
	font-size: 1.1rem;
	position: relative;
	padding-left: 50px;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-features li:last-child {
	border-bottom: none;
}

.solution-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	width: 30px;
	height: 30px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1rem;
}

.solution-features li:hover {
	padding-left: 60px;
	color: var(--primary-light);
}

.solution-visual {
	position: relative;
	height: 100%;
	min-height: 500px;
	border-radius: 24px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-visual::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	opacity: 0.3;
	filter: blur(60px);
	animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); }
	50% { transform: translate(-50%, -50%) scale(1.2); }
}

.dashboard-preview {
	width: 90%;
	height: auto;
	background: var(--dark-secondary);
	border-radius: 16px;
	padding: 20px;
	position: relative;
	z-index: 1;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.dashboard-dots {
	display: flex;
	gap: 10px;
}

.dashboard-title {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 600;
}

.dashboard-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gray-600);
}

.dashboard-dot:first-child { background: #FF5F57; }
.dashboard-dot:nth-child(2) { background: #FFBD2E; }
.dashboard-dot:nth-child(3) { background: #28CA42; }

.dashboard-content {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.dashboard-widget:nth-child(5),
.dashboard-widget:nth-child(6) {
	grid-row: 2;
}

.dashboard-widget:nth-child(5) {
	grid-column: 1 / 3;
}

.dashboard-widget:nth-child(6) {
	grid-column: 3;
}

.dashboard-widget {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 16px;
	min-height: 110px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: widgetFadeIn 0.6s ease-out both;
}

.dashboard-widget:nth-child(1) { animation-delay: 0.1s; }
.dashboard-widget:nth-child(2) { animation-delay: 0.2s; }
.dashboard-widget:nth-child(3) { animation-delay: 0.3s; }
.dashboard-widget:nth-child(4) { animation-delay: 0.4s; }
.dashboard-widget:nth-child(5) { animation-delay: 0.5s; }
.dashboard-widget:nth-child(6) { animation-delay: 0.6s; }

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

.dashboard-widget::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-primary);
}

.widget-title {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 6px;
	font-weight: 500;
}

.widget-value {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--light);
	font-family: 'Poppins', sans-serif;
	margin: 4px 0;
}

.widget-chart {
	display: flex;
	align-items: flex-end;
	height: 60px;
	gap: 3px;
	margin-top: auto;
}

.chart-bar {
	flex: 1;
	background: var(--gradient-primary);
	border-radius: 3px 3px 0 0;
	opacity: 0.8;
	animation: growUp 0.8s ease-out both;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes growUp {
	from {
		transform: scaleY(0);
		transform-origin: bottom;
	}
	to {
		transform: scaleY(1);
		transform-origin: bottom;
	}
}

.widget-progress {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
	margin-top: 8px;
}

.progress-fill {
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 3px;
	transition: width 0.3s ease;
	animation: progressGrow 1s ease-out;
}

@keyframes progressGrow {
	from {
		width: 0;
	}
}

.widget-list {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.45;
}

.widget-badge {
	display: inline-block;
	padding: 2px 8px;
	background: var(--primary);
	color: var(--light);
	border-radius: 10px;
	font-size: 0.68rem;
	font-weight: 600;
}

/* CTA Section - Premium Style */
.cta-section {
	padding: 120px 0;
	background: var(--gradient-primary);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.cta-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 140%;
	font-weight: 900;
	color: var(--light);
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.cta-desc {
	font-size: 1.4rem;
	color: var(--light);
	opacity: 0.95;
	margin-bottom: 50px;
}

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

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 20px 48px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 60px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-btn-primary {
	background: var(--light);
	color: var(--primary);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-btn-secondary {
	background: transparent;
	color: var(--light);
	border: 2px solid var(--light);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
	border-color: var(--light);
}

.cta-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.6s ease;
}

.cta-btn:hover::after {
	transform: translate(-50%, -50%) scale(2);
}

/* Floating Elements */
.floating-element {
	position: absolute;
	opacity: 0.1;
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-30px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
	.program-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.solution-wrapper {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.solution-visual {
		height: auto;
		min-height: auto;
	}

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

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2.5rem;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 0 20px 0;
	}

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

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

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

	.cta-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.dashboard-preview {
		height: auto;
	}

	.dashboard-content {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		gap: 12px;
	}

	.dashboard-widget {
		min-height: 100px;
		padding: 14px;
	}

	.dashboard-widget:nth-child(5) {
		grid-column: 1;
		grid-row: 5;
	}

	.dashboard-widget:nth-child(6) {
		grid-column: 1;
		grid-row: 6;
	}

	.solution-visual {
		height: auto;
		min-height: auto;
	}
}

/* Scroll Animations */
.scroll-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.scroll-fade.visible {
	opacity: 1;
	transform: translateY(0);
}