/* CSS Variables for Modern Design */
:root {
	/* Bright Creative Color Palette */
	--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
	--warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

	/* Solid Colors */
	--primary-color: #667eea;
	--secondary-color: #f093fb;
	--accent-color: #4facfe;
	--text-primary: #2d3748;
	--text-secondary: #4a5568;
	--text-light: #718096;
	--white: #ffffff;
	--black: #1a202c;
	--gray-50: #f7fafc;
	--gray-100: #edf2f7;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e0;
	--gray-400: #a0aec0;
	--gray-500: #718096;
	--gray-600: #4a5568;
	--gray-700: #2d3748;
	--gray-800: #1a202c;
	--gray-900: #171923;

	/* Shadows */
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-glow: 0 0 20px rgba(102, 126, 234, 0.4);
	--shadow-glow-pink: 0 0 20px rgba(240, 147, 251, 0.4);
	--shadow-glow-blue: 0 0 20px rgba(79, 172, 254, 0.4);

	/* Typography */
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Spacing */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;
	--space-4xl: 6rem;
	--space-5xl: 8rem;

	/* Border Radius */
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-2xl: 1.5rem;
	--radius-full: 9999px;

	/* Transitions */
	--transition-fast: 0.15s ease-out;
	--transition-normal: 0.3s ease-out;
	--transition-slow: 0.5s ease-out;
	--transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-primary);
	line-height: 1.6;
	color: var(--text-primary);
	background: var(--white);
	overflow-x: hidden;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #ffffff;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	color: #ffffff;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

p {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

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

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

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

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

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

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

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

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

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes sparkle {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-100px);
	}
}

/* Animation Classes */
.animate-fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-fade-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.animate-fade-right {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.animate-scale {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.visible {
	opacity: 1;
	transform: scale(1);
}

.animate-bounce {
	animation: bounce 2s infinite;
}

.animate-float {
	animation: float 6s ease-in-out infinite;
}

.animate-pulse {
	animation: pulse 2s infinite;
}

.animate-rotate {
	animation: rotate 20s linear infinite;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0a0a0a 0%, #131722 25%, #1a1a2e 50%, #131722 75%, #0a0a0a 100%);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(2px 2px at 20px 30px, rgba(41, 98, 255, 0.3), transparent),
		radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
		radial-gradient(1px 1px at 90px 40px, rgba(41, 98, 255, 0.4), transparent),
		radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(2px 2px at 160px 30px, rgba(41, 98, 255, 0.2), transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: sparkle 20s linear infinite;
	opacity: 0.6;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.7;
	animation: float 8s ease-in-out infinite;
}

.orb-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(41, 98, 255, 0.4) 0%, rgba(41, 98, 255, 0.1) 50%, transparent 100%);
	top: 5%;
	left: 5%;
	animation-delay: 0s;
	box-shadow: 0 0 80px rgba(41, 98, 255, 0.4), inset 0 0 80px rgba(41, 98, 255, 0.1);
}

.orb-2 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
	top: 50%;
	right: 10%;
	animation-delay: 3s;
	box-shadow: 0 0 60px rgba(255, 255, 255, 0.2), inset 0 0 60px rgba(255, 255, 255, 0.05);
}

