:root {
	--grad-start: #1b6cff;
	--grad-end: #00c6ff;
	--bg: #0d1117;
	--text: #e5e7eb;
	--card-bg: rgba(255, 255, 255, 0.12);
	--blur: 12px;

	--section-pad: 60px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	padding-bottom: 100px;
}

a {
	color: var(--grad-end);
	text-decoration: none;
}
h1,
h2,
h3 {
	font-weight: 700;
	margin-bottom: 0.5em;
}

.wrap {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

.btn {
	display: inline-block;
	padding: 16px 44px;
	font-weight: 600;
	background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
	color: #fff;
	border: none;
	border-radius: 40px;
	box-shadow: 0 10px 24px rgba(0, 128, 255, 0.35);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	width: 100%;
	margin-top: 8px;
	font-size: 1.1rem;
	text-align: center;
}
.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 128, 255, 0.45);
}
.btn:hover {
	transform: translateY(-3px);
}

section {
	padding: var(--section-pad) 0;
	position: relative;
	z-index: 1;
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 20% 110%,
			rgba(0, 198, 255, 0.35),
			transparent 60%
		),
		radial-gradient(
			circle at 80% -20%,
			rgba(27, 108, 255, 0.4),
			transparent 60%
		);
	z-index: -2;
}

.glass {
	background: var(--card-bg);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.hero-card {
	padding: 40px;
	width: 100%;
	max-width: 420px;
	margin: 40px auto 0;
}

.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem;
	background: rgba(13, 17, 23, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1000;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(150%);
	transition: transform 0.4s ease-out;
	display: none;
	padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}

.sticky-cta .btn {
	margin: 0;
	font-size: 1.2rem;
	padding: 18px;
}

.feature-row {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 18px;
}
.pill {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 16px 20px;
	border-radius: 30px;
	font-size: 1.2rem;
	backdrop-filter: blur(6px);
}
.icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
	font-size: 0.9rem;
	color: #fff;
	font-weight: 600;
}

.section-title {
	text-align: center;
	font-size: 1.9rem;
	margin-bottom: 40px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.8rem;
}
.step {
	padding: 32px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(6px);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.step-number {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	transform: rotate(20deg);
}

.faq-item {
	margin-bottom: 14px;
}
.faq-q {
	padding: 18px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.faq-a {
	display: none;
	padding: 16px 20px;
	color: #cbd5e1;
}

footer {
	text-align: center;
	font-size: 0.9rem;
	padding: calc(var(--section-pad) - 20px) 0;
	color: #94a3b8;
}

@media (max-width: 767px) {
	.sticky-cta {
		display: block;
	}
	.hero h1 {
		font-size: 2.2rem;
		line-height: 1.2;
	}
	.hero-card {
		padding: 28px;
		margin-top: 24px;
	}
	.section-title {
		font-size: 1.65rem;
		margin-bottom: 32px;
	}
	#why {
		padding-left: 24px;
		padding-right: 24px;
	}
}

.pill,
.step {
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s,
		box-shadow 0.25s, color 0.25s;
}

.pill:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 128, 255, 0.35);
}

.step:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 10px 24px rgba(0, 128, 255, 0.35);
	border-color: var(--grad-start);
}

footer nav a {
	text-decoration: none;
	color: #3b82f6;
	transition: color 0.2s;
}
footer nav a:hover {
	color: #00c6ff;
	text-decoration: underline;
}

#benefits {
	padding: 0 32px;
}
@media (max-width: 1024px) {
	#benefits {
		grid-template-columns: 1fr;
	}
}

#benefits > div {
	border: 1px solid #00c6ff !important;
}

footer {
	margin-top: 32px;
	padding: 40px 24px 32px;
	text-align: center;
	background: #0e1621;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.9rem;
}

footer .footer-links {
	margin-bottom: 28px;
}

footer .footer-links a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.2s;
}
footer .footer-links a:hover {
	color: #00c6ff;
	text-decoration: underline;
}

footer h5 {
	font-size: 0.95rem;
	font-weight: 600;
	color: #cbd5e1;
	margin: 0 0 16px;
}

footer p {
	color: #94a3b8;
	font-size: 0.8rem;
	max-width: 800px;
	margin: 0 auto 24px;
}

footer p:last-child {
	margin-bottom: 0;
	color: #475569;
}

.faq-item:last-of-type {
	margin-bottom: 28px;
}

@media (min-width: 1024px) {
	#benefits {
		grid-template-columns: repeat(2, minmax(320px, 1fr)) !important;
		max-width: 760px !important;
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 2.5rem !important;
		line-height: 1.15;
	}
}
