/* StoryCraft - Journalism Courses Website Styles */
/* Main stylesheet for the site */

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

:root {
	/* Современная цветовая палитра 2025 */
	--primary-color: #1a1f3a;
	--secondary-color: #ff6b9d;
	--accent-color: #6366f1;
	--accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	--accent-gradient-alt: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
	--text-dark: #1e293b;
	--text-light: #64748b;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	--border-color: #e2e8f0;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-colored: 0 20px 40px -12px rgba(99, 102, 241, 0.3);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	line-height: 1.7;
	color: var(--text-dark);
	background: var(--bg-gradient);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Header Styles - Modern 2025 */
header {
	background: rgba(26, 31, 58, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	color: white;
	padding: 1.2rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: var(--transition);
}

header:hover {
	background: rgba(26, 31, 58, 0.98);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
	font-size: 1.9rem;
	font-weight: 800;
	text-decoration: none;
	background: var(--accent-gradient-alt);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: var(--transition);
	letter-spacing: -0.5px;
}

.logo:hover {
	transform: scale(1.05);
	filter: brightness(1.2);
}

nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	padding: 0.5rem 0;
	position: relative;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--accent-gradient-alt);
	border-radius: 2px;
	transition: var(--transition);
}

nav a:hover {
	color: rgba(255, 255, 255, 1);
	transform: translateY(-2px);
}

nav a:hover::after {
	width: 100%;
}

/* Hero Section - Ultra Modern 2025 Design */
.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, 
		#0f172a 0%, 
		#1e293b 25%, 
		#312e81 50%, 
		#581c87 75%, 
		#0f172a 100%);
	background-size: 400% 400%;
	animation: gradientShift 20s ease infinite;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
	animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.8; }
}

/* Animated Background Elements */
.hero-bg-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.wave {
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: waveAnimation 20s linear infinite;
}

.wave-1 {
	top: -50%;
	left: -50%;
	animation-duration: 25s;
}

.wave-2 {
	top: -30%;
	right: -50%;
	animation-duration: 30s;
	background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
}

.geometric-shape {
	position: absolute;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(231, 76, 60, 0.1));
	backdrop-filter: blur(40px);
	animation: float 15s ease-in-out infinite;
}

.shape-1 {
	width: 300px;
	height: 300px;
	top: 10%;
	right: 10%;
	animation-delay: 0s;
	transform: rotate(45deg);
}

.shape-2 {
	width: 200px;
	height: 200px;
	bottom: 15%;
	left: 5%;
	animation-delay: 3s;
	transform: rotate(-30deg);
}

.shape-3 {
	width: 150px;
	height: 150px;
	top: 50%;
	left: 50%;
	animation-delay: 6s;
	transform: rotate(60deg);
}

.hero-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 6rem 2rem;
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
	/* Предотвращаем размытие от backdrop-filter */
	isolation: isolate;
}