.orb-3 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(41, 98, 255, 0.2) 0%, rgba(41, 98, 255, 0.05) 50%, transparent 100%);
	bottom: 10%;
	left: 50%;
	animation-delay: 6s;
	box-shadow: 0 0 50px rgba(41, 98, 255, 0.3), inset 0 0 50px rgba(41, 98, 255, 0.05);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--white);
	max-width: 800px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	background: linear-gradient(135deg, rgba(41, 98, 255, 0.2) 0%, rgba(41, 98, 255, 0.1) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(41, 98, 255, 0.3);
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: var(--space-xl);
	color: #ffffff;
	box-shadow: 0 8px 32px rgba(41, 98, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.badge-icon {
	font-size: 1.25rem;
	animation: pulse 2s infinite;
}

.hero-title {
	font-size: 6rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: var(--space-lg);
	position: relative;
	letter-spacing: -0.03em;
	text-shadow: 0 0 30px rgba(41, 98, 255, 0.3);
}

.hero-title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, transparent 0%, #2962ff 50%, transparent 100%);
	border-radius: 2px;
	animation: pulse 2s ease-in-out infinite;
}

.title-gradient {
	background: linear-gradient(135deg, #ffffff 0%, #2962ff 50%, #00f2fe 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientShift 3s ease infinite;
}

.hero-description {
	font-size: 1.75rem;
	line-height: 1.6;
	margin-bottom: var(--space-2xl);
	color: rgba(255, 255, 255, 0.8);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
	margin-bottom: var(--space-3xl);
}

/* Buttons */
.cta-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	overflow: hidden;
	min-width: 200px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.primary {
	background: linear-gradient(135deg, #2962ff 0%, #1e53e5 100%);
	color: var(--white);
	border: 2px solid transparent;
	box-shadow: 0 8px 25px rgba(41, 98, 255, 0.4);
	position: relative;
	overflow: hidden;
}

.cta-button.primary:hover {
	background: linear-gradient(135deg, #1e53e5 0%, #2962ff 100%);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 35px rgba(41, 98, 255, 0.5);
}

.cta-button.secondary {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

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

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

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: var(--space-xl);
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 25px;
	cursor: pointer;
	z-index: 2;
}

.scroll-arrow {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	border-right: 2px solid rgba(255, 255, 255, 0.7);
	border-bottom: 2px solid rgba(255, 255, 255, 0.7);
	transform: translateX(-50%) rotate(45deg);
	animation: bounce 2s infinite;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: var(--space-4xl);
	position: relative;
}

.section-title {
	position: relative;
	display: inline-block;
	margin-bottom: var(--space-lg);
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-decoration {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, transparent 0%, #2962ff 50%, transparent 100%);
	border-radius: var(--radius-full);
	box-shadow: 0 0 10px rgba(41, 98, 255, 0.5);
}

/* Benefits Section */
.benefits {
	padding: var(--space-5xl) 0;
	background: #1e222d;
	position: relative;
}

.benefits::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%234facfe" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--space-xl);
	margin-bottom: var(--space-4xl);
	position: relative;
	z-index: 1;
}

.benefit-card {
	background: #2a2d3a;
	padding: var(--space-2xl);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

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

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(41, 98, 255, 0.3);
}

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

.benefit-icon {
	width: 80px;
	height: 80px;
	background: var(--accent-gradient);
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-lg);
	box-shadow: var(--shadow-md);
	transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: var(--shadow-glow-blue);
}

.benefit-icon img {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.benefit-content h3 {
	font-size: 1.5rem;
	margin-bottom: var(--space-md);
	color: #ffffff;
}

.benefit-content p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* Payment Section */
.payment-section {
	position: relative;
	z-index: 1;
}

.payment-card {
	background: rgba(26, 26, 46, 0.9);
	backdrop-filter: blur(15px);
	padding: var(--space-3xl);
	border-radius: var(--radius-2xl);
	box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
	border: 1px solid rgba(79, 172, 254, 0.4);
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.payment-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-gradient);
	opacity: 0.05;
	z-index: -1;
}

.payment-card h3 {
	margin-bottom: var(--space-xl);
	color: #ffffff;
}

.email-input-group {
	margin-bottom: var(--space-lg);
	text-align: left;
}

.email-input-group input {
	width: 100%;
	padding: var(--space-lg);
	border: 2px solid rgba(79, 172, 254, 0.3);
	border-radius: var(--radius-lg);
	font-size: 1rem;
	transition: all var(--transition-normal);
	background: rgba(26, 26, 46, 0.8);
	color: #ffffff;
}

.email-input-group input:focus {
	outline: none;
	border-color: #4facfe;
	box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}

.input-error {
	color: #e53e3e;
	font-size: 0.875rem;
	margin-top: var(--space-sm);
	min-height: 1.25rem;
}

.payment-buttons {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.payment-btn {
	width: 100%;
	background: var(--primary-gradient);
	color: var(--white);
	border: none;
	padding: var(--space-lg) var(--space-xl);
	border-radius: var(--radius-lg);
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.payment-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.payment-note {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	line-height: 1.5;
}

/* Whom Section */
.whom {
	padding: var(--space-5xl) 0;
	background: #131722;
}

.whom-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-2xl);
}

.whom-card {
	text-align: center;
	padding: var(--space-2xl);
	border-radius: 12px;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	background: #2a2d3a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.whom-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--secondary-gradient);
	opacity: 0;
	transition: opacity var(--transition-normal);
	z-index: -1;
}

.whom-card:hover::before {
	opacity: 0.05;
}

.whom-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.whom-icon {
	width: 100px;
	height: 100px;
	background: var(--secondary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-lg);
	box-shadow: var(--shadow-lg);
	transition: all var(--transition-normal);
}

.whom-card:hover .whom-icon {
	transform: scale(1.1);
	box-shadow: var(--shadow-glow-pink);
}

.whom-icon img {
	width: 50px;
	height: 50px;
	filter: brightness(0) invert(1);
}

.whom-card h3 {
	margin-bottom: var(--space-md);
	color: #ffffff;
}

.whom-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* Examples Section */
.examples {
	padding: var(--space-5xl) 0;
	background: #1e222d;
}

.carousel-container {
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}

.carousel-wrapper {
	overflow: hidden;
	border-radius: var(--radius-2xl);
	box-shadow: var(--shadow-2xl);
	position: relative;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
	min-width: 100%;
	height: 640px;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 var(--space-lg);
	pointer-events: none;
}

.carousel-btn {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-normal);
	pointer-events: all;
	box-shadow: var(--shadow-lg);
	color: var(--text-primary);
}

.carousel-btn:hover {
	background: var(--white);
	transform: scale(1.1);
	box-shadow: var(--shadow-xl);
}

.carousel-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Content Numbers Section */
.content-numbers {
	padding: var(--space-5xl) 0;
	background: #131722;
}

.numbers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--space-2xl);
}

