@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
	--bg: #f3f7fb;
	--bg-soft: #ffffff;
	--text: #0f2742;
	--muted: #4f6782;
	--primary: #005b96;
	--primary-dark: #004a7a;
	--primary-soft: #e9f4ff;
	--card: #ffffff;
	--line: #d2e0ec;
	--shadow: 0 12px 28px rgba(11, 38, 67, 0.08);
	--radius: 14px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
	letter-spacing: 0.01em;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1160px, 92%);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 0;
}

.brand {
	display: inline-flex;
	align-items: center;
}

.brand img {
	height: 32px;
	width: auto;
	display: block;
}

.nav-links {
	display: flex;
	gap: 1.35rem;
	font-size: 0.96rem;
	font-weight: 600;
	color: var(--muted);
	flex: 1;
	justify-content: center;
}

.nav-links a.active,
.nav-links a:hover {
	color: var(--text);
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.05rem;
	border-radius: 10px;
	font-weight: 700;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.btn-primary {
	background: var(--primary);
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(0, 91, 150, 0.25);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
}

.btn-secondary {
	border: 1px solid var(--line);
	color: var(--text);
	background: #ffffff;
}

.btn-secondary:hover {
	border-color: #b8ccdf;
	background: #f8fbff;
}

.hero {
	padding: 5.4rem 0 3.5rem;
	background: linear-gradient(180deg, #f8fbff 0%, #edf5fc 100%);
	border-bottom: 1px solid var(--line);
}

.hero-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 1.2rem;
	align-items: center;
}

.hero-media img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.11em;
	font-weight: 700;
}

h1,
h2,
h3 {
	margin: 0 0 0.5rem;
	line-height: 1.2;
	letter-spacing: -0.015em;
}

h1 {
	font-size: clamp(2rem, 5.5vw, 3.3rem);
	max-width: 760px;
	font-weight: 800;
}

h2 {
	font-size: clamp(1.4rem, 3vw, 2.1rem);
	font-weight: 800;
}

h3 {
	font-weight: 700;
}

.hero p {
	color: var(--muted);
	max-width: 720px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.2rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.95rem;
	margin-top: 1.5rem;
}

.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.1rem;
	box-shadow: var(--shadow);
}

.section {
	padding: 3.7rem 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.1rem;
	margin-top: 1.3rem;
}

.services-grid .card p,
.muted {
	color: var(--muted);
}

.cta {
	margin-top: 1.2rem;
	padding: 1.3rem;
	background: var(--primary-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.contact-box {
	max-width: 720px;
}

.about-layout {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.2rem;
	align-items: start;
}

.about-list {
	margin: 0;
	padding-left: 1.1rem;
}

.about-list li {
	margin: 0.45rem 0;
}

.site-footer {
	padding: 2.2rem 0 1.2rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.92rem;
	background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 1rem;
}

.footer-brand {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 1rem;
	box-shadow: var(--shadow);
}

.footer-logo {
	height: 34px;
	width: auto;
}

.footer-title {
	margin: 0 0 0.45rem;
	color: var(--text);
	font-size: 1rem;
	font-weight: 800;
}

.footer-links a {
	display: block;
	margin: 0.34rem 0;
	color: var(--muted);
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-cta {
	margin-top: 0.9rem;
}

.footer-bottom {
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.2rem;
	justify-content: space-between;
	font-size: 0.84rem;
}

.footer-highlight {
	color: var(--text);
	font-weight: 600;
}

.image-band {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.image-band img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid var(--line);
}

@media (max-width: 860px) {
	.nav-links {
		display: none;
	}

	.hero-layout {
		grid-template-columns: 1fr;
	}

	.stats,
	.services-grid,
	.image-band,
	.footer-top {
		grid-template-columns: 1fr;
	}

	.about-layout {
		grid-template-columns: 1fr;
	}
}
