/**
 * Site footer v2 — band CTA + link columns
 */

.footer-logo-link {
	display: inline-block;
	text-decoration: none;
	margin-bottom: 0.75rem;
}
.footer-logo-img {
	height: 36px;
	width: auto;
	display: block;
	filter: none;
}
.footer-logo-link img.footer-logo-img {
	filter: none;
	max-height: 40px;
}

/* =========================================================
   Footer v2 — hero gradient strip + clean white body
   ========================================================= */
.mcube-footer-v2 {
	--ft-gradient: linear-gradient(145deg, #263fd8, #7995ff);
	--ft-purple: #263fd8;
	--ft-cyan: #7995ff;
	--ft-accent: #d4ff3f;
	--ft-ink: #0c1222;
	--ft-muted: #5b6578;
	--ft-line: #e8edf5;
	--ft-soft: #f4f6fb;
	position: relative;
	background: #fff;
	color: var(--ft-ink);
	padding: 0;
	font-family: 'Sen', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.mcube-footer-v2 .footer-top-accent { display: none; }

/* Banner / CTA strip — hero colors */
.ft-band {
	position: relative;
	overflow: hidden;
	background: var(--ft-gradient);
	color: #fff;
}
.ft-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--ft-gradient);
	pointer-events: none;
}
.ft-band > .container {
	position: relative;
	z-index: 1;
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
}
.ft-band-panel,
.ft-band-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	min-width: 0;
	width: 100%;
}
.ft-band-copy {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 560px;
}
.ft-band-tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ft-accent);
	margin-bottom: 0.5rem;
}
.ft-band-copy h3 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.3rem, 2.2vw, 1.75rem);
	color: #fff;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
.ft-band-copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 1.5;
	max-width: 46ch;
}
.ft-band-cta {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex: 0 0 auto;
	min-width: 0;
}
.ft-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.45rem;
	border-radius: 999px;
	background: #ffffff;
	color: #0c1222 !important;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(12, 18, 34, 0.12);
	transition: transform 0.2s, filter 0.2s, background 0.2s;
}
.ft-btn-primary:hover {
	transform: translateY(-2px);
	filter: none;
	background: rgba(255, 255, 255, 0.94);
	color: #0c1222 !important;
	text-decoration: none;
}
.ft-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.8rem 1.25rem;
	border-radius: 999px;
	border: 1.5px solid rgba(255, 255, 255, 0.45);
	color: #fff !important;
	font-size: 0.88rem;
	font-weight: 500;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ft-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
	color: #fff !important;
	text-decoration: none;
	transform: translateY(-1px);
}

/* White main footer */
.ft-main {
	background: #fff;
	padding: 3.25rem 0 1.75rem;
	border-top: none;
}
.ft-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr 0.9fr 1.05fr;
	gap: 2.25rem 2rem;
	padding-bottom: 2.25rem;
	border-bottom: 1px solid var(--ft-line);
}
.ft-brand .footer-logo-link {
	margin-bottom: 0.9rem;
	display: inline-block;
}
.ft-brand .footer-logo-img {
	height: 36px;
	width: auto;
	filter: none !important;
}
.ft-tagline {
	margin: 0 0 1.35rem;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--ft-muted);
	max-width: 34ch;
}
.ft-contact {
	list-style: none;
	padding: 0;
	margin: 0 0 1.35rem;
	display: grid;
	gap: 0.7rem;
}
.ft-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	font-size: 0.88rem;
	color: var(--ft-muted);
	line-height: 1.45;
}
.ft-contact-ico {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	background: var(--ft-soft);
	color: var(--ft-purple);
	font-size: 0.82rem;
}
.ft-contact a {
	color: var(--ft-ink);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.15s;
}
.ft-contact a:hover { color: var(--ft-purple); }