.number-card {
	text-align: center;
	padding: var(--space-2xl);
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
	border: 1px solid rgba(41, 98, 255, 0.3);
	box-shadow: 0 8px 32px rgba(41, 98, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.number-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-gradient);
	opacity: 0;
	transition: opacity var(--transition-normal);
	z-index: -1;
}

.number-card:hover::before {
	opacity: 0.2;
}

.number-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 20px 40px rgba(41, 98, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border-color: rgba(41, 98, 255, 0.5);
}

.number-value {
	font-size: 3.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #ffffff 0%, #2962ff 50%, #00f2fe 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: var(--space-md);
	font-family: var(--font-display);
	text-shadow: 0 0 30px rgba(41, 98, 255, 0.3);
	animation: pulse 2s ease-in-out infinite;
}

.number-label {
	font-size: 1.25rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Content List Section */
.content-list {
	padding: var(--space-5xl) 0;
	background: #1e222d;
}

.content-toggle {
	text-align: center;
	margin-bottom: var(--space-2xl);
}

.toggle-btn {
	background: rgba(26, 26, 46, 0.8);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(79, 172, 254, 0.4);
	padding: var(--space-lg) var(--space-2xl);
	border-radius: var(--radius-xl);
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	cursor: pointer;
	transition: all var(--transition-normal);
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin: 0 auto;
	box-shadow: 0 8px 32px rgba(79, 172, 254, 0.2);
}

.toggle-btn:hover {
	border-color: #4facfe;
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(79, 172, 254, 0.3);
}

.toggle-icon {
	transition: transform var(--transition-normal);
}

.toggle-btn.active .toggle-icon {
	transform: rotate(180deg);
}

.content-items {
	max-width: 800px;
	margin: 0 auto;
	display: none;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-lg);
}

.content-items.show {
	display: grid;
	animation: fadeInUp 0.5s ease-out;
}

