.ipc-footer-widget,
.ipc-footer-widget *,
.ipc-footer-widget *::before,
.ipc-footer-widget *::after {
	box-sizing: border-box;
}

.ipc-footer-widget {
	--ipc-footer-bg: #0a2e4f;
	--ipc-footer-text: #b9c6d2;
	--ipc-footer-heading: #fff;
	--ipc-footer-accent: #4fb8ee;
	--ipc-footer-fr: #cfd9e2;
	--ipc-footer-pill-bg: rgba(255, 255, 255, 0.04);
	--ipc-footer-pill-border: rgba(255, 255, 255, 0.08);
	--ipc-footer-social-border: rgba(255, 255, 255, 0.10);
	--ipc-footer-social-hover-bg: rgba(255, 255, 255, 0.08);
	--ipc-footer-social-hover-border: rgba(255, 255, 255, 0.18);
	--ipc-footer-page-max: 1400px;
	--ipc-footer-page-gutter: clamp(24px, 3.5vw, 40px);
	font-family: 'Inter', 'Outfit', sans-serif;
	color: var(--ipc-footer-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.ipc-footer-widget a {
	color: inherit;
	text-decoration: none;
}

.ipc-footer-widget img {
	display: block;
	max-width: 100%;
}

.ipc-footer {
	padding: 72px 0 32px;
	color: var(--ipc-footer-text);
	background: var(--ipc-footer-bg);
	border-top: 1px solid var(--ipc-footer-bg);
}

.ipc-footer__top,
.ipc-footer__bottom {
	width: 100%;
	max-width: var(--ipc-footer-page-max);
	padding-right: var(--ipc-footer-page-gutter);
	padding-left: var(--ipc-footer-page-gutter);
	margin-right: auto;
	margin-left: auto;
}

.ipc-footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ipc-footer__brand-logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	max-width: 100%;
	padding: 0;
	margin: 0;
	color: inherit;
	text-decoration: none;
}

.ipc-footer__logo-img {
	display: block;
	width: auto;
	max-width: min(220px, 100%);
	height: auto;
	max-height: 53px;
	object-fit: contain;
	object-position: left center;
}

.ipc-footer__tagline {
	max-width: 300px;
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ipc-footer-text);
}

.ipc-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 320px;
	margin-top: 20px;
}

.ipc-footer__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	font-size: 13px;
	color: var(--ipc-footer-fr);
	background: var(--ipc-footer-pill-bg);
	border: 1px solid var(--ipc-footer-pill-border);
	border-radius: 999px;
}

.ipc-footer__badge b,
.ipc-footer__badge strong {
	font-weight: 600;
	color: var(--ipc-footer-heading);
}

.ipc-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.ipc-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #9fb1c1;
	background: var(--ipc-footer-pill-bg);
	border: 1px solid var(--ipc-footer-social-border);
	border-radius: 8px;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ipc-footer__social-link:hover {
	color: var(--ipc-footer-heading);
	background: var(--ipc-footer-social-hover-bg);
	border-color: var(--ipc-footer-social-hover-border);
}

.ipc-footer__social-link img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.ipc-footer__col-title {
	margin: 0 0 22px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--ipc-footer-heading);
	text-transform: none;
	letter-spacing: -0.02em;
}

.ipc-footer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ipc-footer__link {
	font-size: 15px;
	line-height: 1.6;
	color: var(--ipc-footer-text);
	transition: color 0.2s ease;
}

.ipc-footer__link:hover {
	color: var(--ipc-footer-accent);
	text-decoration: none;
}

.ipc-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	padding-top: 28px;
}

.ipc-footer__copyright {
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ipc-footer-text);
}

.ipc-footer__bottom-links {
	display: flex;
	gap: 24px;
	align-items: center;
}

.ipc-footer__bottom-link {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ipc-footer-text);
	transition: color 0.2s ease;
}

.ipc-footer__bottom-link:hover {
	color: var(--ipc-footer-accent);
	text-decoration: none;
}

.ipc-footer__lang {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--ipc-footer-fr);
	cursor: pointer;
	background: var(--ipc-footer-pill-bg);
	border: 1px solid var(--ipc-footer-social-border);
	border-radius: 999px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ipc-footer__lang:hover {
	color: var(--ipc-footer-heading);
	background: var(--ipc-footer-social-hover-bg);
	border-color: var(--ipc-footer-social-hover-border);
}

