/* ============================================
   Цветовая система
   ============================================ */
:root {
	/* Основные цвета */
	--color-bg-primary: #0a1628;
	--color-bg-secondary: #1a2332;
	--color-bg-tertiary: #252f3f;

	/* Акцентные цвета */
	--color-accent-primary: #00d4ff;
	--color-accent-secondary: #0099cc;
	--color-accent-success: #00ff88;

	/* Текст */
	--color-text-primary: #ffffff;
	--color-text-secondary: #e0e0e0;
	--color-text-muted: #b0b0b0;

	/* Градиенты */
	--gradient-primary: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
	--gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);

	/* Тени */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);

	/* Переходы */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* ============================================
   Базовые стили
   ============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: var(--color-bg-primary);
	color: var(--color-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

body.menu-open {
	overflow: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   Header
   ============================================ */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 22, 40, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(0, 212, 255, 0.2);
	transition: all var(--transition-normal);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.nav-link {
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color var(--transition-fast);
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-accent-primary);
	transition: width var(--transition-normal);
}

.nav-link:hover {
	color: var(--color-text-primary);
}

.nav-link:hover::after {
	width: 100%;
}

/* Мобильное меню */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--color-text-primary);
	transition: all var(--transition-normal);
	transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 999;
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.mobile-menu-overlay.active {
	display: block;
	opacity: 1;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-primary);
	padding-top: 80px;
	padding-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(0, 212, 255, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
	z-index: 1;
	position: relative;
}

.hero-content {
	text-align: left;
	animation: fadeInUp 0.8s ease;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--color-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.hero-highlight {
	font-size: 1.25rem;
	color: var(--color-accent-success);
	font-weight: 600;
	margin-bottom: 1rem;
}

.hero-risk-warning {
	font-size: 0.875rem;
	color: var(--color-text-primary);
	margin-bottom: 2rem;
	padding: 1rem 1.25rem;
	background: rgba(255, 100, 100, 0.15);
	border: 2px solid #ff6464;
	border-radius: 8px;
	line-height: 1.7;
}

.hero-risk-warning strong {
	color: #ff6464;
	font-weight: 700;
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.hero-risk-warning p {
	margin-bottom: 0.75rem;
}

.hero-risk-warning p:last-child {
	margin-bottom: 0;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.hero-image {
	position: relative;
	animation: fadeInUp 0.8s ease;
	animation-delay: 0.2s;
	animation-fill-mode: both;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: var(--shadow-lg);
	object-fit: cover;
	max-height: 600px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--transition-normal);
	text-align: center;
}

.btn-primary {
	background: var(--gradient-accent);
	color: var(--color-text-primary);
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: var(--color-bg-tertiary);
	color: var(--color-text-primary);
	border: 1px solid var(--color-accent-primary);
}

.btn-secondary:hover {
	background: var(--color-accent-primary);
}

.btn-large {
	padding: 1.125rem 2.5rem;
	font-size: 1.125rem;
}

/* ============================================
   Sections
   ============================================ */
.section {
	padding: 5rem 0;
	position: relative;
}

.section-alt {
	background: var(--color-bg-secondary);
}

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

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gradient-accent);
}

/* ============================================
   Content Grid
   ============================================ */
.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.info-card {
	background: var(--color-bg-secondary);
	padding: 2rem;
	border-radius: 10px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	transition: all var(--transition-normal);
	animation: fadeInUp 0.6s ease;
	animation-fill-mode: both;
}

.info-card:nth-child(1) {
	animation-delay: 0.1s;
}

.info-card:nth-child(2) {
	animation-delay: 0.2s;
}

.info-card:nth-child(3) {
	animation-delay: 0.3s;
}

.info-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-accent-primary);
	box-shadow: var(--shadow-lg);
}

.info-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
	color: var(--color-accent-primary);
}

.info-icon svg {
	width: 100%;
	height: 100%;
}

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

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

/* ============================================
   Infographic
   ============================================ */
.infographic {
	margin-top: 4rem;
	padding: 3rem;
	background: var(--color-bg-secondary);
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
}

.infographic-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.infographic-step {
	flex: 1;
	min-width: 200px;
	text-align: center;
	animation: fadeInUp 0.6s ease;
	animation-fill-mode: both;
}