/* Large Hero Title with Gradient and Letter Animation */
.hero-title {
	font-size: clamp(4rem, 12vw, 10rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	animation: titleFadeIn 1.2s ease forwards;
	/* Оптимизация четкости текста */
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translateZ(0);
	will-change: opacity, transform;
}

.hero-title-word {
	/* Современный градиент 2025 */
	color: #ffffff;
	background: linear-gradient(135deg, 
		#ffffff 0%, 
		#a78bfa 25%,
		#6366f1 50%, 
		#ec4899 75%,
		#ffffff 100%);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientText 6s ease infinite, letterFloat 4s ease-in-out infinite;
	display: inline-block;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	will-change: transform, background-position;
	transform: translateZ(0);
	backface-visibility: hidden;
	position: relative;
	filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

/* Стили для букв внутри (создаются через JS) */
.hero-title-word > span {
	color: #ffffff;
	background: linear-gradient(135deg, 
		#ffffff 0%, 
		#3498db 30%, 
		#e74c3c 60%, 
		#ffffff 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-title-word:nth-child(1) {
	animation-delay: 0.2s;
}

.hero-title-word:nth-child(2) {
	animation-delay: 0.4s;
}

.hero-title-word:nth-child(3) {
	animation-delay: 0.6s;
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	margin: 0;
	opacity: 0;
	animation: fadeInUp 1s ease 0.8s forwards;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	letter-spacing: 0.5px;
	max-width: 700px;
}

/* Glassmorphism Cards with Overlapping */
.hero-cards-container {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2rem;
	position: relative;
	opacity: 0;
	animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-glass-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(30px) saturate(200%);
	-webkit-backdrop-filter: blur(30px) saturate(200%);
	border-radius: 28px;
	padding: 2.8rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	transition: var(--transition-smooth);
	cursor: pointer;
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	transform: translateY(50px);
	opacity: 0;
	will-change: transform, opacity;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-glass-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-gradient-alt);
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: 28px;
	z-index: -1;
}

.hero-glass-card[data-scroll="true"] {
	transform: translateY(0);
	opacity: 1;
}

.hero-glass-card:nth-child(1) {
	animation-delay: 0.1s;
	z-index: 3;
}

.hero-glass-card:nth-child(2) {
	animation-delay: 0.2s;
	z-index: 2;
	margin-top: -20px;
}

.hero-glass-card:nth-child(3) {
	animation-delay: 0.3s;
	z-index: 1;
	margin-top: -40px;
}

.card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.hero-glass-card:hover {
	transform: translateY(-20px) scale(1.03);
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(99, 102, 241, 0.5);
	box-shadow: 0 25px 70px rgba(99, 102, 241, 0.4),
				0 0 50px rgba(236, 72, 153, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-glass-card:hover::before {
	opacity: 0.1;
}

.hero-glass-card:hover .card-glow {
	opacity: 1;
}

.hero-glass-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: #ffffff;
	font-weight: 600;
}

.hero-glass-card p {
	opacity: 0.85;
	margin-bottom: 2rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

/* Magnetic Button - Modern 2025 */
.btn-magnetic {
	background: var(--accent-gradient-alt);
	color: white;
	padding: 1.1rem 2.8rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition-smooth);
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4),
				0 4px 10px rgba(236, 72, 153, 0.3);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.btn-magnetic::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-magnetic:hover::before {
	width: 300px;
	height: 300px;
}

.btn-magnetic:hover {
	transform: scale(1.08) translateY(-2px);
	box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5),
				0 6px 15px rgba(236, 72, 153, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.3);
	filter: brightness(1.1);
}

.btn-magnetic:active {
	transform: scale(0.98);
}


/* Animations */
@keyframes gradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes waveAnimation {
	0% {
		transform: rotate(0deg) translate(0, 0);
	}
	100% {
		transform: rotate(360deg) translate(0, 0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(120deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(240deg);
	}
}

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

@keyframes gradientText {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

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


.btn-primary {
	background: var(--accent-gradient-alt);
	color: white;
	padding: 1.2rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition-smooth);
	text-decoration: none;
	display: inline-block;
	box-shadow: var(--shadow-md);
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-xl), var(--shadow-colored);
	filter: brightness(1.1);
}

/* Accordion in Hero */
.accordion-container {
	margin-top: 2rem;
	text-align: left;
}

.accordion-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-header {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	transition: var(--transition);
}

.accordion-header:hover {
	background: rgba(255, 255, 255, 0.15);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 1.5rem;
}

.accordion-content.active {
	max-height: 500px;
	padding: 1.5rem;
}

.accordion-icon {
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}


/* Content Sections */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 5rem 2rem;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	text-align: center;
	margin-bottom: 1.5rem;
	background: var(--accent-gradient-alt);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: #ffffff99;
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.2;
}

.section-subtitle {
	text-align: center;
	color: var(--text-light);
	font-size: 1.25rem;
	margin-bottom: 4rem;
	font-weight: 400;
	line-height: 1.7;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Course Cards Grid */
.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.course-card {
	background: var(--bg-white);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition-smooth);
	cursor: pointer;
	border: 1px solid var(--border-color);
	position: relative;
}

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

.course-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-xl), var(--shadow-colored);
	border-color: transparent;
}

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

.course-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: var(--bg-light);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .course-image {
	transform: scale(1.1);
}

.course-content {
	padding: 2.2rem;
	background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.02));
}

.course-title {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	font-weight: 700;
	line-height: 1.3;
	transition: var(--transition);
}

