* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00F0FF;
	--primary-dark: #00C4CC;
	--secondary: #FF00FF;
	--accent: #FF3366;
	--success: #00FF88;
	--text-primary: #FFFFFF;
	--text-secondary: #A0AEC0;
	--bg-primary: #0A0A0F;
	--bg-secondary: #12121A;
	--bg-tertiary: #1A1A25;
	--border: #2D2D3A;
	--shadow-light: rgba(0, 240, 255, 0.1);
	--shadow-medium: rgba(0, 240, 255, 0.2);
	--shadow-heavy: rgba(0, 240, 255, 0.3);
	--gradient-primary: linear-gradient(135deg, #00F0FF 0%, #FF00FF 100%);
	--gradient-secondary: linear-gradient(135deg, #00F0FF 0%, #00FF88 100%);
	--radius-small: 10px;
	--radius-medium: 18px;
	--radius-large: 28px;
	--neon-glow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 40px var(--primary);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background: var(--bg-primary);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0A0A0F;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	overflow: hidden;
}

.preloader.fade-out {
	opacity: 0;
	visibility: hidden;
}

.preloader-video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

.preloader-video-background video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	filter: saturate(0.8) brightness(0.6) contrast(1.1);
}

.preloader-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.7) 100%);
	z-index: 2;
}

.preloader-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	animation: preloaderEntry 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.preloader-logo {
	width: 120px;
	height: 120px;
	filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

.preloader-text {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0;
	animation: textFadeIn 0.3s ease forwards 0.1s;
}

@keyframes preloaderEntry {
	0% {
		opacity: 0;
		transform: scale(0.95);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes textFadeIn {
	0% {
		opacity: 0;
		transform: translateY(5px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 15, 0.85);
	backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--border);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
	background: rgba(10, 10, 15, 0.95);
	box-shadow: 0 1px 20px var(--shadow-light), 0 0 30px rgba(0, 240, 255, 0.1);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
	letter-spacing: -0.02em;
}

.logo:hover {
	color: var(--primary);
}

.logo-mark {
	display: inline-block;
	height: 38px;
	width: 38px;
}

.logo-text {
	display: inline-block;
	color: inherit;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text-primary);
}

.nav-toggle.active {
	color: var(--primary);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-menu .cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.4rem;
	border-radius: var(--radius-small);
	font-size: 0.9rem;
	box-shadow: none;
}

.nav-menu .cta-button:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-menu a:hover {
	color: var(--primary);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

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

.cta-button {
	background: var(--primary);
	color: white;
	padding: 0.65rem 1.4rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	border: none;
	cursor: pointer;
	letter-spacing: -0.01em;
}

.cta-button:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 10px 30px rgba(2, 132, 199, 0.25);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem 5% 4rem;
	overflow: hidden;
}

/* Full-screen video background */
.hero-video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

.hero-video-background video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	filter: saturate(0.7) brightness(0.5) contrast(1.0);
}

/* Elegant gradient overlay with vignette */
.hero-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at center, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.85) 80%),
		linear-gradient(135deg, rgba(10, 10, 15, 0.5) 0%, rgba(10, 10, 15, 0.5) 55%, rgba(0, 240, 255, 0.05) 100%);
	backdrop-filter: blur(0px);
	z-index: 1;
}

.hero-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 1100px;
	margin: 0 auto;
	z-index: 2;
}

.hero-text {
	margin: 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	border: 1px solid var(--primary);
	background: rgba(0, 240, 255, 0.1);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.product-hunt-badge {
	display: inline-flex;
	align-items: center;
}

.product-hunt-badge img {
	display: block;
}

.hero-text h1 {
	margin-top: 1.75rem;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--text-primary);
	letter-spacing: -0.03em;
}

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

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

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
	justify-content: center;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.hero-button.primary {
	background: var(--primary);
	color: #0A0A0F;
	font-weight: 700;
}

.hero-button.secondary {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--primary);
	box-shadow: none;
}

.hero-button.primary:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 80px rgba(0, 240, 255, 0.3);
}