.infographic-step:nth-child(1) {
	animation-delay: 0.1s;
}

.infographic-step:nth-child(3) {
	animation-delay: 0.2s;
}

.infographic-step:nth-child(5) {
	animation-delay: 0.3s;
}

.infographic-step:nth-child(7) {
	animation-delay: 0.4s;
}

.step-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--gradient-accent);
	color: var(--color-text-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1rem;
	box-shadow: var(--shadow-md);
}

.infographic-step h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--color-text-primary);
}

.infographic-step p {
	color: var(--color-text-secondary);
	font-size: 0.9rem;
}

.infographic-arrow {
	font-size: 2rem;
	color: var(--color-accent-primary);
	flex-shrink: 0;
}

/* ============================================
   Content Wrapper
   ============================================ */
.content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.text-content p {
	font-size: 1.125rem;
	color: var(--color-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	padding: 0.75rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--color-text-secondary);
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-accent-success);
	font-weight: 700;
}

.image-placeholder {
	background: var(--color-bg-tertiary);
	border-radius: 10px;
	padding: 2rem;
	border: 1px solid rgba(0, 212, 255, 0.2);
}

.placeholder-box {
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.infographic-visual {
	display: flex;
	gap: 2rem;
	align-items: flex-end;
	width: 100%;
	height: 250px;
}

.visual-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.visual-bar {
	width: 100%;
	background: var(--gradient-accent);
	border-radius: 5px 5px 0 0;
	min-height: 20px;
	transition: height var(--transition-slow);
	animation: growUp 1s ease;
}

.visual-item span {
	color: var(--color-text-secondary);
	font-size: 0.9rem;
}

/* ============================================
   Einsteiger Section
   ============================================ */
.einsteiger-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
}

.einsteiger-image {
	width: 100%;
	margin-top: 1rem;
	animation: fadeInUp 0.6s ease;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.einsteiger-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: var(--shadow-lg);
	object-fit: cover;
}

/* ============================================
   Highlight Section
   ============================================ */
.highlight-section {
	background: var(--gradient-primary);
}

.highlight-box {
	background: var(--color-bg-secondary);
	border: 2px solid var(--color-accent-success);
	border-radius: 15px;
	padding: 3rem;
	text-align: center;
	margin-bottom: 4rem;
	box-shadow: var(--shadow-lg);
	animation: fadeInUp 0.6s ease;
}

.highlight-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--color-accent-success);
	color: var(--color-bg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin: 0 auto 1.5rem;
	font-weight: 700;
}

.highlight-box h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--color-accent-success);
}

.highlight-box p {
	font-size: 1.125rem;
	color: var(--color-text-secondary);
	line-height: 1.8;
}

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

.guide-step {
	background: var(--color-bg-secondary);
	padding: 2rem;
	border-radius: 10px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	transition: all var(--transition-normal);
	animation: fadeInUp 0.6s ease;
	animation-fill-mode: both;
}

.guide-step:nth-child(1) {
	animation-delay: 0.1s;
}

.guide-step:nth-child(2) {
	animation-delay: 0.2s;
}

.guide-step:nth-child(3) {
	animation-delay: 0.3s;
}

.guide-step:nth-child(4) {
	animation-delay: 0.4s;
}

.guide-step:hover {
	transform: translateY(-5px);
	border-color: var(--color-accent-primary);
	box-shadow: var(--shadow-lg);
}

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

.step-badge {
	background: var(--gradient-accent);
	color: var(--color-text-primary);
	padding: 0.5rem 1rem;
	border-radius: 5px;
	font-size: 0.875rem;
	font-weight: 600;
}

.guide-step h3 {
	font-size: 1.5rem;
	color: var(--color-text-primary);
}

.guide-step p {
	color: var(--color-text-secondary);
	line-height: 1.8;
}

.cta-box {
	text-align: center;
	padding: 3rem;
	background: var(--color-bg-secondary);
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	animation: fadeInUp 0.6s ease;
}

.cta-box h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--color-text-primary);
}

.cta-box p {
	font-size: 1.125rem;
	color: var(--color-text-secondary);
	margin-bottom: 1.5rem;
}