.course-card:hover .course-title {
	background: var(--accent-gradient-alt);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.course-description {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.course-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: var(--text-light);
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
	margin-top: auto;
}

.course-meta span {
	padding: 0.4rem 0.8rem;
	background: var(--bg-light);
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.85rem;
	transition: var(--transition);
}

.course-card:hover .course-meta span {
	background: var(--accent-gradient-alt);
	color: white;
	transform: scale(1.05);
}

/* Features Section */
.features {
	background: linear-gradient(to bottom, var(--bg-light) 0%, white 50%, var(--bg-light) 100%);
	padding: 5rem 0;
	position: relative;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.feature-item {
	text-align: center;
	padding: 2.5rem;
	background: white;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
	transition: var(--transition-smooth);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.feature-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-gradient-alt);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.feature-item > * {
	position: relative;
	z-index: 1;
}

.feature-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-xl), var(--shadow-colored);
	border-color: transparent;
}

.feature-item:hover::before {
	opacity: 0.05;
}

.feature-icon {
	font-size: 3.5rem;
	margin-bottom: 1.2rem;
	background: var(--accent-gradient-alt);
	-webkit-background-clip: text;
	background-clip: text;
	display: inline-block;
	transition: var(--transition-smooth);
	filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.2));
}

.feature-item:hover .feature-icon {
	transform: scale(1.15) rotate(5deg);
	filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.4));
}

.feature-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

/* Testimonials Slider - Modern 2025 */
.testimonials {
	background: var(--accent-gradient-alt);
	color: white;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.testimonials::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	animation: pulse 10s ease-in-out infinite;
}

.testimonial-slider {
	position: relative;
	max-width: 800px;
	margin: 3rem auto 0;
	overflow: hidden;
}

.testimonial-slide {
	display: none;
	padding: 3rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
}

.testimonial-slide.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.testimonial-text {
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 2rem;
	line-height: 1.8;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.1rem;
}

.slider-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: var(--transition);
}

.slider-dot.active {
	background: white;
	transform: scale(1.4);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.slider-dot:hover {
	transform: scale(1.2);
	background: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-section {
	background: linear-gradient(to bottom, white 0%, var(--bg-light) 100%);
	padding: 5rem 0;
}

.contact-form {
	max-width: 650px;
	margin: 3rem auto 0;
	background: white;
	padding: 3.5rem;
	border-radius: 28px;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--accent-gradient-alt);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1.2rem 1.5rem;
	border: 2px solid var(--border-color);
	border-radius: 12px;
	font-size: 1rem;
	font-family: inherit;
	transition: var(--transition-smooth);
	background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #6366f1;
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1),
				0 4px 12px rgba(99, 102, 241, 0.15);
	background: white;
	transform: translateY(-2px);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

/* Footer - Modern 2025 */
footer {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 5rem 0 2rem;
	position: relative;
	overflow: hidden;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--accent-gradient-alt);
}

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

.footer-section h3 {
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	line-height: 2;
	transition: var(--transition);
}

.footer-section a:hover {
	color: white;
	text-decoration: none;
	background: var(--accent-gradient-alt);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: translateX(5px);
	display: inline-block;
}

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

/* Cookie Popup - Modern 2025 */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 31, 58, 0.98);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	color: white;
	padding: 2rem;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
	border-top: 2px solid;
	border-image: var(--accent-gradient-alt) 1;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup.show {
	transform: translateY(0);
}

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

.cookie-text {
	flex: 1;
	min-width: 250px;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.btn-cookie {
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
}

.btn-accept {
	background: var(--accent-gradient-alt);
	color: white;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-accept:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
	filter: brightness(1.1);
}

.btn-decline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	backdrop-filter: blur(10px);
}