.hero-button.secondary:hover {
	color: var(--primary);
	border-color: var(--primary);
	transform: translateY(-1px);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
	background: rgba(0, 240, 255, 0.1);
}

.hero-note {
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

/* Hide the old hero-visual since video is now background */
.hero-visual {
	display: none;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.scroll-indicator:hover {
	color: var(--primary);
	transform: translateX(-50%) translateY(-3px);
}

.scroll-indicator::after {
	content: '↓';
	font-size: 1.2rem;
	animation: bounce 2s infinite;
}

/* Section Styles */
.section {
	padding: 6rem 5%;
	max-width: 1400px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

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

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 4rem;
}

.service-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
	padding: 4rem 0;
	border-bottom: 1px solid var(--border);
}

.service-card:last-child {
	border-bottom: none;
}

.service-card:nth-child(even) {
	direction: rtl;
}

.service-card:nth-child(even)>* {
	direction: ltr;
}

.service-image {
	position: relative;
	border-radius: var(--radius-large);
	overflow: hidden;
	box-shadow: 0 20px 40px var(--shadow-medium);
	transition: all 0.3s ease;
}

.service-image:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 30px 60px var(--shadow-heavy);
}

.service-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: all 0.3s ease;
}

.service-content h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.service-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

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

.feature-card {
	background: var(--bg-secondary);
	padding: 3rem 2rem;
	border-radius: var(--radius-large);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
	text-align: center;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

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

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0 40px rgba(0, 240, 255, 0.3), 0 0 80px rgba(255, 0, 255, 0.1);
	border-color: var(--primary);
}

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

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: #0A0A0F;
	font-size: 2rem;
	box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.feature-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

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

/* FAQ */
.faq-list {
	max-width: 960px;
	margin: 0 auto;
	display: grid;
	gap: 1.25rem;
}

.faq-item {
	border: 1px solid var(--border);
	background: var(--bg-secondary);
	border-radius: var(--radius-medium);
	padding: 1.1rem 1.4rem;
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--primary);
	box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.faq-item summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--text-primary);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	font-weight: 600;
	color: var(--accent);
	transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item summary:hover::after {
	color: var(--primary);
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item p {
	margin: 0.75rem 0 0;
	color: var(--text-secondary);
	line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
	.faq-item {
		background: color-mix(in oklab, #11161f, #ffffff 4%);
		border-color: color-mix(in oklab, #ffffff, transparent 75%);
		box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
	}

	.faq-item summary {
		color: color-mix(in oklab, #ffffff, transparent 12%);
	}

	.faq-item p {
		color: color-mix(in oklab, #ffffff, transparent 32%);
	}
}

/* Contact Form */
.contact-section {
	background: var(--bg-tertiary);
	padding: 6rem 5%;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-secondary);
	padding: 3rem;
	border-radius: var(--radius-large);
	box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
	border: 1px solid var(--border);
}

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

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--primary);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-medium);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	background: var(--bg-primary);
	color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
	transform: translateY(-2px);
}

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

.form-submit {
	width: 100%;
	background: var(--primary);
	color: #0A0A0F;
	padding: 1.25rem 2rem;
	border: none;
	border-radius: var(--radius-medium);
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	font-family: inherit;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.form-submit:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 80px rgba(0, 240, 255, 0.3);
}

/* Footer */
.footer {
	background: var(--bg-primary);
	color: var(--text-secondary);
	text-align: center;
	padding: 3rem 5%;
	border-top: 1px solid var(--border);
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.5rem;
}

.footer-links a:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

.footer p {
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

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

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
	.nav {
		padding: 1rem;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 1rem;
		right: 1rem;
		background: rgba(10, 10, 15, 0.97);
		border-radius: var(--radius-medium);
		padding: 1.25rem;
		box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
		border: 1px solid var(--border);
		gap: 0;
		z-index: 1001;
	}

	.nav-menu.is-open {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		align-items: stretch;
	}

	.nav-menu.is-open li {
		width: 100%;
	}

	.nav-menu.is-open a {
		display: block;
		width: 100%;
		padding: 0.75rem;
		border-radius: var(--radius-small);
		text-align: left;
	}

	.nav-menu.is-open a:not(.cta-button):hover {
		background: var(--bg-secondary);
		color: var(--primary);
	}

	.nav-menu.is-open .cta-button {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		background: var(--primary);
		color: #0A0A0F;
		padding: 0.85rem;
		border-radius: var(--radius-small);
		box-shadow: none;
		font-weight: 700;
	}

	.nav-menu.is-open .cta-button:hover {
		background: #fff;
		color: #0A0A0F;
		transform: none;
		box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
	}

	.nav-toggle {
		display: block;
	}

	.hero {
		padding: 6.5rem 1.25rem 3rem;
	}

	.hero-inner {
		gap: 2rem;
	}

	.hero-text {
		margin: 0;
	}

	.hero-badges {
		align-items: center;
		justify-content: center;
	}

	.hero-actions {
		justify-content: center;
		flex-direction: column;
		width: 100%;
	}

	.hero-button {
		width: 100%;
		max-width: 320px;
	}

	.section {
		padding: 4rem 1rem;
	}

	.service-card {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 3rem 0;
		text-align: center;
	}

	.service-card:nth-child(even) {
		direction: ltr;
	}

	.form-container {
		padding: 2rem;
		margin: 0 1rem;
	}

	.hero {
		padding: 6rem 1rem 4rem;
	}
}

@media (max-width: 480px) {
	.features-grid {
		grid-template-columns: 1fr;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-button {
		width: 100%;
	}
}

/* Force 3 columns for Value Prop on desktop */
#value-prop .features-grid {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
	#value-prop .features-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

/* Hero Section Refinements */
.hero-text h1 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	letter-spacing: -0.04em;
	margin-bottom: 2rem;
}

.hero-subtitle {
	font-size: 1.25rem;
	max-width: 800px;
	margin-inline: auto;
	opacity: 0.9;
}

.hero-badge-premium {
	background: rgba(255, 255, 255, 0.9) !important;
	border: 1px solid var(--primary) !important;
	color: var(--primary-dark) !important;
	font-weight: 700 !important;
	padding: 0.6rem 1.2rem !important;
	box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.hero-button.primary {
	position: relative;
	overflow: hidden;
}

.hero-button.primary:after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg,
			transparent,
			rgba(255, 255, 255, 0.1),
			transparent);
	transform: rotate(45deg);
	animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
	0% {
		left: -150%;
	}

	100% {
		left: 150%;
	}
}

