:root {
 --primary: #00a0e3;
 --dark: #111111;
 --light-gray: #f5f5f5;
}
body {
	font-family: "Inter", sans-serif;
	color: #222;
	background-color: #ffffff;
}
/* Top bar / navbar */
.top-nav {
	background: #111;
	color: #fff;
	padding: 0.5rem 3vw;
}
.top-nav .navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.top-nav__logo {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .9rem;
}
.top-nav__logo img {
	width: 140px;
	filter: invert(1);
	padding: 10px 0;
}
.top-nav__phone {
	font-size: .85rem;
}
/* Hero */
.hero {
	position: relative;
	min-height: 520px;
	color: #fff;
	display: flex;
	align-items: center;
	background: url("../images/hero.jpeg") center/cover no-repeat;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,.25) 26%, rgba(0,0,0,0) 100%);
}
.hero-inner {
	position: relative;
	padding: 5rem 3vw;
}
.hero-title-box {
	background: rgba(0,0,0,.9);
	padding: 2.25rem 2.5rem;
	border-radius: 4px;
	margin-bottom: 1.75rem;
}
.hero-title-box h1 {
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}
.hero-form {
	background: #fff;
	color: #111;
	padding: 1.75rem 1.75rem 1.5rem;
	border-radius: 4px;
	box-shadow: 0 18px 40px rgba(0,0,0,.35);
	max-width: 420px;
}
.hero-form h2 {
	font-size: 1rem;
	font-weight: 700;
	text-transform: none;
	margin-bottom: 1rem;
}
.hero-form label {
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #555;
}
.hero-form .form-control {
	border-radius: 2px;
	font-size: .85rem;
	padding: .45rem .6rem;
}
.hero-form .btn-primary {
	width: 100%;
	border-radius: 30px;
	padding: .55rem 1rem;
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	background: var(--primary);
	border-color: var(--primary);
}
/* Badge strip */
.badge-strip {
	background: #9b9b9b;
	padding: 1.25rem 3vw;
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}
.badge-strip img {
	height: 60px;
	object-fit: contain;
	margin: 0 20px;
}
/* Stats section */
.stats {
	padding: 3rem 3vw 1rem;
	text-align: center;
}
.stats-item {
	margin-bottom: 1.5rem;
}
.stats-item h3 {
	font-size: 2.5rem;
	font-weight: 700;
	font-family: "Spectral", serif;
}
.stats-item p {
	font-size: .75rem;
	color: #777;
}
/* “How it works” */
.how-it-works {
	background: #fafafa;
	padding: 3.5rem 3vw;
	margin: 1.5rem 0;
}
.how-it-works h2{
	font-weight: 700;
	font-size: 2rem;
}
.how-it-works a{
	border-radius: 30px;
	padding: 15px 40px;
}
.hiw-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
}
.hiw-list li {
	margin-bottom: 1.2rem;
	padding-left: 2.5rem;
	position: relative;
}
.hiw-list li::before {
	content: counter(step);
	counter-increment: step;
	position: absolute;
	left: 0;
	top: .25rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	border: 1px solid #e5e5e5;
	background: #e5e5e5;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}
.hiw-list strong {
	display: block;
	margin-bottom: .2rem;
}
.how-it-works .mb-3{
	display: flex;
    justify-content: end;
    flex-wrap: wrap;
    position: relative;
}
.how-it-works .first-img {
	    width: 70%;
    margin-top: -100px;
}
.how-it-works .second-img{
	position: absolute;
    width: 50%;
    bottom: -120px;
    left: 10%;
}
/* Mid CTA / checklist */
.mid-section {
	padding: 3.5rem 3vw;
}
.check-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
}
.check-list li {
	margin-bottom: .6rem;
	font-size: .92rem;
	position: relative;
	padding-left: 30px;
}
.check-list li::before{
	content: "\F633";
	font-family: "bootstrap-icons";
	font: 20px;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0px;
	left: 0px;
	color: #fff;
	background: #56d18b;
	text-align: center;
}
.check-list .check-icon {
	color: #27ae60;
	margin-right: .4rem;
}
.mid-section h2{
	text-transform: uppercase;
	font-weight: 700;
}
/* Big roof image */
.roof-section {
	padding: 3rem 0 0;
}
.roof-section h2{
	text-transform: uppercase;
	font-weight: 700;
}
.roof-section .col-md-6{
	margin-left: 20%;
}
.roof-img {
	width: 100%;
	display: block;
}
/* Bottom process icons */
.process {
	text-align: center;
	padding: 3.5rem 3vw 2.5rem;
	background: #fafafa;
}
.process h2{
	font-size: 1.1rem;
    text-transform: uppercase;
	font-weight: 700;
}
.process-card {
	background: #e6e6e6;
	padding: 1.4rem 1rem;
	border-radius: 4px;
	font-size: .85rem;
	min-height: 150px;
}
.process-card h5 {
	font-size: .9rem;
	margin-bottom: .5rem;
	text-transform: uppercase;
	font-weight: bold;
}
.process-card img{
	margin-bottom: 20px;
}
/* Footer banner */
.bottom-banner {
	position: relative;
	min-height: 520px;
	background: url("../images/bottom-bg.jpg") center/cover no-repeat;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.bottom-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.35);
}
.bottom-banner-inner {
	position: relative;
	max-width: 480px;
	padding-bottom: 100px;
}
.bottom-banner-inner h2 {
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 700;
}
.bottom-banner-inner .btn-dark {
	margin-top: 1rem;
	border-radius: 24px;
	padding: .55rem 1.6rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}
/* Footer */
footer {
	background: #111;
	color: #777;
	font-size: .75rem;
	text-align: center;
	padding: 1.25rem 0 .75rem;
}

@media (max-width: 767.98px) {
	.hero-inner {
		padding: 3rem 1.25rem;
	}
	.hero-title-box {
		padding: 1.6rem 1.7rem;
	}
	.hero-title-box h1 {
		font-size: 1.65rem;
	}
	.hero-form {
		max-width: 100%;
		margin-top: 1.25rem;
	}
	.hiw-card {
		margin-top: 1.75rem;
	}
	.roof-section .col-md-6{
		margin-left: 0%;
	}
	.how-it-works .col-md-6{
		order: 1;
	}
	.how-it-works .col-md-6:first-child{
		order: 2;
	}
	.how-it-works .first-img {
		width: 70%;
		margin-top: 0px;
	}
	.how-it-works .second-img {
		position: absolute;
		width: 50%;
		bottom: 25%;
		right: 0%;
		left: auto;
	}
	.how-it-works .mb-3{
		justify-content: flex-start;
	}
	.bottom-banner-inner h2{
		margin: 0 15px;
	}
}