.ipc-footer__lang svg {
	width: 14px;
	height: 14px;
	opacity: 0.8;
}

.ipc-footer__text-reset {
	padding: 0;
	margin: 0;
	font: inherit;
	line-height: inherit;
	color: inherit;
	letter-spacing: inherit;
}

@media (max-width: 1024px) {
	.ipc-footer-widget {
		--ipc-footer-page-gutter: 24px;
	}

	.ipc-footer {
		padding: 60px 0;
	}

	.ipc-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.ipc-footer-widget {
		--ipc-footer-page-gutter: 16px;
	}

	.ipc-footer {
		padding: 48px 0;
		overflow-x: hidden;
	}

	.ipc-footer__top,
	.ipc-footer__bottom {
		max-width: 100%;
	}

	.ipc-footer__top {
		grid-template-columns: 1fr !important;
		gap: 32px !important;
	}

	.ipc-footer__brand,
	.ipc-footer__col {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.ipc-footer__tagline,
	.ipc-footer__badges {
		max-width: none;
	}

	.ipc-footer__bottom {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	.ipc-footer__bottom-links {
		flex-wrap: wrap;
		gap: 12px 18px;
	}

	.ipc-footer__logo-img {
		max-width: min(200px, 72vw);
		max-height: 48px;
	}
}

@media (max-width: 480px) {
	.ipc-footer {
		padding: 40px 0 56px;
	}

	.ipc-footer__logo-img {
		max-width: min(180px, 68vw);
		max-height: 42px;
	}
}

/* Elementor/theme hardening so computed footer typography stays identical. */
.elementor .ipc-footer-widget,
.ipc-footer-widget {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	font-family: 'Inter', 'Outfit', sans-serif !important;
	line-height: 1.6 !important;
	color: var(--ipc-footer-text) !important;
}

.elementor .ipc-footer-widget .ipc-footer,
.ipc-footer-widget .ipc-footer {
	padding: 72px 0 32px !important;
	margin: 0 !important;
	color: var(--ipc-footer-text) !important;
	background: var(--ipc-footer-bg) !important;
	border: 0 !important;
	border-top: 1px solid var(--ipc-footer-bg) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.elementor .ipc-footer-widget .ipc-footer__top,
.elementor .ipc-footer-widget .ipc-footer__bottom,
.ipc-footer-widget .ipc-footer__top,
.ipc-footer-widget .ipc-footer__bottom {
	width: 100% !important;
	max-width: var(--ipc-footer-page-max) !important;
	padding-right: var(--ipc-footer-page-gutter) !important;
	padding-left: var(--ipc-footer-page-gutter) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.elementor .ipc-footer-widget .ipc-footer__top,
.ipc-footer-widget .ipc-footer__top {
	display: grid !important;
	grid-template-columns: 2fr 1fr 1fr 1fr !important;
	gap: 40px !important;
	padding-bottom: 48px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.elementor .ipc-footer-widget .ipc-footer__brand-logo,
.ipc-footer-widget .ipc-footer__brand-logo {
	display: inline-flex !important;
	align-items: center !important;
	min-width: 0 !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	color: inherit !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.elementor .ipc-footer-widget .ipc-footer__logo-img,
.ipc-footer-widget .ipc-footer__logo-img {
	display: block !important;
	width: auto !important;
	max-width: min(220px, 100%) !important;
	height: auto !important;
	max-height: 53px !important;
	object-fit: contain !important;
	object-position: left center !important;
}

.elementor .ipc-footer-widget .ipc-footer__tagline,
.ipc-footer-widget .ipc-footer__tagline {
	max-width: 300px !important;
	margin: 16px 0 0 !important;
	font-family: 'Inter', 'Outfit', sans-serif !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	color: var(--ipc-footer-text) !important;
}

.elementor .ipc-footer-widget .ipc-footer__badge,
.ipc-footer-widget .ipc-footer__badge {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 7px 12px !important;
	font-size: 13px !important;
	line-height: 1.6 !important;
	color: var(--ipc-footer-fr) !important;
	background: var(--ipc-footer-pill-bg) !important;
	border: 1px solid var(--ipc-footer-pill-border) !important;
	border-radius: 999px !important;
}

.elementor .ipc-footer-widget .ipc-footer__col-title,
.ipc-footer-widget .ipc-footer__col-title {
	margin: 0 0 22px !important;
	font-family: 'Inter', 'Outfit', sans-serif !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 1.6 !important;
	color: var(--ipc-footer-heading) !important;
	text-transform: none !important;
	letter-spacing: -0.02em !important;
}

.elementor .ipc-footer-widget .ipc-footer__link,
.ipc-footer-widget .ipc-footer__link {
	font-family: 'Inter', 'Outfit', sans-serif !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	color: var(--ipc-footer-text) !important;
}

.elementor .ipc-footer-widget .ipc-footer__bottom,
.ipc-footer-widget .ipc-footer__bottom {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding-top: 28px !important;
}

.elementor .ipc-footer-widget .ipc-footer__copyright,
.elementor .ipc-footer-widget .ipc-footer__bottom-link,
.ipc-footer-widget .ipc-footer__copyright,
.ipc-footer-widget .ipc-footer__bottom-link {
	font-family: 'Inter', 'Outfit', sans-serif !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	color: var(--ipc-footer-text) !important;
}

.elementor .ipc-footer-widget .ipc-footer__social-link,
.ipc-footer-widget .ipc-footer__social-link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	padding: 0 !important;
	background: var(--ipc-footer-pill-bg) !important;
	border: 1px solid var(--ipc-footer-social-border) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
}

.elementor .ipc-footer-widget .ipc-footer__social-link img,
.ipc-footer-widget .ipc-footer__social-link img {
	display: block !important;
	width: 22px !important;
	height: 22px !important;
	object-fit: contain !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.elementor .ipc-footer-widget .ipc-footer__lang,
.ipc-footer-widget .ipc-footer__lang {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 6px 12px !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	color: var(--ipc-footer-fr) !important;
	background: var(--ipc-footer-pill-bg) !important;
	border: 1px solid var(--ipc-footer-social-border) !important;
	border-radius: 999px !important;
	box-shadow: none !important;
}

@media (max-width: 1024px) {
	.elementor .ipc-footer-widget .ipc-footer,
	.ipc-footer-widget .ipc-footer {
		padding: 60px 0 !important;
	}

	.elementor .ipc-footer-widget .ipc-footer__top,
	.ipc-footer-widget .ipc-footer__top {
		grid-template-columns: 1fr 1fr !important;
	}
}

@media (max-width: 768px) {
	.elementor .ipc-footer-widget .ipc-footer,
	.ipc-footer-widget .ipc-footer {
		padding: 48px 0 !important;
		overflow-x: hidden !important;
	}

	.elementor .ipc-footer-widget .ipc-footer__top,
	.elementor .ipc-footer-widget .ipc-footer__bottom,
	.ipc-footer-widget .ipc-footer__top,
	.ipc-footer-widget .ipc-footer__bottom {
		max-width: 100% !important;
	}

	.elementor .ipc-footer-widget .ipc-footer__top,
	.ipc-footer-widget .ipc-footer__top {
		grid-template-columns: 1fr !important;
		gap: 32px !important;
	}

	.elementor .ipc-footer-widget .ipc-footer__tagline,
	.elementor .ipc-footer-widget .ipc-footer__badges,
	.ipc-footer-widget .ipc-footer__tagline,
	.ipc-footer-widget .ipc-footer__badges {
		max-width: none !important;
	}

	.elementor .ipc-footer-widget .ipc-footer__bottom,
	.ipc-footer-widget .ipc-footer__bottom {
		flex-direction: column !important;
		gap: 16px !important;
		align-items: flex-start !important;
	}

	.elementor .ipc-footer-widget .ipc-footer__bottom-links,
	.ipc-footer-widget .ipc-footer__bottom-links {
		flex-wrap: wrap !important;
		gap: 12px 18px !important;
	}
}

@media (max-width: 480px) {
	.elementor .ipc-footer-widget .ipc-footer,
	.ipc-footer-widget .ipc-footer {
		padding: 40px 0 56px !important;
	}
}