.ft-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ft-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--ft-purple);
	border: none;
	color: #fff;
	font-size: 1.05rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 6px 14px rgba(38, 63, 216, 0.18);
}
.ft-social a:hover {
	background: var(--ft-gradient);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(38, 63, 216, 0.28);
}
.ft-social a .bi-linkedin,
.ft-social a .bi-facebook,
.ft-social a .bi-instagram,
.ft-social a .bi-whatsapp,
.ft-social a .bi-youtube {
	display: block;
	line-height: 1;
}
.ft-social a[aria-label="LinkedIn"] { background: #0a66c2; box-shadow: 0 6px 14px rgba(10, 102, 194, 0.28); }
.ft-social a[aria-label="Facebook"] { background: #1877f2; box-shadow: 0 6px 14px rgba(24, 119, 242, 0.28); }
.ft-social a[aria-label="Instagram"] {
	background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
	box-shadow: 0 6px 14px rgba(221, 42, 123, 0.28);
}
.ft-social a[aria-label="WhatsApp"] { background: #25d366; box-shadow: 0 6px 14px rgba(37, 211, 102, 0.28); }
.ft-social a[aria-label="YouTube"] { background: #ff0000; box-shadow: 0 6px 14px rgba(255, 0, 0, 0.28); }
.ft-social a[aria-label="LinkedIn"]:hover,
.ft-social a[aria-label="Facebook"]:hover,
.ft-social a[aria-label="Instagram"]:hover,
.ft-social a[aria-label="WhatsApp"]:hover,
.ft-social a[aria-label="YouTube"]:hover {
	filter: brightness(1.08);
	background: inherit;
}
.ft-social a[aria-label="LinkedIn"]:hover { background: #0a66c2; }
.ft-social a[aria-label="Facebook"]:hover { background: #1877f2; }
.ft-social a[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.ft-social a[aria-label="WhatsApp"]:hover { background: #25d366; }
.ft-social a[aria-label="YouTube"]:hover { background: #ff0000; }

.ft-col h4 {
	margin: 0 0 1.05rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--ft-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.ft-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.55rem;
}
.ft-col a {
	color: var(--ft-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.15s;
}
.ft-col a:hover {
	color: var(--ft-purple);
}

.ft-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.ft-tags a {
	padding: 0.42rem 0.8rem;
	border-radius: 999px;
	background: var(--ft-soft);
	border: 1px solid var(--ft-line);
	color: var(--ft-ink);
	font-size: 0.78rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.ft-tags a:hover {
	background: #fff;
	border-color: rgba(38, 63, 216, 0.28);
	color: var(--ft-purple);
	box-shadow: 0 6px 18px rgba(38, 63, 216, 0.08);
	padding-left: 0.8rem;
}

.ft-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: 1.35rem;
}
.ft-bottom p {
	margin: 0;
	font-size: 0.82rem;
	color: var(--ft-muted);
}
.ft-stats {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex-wrap: wrap;
}
.ft-stats span {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ft-purple);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(38, 63, 216, 0.06);
	border: 1px solid rgba(38, 63, 216, 0.1);
}

@media (max-width: 1024px) {
	.ft-grid { grid-template-columns: 1fr 1fr; }
	.ft-brand { grid-column: 1 / -1; }
	.ft-band > .container {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
	.ft-band-panel,
	.ft-band-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 1.15rem;
	}
	.ft-band-copy {
		max-width: none;
	}
	.ft-band-copy p {
		max-width: none;
	}
	.ft-band-cta {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.65rem;
	}
	.ft-btn-primary,
	.ft-btn-ghost {
		width: 100%;
		max-width: 100%;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
	}
}
@media (max-width: 767.98px) {
	.ft-band > .container {
		padding-top: 1.35rem;
		padding-bottom: 1.45rem;
	}
	.ft-band-tag {
		font-size: 0.65rem;
		margin-bottom: 0.35rem;
	}
	.ft-band-copy h3 {
		font-size: 1.28rem;
		line-height: 1.3;
		margin-bottom: 0.4rem;
	}
	.ft-band-copy p {
		font-size: 0.88rem;
		line-height: 1.45;
	}
	.ft-band-cta {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}
	.ft-btn-primary,
	.ft-btn-ghost {
		padding: 0.85rem 1rem;
		font-size: 0.86rem;
		min-height: 48px;
		white-space: normal;
	}
	.ft-btn-ghost span {
		display: inline;
	}
}
@media (max-width: 640px) {
	.ft-band > .container {
		padding-top: 1.25rem;
		padding-bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
	}
	.ft-band-copy h3 {
		font-size: 1.2rem;
	}
	.ft-band-copy p {
		font-size: 0.86rem;
	}
	.ft-grid { grid-template-columns: 1fr; gap: 1.75rem; }
	.ft-bottom { flex-direction: column; align-items: flex-start; }
	.ft-main { padding: 2.5rem 0 1.5rem; }
	.ft-contact li { font-size: 0.84rem; }
	.ft-tags a { font-size: 0.74rem; }
}
