.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(13, 42, 109, 0.08);
	transition: box-shadow 0.2s ease;
	box-shadow: 0 6px 22px rgba(13, 42, 109, 0.06);
}

.site-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(13, 42, 109, 0.08);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 82px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 800;
	color: var(--primary);
}

.brand img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.brand .brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand .brand-text span:first-child {
	font-size: 1.2rem;
	letter-spacing: 0.02em;
}

.brand .brand-text span:last-child {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 600;
}

.nav {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	background: rgba(13, 42, 109, 0.03);
	border: 1px solid rgba(13, 42, 109, 0.08);
	border-radius: 999px;
	padding: 6px;
}

.nav a {
	color: #23314f;
	font-weight: 600;
	font-size: 0.96rem;
}

.nav a:not(.btn) {
	padding: 7px 10px;
	border-radius: 999px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

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

.nav a:not(.btn):hover {
	background: rgba(13, 42, 109, 0.08);
}

.nav a.active {
	background: rgba(13, 42, 109, 0.16);
	box-shadow: inset 0 0 0 1px rgba(13, 42, 109, 0.18);
	font-weight: 700;
}

.nav-cta {
	min-width: 214px;
	color: #fff !important;
	border-color: transparent;
}

.nav .btn.btn-primary.nav-cta {
	background: var(--primary) !important;
	color: #fff !important;
	border: 1px solid var(--primary) !important;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.nav .btn.btn-primary.nav-cta:hover,
.nav .btn.btn-primary.nav-cta:focus {
	background: var(--primary-2) !important;
	border-color: var(--primary-2) !important;
	color: #fff !important;
}

.menu-toggle {
	display: none;
	border: 1px solid rgba(13, 42, 109, 0.18);
	background: #fff;
	border-radius: 10px;
	padding: 8px;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--primary);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
	background: radial-gradient(circle at 12% 12%, rgba(47, 86, 179, 0.14), transparent 30%), radial-gradient(circle at 88% 12%, rgba(47, 86, 179, 0.24), transparent 34%), linear-gradient(160deg, #111b2e 0%, #152235 58%, #1b2737 100%);
	color: #dbe4f7;
	padding: 28px 0 0;
	margin-top: auto;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/illustrations/footer/footer-visual-subtle.webp") center bottom / cover no-repeat;
	opacity: 0.15;
	pointer-events: none;
}

.site-footer > .container {
	position: relative;
	z-index: 1;
}

.footer-main-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
	gap: 34px;
	padding: 26px 0 24px;
}

.footer-brand-col {
	max-width: 470px;
}

.footer-logo-line {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-size: 1.9rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.footer-logo-line img {
	width: 64px;
	height: 64px;
}

.footer-brand-text {
	margin: 0;
	margin-top: 10px;
	color: rgba(226, 235, 255, 0.76);
	font-size: 1.04rem;
	line-height: 1.48;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	color: #e5edff;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.02);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-socials a svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.footer-socials a:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-1px);
}

.footer-socials a.social-web {
	color: #7db8ff;
	border-color: rgba(125, 184, 255, 0.5);
	background: rgba(125, 184, 255, 0.1);
}

.footer-socials a.social-web svg {
	fill: #7db8ff;
}

.footer-socials a.social-mail {
	color: #f9c95b;
	border-color: rgba(249, 201, 91, 0.52);
	background: rgba(249, 201, 91, 0.1);
}

.footer-socials a.social-mail svg {
	fill: #f9c95b;
}

.footer-socials a.social-wa {
	color: #25d366;
	border-color: rgba(37, 211, 102, 0.55);
	background: rgba(37, 211, 102, 0.1);
}

.footer-socials a.social-wa svg {
	fill: #25d366;
}

.footer-socials a.social-contact {
	color: #93a7ff;
	border-color: rgba(147, 167, 255, 0.52);
	background: rgba(147, 167, 255, 0.1);
}

.footer-socials a.social-contact svg {
	fill: #93a7ff;
}

.footer-title {
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 10px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.footer-links a,
.footer-links span {
	display: block;
	color: rgba(226, 235, 255, 0.76);
	margin-bottom: 8px;
	line-height: 1.45;
	font-size: 0.98rem;
	overflow-wrap: anywhere;
}

.footer-links a:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-links-arrow a {
	position: relative;
	padding-left: 14px;
}

.footer-links-arrow a::before {
	content: ">";
	position: absolute;
	left: 0;
	top: 0;
	color: rgba(226, 235, 255, 0.7);
}

.footer-contact-lines {
	display: grid;
	gap: 4px;
	align-items: start;
}

.footer-phone-link {
	display: inline-flex !important;
	align-items: center;
	flex-wrap: nowrap;
	gap: 6px;
	white-space: nowrap !important;
}

.footer-phone-link span:last-child {
	white-space: nowrap;
}

.phone-flag {
	display: inline-block;
	font-size: 0.95em;
	line-height: 1;
}

.footer-bottom-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 12px 0 13px;
	font-size: 0.98rem;
	color: rgba(219, 228, 247, 0.74);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 18px;
}

.footer-bottom-left {
	min-width: 240px;
}

.footer-bottom-signature {
	margin-left: auto;
	text-align: right;
	color: rgba(219, 228, 247, 0.9);
}

@media (max-width: 980px) {
	.menu-toggle {
		display: inline-flex;
	}

	.nav {
		display: none;
		position: absolute;
		top: 82px;
		left: 16px;
		right: 16px;
		background: #fff;
		border: 1px solid rgba(13, 42, 109, 0.12);
		border-radius: 14px;
		box-shadow: 0 16px 36px rgba(13, 42, 109, 0.12);
		padding: 16px;
		flex-direction: column;
		align-items: flex-start;
		z-index: 999;
	}

	.nav a:not(.btn) {
		width: 100%;
		padding: 9px 10px;
	}

	.nav.is-open {
		display: flex;
	}

	.footer-main-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brand .brand-text span:last-child {
		display: none;
	}
}

@media (max-width: 760px) {
	.footer-main-grid {
		grid-template-columns: 1fr;
	}

	.footer-phone-link {
		white-space: normal !important;
		flex-wrap: wrap;
	}

	.footer-contact-lines {
		gap: 8px;
	}

	.footer-bottom-bar {
		flex-direction: column;
	}

	.footer-bottom-signature {
		margin-left: 0;
		text-align: left;
	}
}