.risk-disclaimer {
	font-size: 0.875rem;
	color: var(--color-text-primary);
	margin-bottom: 1.5rem;
	padding: 1.25rem;
	background: rgba(255, 100, 100, 0.15);
	border: 2px solid #ff6464;
	border-radius: 8px;
	line-height: 1.7;
	font-weight: 500;
}

.risk-disclaimer strong {
	color: #ff6464;
	font-weight: 700;
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.risk-disclaimer p {
	margin-bottom: 0.75rem;
}

.risk-disclaimer p:last-child {
	margin-bottom: 0;
}

/* ============================================
   Registration Form
   ============================================ */
.registration-form-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
}

.registration-info {
	animation: fadeInUp 0.6s ease;
}

.registration-info h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--color-text-primary);
}

.registration-info p {
	font-size: 1.125rem;
	color: var(--color-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.registration-benefits {
	list-style: none;
	padding: 0;
}

.registration-benefits li {
	padding: 0.75rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--color-text-secondary);
	font-size: 1rem;
}

.registration-benefits li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-accent-success);
	font-weight: 700;
}

.registration-form {
	background: var(--color-bg-secondary);
	padding: 2.5rem;
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	animation: fadeInUp 0.6s ease;
	animation-delay: 0.2s;
	animation-fill-mode: both;
}

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

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

.form-group input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--color-bg-tertiary);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 5px;
	color: var(--color-text-primary);
	font-size: 1rem;
	transition: all var(--transition-normal);
	font-family: inherit;
}

.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group input[type='number']:focus {
	outline: none;
	border-color: var(--color-accent-primary);
	box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input[type='text']:invalid:not(:placeholder-shown),
.form-group input[type='email']:invalid:not(:placeholder-shown) {
	border-color: #ff6464;
}

.form-group input[type='text']:valid:not(:placeholder-shown),
.form-group input[type='email']:valid:not(:placeholder-shown) {
	border-color: var(--color-accent-success);
}

.error-message {
	display: block;
	color: #ff6464;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	min-height: 1.25rem;
}

.checkbox-group {
	margin-bottom: 1rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-weight: normal;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.checkbox-label input[type='checkbox'] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	cursor: pointer;
	accent-color: var(--color-accent-primary);
	flex-shrink: 0;
}

.checkbox-label a {
	color: var(--color-accent-primary);
	text-decoration: underline;
}

.checkbox-label a:hover {
	color: var(--color-accent-secondary);
}

.btn-submit {
	width: 100%;
	margin-top: 1rem;
	position: relative;
}

.btn-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.form-message {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 5px;
	text-align: center;
	font-weight: 600;
	display: none;
}

.form-message.success {
	display: block;
	background: rgba(0, 255, 136, 0.2);
	color: var(--color-accent-success);
	border: 1px solid var(--color-accent-success);
}

.form-message.error {
	display: block;
	background: rgba(255, 100, 100, 0.2);
	color: #ff6464;
	border: 1px solid #ff6464;
}

/* ============================================
   Strategies
   ============================================ */
.strategies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.strategy-card {
	background: var(--color-bg-secondary);
	padding: 2.5rem;
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	transition: all var(--transition-normal);
	animation: fadeInUp 0.6s ease;
	animation-fill-mode: both;
}

.strategy-card:nth-child(1) {
	animation-delay: 0.1s;
}

.strategy-card:nth-child(2) {
	animation-delay: 0.2s;
}

.strategy-card:nth-child(3) {
	animation-delay: 0.3s;
}

.strategy-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-accent-primary);
	box-shadow: var(--shadow-lg);
}

.strategy-image {
	width: 100%;
	margin-bottom: 1.5rem;
	border-radius: 10px;
	overflow: hidden;
}

.strategy-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	transition: transform var(--transition-normal);
}

.strategy-card:hover .strategy-image img {
	transform: scale(1.05);
}

.strategy-card h3 {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	color: var(--color-text-primary);
}