.btn-decline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInFromRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero {
		min-height: 100vh;
		padding: 2rem 0;
	}

	.hero-content {
		padding: 4rem 1.5rem;
		gap: 2rem;
	}

	.hero-title {
		font-size: clamp(3rem, 15vw, 5rem);
		gap: 0.3rem;
	}

	.hero-title-word {
		font-size: inherit;
	}

	.hero-subtitle {
		font-size: 1.1rem;
		padding: 0 1rem;
	}

	.hero-cards-container {
		flex-direction: column;
		gap: 1.5rem;
		width: 100%;
		padding: 0 1rem;
	}

	.hero-glass-card {
		min-width: 100%;
		max-width: 100%;
		margin-top: 0 !important;
		padding: 2rem;
	}

	.hero-glass-card:nth-child(2),
	.hero-glass-card:nth-child(3) {
		margin-top: 0;
	}

	.shape-1,
	.shape-2,
	.shape-3 {
		width: 150px;
		height: 150px;
	}

	.header-container {
		flex-direction: column;
		gap: 1rem;
	}

	nav ul {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

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

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

	.contact-form {
		padding: 2rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}

	.btn-cookie {
		flex: 1;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: clamp(2.5rem, 12vw, 4rem);
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-glass-card {
		padding: 1.5rem;
	}

	.hero-glass-card h3 {
		font-size: 1.3rem;
	}

	.btn-magnetic {
		padding: 0.8rem 2rem;
		font-size: 0.9rem;
	}

	.shape-1,
	.shape-2,
	.shape-3 {
		width: 100px;
		height: 100px;
	}

	.container {
		padding: 2rem 1rem;
	}

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

/* Policy Pages Styles */
.policy-page {
	padding: 4rem 2rem;
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.8;
}

.policy-page h1 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
}

.policy-page h2 {
	font-size: 1.8rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.policy-page h3 {
	font-size: 1.4rem;
	margin-top: 1.5rem;
	margin-bottom: 0.8rem;
	color: var(--text-dark);
}

.policy-page p {
	margin-bottom: 1rem;
	color: var(--text-light);
}

.policy-page ul,
.policy-page ol {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.policy-page li {
	margin-bottom: 0.5rem;
	color: var(--text-light);
}

/* Thanks Page */
.thanks-page {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 4rem 2rem;
}

.thanks-content {
	max-width: 600px;
}

.thanks-icon {
	font-size: 5rem;
	color: var(--accent-color);
	margin-bottom: 2rem;
}

.thanks-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.thanks-text {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

/* Statistics Section - Modern 2025 */
.stats-section-modern {
	background: var(--accent-gradient-alt);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.stats-section-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	position: relative;
	z-index: 1;
}

.stat-card {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition-smooth);
}

.stat-card:hover {
	transform: translateY(-10px) scale(1.05);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-number {
	font-size: 4rem;
	font-weight: 800;
	color: white;
	margin-bottom: 0.5rem;
	display: block;
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-card .stat-label {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Process Section */
.process-section {
	background: white;
	padding: 5rem 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.process-step {
	text-align: center;
	padding: 2.5rem;
	background: var(--bg-light);
	border-radius: 24px;
	position: relative;
	transition: var(--transition-smooth);
	border: 2px solid transparent;
}

.process-step:hover {
	transform: translateY(-10px);
	background: white;
	border-color: rgba(99, 102, 241, 0.3);
	box-shadow: var(--shadow-xl);
}

.step-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: var(--accent-gradient-alt);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.2rem;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.step-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	display: block;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.step-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.step-description {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 1rem;
}

/* FAQ Section */
.faq-section {
	background: var(--bg-light);
	padding: 5rem 0;
}

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

.faq-item {
	background: white;
	border-radius: 20px;
	margin-bottom: 1.5rem;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	transition: var(--transition-smooth);
}

.faq-item:hover {
	box-shadow: var(--shadow-lg);
	border-color: rgba(99, 102, 241, 0.3);
}

.faq-item.active {
	border-color: rgba(99, 102, 241, 0.5);
	box-shadow: var(--shadow-xl);
}

.faq-question {
	padding: 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--bg-light);
}

.faq-question h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	flex: 1;
}

.faq-icon {
	font-size: 2rem;
	font-weight: 300;
	color: var(--accent-color);
	transition: transform 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(99, 102, 241, 0.1);
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
	background: var(--accent-gradient-alt);
	color: white;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 2rem;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 2rem 2rem;
}

.faq-answer p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 1.05rem;
	margin: 0;
}

/* CTA Section */
.cta-section {
	background: var(--accent-gradient-alt);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

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

.cta-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: white;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.cta-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 3rem;
	line-height: 1.7;
}

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

.btn-large {
	padding: 1.3rem 3.5rem;
	font-size: 1.1rem;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	padding: 1.3rem 3.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition-smooth);
	text-decoration: none;
	display: inline-block;
	letter-spacing: 0.5px;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