.content-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-md);
	padding: var(--space-lg);
	background: linear-gradient(135deg, rgba(41, 98, 255, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
	backdrop-filter: blur(15px);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(41, 98, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(41, 98, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.content-item:hover {
	transform: translateX(8px) translateY(-2px);
	border-color: rgba(41, 98, 255, 0.4);
	box-shadow: 0 12px 40px rgba(41, 98, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	background: linear-gradient(135deg, rgba(41, 98, 255, 0.15) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.content-item:hover .item-icon {
	background: rgba(41, 98, 255, 0.3);
	box-shadow: 0 0 15px rgba(41, 98, 255, 0.5);
	transform: scale(1.1);
}

.item-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-top: 2px;
	filter: brightness(0) invert(1);
	background: rgba(41, 98, 255, 0.2);
	border-radius: 50%;
	padding: 4px;
	box-shadow: 0 0 10px rgba(41, 98, 255, 0.3);
	transition: all 0.3s ease;
}

.content-item span {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-weight: 500;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq {
	padding: var(--space-5xl) 0;
	background: #131722;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: var(--space-lg);
	border-radius: 12px;
	overflow: hidden;
	background: #2a2d3a;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.2s ease;
}

.faq-item:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(41, 98, 255, 0.3);
}

.faq-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: var(--space-xl);
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all var(--transition-normal);
	border-bottom: 1px solid rgba(79, 172, 254, 0.2);
}

.faq-question:hover {
	background: rgba(41, 98, 255, 0.1);
}

.faq-question:hover .question-icon {
	background: rgba(41, 98, 255, 0.3);
	box-shadow: 0 0 15px rgba(41, 98, 255, 0.5);
}

.question-content {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	flex: 1;
}

.question-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	background: rgba(41, 98, 255, 0.2);
	border-radius: 50%;
	padding: 4px;
	box-shadow: 0 0 10px rgba(41, 98, 255, 0.3);
}

.faq-question span {
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
}

.question-arrow {
	transition: transform var(--transition-normal);
	color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .question-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	padding: var(--space-lg) var(--space-xl) var(--space-xl);
	background: rgba(26, 26, 46, 0.4);
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
	animation: fadeInUp 0.3s ease-out;
}

.faq-answer p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}

/* Footer */
.footer {
	background: #131722;
	color: var(--white);
	padding: var(--space-2xl) 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-lg);
}

.footer-left p {
	color: var(--gray-300);
	margin-bottom: var(--space-sm);
}

.footer-left a {
	color: var(--white);
	text-decoration: none;
	transition: color var(--transition-normal);
}

.footer-left a:hover {
	color: var(--primary-color);
}

.policy-link {
	color: var(--gray-300);
	text-decoration: underline;
	font-size: 0.875rem;
	transition: color var(--transition-normal);
}

.policy-link:hover {
	color: var(--white);
}

/* Policy Modal */
.policy-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: var(--space-lg);
}

.policy-modal.show {
	display: flex;
	animation: fadeInUp 0.3s ease-out;
}

.policy-content {
	background: var(--white);
	border-radius: var(--radius-2xl);
	max-width: 800px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	box-shadow: var(--shadow-2xl);
}

.policy-close {
	position: absolute;
	top: var(--space-lg);
	right: var(--space-lg);
	background: var(--gray-100);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-normal);
	z-index: 1001;
}

.policy-close:hover {
	background: var(--gray-200);
	transform: scale(1.1);
}

.policy-text {
	padding: var(--space-3xl);
}

.policy-text h3 {
	margin-bottom: var(--space-xl);
	text-align: center;
	color: var(--text-primary);
}

.policy-body {
	color: var(--text-secondary);
	line-height: 1.6;
}

.policy-body p {
	margin-bottom: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 var(--space-md);
	}

	.hero {
		padding: var(--space-2xl) 0;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: var(--space-sm) var(--space-md);
	}

	.hero-description {
		font-size: 1.125rem;
	}

	.cta-button {
		padding: var(--space-md) var(--space-lg);
		font-size: 1rem;
		min-width: 180px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.benefit-card {
		padding: var(--space-lg);
	}

	.whom-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.numbers-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

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

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

	.carousel-slide {
		height: 500px;
	}

	.carousel-controls {
		padding: 0 var(--space-md);
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.hero {
		min-height: 80vh;
	}

	.hero-badge {
		font-size: 0.7rem;
	}

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

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

	.cta-button {
		padding: var(--space-sm) var(--space-md);
		font-size: 0.9rem;
		min-width: 160px;
	}

	.benefit-card {
		padding: var(--space-md);
	}

	.benefit-icon {
		width: 60px;
		height: 60px;
	}

	.benefit-icon img {
		width: 30px;
		height: 30px;
	}

	.payment-card {
		padding: var(--space-lg);
	}

	.carousel-slide {
		height: 400px;
	}

	.number-value {
		font-size: 2.5rem;
	}

	.policy-text {
		padding: var(--space-lg);
	}
}

/* Loading States */
.loading {
	opacity: 0.6;
	pointer-events: none;
}

.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 2px solid var(--gray-300);
	border-top: 2px solid var(--primary-color);
	border-radius: 50%;
	animation: rotate 1s linear infinite;
}

/* Success/Error States */
.success {
	color: #38a169;
	background: #f0fff4;
	border: 1px solid #9ae6b4;
	padding: var(--space-md);
	border-radius: var(--radius-md);
	margin-top: var(--space-md);
}

.error {
	color: #e53e3e;
	background: #fed7d7;
	border: 1px solid #feb2b2;
	padding: var(--space-md);
	border-radius: var(--radius-md);
	margin-top: var(--space-md);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus States */
button:focus,
input:focus,
a:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Print Styles */
@media print {
	.hero-background,
	.carousel-controls,
	.scroll-indicator,
	.policy-close {
		display: none;
	}

	.hero {
		background: var(--white);
		color: var(--text-primary);
	}

	.benefit-card,
	.whom-card,
	.number-card {
		box-shadow: none;
		border: 1px solid var(--gray-300);
	}
}