.strategy-risk {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	border-radius: 5px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.strategy-card:nth-child(1) .strategy-risk {
	background: rgba(0, 255, 136, 0.2);
	color: var(--color-accent-success);
}

.strategy-card:nth-child(2) .strategy-risk {
	background: rgba(0, 212, 255, 0.2);
	color: var(--color-accent-primary);
}

.strategy-card:nth-child(3) .strategy-risk {
	background: rgba(255, 100, 100, 0.2);
	color: #ff6464;
}

.strategy-card > p {
	color: var(--color-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.strategy-warning {
	font-size: 0.85rem;
	color: var(--color-text-primary);
	margin-top: 1rem;
	padding: 0.875rem 1rem;
	background: rgba(255, 100, 100, 0.15);
	border: 2px solid #ff6464;
	border-radius: 6px;
	line-height: 1.6;
}

.strategy-warning strong {
	color: #ff6464;
	font-weight: 700;
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
}

.disclaimer-text {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	background: rgba(255, 193, 7, 0.1);
	border-left: 3px solid #ffc107;
	border-radius: 5px;
	line-height: 1.6;
}

.disclaimer-text strong {
	color: #ffc107;
	font-weight: 600;
}

/* ============================================
   Investmentrechner
   ============================================ */
.section-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: var(--color-text-secondary);
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.calculator-image-wrapper {
	animation: fadeInUp 0.6s ease;
	animation-delay: 0.3s;
	animation-fill-mode: both;
	display: flex;
	align-items: center;
	justify-content: center;
}

.calculator-image {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: var(--shadow-lg);
	object-fit: cover;
	max-height: 600px;
}

.calculator-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto 3rem;
}

.calculator-form {
	background: var(--color-bg-secondary);
	padding: 2.5rem;
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	animation: fadeInUp 0.6s ease;
}

.input-hint {
	display: block;
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin-top: 0.375rem;
	font-style: italic;
}

.calculator-results {
	background: var(--color-bg-secondary);
	padding: 2.5rem;
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	animation: fadeInUp 0.6s ease;
	animation-delay: 0.2s;
	animation-fill-mode: both;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.results-placeholder {
	text-align: center;
	color: var(--color-text-muted);
}

.results-placeholder svg {
	margin: 0 auto 1rem;
	opacity: 0.5;
}

.results-placeholder p {
	font-size: 0.95rem;
}

.calculator-results.has-results {
	align-items: flex-start;
	justify-content: flex-start;
}

.results-content {
	width: 100%;
	display: none;
}
.results-content.has-results {
	display: block;
}
.results-placeholder.none {
	display: none;
}
.results-content h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--color-text-primary);
	text-align: center;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.result-item:last-of-type {
	border-bottom: none;
}

.result-label {
	font-size: 1rem;
	color: var(--color-text-secondary);
	font-weight: 500;
}

.result-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-text-primary);
}

.result-final {
	font-size: 1.75rem;
	color: var(--color-accent-primary);
}

.result-profit {
	color: var(--color-accent-success);
}

.result-percentage {
	color: var(--color-accent-primary);
}

.result-note {
	margin-top: 2rem;
	padding: 1rem;
	background: rgba(255, 193, 7, 0.1);
	border-left: 3px solid #ffc107;
	border-radius: 5px;
}

.result-note p {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.6;
}

.result-note strong {
	color: #ffc107;
	font-weight: 600;
}

.calculator-disclaimer {
	max-width: 900px;
	margin: 0 auto;
	padding: 1.5rem;
	background: rgba(255, 100, 100, 0.1);
	border: 2px solid #ff6464;
	border-radius: 8px;
}

.calculator-disclaimer p {
	font-size: 0.875rem;
	color: var(--color-text-primary);
	line-height: 1.7;
	margin: 0;
}

.calculator-disclaimer strong {
	color: #ff6464;
	font-weight: 700;
	display: block;
	margin-bottom: 0.5rem;
}

.strategy-features {
	list-style: none;
	padding: 0;
}

.strategy-features li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--color-text-secondary);
}

.strategy-features li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--color-accent-primary);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 1rem;
	background: var(--color-bg-secondary);
	border-radius: 10px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	overflow: hidden;
	animation: fadeInUp 0.6s ease;
	animation-fill-mode: both;
}

.faq-item:nth-child(1) {
	animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
	animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
	animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
	animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
	animation-delay: 0.5s;
}

