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

html, body {
	height: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #1a2f4a;
}

/* ================================================
   SECTION 1 — HERO (Blue gradient)
   ================================================ */
.hero {
	background: linear-gradient(135deg, #0b2444 0%, #0d47a1 55%, #1565c0 100%);
	min-height: 55vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 90px 24px;
	position: relative;
	overflow: hidden;
}

/* Subtle decorative radial glows */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 60%, rgba(100, 180, 255, 0.08) 0%, transparent 55%),
		radial-gradient(ellipse at 80% 20%, rgba(100, 180, 255, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.hero-inner {
	max-width: 680px;
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #7ec8e3;
	margin-bottom: 20px;
}

.hero-title {
	font-size: 2.6rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 22px;
}

.hero-subtitle {
	font-size: 1.05rem;
	color: #b3cceb;
	line-height: 1.75;
	font-weight: 300;
	margin-bottom: 40px;
}

.hero-cta {
	display: inline-block;
	padding: 14px 38px;
	border: 2px solid #7ec8e3;
	color: #7ec8e3;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 3px;
	transition: background 0.25s ease, color 0.25s ease;
}

.hero-cta:hover {
	background: #7ec8e3;
	color: #0b2444;
}

/* ================================================
   SECTION 2 — MIDDLE (White)
   ================================================ */
.middle {
	background: #ffffff;
	padding: 80px 24px;
}

.middle-inner {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 64px;
}

.logo-wrap {
	flex: 0 0 auto;
}

.logo {
	width: 210px;
	max-width: 100%;
	display: block;
}

.services-wrap {
	flex: 1;
}

.section-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #1565c0;
	margin-bottom: 22px;
}

.services-list {
	list-style: none;
	padding: 0;
	margin-bottom: 40px;
}

.services-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a2f4a;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	padding: 12px 0;
	border-bottom: 1px solid #e4eaf3;
}

.services-list li:last-child {
	border-bottom: none;
}

.bullet {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: #1565c0;
	border-radius: 50%;
	flex-shrink: 0;
}

.contact-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #8a9ab8;
	margin-bottom: 6px;
}

.contact-email {
	font-size: 1rem;
	font-weight: 600;
	color: #1565c0;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s;
}

.contact-email:hover {
	border-bottom-color: #1565c0;
}

/* ================================================
   SECTION 3 — FOOTER (Deep blue)
   ================================================ */
.footer {
	background: linear-gradient(135deg, #0b2444 0%, #112e54 100%);
	padding: 56px 24px;
	text-align: center;
}

.footer-inner {
	max-width: 860px;
	margin: 0 auto;
}

.footer-company {
	font-size: 0.9rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.footer-address {
	font-size: 0.88rem;
	color: #6a91b8;
	margin-bottom: 24px;
}

.footer-copy {
	font-size: 0.72rem;
	color: #3d5e7a;
	letter-spacing: 0.5px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media only screen and (max-width: 720px) {
	.hero-title {
		font-size: 1.85rem;
	}

	.hero-subtitle {
		font-size: 0.95rem;
	}

	.middle-inner {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.logo {
		width: 170px;
		margin: 0 auto;
	}

	.services-list li {
		justify-content: center;
	}
}
