* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: #232323 url(images/bg.png) repeat;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wrapper {
	max-width: 960px;
	min-height: 100vh;
	margin: 0 auto;
	padding: 28px 20px 46px;
	text-align: center;
	background: url(images/bg-light.png) no-repeat center top;
}

h1 {
	margin: 28px auto 14px;
	max-width: 840px;
	color: #77dff1;
	font-size: 46px;
	line-height: 1.4;
	font-weight: 700;
	text-shadow: 0 2px 0 #000;
}

p {
	margin: 0;
	color: #fff;
	font-size: 20px;
	line-height: 1.9;
	text-shadow: 0 -1px 0 #000;
}

p.subtext {
	margin-top: 8px;
	color: #d7eaf0;
}

.hr {
	display: block;
	width: 100%;
	height: 2px;
	margin: 16px auto;
	background: url(images/divider.png);
}

.mailing-list {
	margin: 40px auto 26px;
	max-width: 860px;
}

.mailing-list h2 {
	margin: 0 0 16px;
	color: #77dff1;
	font-size: 31px;
	line-height: 1.6;
	text-shadow: 0 2px 0 #000;
}

.mailing-list form {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.mailing-list input[type=tel] {
	width: min(420px, 100%);
	height: 50px;
	padding: 0 14px;
	border: 1px solid #4b7f8a;
	border-radius: 9px;
	background: rgba(0, 0, 0, 0.42);
	color: #fff;
	font-size: 18px;
}

.mailing-list input[type=tel]::placeholder {
	color: #bac4ca;
}

.mailing-list input[type=tel]:focus {
	outline: none;
	border-color: #77dff1;
	box-shadow: 0 0 0 2px rgba(119, 223, 241, 0.25);
}

.mailing-list button {
	height: 50px;
	padding: 0 24px;
	border: none;
	border-radius: 9px;
	background: #77dff1;
	color: #14373f;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.mailing-list button:hover {
	background: #8de5f5;
}

.mailing-list button:active {
	background: #67ccdf;
}

.quick-contact {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border: 1px solid #36474e;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	line-height: 1;
}

.contact-link svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	flex: 0 0 auto;
}

.contact-link.phone {
	border-color: #4e8d9a;
	color: #9ce9f7;
}

.contact-link.whatsapp {
	border-color: #1f8f4a;
	color: #20c35f;
}

.contact-link:hover {
	filter: brightness(1.08);
}

@media (max-width: 768px) {
	.wrapper {
		padding: 20px 14px 36px;
	}

	h1 {
		font-size: 35px;
	}

	p {
		font-size: 18px;
	}

	.mailing-list h2 {
		font-size: 26px;
	}
}

@media (max-width: 560px) {
	h1 {
		font-size: 29px;
	}

	.mailing-list form {
		flex-direction: column;
	}

	.mailing-list input[type=tel],
	.mailing-list button {
		width: 100%;
	}

	.contact-link {
		width: 100%;
		justify-content: center;
	}
}
