:root {
	--primary-navy: #0a2540;
	--primary-blue: #1a5490;
	--accent-emerald: #10b981;
	--accent-emerald-dark: #059669;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--text-light: #94a3b8;
	--bg-white: #ffffff;
	--bg-light: #f8fafc;
	--bg-dark: #0f172a;
	--border-light: #e2e8f0;
	--success: #10b981;
	--warning: #f59e0b;
	--error: #ef4444;

	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	min-width: 320px;
	background-color: var(--bg-white);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

h1,
h2,
h3,
h4 {
	line-height: 1.2;
	font-weight: 700;
}

h1 {
	font-size: 3.5rem;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.5rem;
	letter-spacing: -0.01em;
}

h3 {
	font-size: 1.5rem;
}

a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--accent-emerald);
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-light);
	z-index: 1000;
	padding: 16px 0;
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-navy);
	background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-links a {
	color: var(--text-primary);
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--accent-emerald);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	transition: all 0.3s;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-emerald-dark) 100%);
	color: white;
	border: none;
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
	background: white;
	color: var(--primary-navy);
	border: 2px solid var(--primary-navy);
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-secondary:hover {
	background: var(--primary-navy);
	color: white;
	transform: translateY(-2px);
}

.btn-large {
	padding: 16px 40px;
	font-size: 1.125rem;
}

.btn-full {
	width: 100%;
}

.hero {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
	overflow: hidden;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text h1 {
	margin-bottom: 24px;
	color: var(--primary-navy);
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 32px;
	line-height: 1.6;
}

.hero-cta-group {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.hero-micro-copy {
	color: var(--text-light);
	font-size: 0.875rem;
}

.dashboard-mockup {
	background: white;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--border-light);
}

.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.dashboard-title {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--primary-navy);
}

.dashboard-period {
	color: var(--text-light);
	font-size: 0.875rem;
}

.dashboard-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.stat-card {
	background: var(--bg-light);
	padding: 16px;
	border-radius: 8px;
}

.stat-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