.faq-question {
	width: 100%;
	padding: 1.5rem;
	background: transparent;
	border: none;
	color: var(--color-text-primary);
	font-size: 1.125rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background var(--transition-fast);
}

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

.faq-icon {
	font-size: 1.5rem;
	color: var(--color-accent-primary);
	transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
	max-height: fit-content;
}

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	color: var(--color-text-secondary);
	line-height: 1.8;
}

/* ============================================
   Impressum
   ============================================ */
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.contact-info {
	display: flex;
	align-items: flex-start;
}

.contact-map {
	width: 100%;
}

.map-container {
	width: 100%;
	height: 450px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--color-bg-secondary);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.impressum-content {
	max-width: 800px;
	margin: 0 auto;
	background: var(--color-bg-secondary);
	padding: 3rem;
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	animation: fadeInUp 0.6s ease;
}
.impressum-content-form {
	max-height: 540px;
}
.impressum-content p {
	margin-bottom: 1.5rem;
	color: var(--color-text-secondary);
	line-height: 1.8;
}

.impressum-content strong {
	color: var(--color-text-primary);
}

/* ============================================
   Legal Pages (Datenschutz, AGB)
   ============================================ */
.legal-section {
	padding-top: 100px;
}

.legal-content {
	max-width: 900px;
	margin: 0 auto;
	background: var(--color-bg-secondary);
	padding: 3rem;
	border-radius: 15px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	animation: fadeInUp 0.6s ease;
}

.legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-text-primary);
	text-align: center;
}

.legal-date {
	text-align: center;
	color: var(--color-text-muted);
	margin-bottom: 3rem;
	font-size: 0.95rem;
}

.legal-section-content {
	margin-bottom: 3rem;
}

.legal-section-content:last-child {
	margin-bottom: 0;
}

.legal-section-content h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text-primary);
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.legal-section-content h2:first-of-type {
	border-top: none;
	padding-top: 0;
}

.legal-section-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--color-text-primary);
}

.legal-section-content p {
	color: var(--color-text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.legal-section-content ul {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-text-secondary);
	line-height: 1.8;
}

.legal-section-content li {
	margin-bottom: 0.5rem;
}

.legal-section-content a {
	color: var(--color-accent-primary);
	text-decoration: underline;
	transition: color var(--transition-fast);
}

.legal-section-content a:hover {
	color: var(--color-accent-secondary);
}

.logo-link {
	text-decoration: none;
	display: inline-block;
}

@media (max-width: 768px) {
	.legal-section {
		padding-top: 80px;
	}

	.legal-content {
		padding: 2rem 1.5rem;
	}

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

	.legal-section-content h2 {
		font-size: 1.5rem;
	}

	.legal-section-content h3 {
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {
	.legal-content {
		padding: 1.5rem 1rem;
	}

	.legal-title {
		font-size: 1.75rem;
	}
}

/* ============================================
   Footer
   ============================================ */
.footer {
	background: var(--color-bg-secondary);
	border-top: 1px solid rgba(0, 212, 255, 0.2);
	padding: 3rem 0 1.5rem;
	margin-top: 5rem;
}

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

.footer-section h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--color-text-primary);
}

.footer-section p {
	color: var(--color-text-secondary);
	line-height: 1.8;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--color-text-secondary);
	text-decoration: none;
	transition: color var(--transition-fast);
}

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 212, 255, 0.2);
	color: var(--color-text-muted);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--color-bg-secondary);
	border-top: 2px solid var(--color-accent-primary);
	padding: 1.5rem;
	z-index: 10000;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.5);
	transform: translateY(100%);
	transition: transform var(--transition-normal);
}

.cookie-banner.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-content p {
	flex: 1;
	min-width: 300px;
	color: var(--color-text-secondary);
	line-height: 1.8;
}

.cookie-content a {
	color: var(--color-accent-primary);
	text-decoration: underline;
}

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

