:root {
	--blue: #1e90ff;
	--white: #ffffff;
	--accent: #40e0b8;
	--accent-start: #40e0d0;
	--accent-end: #36c7b8;
	--bg-dark: #0f172a;
	--bg-light: #1e293b;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", Montserrat, sans-serif;
	line-height: 1.6;
	color: var(--white);
	background: radial-gradient(circle at top left, var(--bg-light), var(--bg-dark) 70%);
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

/* Animated Background Elements */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(circle at 20% 80%, rgba(64, 224, 208, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(64, 224, 176, 0.02) 0%, transparent 50%);
	animation: backgroundPulse 20s ease-in-out infinite;
}

.tech-bg-shapes {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.tech-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, rgba(30, 144, 255, 0.03) 50%, rgba(64, 224, 176, 0.02) 100%);
	animation: floatSlow 25s ease-in-out infinite;
}

.tech-shape:nth-child(1) {
	width: 300px;
	height: 300px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
	animation-duration: 30s;
}

.tech-shape:nth-child(2) {
	width: 200px;
	height: 200px;
	top: 60%;
	right: 15%;
	animation-delay: -10s;
	animation-duration: 25s;
	animation-direction: reverse;
}

.tech-shape:nth-child(3) {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 20%;
	animation-delay: -5s;
	animation-duration: 35s;
}

.tech-shape:nth-child(4) {
	width: 100px;
	height: 100px;
	top: 30%;
	right: 30%;
	animation-delay: -15s;
	animation-duration: 20s;
	animation-direction: reverse;
}

/* Subtle grid overlay */
.tech-bg-shapes::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(64, 224, 208, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(64, 224, 208, 0.01) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 40s linear infinite;
}

@keyframes backgroundPulse {
	0%,
	100% {
		opacity: 0.8;
	}
	50% {
		opacity: 1;
	}
}

@keyframes floatSlow {
	0%,
	100% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) translateX(10px) rotate(90deg);
	}
	50% {
		transform: translateY(-10px) translateX(-15px) rotate(180deg);
	}
	75% {
		transform: translateY(15px) translateX(5px) rotate(270deg);
	}
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	padding: 2rem 0;
	text-align: center;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1rem;
}

.logo-icon {
	width: 48px;
	height: 48px;
	background: var(--accent);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
	font-weight: bold;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
}

.hero,
.feature-card,
.how-it-works,
.faq-item {
	background: rgba(255, 255, 255, 0.07);
	border: 0px rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	position: relative;
	z-index: 1;
	padding: 3rem 2rem;
	margin: 2rem 0;
	text-align: center;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
}

.hero {
	border-radius: 20px;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(270deg, var(--accent-start), var(--accent-end), #1e90ff);
	background-size: 600% 600%;
	color: white;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: transform 0.25s ease;
	animation: gradientFlow 6s ease infinite;
	box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
	text-decoration: none;
	margin: 1rem 0;
}

.outline-button {
	display: inline-block;
	background: transparent;
	color: var(--accent);
	padding: 10px 20px;
	border-radius: 50px;
	border: 2px solid var(--accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	margin: 1rem 0;
	margin-left: 20px;
}

.cta-button:hover {
	background: #36c7b8;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(64, 224, 208, 0.4);
	box-shadow: 0 8px 20px rgba(64, 224, 208, 0.5);
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.feature-card {
	padding: 2.2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
	transform: none;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: white;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	margin-bottom: 1rem;
}

.feature-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	margin-bottom: 0.5rem;
}

.feature-description {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	font-size: 1rem;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: 2rem;
}

.footer {
	display: none;
	text-align: center;
	padding: 2rem 0;
	color: #7f8c8d;
	background-color: #12304e;
	position: fixed;
	left: 0;
	width: 100%;
	margin: 0;
	z-index: 100;
}

.faq-section {
	margin: 3rem 0;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
}

.faq-item.closed .faq-answer {
	display: none;
}

.faq-item.open .faq-answer {
	display: block;
}

.disabled {
	display: inline-block;
	background: #5c7a76;
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	margin: 1rem 0;
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.step {
	text-align: center;
	padding: 1.5rem;
	transform: none;
	transition: none;
}

.step.visible {
	opacity: 1;
	transform: translateY(0);
}

.step-number {
	width: 40px;
	height: 40px;
	background: linear-gradient(145deg, #00f0b5, #00c2a8);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin: 0 auto 1rem;
	padding: 0.6rem 1rem;
	box-shadow: 0 0 12px rgba(0, 242, 195, 0.5);
}

.step-title {
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
	margin-top: 1rem;
}

.step-description {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	font-size: 0.9rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	margin-top: 0.5rem;
}

footer {
	text-align: center;
	padding: 2rem 0;
	color: #7f8c8d;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	.hero {
		padding: 2rem 1rem;
	}

	.features {
		grid-template-columns: 1fr;
	}

	.hero-content {
		padding: 1rem !important;
	}

	.hero-content > div:first-child {
		flex-direction: column !important;
		gap: 1.5rem !important;
		text-align: center;
		align-items: center;
	}

	.hero-content h1 {
		font-size: 1.8rem !important;
		line-height: 1.3;
		margin-bottom: 1rem;
		order: 1;
	}

	#hero-image {
		max-width: 100%;
		height: auto !important;
		max-height: 250px;
		order: 2;
	}

	.hero-content > div:last-child {
		margin-top: 1.5rem;
	}

	.hero-content > div:last-child > div {
		flex-direction: column !important;
		gap: 1rem !important;
		align-items: center;
	}

	.cta-button {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}

	.disabled {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}
}

.faq-section {
	margin: 3rem 0;
}

.faq-item {
	padding: 1rem 0.8rem;
}

.faq-question {
	cursor: pointer;
	padding: 1rem 1.5rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.2rem;
	text-align: start;
}

.faq-answer {
	font-size: 0.9rem;
	padding: 0 1.5rem 1rem;
	color: rgb(189, 189, 189);
	text-align: left;
}

.faq-item.closed .faq-answer {
	display: none;
}

.faq-item.open .faq-answer {
	display: block;
}