/* Shared Landing Page Components */
.trust-strip {
	background: var(--bg-tertiary);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 2rem 5%;
}

.trust-items {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.trust-item {
	text-align: center;
}

.trust-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
	display: block;
	margin-bottom: 0.25rem;
}

.trust-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.problem-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 2rem 0;
}

.problem-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.1rem;
	color: var(--text-primary);
}

.problem-list li::before {
	content: "→";
	color: var(--accent);
	font-weight: 700;
	font-size: 1.5rem;
}

.outcome-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 2rem 0;
}

.outcome-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--bg-tertiary);
	border-radius: var(--radius-medium);
	border-left: 3px solid var(--primary);
}

.outcome-list svg {
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.roi-box {
	background: var(--bg-tertiary);
	border: 2px solid var(--primary);
	border-radius: var(--radius-large);
	padding: 2.5rem;
	margin: 3rem 0;
	text-align: center;
}

.roi-math {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.roi-math strong {
	color: var(--primary);
	font-weight: 800;
}

.roi-result {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent);
	margin-bottom: 1rem;
}

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

.card {
	background: var(--bg-secondary);
	padding: 2.5rem;
	border-radius: var(--radius-medium);
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.card:hover {
	border-color: var(--primary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.step-number {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.who-for-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin: 2.5rem 0;
}

.who-for-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--bg-secondary);
	border-radius: var(--radius-small);
	border: 1px solid var(--border);
}

.form-success {
	display: none;
	padding: 2.5rem;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid var(--success);
	border-radius: var(--radius-medium);
	text-align: center;
	margin-bottom: 2rem;
	animation: fadeInUp 0.5s ease;
}

.form-success h3 {
	color: var(--success);
	margin-bottom: 0.5rem;
}