/* ============================================
   Анимации
   ============================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes growUp {
	from {
		height: 0;
	}
	to {
		height: 100%;
	}
}

@media (max-width: 1060px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		max-width: 85vw;
		height: 100vh;
		background: var(--color-bg-secondary);
		z-index: 1000;
		transition: right var(--transition-normal);
		overflow-y: auto;
		box-shadow: -4px 0 16px rgba(0, 0, 0, 0.5);
	}

	.nav.active {
		right: 0;
	}

	.nav-list {
		flex-direction: column;
		padding: 4.5rem 1.5rem 2rem;
		gap: 0;
		list-style: none;
		margin: 0;
		width: 100%;
	}

	.nav-list li {
		border-bottom: 1px solid rgba(0, 212, 255, 0.15);
		width: 100%;
		display: block;
	}

	.nav-list li:first-child {
		border-top: 1px solid rgba(0, 212, 255, 0.15);
	}

	.nav-list li:last-child {
		border-bottom: 1px solid rgba(0, 212, 255, 0.15);
	}

	.nav-link {
		display: flex;
		align-items: center;
		padding: 1.25rem 0;
		font-size: 1rem;
		font-weight: 500;
		color: var(--color-text-primary);
		text-decoration: none;
		transition: all var(--transition-fast);
		width: 100%;
		position: relative;
	}

	.nav-link:hover,
	.nav-link:active,
	.nav-link:focus {
		color: var(--color-accent-primary);
		padding-left: 1rem;
		background: rgba(0, 212, 255, 0.05);
	}

	.nav-link::after {
		display: none;
	}
}
@media (max-width: 768px) {
	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-content {
		text-align: center;
	}

	.hero-image {
		order: -1;
		max-width: 100%;
	}

	.hero-image img {
		max-height: 400px;
		object-fit: cover;
	}

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

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

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

	.hero-risk-warning {
		font-size: 0.8rem;
		padding: 0.625rem 0.875rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.hero-buttons .btn {
		width: 100%;
		text-align: center;
	}

	.risk-disclaimer {
		font-size: 0.8rem;
		padding: 0.875rem;
	}

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

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

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

	.einsteiger-content {
		gap: 2rem;
	}

	.einsteiger-image img {
		border-radius: 10px;
	}

	.infographic-content {
		flex-direction: column;
	}

	.infographic-arrow {
		transform: rotate(90deg);
	}

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

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

	.registration-form-wrapper {
		grid-template-columns: 1fr;
	}

	.registration-form {
		padding: 2rem;
	}

	.calculator-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.calculator-image-wrapper {
		order: -1;
		margin-bottom: 0;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.map-container {
		height: 350px;
	}

	.calculator-form {
		padding: 2rem;
	}

	.calculator-results {
		min-height: 300px;
		padding: 2rem;
	}

	.calculator-image-wrapper {
		margin-bottom: 2rem;
	}

	.calculator-image {
		border-radius: 10px;
	}

	.result-value {
		font-size: 1.1rem;
	}

	.result-final {
		font-size: 1.5rem;
	}

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

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

	.cookie-buttons .btn {
		flex: 1;
		min-width: 120px;
	}

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

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-wrapper {
		gap: 1.5rem;
	}

	.hero-image img {
		max-height: 300px;
	}

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

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

	.section {
		padding: 3rem 0;
	}

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

	.info-card,
	.guide-step,
	.strategy-card {
		padding: 1.5rem;
	}

	.highlight-box {
		padding: 2rem 1.5rem;
	}

	.cta-box {
		padding: 2rem 1.5rem;
	}

	.registration-form-wrapper {
		gap: 2rem;
	}

	.registration-form {
		padding: 1.5rem;
	}

	.calculator-form {
		padding: 1.5rem;
	}

	.calculator-results {
		padding: 1.5rem;
		min-height: 250px;
	}

	.result-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.result-value {
		font-size: 1rem;
	}

	.result-final {
		font-size: 1.25rem;
	}

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

	.map-container {
		height: 300px;
	}

	.registration-info h3 {
		font-size: 1.75rem;
	}
	.impressum-content {
		padding: 20px;
	}
}

/* ============================================
   Плавная анимация при загрузке
   ============================================ */
.section > * {
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

.section.visible > * {
	opacity: 1;
}

a {
	color: var(--color-accent-primary);
	text-decoration: underline;
}
.iti {
	width: 100%;
	color: #6d6e6f;
}