.stat-value {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-value.positive {
	color: var(--success);
}

.chart-container {
	height: 200px;
	position: relative;
}

.growth-chart {
	width: 100%;
	height: 100%;
}

.chart-line {
	fill: none;
	stroke: var(--accent-emerald);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.chart-fill {
	fill: rgba(16, 185, 129, 0.1);
}

.social-proof-bar {
	padding: 40px 0;
	background: white;
	border-bottom: 1px solid var(--border-light);
}

.proof-intro {
	text-align: center;
	color: var(--text-light);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}

.proof-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.proof-logo {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-light);
	opacity: 0.6;
}

.problem-section {
	padding: 80px 0;
	background: white;
}

.section-title {
	text-align: center;
	color: var(--primary-navy);
	margin-bottom: 16px;
}

.section-subtitle {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.125rem;
	margin-bottom: 48px;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.problem-card {
	text-align: center;
	padding: 32px;
	border: 2px solid var(--border-light);
	border-radius: 12px;
	transition: all 0.3s;
}

.problem-card:hover {
	border-color: var(--accent-emerald);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.problem-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.problem-card h3 {
	color: var(--primary-navy);
	margin-bottom: 12px;
}

.problem-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.solution-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.solution-steps {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.step-card {
	flex: 1;
	min-width: 250px;
	background: white;
	padding: 32px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: all 0.3s;
}

.step-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-number {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-emerald-dark) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 16px;
}

.step-arrow {
	font-size: 2rem;
	color: var(--accent-emerald);
	font-weight: 700;
}

.step-card h3 {
	color: var(--primary-navy);
	margin-bottom: 12px;
}

.step-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.benefits-section {
	padding: 80px 0;
	background: white;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.benefit-card {
	padding: 32px;
	background: var(--bg-light);
	border-radius: 12px;
	transition: all 0.3s;
}

.benefit-card:hover {
	transform: translateY(-4px);
	background: white;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
	font-size: 2.5rem;
	margin-bottom: 16px;
}

.benefit-card h3 {
	color: var(--primary-navy);
	margin-bottom: 12px;
}

.benefit-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.performance-section {
	padding: 80px 0;
	background: var(--bg-dark);
}

.performance-section .section-title {
	color: white;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 32px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--accent-emerald);
}

.testimonial-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	background: var(--accent-emerald);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.testimonial-info {
	flex: 1;
}

.testimonial-name {
	color: white;
	font-weight: 600;
	margin-bottom: 2px;
}

.testimonial-role {
	color: var(--text-light);
	font-size: 0.875rem;
}

.verified-badge {
	background: rgba(16, 185, 129, 0.2);
	color: var(--accent-emerald);
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
}

.testimonial-text {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 16px;
}

.testimonial-stats {
	display: flex;
	gap: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini-label {
	color: var(--text-light);
	font-size: 0.75rem;
	margin-bottom: 4px;
}

.stat-mini-value {
	color: white;
	font-weight: 700;
	font-size: 1.125rem;
}

.trust-section {
	padding: 80px 0;
	background: white;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.trust-card {
	text-align: center;
	padding: 32px;
}

.trust-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.trust-card h3 {
	color: var(--primary-navy);
	margin-bottom: 12px;
}

.trust-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.badge {
	background: var(--bg-light);
	border: 1px solid var(--border-light);
	padding: 12px 24px;
	border-radius: 24px;
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.875rem;
}

.faq-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.about-section {
	padding: 80px 0;
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 48px;
}

.about-text {
	color: var(--text-secondary);
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.about-stat {
	text-align: center;
	padding: 32px;
	background: var(--bg-light);
	border-radius: 12px;
}

.about-stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 8px;
}

.about-stat-label {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.contact-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.contact-content {
	max-width: 600px;
	margin: 48px auto 0;
}

.contact-card {
	background: white;
	padding: 48px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.contact-card h3 {
	color: var(--primary-navy);
	margin-bottom: 12px;
	font-size: 1.5rem;
}

.contact-card a:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.faq-item {
	background: white;
	padding: 32px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
	color: var(--primary-navy);
	margin-bottom: 12px;
}

.faq-answer {
	color: var(--text-secondary);
	line-height: 1.6;
}

.final-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
}

.cta-box {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-box h2 {
	color: white;
	margin-bottom: 16px;
}

.cta-box p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	margin-bottom: 32px;
}

.cta-micro-copy {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	margin-top: 16px;
}

.footer {
	padding: 60px 0 32px;
	background: var(--bg-dark);
	color: rgba(255, 255, 255, 0.8);
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 60px;
	margin-bottom: 48px;
}

.footer-brand .logo {
	color: white;
	margin-bottom: 12px;
	display: block;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.6);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.footer-column h4 {
	color: white;
	margin-bottom: 16px;
	font-size: 1rem;
}

.footer-column a {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 12px;
	transition: color 0.2s;
}

.footer-column a:hover {
	color: var(--accent-emerald);
}

.footer-bottom {
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-warning {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	line-height: 1.6;
	margin-bottom: 16px;
}

.copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
	text-align: center;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	align-items: center;
	justify-content: center;
}

.modal.active {
	display: flex;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.modal-content {
	position: relative;
	background: white;
	border-radius: 16px;
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--text-light);
	cursor: pointer;
	transition: color 0.2s;
	padding: 8px;
	line-height: 1;
}

.modal-close:hover {
	color: var(--text-primary);
}

.modal-body {
	padding: 48px 40px;
}

.modal-body h2 {
	color: var(--primary-navy);
	margin-bottom: 24px;
	font-size: 2rem;
}

.form-intro {
	color: var(--text-secondary);
	margin-bottom: 32px;
	font-size: 1.125rem;
}

.investment-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.investment-option {
	background: var(--bg-light);
	border: 2px solid var(--border-light);
	padding: 24px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
}

.investment-option:hover {
	border-color: var(--accent-emerald);
	background: white;
}

.investment-option.selected {
	border-color: var(--accent-emerald);
	background: rgba(16, 185, 129, 0.05);
}

.option-amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 4px;
}

.option-label {
	color: var(--text-secondary);
	font-size: 0.875rem;
}

.custom-amount-input {
	width: 100%;
	padding: 16px;
	border: 2px solid var(--border-light);
	border-radius: 8px;
	font-size: 1rem;
	margin-bottom: 24px;
	transition: border-color 0.2s;
}

.custom-amount-input:focus {
	outline: none;
	border-color: var(--accent-emerald);
}

.signup-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.signup-form input[type='text'],
.signup-form input[type='email'],
.signup-form select,
.signup-form input[type='password'],
.signup-form input[type='tel'] {
	width: 100%;
	padding: 16px;
	border: 2px solid var(--border-light);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s;
}

.signup-form input:focus,
.signup-form select:focus {
	outline: none;
	border-color: var(--accent-emerald);
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
	margin-top: 4px;
	cursor: pointer;
}

.checkbox-label span {
	color: var(--text-secondary);
	font-size: 0.875rem;
	line-height: 1.5;
}

.form-footer {
	text-align: center;
	margin-top: 16px;
	color: var(--text-secondary);
}

.form-footer a {
	color: var(--accent-emerald);
	font-weight: 600;
}

@media (max-width: 968px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.nav-links {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-cta-group {
		flex-direction: column;
	}

	.dashboard-stats {
		grid-template-columns: 1fr;
	}

	.step-arrow {
		display: none;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}

	.investment-options {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.container {
		padding: 0 16px;
	}

	.hero {
		padding: 80px 0 40px;
	}

	.problem-grid,
	.benefits-grid,
	.trust-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.modal-body {
		padding: 32px 24px;
	}
}
