:root {
	--primary-color: #00aeef;
	--secondary-color: #1566bb;
}
* {
	box-sizing: border-box;
}

body,
input,
textarea,
button {
	font-family: "Inter", sans-serif;
	line-height: 1.4;
}

body {
	margin: 0;
	background: linear-gradient(135deg, #fdfbfb, #ebedee);
	color: #2a2a2a;
}

a {
	color: var(--primary-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
}

.hero {
	background: linear-gradient(135deg, #c9e4de, #f1f4f8);
	padding: 5rem 2rem;
	text-align: center;
	animation: fadeInUp 1s ease-out;

	form {
		max-width: 600px;
		margin: auto;
		padding: 3rem;
		background-color: #fff;
		border-radius: 0.5rem;
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);

		> div {
			display: flex;
			justify-content: center;
			gap: 1rem;
			margin-bottom: 1rem;
		}
	}

	input {
		width: 100%;
		font-size: 1.125rem;
		border: 1px solid #0002;
		border-radius: 0.5rem;
		background-color: #fff;
		padding: 0.75rem 1rem;
		transition: all 0.3s ease;

		&:focus {
			outline: none;
			border-color: var(--primary-color);
			box-shadow: 0 0 1rem var(--primary-color);
		}
	}

	h3 {
		font-weight: 400;
	}

	.error {
		color: #eb443f;
	}

	.note {
		font-size: 0.8em;
		font-style: italic;
	}
}

.seals {
	padding: 1rem;
	display: flex;
	gap: 2rem;
	justify-content: center;
	align-items: baseline;
}

.welcome {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;

	img {
		width: auto;
		height: 32px;
	}
}

.logo {
	font-size: 1.25rem;
	font-weight: normal;
	line-height: 1.25;

	a {
		text-align: left;
		text-decoration: none;
		color: #000;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		transition: filter 0.3s ease;

		&:hover {
			filter: drop-shadow(0 0.25rem 0.5rem var(--accent-color));
		}
	}

	img,
	strong,
	small {
		display: block;
	}
}

h1,
h2 {
	color: #1e1e1e;
	margin-bottom: 1rem;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.btn-primary {
	border: 0 none;
	display: inline-block;
	background: var(--primary-color);
	color: white;
	padding: 1rem 2rem;
	font-size: 1.2rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.3s ease;
	cursor: pointer;

	&:hover {
		background: var(--secondary-color);
	}
}

.features {
	background: #f7f9fb;
	padding: 4rem 2rem;

	.container {
		display: flex;
		gap: 2rem;
		flex-wrap: wrap;
		justify-content: space-around;
	}
}

.feature {
	flex: 1 1 280px;
	padding: 2rem;
	text-align: center;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;

	&:hover {
		box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
	}

	div {
		--size: 64px;
		width: var(--size);
		height: var(--size);
		border-radius: var(--size);;
		margin: auto;
		font-size: 2rem;
		text-align: center;
		line-height: var(--size);
		color: #fff;
		background: var(--primary-color);
		margin-bottom: 1rem;
	}
}

.about {
	padding: 4rem 2rem;
	background: #edf6f9;

	.container {
		text-align: left;
		display: flex;
		gap: 2rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.why {
		flex: 0 0 600px;
	}

	figure {
		flex: 0 0 256px;
		width: 256px;
		display: block;
	}

	img {
		width: 100%;
		height: auto;
	}

	ul {
		list-style: none;
		padding: 0;
	}

	li {
		margin: 0.5rem 0;
		font-size: 1.1rem;

		i {
			color: var(--primary-color);
			margin-right: 0.5rem;
		}
	}
}

.testimonials {
	background: #f7f9fb;
	padding: 4rem 2rem;

	.blockquotes {
		display: flex;
		gap: 2rem;
		flex-wrap: wrap;
		justify-content: space-around;

		> div {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			flex: 1 1 280px;
			padding: 2rem;
			text-align: center;
			background: #fff;
			border-left: 5px solid var(--primary-color);
			border-radius: 12px;
			box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
			transition: all 0.3s ease;

			&:hover {
				box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
			}
		}

		blockquote {
			font-family: Georgia, "Times New Roman", Times, serif;
			font-style: italic;
		}

		figure {
			display: block;
			margin: 0;
		}

		img {
			--size: 64px;
			width: var(--size);
			height: var(--size);
			border-radius: var(--size);
		}
	}
}

.cta {
	background: linear-gradient(135deg, #f6e1e1, #dbe4f0);
	padding: 4rem 2rem;
}

.footer {
	background: #2a2a2a;
	color: #ffffff;
	padding: 2rem;
	text-align: center;
}

.steps {
	background: #ffffff;
	padding: 4rem 2rem;

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

.step {
	flex: 1 1 280px;
	padding: 2rem;
	background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
	animation: fadeInUp 0.8s ease-out forwards;
	transition: all .3s ease;

	&:hover {
		box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
	}

	i {
		font-size: 2.5rem;
		color: var(--primary-color);
		margin-bottom: 1rem;
		display: block;
	}

	h3 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}
}

/* Animation */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease-out forwards;
}

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

@media (max-width: 768px) {
	.features {
		flex-direction: column;
		align-items: center;
	}

	.steps {
		flex-direction: column;
		align-items: center;
	}
}
