﻿/*!
 * Mark Fathers Agency â€” main stylesheet
 * Pixel-matched to the Aleric Startup Agency Elementor demo.
 * @package MarkFathers
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
	--mf-black: #030303;
	--mf-white: #ffffff;
	--mf-text: #525252;
	--mf-text-soft: #999999;
	--mf-bg-light: #f0f0f0;
	--mf-bg-light-2: #f6f6f6;
	--mf-bg-gray: #f3f1f2;
	--mf-border: #eeeeee;
	--mf-border-soft: rgba(3, 3, 3, 0.1);
	--mf-border-light: rgba(255, 255, 255, 0.1);

	/* Brand primary â€” lime green (NOT black). Matches Elementor global
	   color --e-global-color-8c5022b / --tp-theme-primary in the reference kit. */
	--mf-accent: #fcc610;
	--mf-accent-dark: #b4e717;
	--mf-on-accent: var(--mf-black);
	--mf-purple: #7d5dff;

	--mf-font-heading: "Space Grotesk", sans-serif;
	--mf-font-body: "Kanit", sans-serif;

	--mf-container-max: 1800px;
	--mf-container-pad: 15px;

	--mf-radius-pill: 999px;
	--mf-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--mf-transition: 0.4s var(--mf-ease);
	--mf-transition-slow: 0.6s var(--mf-ease);

	--mf-header-h: 86px;
	--mf-header-h-scrolled: 76px;
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: auto;
	-webkit-text-size-adjust: 100%;
}

html.lenis {
	height: auto;
}

html.lenis.lenis-smooth {
	scroll-behavior: auto;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

body {
	margin: 0;
	font-family: var(--mf-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--mf-text);
	background: var(--mf-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.mf-offcanvas-open,
body.mf-lock-scroll {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	color: inherit;
}

svg {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--mf-font-heading);
	color: var(--mf-black);
	font-weight: 500;
	line-height: 1.2;
}

p {
	margin: 0;
}

::selection {
	background: var(--mf-black);
	color: var(--mf-white);
}

:focus-visible {
	outline: 2px solid var(--mf-black);
	outline-offset: 3px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 20px;
	background: var(--mf-black);
	color: var(--mf-white);
	z-index: 99999;
	clip: auto;
}

/* ==========================================================================
   3. Layout utilities
   ========================================================================== */
.mf-container {
	max-width: var(--mf-container-max);
	margin-inline: auto;
	padding-inline: var(--mf-container-pad);
}

.mf-section {
	position: relative;
	padding-block: 120px;
	overflow: hidden;
}

.mf-section--dark {
	background: var(--mf-black);
	color: rgba(255, 255, 255, 0.7);
}

.mf-section--dark h1,
.mf-section--dark h2,
.mf-section--dark h3,
.mf-section--dark h4,
.mf-section--dark h5 {
	color: var(--mf-white);
}

.mf-section--light {
	background: var(--mf-bg-light);
}

.mf-main {
	position: relative;
	overflow-x: clip;
}

/* Fade-in / reveal base state; GSAP takes over the "to" animation. */
[data-anim] {
	will-change: transform, opacity;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.mf-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 22px 34px;
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: capitalize;
	border-radius: 6px;
	overflow: hidden;
	transition: background var(--mf-transition), color var(--mf-transition), transform var(--mf-transition);
}

.mf-btn--pill {
	border-radius: var(--mf-radius-pill);
}

.mf-btn--dark {
	background: var(--mf-black);
	color: var(--mf-white);
}

.mf-btn--dark:hover {
	background: #1a1a1a;
	transform: translateY(-2px);
}

.mf-btn--light {
	background: var(--mf-white);
	color: var(--mf-black);
}

.mf-btn--light:hover {
	background: var(--mf-bg-light);
	transform: translateY(-2px);
}

.mf-btn--outline {
	border: 1px solid var(--mf-border);
	color: inherit;
	padding: 18px 30px;
}

.mf-section--dark .mf-btn--outline {
	border-color: var(--mf-border-light);
	color: var(--mf-white);
}

.mf-btn--outline:hover {
	background: var(--mf-black);
	color: var(--mf-white);
	border-color: var(--mf-black);
}

.mf-btn__text {
	position: relative;
	z-index: 1;
	white-space: nowrap;
}

.mf-btn__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 10px;
	overflow: hidden;
}

.mf-btn__icon svg {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: transform 0.45s var(--mf-ease), opacity 0.45s var(--mf-ease);
}

.mf-btn__icon .mf-btn__icon-clone {
	transform: translate(-30px, -50%);
	opacity: 0;
}

.mf-btn:hover .mf-btn__icon svg:first-child {
	transform: translate(30px, -50%);
	opacity: 0;
}

.mf-btn:hover .mf-btn__icon .mf-btn__icon-clone {
	transform: translateY(-50%);
	opacity: 1;
}

/* Circular rounded button (about / blog view-all) */
.mf-rounded-btn {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	border: 1px solid var(--mf-border);
	background: var(--mf-white);
	color: var(--mf-black);
	text-align: center;
	text-transform: uppercase;
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.25;
	padding: 28px 22px 24px;
	isolation: isolate;
	will-change: transform;
	box-shadow:
		0 10px 30px rgba(3, 3, 3, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.65);
	transition: background var(--mf-transition), color var(--mf-transition), border-color var(--mf-transition), box-shadow var(--mf-transition);
}

.mf-rounded-btn:hover {
	background: var(--mf-accent);
	border-color: var(--mf-accent);
	color: var(--mf-black);
}

.mf-rounded-btn__icon {
	display: inline-flex;
	line-height: 0;
	position: relative;
	z-index: 1;
}

.mf-rounded-btn__text {
	display: block;
	max-width: 90px;
	position: relative;
	z-index: 1;
}

.mf-rounded-btn--blob {
	overflow: hidden;
	z-index: 1;
	transform: none;
}

.mf-rounded-btn--blob:hover,
.mf-hover-bubble:hover {
	background: transparent;
	border-color: rgba(3, 3, 3, 0.12);
	color: var(--mf-black);
}

.mf-btn-circle-dot {
	position: absolute;
	bottom: 0;
	left: 32px;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--mf-accent);
	border: 1px solid transparent;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease-out, height 0.6s ease-out;
	z-index: 0;
	pointer-events: none;
}

.mf-rounded-btn--blob:hover .mf-btn-circle-dot,
.mf-hover-bubble.is-hovered .mf-btn-circle-dot {
	width: var(--mf-hb-fill, 420px);
	height: var(--mf-hb-fill, 420px);
}

/* HoverBubble — magnetic / glassmorphism chrome */
.mf-hover-bubble {
	-webkit-tap-highlight-color: transparent;
}

.mf-hover-bubble__highlight {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	background: radial-gradient(
		circle at var(--mf-hb-x, 50%) var(--mf-hb-y, 50%),
		rgba(255, 255, 255, 0.38) 0%,
		rgba(255, 255, 255, 0.08) 28%,
		transparent 58%
	);
	transition: opacity 0.35s var(--mf-ease);
	mix-blend-mode: soft-light;
}

.mf-hover-bubble.is-hovered {
	box-shadow:
		0 18px 42px rgba(3, 3, 3, 0.14),
		0 4px 12px rgba(3, 3, 3, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.55),
		inset 0 -1px 0 rgba(3, 3, 3, 0.06);
}

.mf-hover-bubble.is-hovered .mf-hover-bubble__highlight {
	opacity: 1;
}

@media (pointer: coarse), (hover: none) {
	.mf-hover-bubble,
	.mf-rounded-btn {
		will-change: auto;
	}

	.mf-rounded-btn:hover,
	.mf-rounded-btn--blob:hover {
		background: var(--mf-accent);
		border-color: var(--mf-accent);
		color: var(--mf-black);
	}

	.mf-rounded-btn--blob:hover .mf-btn-circle-dot {
		width: 0;
		height: 0;
	}
}

.mf-underline-black {
	background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
	background-size: 0 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s linear;
}

.mf-underline-black:hover {
	background-size: 0 1px, 100% 1px;
}

/* ==========================================================================
   5. Header
   ========================================================================== */
.mf-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	padding-block: 10px;
	background: transparent;
	color: var(--mf-black);
	transition: background var(--mf-transition), padding var(--mf-transition), box-shadow var(--mf-transition), transform 0.5s var(--mf-ease);
}

.mf-header--transparent {
	background: transparent;
}

/* Home page: keep navigation bar white */
body.home .mf-header {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px rgba(3, 3, 3, 0.06);
}

/* Same frosted bar on scroll across every page */
.mf-header.is-scrolled {
	padding-block: 14px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px rgba(3, 3, 3, 0.06);
}

/*
 * Dark page templates (About / Contact) start over a black hero.
 * Keep the same light nav chrome so the bar matches home / blog / services.
 */
body.mf-page-about .mf-header,
body.mf-page-contact .mf-header {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px rgba(3, 3, 3, 0.06);
}

.mf-header.is-hidden {
	/* Keep header in viewport â€” do not translate off-screen */
	transform: none;
}

.mf-header__inner {
	max-width: var(--mf-container-max);
	margin-inline: auto;
	padding-inline: 40px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	min-height: 66px;
}

.mf-header__brand {
	justify-self: start;
	flex-shrink: 0;
	min-width: 0;
}

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

.mf-header__logo img {
	height: 48px;
	width: auto;
}

.mf-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	min-width: 0;
}

.mf-header__menu {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mf-header__menu > .menu-item,
.mf-header__menu > .mf-header__menu-item {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Style both custom fallback links and native WP menu anchors */
.mf-header__menu-link,
.mf-header__menu > .menu-item > a {
	position: relative;
	display: inline-block;
	padding: 8px 0;
	font-family: var(--mf-font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--mf-black);
	white-space: nowrap;
	text-decoration: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.mf-header__menu-link::after,
.mf-header__menu > .menu-item > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width var(--mf-transition);
}

.mf-header__menu-link:hover::after,
.mf-header__menu > .menu-item > a:hover::after,
.mf-header__menu > .menu-item.current-menu-item > a::after,
.mf-header__menu-item.current-menu-item .mf-header__menu-link::after {
	width: 100%;
}

/* Dropdown submenus */
.mf-header__menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	min-width: 220px;
	padding: 14px 0;
	margin: 0;
	list-style: none;
	background: var(--mf-white);
	border-radius: 8px;
	box-shadow: 0 20px 50px rgba(3, 3, 3, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--mf-transition), visibility var(--mf-transition), transform var(--mf-transition);
	z-index: 1000;
}

.mf-header__menu > .menu-item:hover > .sub-menu,
.mf-header__menu > .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mf-header__menu .sub-menu .menu-item a {
	display: block;
	padding: 10px 22px;
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	color: var(--mf-text);
	white-space: nowrap;
}

.mf-header__menu .sub-menu .menu-item a:hover {
	color: var(--mf-black);
	background: #f8f8fb;
}

/* ==========================================================================
   Services mega menu (Chesapeake-style)
   ========================================================================== */
.mf-header__menu > .mf-has-mega {
	position: static;
}

.mf-mega__caret {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	vertical-align: middle;
	transition: transform 0.25s ease;
}

.mf-has-mega:hover > a .mf-mega__caret,
.mf-has-mega:focus-within > a .mf-mega__caret {
	transform: translateY(1px) rotate(225deg);
}

.mf-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	padding-top: 0;
	margin-top: -30px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
	z-index: 1200;
}

.mf-header__menu > .mf-has-mega:hover > .mf-mega,
.mf-header__menu > .mf-has-mega:focus-within > .mf-mega {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.mf-mega__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
	gap: 0;
	width: min(100% - 30px, 1340px);
	margin: 0 auto;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 28px 80px rgba(3, 3, 3, 0.14);
}

.mf-mega__intro {
	padding: 36px 32px 40px;
	background: #f7f7f7;
	border-right: 1px solid #ececec;
}

.mf-mega__eyebrow {
	margin: 0 0 12px;
	font-family: var(--mf-font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888;
}

.mf-mega__copy {
	margin: 0 0 22px;
	font-size: 15px;
	line-height: 1.65;
	color: #525252;
	max-width: 34ch;
}

.mf-mega__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--mf-black);
	color: #fff;
	font-family: var(--mf-font-heading);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.25s ease;
}

.mf-mega__cta:hover {
	background: #1a1a1a;
	color: #fff;
	transform: translateY(-1px);
}

.mf-mega__cta--light {
	background: var(--mf-accent);
	color: var(--mf-black);
}

.mf-mega__cta--light:hover {
	background: #e0b100;
	color: var(--mf-black);
}

.mf-mega__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mf-mega__item a {
	display: grid;
	grid-template-columns: 36px 1fr;
	align-items: center;
	gap: 10px;
	padding: 10px 8px;
	border-radius: 10px;
	text-decoration: none;
	color: var(--mf-black);
	transition: background 0.2s ease;
}

.mf-mega__item a:hover {
	background: rgba(3, 3, 3, 0.05);
}

.mf-mega__num {
	font-family: var(--mf-font-heading);
	font-size: 13px;
	font-weight: 600;
	color: #999;
}

.mf-mega__label {
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.mf-mega__feature {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	min-height: 100%;
	background: var(--mf-black);
	color: rgba(255, 255, 255, 0.78);
}

.mf-mega__feature-copy {
	padding: 36px 32px 40px;
}

.mf-mega__feature .mf-mega__eyebrow {
	color: rgba(255, 255, 255, 0.45);
}

.mf-mega__feature-title {
	margin: 0 0 14px;
	font-family: var(--mf-font-heading);
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 500;
	line-height: 1.25;
	color: #fff;
}

.mf-mega__feature .mf-mega__copy {
	color: rgba(255, 255, 255, 0.7);
	max-width: 36ch;
}

.mf-mega__feature-media {
	position: relative;
	min-height: 240px;
	overflow: hidden;
}

.mf-mega__feature-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1199px) {
	.mf-mega__inner {
		grid-template-columns: 1fr;
	}

	.mf-mega__intro {
		border-right: 0;
		border-bottom: 1px solid #ececec;
	}

	.mf-mega__feature {
		grid-template-columns: 1fr;
	}

	.mf-mega__feature-media {
		min-height: 200px;
		max-height: 220px;
	}
}

@media (max-width: 991px) {
	.mf-mega {
		display: none;
	}
}

.mf-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	justify-self: end;
	gap: 18px;
	flex-shrink: 0;
}

.mf-header__search,
.mf-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--mf-border);
	color: var(--mf-black);
	transition: background var(--mf-transition), color var(--mf-transition), transform var(--mf-transition);
}

.mf-header__search:hover,
.mf-header__toggle:hover {
	background: var(--mf-accent);
	border-color: var(--mf-accent);
	color: var(--mf-black);
	transform: rotate(8deg);
}

.mf-header__toggle {
	flex-direction: column;
	gap: 4px;
	padding: 0;
}

.mf-header__toggle-bar {
	display: block;
	width: 16px;
	height: 1.5px;
	background: currentColor;
	transition: all var(--mf-transition);
}

.mf-header__toggle:hover .mf-header__toggle-bar:nth-child(1) {
	width: 12px;
	transform: translateX(2px);
}

.mf-header__toggle:hover .mf-header__toggle-bar:nth-child(3) {
	width: 12px;
	transform: translateX(-2px);
}

.mf-header__toggle.is-active .mf-header__toggle-bar:nth-child(1) {
	width: 16px;
	transform: translateY(5.5px) rotate(45deg);
}

.mf-header__toggle.is-active .mf-header__toggle-bar:nth-child(2) {
	opacity: 0;
}

.mf-header__toggle.is-active .mf-header__toggle-bar:nth-child(3) {
	width: 16px;
	transform: translateY(-5.5px) rotate(-45deg);
}

.mf-header__toggle.is-active:hover .mf-header__toggle-bar:nth-child(1),
.mf-header__toggle.is-active:hover .mf-header__toggle-bar:nth-child(3) {
	transform: translateY(5.5px) rotate(45deg);
}

.mf-header__toggle.is-active:hover .mf-header__toggle-bar:nth-child(3) {
	transform: translateY(-5.5px) rotate(-45deg);
}

/* Lightweight search overlay, injected by main.js */
.mf-search-panel {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 14vh;
	background: rgba(3, 3, 3, 0.7);
	backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--mf-transition), visibility var(--mf-transition);
}

.mf-search-panel.is-open {
	opacity: 1;
	visibility: visible;
}

.mf-search-panel__form {
	width: min(680px, 90vw);
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--mf-white);
	border-radius: 16px;
	padding: 10px 10px 10px 26px;
	transform: translateY(-16px);
	transition: transform var(--mf-transition);
}

.mf-search-panel.is-open .mf-search-panel__form {
	transform: translateY(0);
}

.mf-search-panel__input {
	flex: 1;
	border: none;
	outline: none;
	font-family: var(--mf-font-heading);
	font-size: 20px;
	color: var(--mf-black);
	background: transparent;
}

.mf-search-panel__submit,
.mf-search-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
	transition: background var(--mf-transition), color var(--mf-transition);
}

.mf-search-panel__submit {
	background: var(--mf-black);
	color: var(--mf-white);
	transition: background var(--mf-transition), color var(--mf-transition);
}

.mf-search-panel__submit:hover {
	background: var(--mf-accent);
	color: var(--mf-black);
}

.mf-search-panel__close {
	color: var(--mf-black);
}

.mf-search-panel__close:hover {
	background: var(--mf-bg-light);
}

/* ==========================================================================
   6. Offcanvas
   ========================================================================== */
.mf-offcanvas {
	position: fixed;
	inset: 0;
	z-index: 1400;
	visibility: hidden;
	pointer-events: none;
}

.mf-offcanvas.is-open {
	visibility: visible;
	pointer-events: auto;
}

.mf-offcanvas__overlay {
	position: absolute;
	inset: 0;
	background: rgba(3, 3, 3, 0.55);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.mf-offcanvas.is-open .mf-offcanvas__overlay {
	opacity: 1;
}

.mf-offcanvas__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 100vw);
	max-width: 100%;
	background: var(--mf-white);
	padding: 28px 28px 48px;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	transform: translateX(105%);
	transition: transform 0.45s var(--mf-ease);
	box-shadow: -20px 0 50px rgba(3, 3, 3, 0.12);
}

.mf-offcanvas.is-open .mf-offcanvas__panel {
	transform: translateX(0);
}

.mf-offcanvas__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--mf-border);
	color: var(--mf-black);
	background: var(--mf-white);
	z-index: 2;
	transition: transform var(--mf-transition), background var(--mf-transition), color var(--mf-transition);
}

.mf-offcanvas__close:hover {
	transform: rotate(90deg);
	background: var(--mf-accent);
	border-color: var(--mf-accent);
	color: var(--mf-black);
}

.mf-offcanvas__brand {
	margin: 8px 56px 28px 0;
}

.mf-offcanvas__brand-link {
	display: inline-flex;
	align-items: center;
}

.mf-offcanvas__brand-link img {
	display: block;
	height: 42px;
	width: auto;
}

.mf-offcanvas__brand-text {
	font-family: var(--mf-font-heading);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.mf-offcanvas__hero {
	margin-bottom: 40px;
}

/* Primary nav */
.mf-offcanvas__menu {
	margin-bottom: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--mf-border);
}

.mf-offcanvas__menu-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mf-offcanvas__menu-item {
	margin: 0;
}

.mf-offcanvas__menu-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mf-offcanvas__menu-link {
	display: block;
	flex: 1;
	min-width: 0;
	padding: 12px 0;
	font-family: var(--mf-font-heading);
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--mf-black);
	transition: opacity var(--mf-transition), padding-left var(--mf-transition);
}

.mf-offcanvas__menu-link:hover {
	opacity: 0.65;
	padding-left: 6px;
}

.mf-offcanvas__submenu-toggle {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--mf-border);
	background: transparent;
	color: var(--mf-black);
	transition: background var(--mf-transition), border-color var(--mf-transition), transform var(--mf-transition);
}

.mf-offcanvas__submenu-toggle:hover {
	background: var(--mf-bg-light);
}

.mf-offcanvas__menu-item.is-open .mf-offcanvas__submenu-toggle {
	background: var(--mf-accent);
	border-color: var(--mf-accent);
}

.mf-offcanvas__submenu-icon {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.25s ease;
}

.mf-offcanvas__menu-item.is-open .mf-offcanvas__submenu-icon {
	transform: translateY(2px) rotate(225deg);
}

.mf-offcanvas__submenu {
	margin: 0 0 10px;
	padding: 4px 0 8px 12px;
	list-style: none;
	border-left: 2px solid #ececec;
}

.mf-offcanvas__submenu-link {
	display: block;
	padding: 9px 0;
	font-family: var(--mf-font-heading);
	font-size: 17px;
	font-weight: 500;
	color: var(--mf-text);
	transition: color var(--mf-transition), padding-left var(--mf-transition);
}

.mf-offcanvas__submenu-link:hover {
	color: var(--mf-black);
	padding-left: 6px;
}

.mf-offcanvas__title {
	font-size: 40px;
	line-height: 1;
	letter-spacing: -0.02em;
	font-weight: 700;
	margin-bottom: 14px;
}

.mf-offcanvas__text {
	color: var(--mf-text);
	font-size: 16px;
	line-height: 1.6;
}

.mf-offcanvas__gallery {
	display: none;
}

.mf-offcanvas__gallery-item {
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 1;
}

.mf-offcanvas__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--mf-ease);
}

.mf-offcanvas__gallery-item:hover img {
	transform: scale(1.08);
}

.mf-offcanvas__info,
.mf-offcanvas__social {
	margin-bottom: 28px;
}

.mf-offcanvas__info-title,
.mf-offcanvas__social-title {
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mf-offcanvas__info-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mf-offcanvas__info-list li {
	font-size: 15px;
	line-height: 1.55;
	color: var(--mf-text);
	margin-bottom: 8px;
}

.mf-offcanvas__info-list a:hover {
	color: var(--mf-black);
}

.mf-offcanvas__social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mf-offcanvas__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--mf-border);
	color: var(--mf-black);
	transition: background var(--mf-transition), border-color var(--mf-transition), color var(--mf-transition);
}

.mf-offcanvas__social-link:hover {
	background: var(--mf-accent);
	border-color: var(--mf-accent);
	color: var(--mf-black);
}

.mf-offcanvas__follow-btn {
	display: none;
}

body.mf-offcanvas-open {
	overflow: hidden;
}

.mf-offcanvas__gallery-item {
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.mf-offcanvas__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--mf-ease);
}

.mf-offcanvas__gallery-item:hover img {
	transform: scale(1.15) rotate(-2deg);
}

.mf-offcanvas__info,
.mf-offcanvas__social {
	margin-bottom: 30px;
}

.mf-offcanvas__info-title,
.mf-offcanvas__social-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.mf-offcanvas__info-list li {
	margin-bottom: 6px;
	font-size: 15px;
	color: var(--mf-text);
}

.mf-offcanvas__info-list a:hover {
	color: var(--mf-black);
	text-decoration: underline;
}

.mf-offcanvas__social-list {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.mf-offcanvas__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--mf-border);
	transition: all var(--mf-transition);
}

.mf-offcanvas__social-link:hover {
	background: var(--mf-accent);
	color: var(--mf-black);
	border-color: var(--mf-accent);
}

.mf-offcanvas__follow-btn {
	display: inline-block;
	padding: 12px 26px;
	border-radius: var(--mf-radius-pill);
	background: var(--mf-black);
	color: var(--mf-white);
	font-size: 14px;
	font-weight: 500;
	transition: background var(--mf-transition), color var(--mf-transition);
}

.mf-offcanvas__follow-btn:hover {
	background: var(--mf-accent);
	color: var(--mf-black);
}

/* ==========================================================================
   7. Hero
   ========================================================================== */
.mf-hero {
	position: relative;
	padding-top: calc(var(--mf-header-h) + 60px);
	padding-bottom: 80px;
	overflow: hidden;
	/* Brand hero background is lime green â€” full bleed, per design tokens. */
	background: var(--mf-accent);
}

.mf-hero__social {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.mf-hero__social::before {
	content: "";
	width: 1px;
	height: 70px;
	background: var(--mf-border-soft);
	order: -1;
}

.mf-hero__social::after {
	content: "";
	width: 1px;
	height: 70px;
	background: var(--mf-border-soft);
}

.mf-hero__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: var(--mf-black);
	font-size: 15px;
	transition: transform var(--mf-transition), color var(--mf-transition);
}

.mf-hero__social-link:hover {
	transform: translateY(-4px);
	color: var(--mf-text);
}

.mf-hero__inner {
	max-width: var(--mf-container-max);
	margin-inline: auto;
	padding-inline: var(--mf-container-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.mf-hero__content {
	flex: 0 0 56%;
	max-width: 56%;
	padding-left: 60px;
}

.mf-hero__eyebrow {
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: -0.02em;
	color: var(--mf-black);
	margin-bottom: 18px;
}

.mf-hero__line {
	display: block;
	margin-bottom: 18px;
}

.mf-hero__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(40px, 5.5vw, 68px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--mf-black);
	margin-bottom: 35px;
}

.mf-hero__body {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 30px;
	row-gap: 24px;
	align-items: start;
}

.mf-hero__shape--inline {
	grid-row: 1 / 3;
	width: 110px;
	height: 110px;
	object-fit: contain;
	animation: mf-float 5s ease-in-out infinite;
}

.mf-hero__text {
	font-family: var(--mf-font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	color: var(--mf-text);
	max-width: 75%;
}

.mf-hero__text strong {
	color: var(--mf-black);
	font-weight: 500;
}

.mf-hero__cta {
	grid-column: 2 / 3;
	width: max-content;
}

.mf-hero__trust {
	grid-column: 2 / 3;
	display: flex;
	align-items: center;
	gap: 16px;
}

.mf-hero__avatars {
	display: flex;
}

.mf-hero__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--mf-white);
	box-shadow: 0 0 0 1px var(--mf-border-soft);
	margin-left: -12px;
}

.mf-hero__avatar:first-child {
	margin-left: 0;
}

.mf-hero__trust-count {
	font-size: 13px;
	color: var(--mf-text);
	margin-bottom: 2px;
}

.mf-hero__trust-title {
	font-family: var(--mf-font-heading);
	font-size: 16px;
	font-weight: 500;
	color: var(--mf-black);
}

.mf-hero__media {
	position: relative;
	flex: 0 0 38%;
	max-width: 38%;
}

.mf-hero__image {
	width: 100%;
	height: auto;
	border-radius: 24px;
	object-fit: cover;
}

.mf-hero__shape--circle {
	position: absolute;
	left: -70px;
	top: 35%;
	width: 110px;
	animation: mf-float 6s ease-in-out infinite;
}

.mf-hero__shape--deco {
	position: absolute;
	right: -30px;
	bottom: -20px;
	width: 90px;
	animation: mf-float 5.5s ease-in-out infinite reverse;
}

@keyframes mf-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-18px); }
}

/* ==========================================================================
   8. Clients (marquee)
   ========================================================================== */
.mf-clients {
	background: var(--mf-black);
	padding-block: 40px;
}

.mf-clients__inner {
	max-width: var(--mf-container-max);
	margin-inline: auto;
}

.mf-marquee {
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mf-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: mf-marquee-scroll 30s linear infinite;
}

.mf-marquee:hover .mf-marquee__track {
	animation-play-state: paused;
}

.mf-marquee__item {
	flex-shrink: 0;
	padding-inline: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mf-marquee__item img {
	height: 32px;
	width: auto;
	filter: grayscale(1) brightness(0) invert(1);
	opacity: 0.55;
	transition: opacity var(--mf-transition);
}

.mf-marquee__item:hover img {
	opacity: 1;
}

@keyframes mf-marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Homepage text marquee under hero */
.mf-hero-marquee {
	background: var(--mf-black);
	padding: 22px 0;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mf-hero-marquee__viewport {
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.mf-hero-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: mf-marquee-scroll 28s linear infinite;
	will-change: transform;
}

.mf-hero-marquee:hover .mf-hero-marquee__track {
	animation-play-state: paused;
}

.mf-hero-marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 28px;
	padding-inline: 14px 28px;
	white-space: nowrap;
	flex-shrink: 0;
}

.mf-hero-marquee__text {
	font-family: var(--mf-font-heading);
	font-size: clamp(28px, 4.2vw, 52px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--mf-white);
}

.mf-hero-marquee__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--mf-accent);
	flex-shrink: 0;
}

/* Technology marquee variant */
.mf-marquee--tech .mf-marquee__track {
	animation-name: mf-marquee-scroll;
	animation-duration: 40s;
}

.mf-marquee__item--tech {
	padding-inline: 18px;
}

/* ==========================================================================
   9. Services
   ========================================================================== */
.mf-services {
	background: var(--mf-white);
	padding-block: 140px 125px;
}

.mf-services__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	margin: 0 0 40px;
	text-align: left;
	max-width: none;
}

.mf-services__header-left {
	flex: 0 0 41.66%;
	max-width: 41.66%;
}

.mf-services__header-right {
	flex: 1 1 58.33%;
	max-width: 58.33%;
	min-width: 0; /* allow flex child to shrink instead of forcing word stack */
}

.mf-services__pretitle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mf-font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: none;
	color: var(--mf-black);
	padding: 6px 18px;
	border: 1px solid var(--mf-border);
	border-radius: 50px;
	margin: 0;
	background: transparent;
}

.mf-services__pretitle-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 30px;
	background: var(--mf-black);
	flex-shrink: 0;
}

.mf-services__title {
	font-family: var(--mf-font-heading);
	font-size: 50px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--mf-black);
	margin: 0 0 55px;
	max-width: 100%;
	text-align: left;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
	writing-mode: horizontal-tb;
	display: block;
}

.mf-services__meta {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 35px;
}

.mf-services__divider {
	display: block;
	width: 100%;
	height: 6px;
}

.mf-services__note {
	max-width: 36%;
	font-family: var(--mf-font-heading);
	font-size: 25px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--mf-black);
	margin: 0;
}

/* Scroll text invert â€” matches Aleric tp_text_invert */
.mf-text-invert {
	color: transparent !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: break-word !important;
	writing-mode: horizontal-tb !important;
}

/* SplitType may wrap words/chars â€” keep them inline so text wraps naturally */
.mf-text-invert .word,
.mf-text-invert .char,
.mf-text-invert span:not(.mf-text-invert__line) {
	display: inline !important;
	width: auto !important;
	max-width: none !important;
	white-space: normal !important;
	word-break: normal !important;
	writing-mode: horizontal-tb !important;
	float: none !important;
	position: static !important;
}

.mf-text-invert .mf-text-invert__line {
	display: block !important;
	width: 100% !important;
	max-width: 100%;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: break-word !important;
	writing-mode: horizontal-tb !important;
	float: none !important;
	position: relative !important;
	background-image: linear-gradient(to right, #030303 50%, #aaaaaa 50%);
	background-size: 200% 100%;
	background-position: 100% 0;
	background-repeat: no-repeat;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mf-text-invert--on-dark .mf-text-invert__line {
	background-image: linear-gradient(to right, #ffffff 50%, #999999 50%);
}

/* Fallback when line-split fails â€” keep paragraph wrapping + invert on whole title */
.mf-text-invert.mf-text-invert--single {
	display: block;
	width: 100%;
	max-width: 100%;
	background-image: linear-gradient(to right, #030303 50%, #aaaaaa 50%);
	background-size: 200% 100%;
	background-position: 100% 0;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mf-text-invert--on-dark.mf-text-invert--single {
	background-image: linear-gradient(to right, #ffffff 50%, #999999 50%);
}

.mf-services__pin {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.mf-services__track {
	display: flex;
	align-items: stretch;
	gap: 24px;
	width: max-content;
	padding: 10px var(--mf-container-pad) 30px;
	will-change: transform;
}

.mf-services__card {
	position: relative;
	flex: 0 0 min(420px, 78vw);
	width: min(420px, 78vw);
	min-height: 460px;
	padding: 45px 35px 38px;
	border-radius: 0;
	border: none;
	background: var(--mf-bg-light);
	color: var(--mf-black);
	display: flex;
	flex-direction: column;
}

.mf-services__card-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mf-black);
	transition: color 0.4s ease;
}

.mfshake-wrap:hover .mfshake {
	animation: mfshake 0.5s ease;
	color: var(--mf-purple);
}

@keyframes mfshake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-4px) rotate(-2deg); }
	40% { transform: translateX(4px) rotate(2deg); }
	60% { transform: translateX(-3px); }
	80% { transform: translateX(3px); }
}

.mf-services__card-icon svg {
	width: 100%;
	height: 100%;
}

.mf-services__card-title {
	font-size: 24px;
	font-weight: 500;
	color: var(--mf-black);
	margin-bottom: 20px;
}

.mf-services__card-title a {
	color: inherit;
}

.mf-services__card-desc {
	font-size: 16px;
	line-height: 1.6;
	color: var(--mf-text);
	margin: 0 0 auto;
	opacity: 0;
	visibility: hidden;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
}

.mf-services__card:hover .mf-services__card-desc {
	opacity: 1;
	visibility: visible;
	max-height: 160px;
	margin-bottom: 28px;
}

.mf-services__card-border {
	display: block;
	margin: 24px 0 22px;
}

.mf-services__card-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--mf-black);
	margin-top: auto;
}

.mf-services__card-arrow {
	position: relative;
	display: inline-flex;
	width: 14px;
	height: 14px;
	overflow: hidden;
}

.mf-services__arrow-a,
.mf-services__arrow-b {
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.mf-services__arrow-b {
	position: absolute;
	inset: 0;
	transform: translate(-120%, 120%);
	opacity: 0;
}

.mf-services__card-link:hover .mf-services__arrow-a {
	transform: translate(120%, -120%);
	opacity: 0;
}

.mf-services__card-link:hover .mf-services__arrow-b {
	transform: translate(0, 0);
	opacity: 1;
}

@media (max-width: 991px) {
	.mf-services__pin {
		overflow: visible;
	}

	.mf-services__track {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 20px;
		scrollbar-width: none;
	}

	.mf-services__track::-webkit-scrollbar {
		display: none;
	}

	.mf-services__card {
		scroll-snap-align: start;
	}

	.mf-services__card-desc {
		opacity: 1;
		visibility: visible;
		max-height: none;
		margin-bottom: 28px;
	}
}

/* ==========================================================================
   10. About â€” light asymmetrical layout
   ========================================================================== */
.mf-about {
	background: var(--mf-white);
	padding: 40px 0 140px;
	overflow: hidden;
}

.mf-about__inner {
	position: relative;
	display: block;
	z-index: 1;
}

/* Top: title + deco on row 1; copy on row 2 (matches Aleric visual) */
.mf-about__top {
	display: grid;
	grid-template-columns: minmax(0, 68%) minmax(0, 32%);
	grid-template-rows: auto auto;
	align-items: start;
	column-gap: 0;
	row-gap: 0;
	margin-bottom: 18px;
	position: relative;
	z-index: 2;
}

.mf-about__intro {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.mf-about__title {
	font-family: var(--mf-font-heading);
	font-size: 50px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--mf-black);
	margin: 0;
	max-width: 18ch;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

.mf-about__copy {
	grid-column: 1;
	grid-row: 2;
	justify-self: end;
	width: 74%;
	max-width: 520px;
	margin-top: 16px;
	min-width: 0;
}

.mf-about__text {
	font-family: var(--mf-font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: var(--mf-text);
	margin: 0;
	max-width: 100%;
}

.mf-about__deco {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 10px;
	padding-top: 67px;
	line-height: 0;
}

.mf-about__deco-purple,
.mf-about__deco-black {
	display: block;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.mf-about__deco-black {
	object-fit: contain;
}

.mf-about__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
	z-index: 2;
	margin-top: 18px;
}

.mf-about__col--media,
.mf-about__col--stats,
.mf-about__col--stack {
	flex: 0 0 33%;
	width: 33%;
	max-width: 33%;
	min-width: 0;
}

.mf-about__col--stats {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding-right: 40px;
}

.mf-about__counter {
	display: flex;
	align-items: flex-end;
	margin: 0 0 30px;
}

.mf-about__counter-number {
	position: relative;
	display: inline-block;
	font-family: var(--mf-font-heading);
	font-size: 100px;
	font-weight: 500;
	line-height: 1;
	color: var(--mf-black);
	letter-spacing: -0.02em;
	margin: 0;
}

.mf-about__counter-plus {
	font-family: var(--mf-font-heading);
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
	color: var(--mf-black);
	align-self: flex-start;
	margin-top: 12px;
	margin-left: 2px;
}

.mf-about__counter-label {
	font-family: var(--mf-font-body);
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	color: var(--mf-black);
	margin: 0 0 15px 35px;
}

.mf-about__cta {
	margin-top: 25px;
}

.mf-about__col--stack {
	position: relative;
}

.mf-about__figure {
	margin: 0;
	overflow: hidden;
	border-radius: 0;
}

.mf-about__figure--primary .mf-about__image {
	width: 100%;
	max-width: 380px;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Tablet image sits lower-left; bleachers image overlaps top-right */
.mf-about__figure--secondary {
	margin: 125px 0 0 -53px;
	width: 55%;
	max-width: 260px;
	position: relative;
	z-index: 3;
}

.mf-about__figure--secondary .mf-about__image {
	width: 100%;
	height: auto;
	display: block;
}

.mf-about__figure--overlap {
	position: absolute;
	top: -36px;
	right: 0;
	width: 78%;
	max-width: 360px;
	z-index: 1;
}

.mf-about__figure--overlap .mf-about__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.mf-about__image {
	transition: transform 0.8s var(--mf-ease);
}

.mf-about__figure:hover .mf-about__image {
	transform: scale(1.04);
}

.mf-about__arc {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	line-height: 0;
}

.mf-about__arc svg {
	display: block;
	width: min(388px, 40vw);
	height: auto;
}

/* ==========================================================================
   11. Process â€” dark grid background
   ========================================================================== */
.mf-process {
	position: relative;
	overflow: hidden;
	background-color: var(--mf-black);
	background-image: url("../images/grid-shape.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: rgba(255, 255, 255, 0.6);
	padding-block: 100px 120px;
	z-index: 1;
}

.mf-process__inner {
	position: relative;
	z-index: 2;
}

.mf-process h2,
.mf-process h3 {
	color: var(--mf-white);
}

.mf-process__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 0;
}

.mf-process__title {
	flex: 0 1 60%;
	max-width: 60%;
	font-family: var(--mf-font-heading);
	font-size: 70px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--mf-white);
	margin: 0;
}

.mf-process__cta-wrap {
	flex: 0 1 40%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
	flex-wrap: nowrap;
}

.mf-process__cta-label {
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #999999;
	white-space: nowrap;
}

.mf-process__cta-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: var(--mf-white);
	letter-spacing: -0.01em;
	transition: color var(--mf-transition);
	white-space: nowrap;
}

.mf-process__cta-link:hover {
	color: #999999;
}

.mf-process__cta-icon {
	display: inline-flex;
	line-height: 0;
}

.mf-process__divider {
	width: 100%;
	margin: 15px 0 45px;
	line-height: 0;
}

.mf-process__divider svg {
	display: block;
	width: 100%;
	height: 6px;
}

.mf-process__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.mf-process__item {
	position: relative;
	min-width: 0;
}

.mf-process__icon {
	position: relative;
	display: inline-block;
	width: 70px;
	height: 70px;
	margin-bottom: 40px;
	line-height: 0;
}

.mf-process__circle {
	display: block;
	width: 70px;
	height: 70px;
	object-fit: contain;
}

.mf-process__number {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	font-family: var(--mf-font-heading);
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	color: var(--mf-white);
	margin: 0;
}

.mf-process__item-title {
	font-family: var(--mf-font-heading);
	font-size: 35px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--mf-white);
	margin: 0 0 20px;
}

.mf-process__item-text {
	font-family: var(--mf-font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
	color: #999999;
	margin: 0 0 30px;
	max-width: 340px;
}

.mf-process__bullets {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mf-process__bullet {
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.44;
	color: var(--mf-white);
	margin: 0;
}

.mf-process__shape {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: min(180px, 12vw);
	line-height: 0;
	pointer-events: none;
	opacity: 1;
}

.mf-process__shape svg {
	display: block;
	width: 100%;
	height: auto;
}

/* ==========================================================================
   12. Portfolio / Work â€” pinned title + 3D card reveals
   ========================================================================== */
.mf-portfolio {
	position: relative;
	overflow: hidden;
	background: var(--mf-white);
	padding: 110px 0 135px;
	z-index: 1;
}

.mf-portfolio__inner {
	position: relative;
	z-index: 2;
	max-width: 1343px;
	margin-inline: auto;
	padding-inline: 15px;
}

.mf-portfolio__shape {
	position: absolute;
	top: -1px;
	right: -1px;
	z-index: 0;
	width: 9%;
	max-width: 178px;
	line-height: 0;
	pointer-events: none;
}

.mf-portfolio__shape img {
	display: block;
	width: 100%;
	height: auto;
}

.mf-portfolio__header {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	gap: 0;
	padding-bottom: 70px;
	margin-bottom: 0;
}

.mf-portfolio__label {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: end;
	margin: 0 35px 40px 0;
	font-family: var(--mf-font-heading);
	font-size: 35px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--mf-black);
}

.mf-portfolio__label-bars {
	display: block;
	margin-bottom: 30px;
}

.mf-portfolio__label-text {
	display: block;
}

.mf-portfolio__title {
	font-family: var(--mf-font-heading);
	font-size: 145px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--mf-black);
	margin: -30px 0 10px;
	position: relative;
	z-index: 1;
	will-change: transform, opacity;
	transform-origin: center center;
}

.mf-portfolio__years {
	font-family: var(--mf-font-heading);
	font-size: 35px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--mf-text);
	margin: 0 0 40px 35px;
	white-space: nowrap;
}

.mf-portfolio__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 50px;
	row-gap: 0;
	position: relative;
	z-index: 2;
	perspective: 4000px;
	transform-style: preserve-3d;
}

.mf-portfolio__item {
	position: relative;
	margin-bottom: 50px;
	min-width: 0;
	will-change: transform, opacity;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

.mf-portfolio__thumb {
	margin-bottom: 25px;
	overflow: hidden;
	line-height: 0;
}

.mf-portfolio__thumb-link {
	display: block;
	overflow: hidden;
}

.mf-portfolio__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.6s ease;
	will-change: transform;
}

.mf-portfolio__item:hover .mf-portfolio__image {
	transform: scale(1.06);
}

.mf-portfolio__content {
	text-align: left;
}

.mf-portfolio__item-title {
	font-family: var(--mf-font-heading);
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--mf-black);
	margin: 0 0 15px;
}

.mf-portfolio__item-link {
	color: inherit;
	background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
	background-size: 0 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s linear;
}

.mf-portfolio__item-link:hover {
	background-size: 0 1px, 100% 1px;
}

.mf-portfolio__category {
	display: inline-block;
	font-family: var(--mf-font-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--mf-text);
	background: #f0f0f0;
	padding: 2px 16px;
	border-radius: 30px;
}

.mf-portfolio__footer {
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: center;
	margin-top: 20px;
	padding-bottom: 0;
	clear: both;
}

.mf-portfolio__grid .mf-portfolio__item:nth-last-child(-n + 2) {
	margin-bottom: 20px;
}

.mf-portfolio__all {
	position: relative;
	z-index: 4;
}

.mf-portfolio__all .mf-rounded-btn__text {
	max-width: 70px;
}

/* ==========================================================================
   13. Technology â€” throwable capsules (Aleric Startup Agency)
   ========================================================================== */
.mf-technology {
	position: relative;
	overflow: hidden;
	height: 780px;
	padding-top: 100px;
	padding-bottom: 0;
	background: var(--mf-bg-light);
	text-align: left;
}

.mf-technology__header {
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.mf-technology__header-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px 40px;
}

.mf-technology__intro {
	flex: 1 1 62%;
	min-width: 0;
	max-width: 900px;
}

.mf-technology__title {
	font-size: 50px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0 0 60px;
	color: var(--mf-black);
}

.mf-technology__para {
	margin-bottom: 0;
}

.mf-technology__para p {
	position: relative;
	margin: 0 0 0 200px;
	padding-left: 24px;
	font-size: 18px;
	line-height: 1.55;
	color: var(--mf-text);
}

.mf-technology__para p::before {
	content: "";
	position: absolute;
	left: 0;
	top: -35px;
	width: 1px;
	height: 145px;
	background: rgba(3, 3, 3, 0.1);
}

.mf-technology__aside {
	flex: 0 0 auto;
	width: min(210px, 100%);
	pointer-events: auto;
}

.mf-technology__ratings {
	display: flex;
	max-width: 210px;
	padding: 18px 16px 12px 19px;
	border-radius: 10px;
	background: var(--mf-white);
}

.mf-technology__ratings img {
	display: block;
	width: 100%;
	height: auto;
}

.mf-technology__shape {
	margin-top: 85px;
}

.mf-technology__shape-1 {
	display: block;
	margin-bottom: 5px;
}

.mf-technology__shape-2 {
	display: block;
}

.mf-technology__capsules {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.mf-technology__capsules > p {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	margin: 0;
	opacity: 0;
	user-select: none;
	pointer-events: auto;
	transition: none;
}

.mf-technology__capsule {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 200px;
	padding: 10px 26px;
	border-radius: 300px;
	background: var(--mf-white);
	font-family: var(--mf-font-heading);
	font-weight: 500;
	font-size: 18px;
	color: var(--mf-black);
	text-align: center;
	transform: translate(-50%, -50%) rotate(0.01rad);
	cursor: grab;
}

.mf-technology__capsule:active {
	cursor: grabbing;
}

.mf-technology__capsule svg {
	display: block;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.mf-technology__capsule--vue {
	width: 250px;
	height: 250px;
}

.mf-technology__capsule--dc {
	width: 180px;
	height: 180px;
}

.mf-technology__capsule--sketch {
	width: 170px;
	height: 170px;
}

/* ==========================================================================
   14. Team
   ========================================================================== */
.mf-team__header {
	position: relative;
	margin-bottom: 60px;
}

.mf-team__title {
	font-size: 145px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}

.mf-team__desc {
	max-width: 560px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--mf-text);
	margin-left: auto;
}

.mf-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mf-team__member {
	position: relative;
	margin-bottom: 40px;
}

.mf-team__media {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	background: var(--mf-bg-light);
}

.mf-team__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.mf-team__thumb canvas {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	display: block;
}

.mf-team__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mf-team__content {
	text-align: center;
}

.mf-team__name {
	font-size: 25px;
	font-weight: 500;
	margin: 0 0 5px;
}

.mf-team__name a {
	color: var(--mf-black);
}

.mf-team__role {
	display: block;
	font-size: 16px;
	color: var(--mf-text);
}

/* Shared hover fallback (Team + News) when WebGL is unavailable */
.mf-hover-item:hover .mf-hover-img:not(.is-webgl) img {
	transform: scale(1.06);
}

.mf-hover-img:not(.is-webgl) img {
	transition: transform 0.7s var(--mf-ease);
}

/* ==========================================================================
   15. Testimonials
   ========================================================================== */
.mf-testimonials__header {
	max-width: 820px;
	margin: 0 auto 60px;
	text-align: center;
}

.mf-testimonials__title {
	font-size: 50px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 25px;
}

.mf-testimonials__desc {
	font-family: var(--mf-font-heading);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--mf-text);
}

.mf-testimonials__card {
	height: auto;
	padding: 45px 35px 40px;
	border: 1px solid var(--mf-border);
	border-radius: 0;
	background: var(--mf-white);
}

.mf-testimonials__quote {
	font-family: var(--mf-font-heading);
	font-size: 25px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--mf-black);
	margin: 0 0 60px;
}

.mf-testimonials__quote-mid {
	color: var(--mf-text);
}

.mf-testimonials__author {
	display: flex;
	align-items: center;
}

.mf-testimonials__qoute {
	display: flex;
	align-items: center;
	margin-right: 20px;
	flex-shrink: 0;
}

.mf-testimonials__qoute-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--mf-purple);
	line-height: 1;
	flex-shrink: 0;
}

.mf-testimonials__avatar {
	width: 50px;
	height: 50px;
	margin-left: -15px;
	border-radius: 50%;
	object-fit: cover;
}

.mf-testimonials__name {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 4px;
	color: var(--mf-black);
}

.mf-testimonials__role {
	font-size: 18px;
	color: var(--mf-text);
}

.mf-testimonials__pagination {
	margin-top: 40px;
	text-align: center;
}

.mf-testimonials .swiper-pagination-bullet-active {
	background: var(--mf-purple);
	border-color: var(--mf-purple);
}

/* ==========================================================================
   16. Blog â€” News & Insight (pinned title + stacked posts)
   ========================================================================== */
.mf-blog {
	padding-top: 130px;
	padding-bottom: 75px;
}

.mf-blog__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 40px 30px;
}

.mf-blog__col--title {
	flex: 1 1 54%;
	min-width: 0;
	max-width: 58.333%;
}

.mf-blog__col--posts {
	flex: 1 1 38%;
	min-width: 0;
	max-width: 41.666%;
}

.mf-blog__title-wrap {
	margin-bottom: 40px;
}

.mf-blog__title {
	font-size: 70px;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 30px;
}

.mf-blog__desc {
	font-size: 18px;
	line-height: 1.55;
	color: var(--mf-text);
	margin: 0;
}

.mf-blog__cta-wrap {
	margin-top: 75px;
	margin-left: 110px;
}

.mf-blog__view-all .mf-rounded-btn__icon {
	margin-bottom: 10px;
}

.mf-blog__item {
	margin-bottom: 60px;
}

.mf-blog__item:last-child {
	margin-bottom: 0;
}

.mf-blog__thumb {
	position: relative;
	overflow: hidden;
	margin-bottom: 35px;
	background: var(--mf-bg-light);
}

.mf-blog__thumb canvas {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	display: block;
}

.mf-hover-img.is-webgl > img {
	opacity: 0;
	pointer-events: none;
}

.mf-blog__image {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
	transition: transform 0.7s var(--mf-ease);
}

.mf-blog__content {
	text-align: center;
}

.mf-blog__meta {
	display: inline-flex;
	align-items: center;
	padding: 1px 12px;
	margin-bottom: 20px;
	border: 1px solid var(--mf-border);
	border-radius: 100px;
	font-size: 14px;
	color: var(--mf-text);
}

.mf-blog__category a {
	color: inherit;
}

.mf-blog__category a:hover {
	color: var(--mf-black);
}

.mf-blog__meta-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 10px;
	border-radius: 50%;
	background: var(--mf-text-soft);
	flex-shrink: 0;
}

.mf-blog__date {
	color: var(--mf-text);
}

.mf-blog__card-title {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
}

.mf-blog__card-title a {
	color: var(--mf-black);
}

/* ==========================================================================
   17. CTA — Let's Talk
   ========================================================================== */
.mf-cta {
	position: relative;
	background-color: var(--mf-black);
	background-image: url("../images/grid-shade.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--mf-white);
	overflow: hidden;
	z-index: 1;
}

.mf-cta__inner {
	position: relative;
	z-index: 2;
	padding-block: 40px;
}

.mf-cta__main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	min-height: 320px;
}

.mf-cta__copy {
	flex: 1;
	min-width: 0;
}

.mf-cta__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 18px;
	color: var(--mf-accent);
	font-family: var(--mf-font-heading);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}

.mf-cta__eyebrow-text {
	flex-shrink: 0;
}

.mf-cta__eyebrow-line {
	display: block;
	flex: 1;
	max-width: 220px;
	height: 1px;
	background: currentColor;
	opacity: 0.9;
}

.mf-cta__eyebrow-arrow {
	display: inline-flex;
	flex-shrink: 0;
	line-height: 0;
}

.mf-cta__subtitle {
	margin: 0 0 36px;
	color: var(--mf-white);
	font-size: clamp(64px, 11vw, 140px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	line-height: 0.92;
}

.mf-cta__subtitle-link {
	color: inherit;
	text-decoration: none;
	transition: opacity var(--mf-transition);
}

.mf-cta__subtitle-link:hover,
.mf-cta__subtitle-link:focus-visible {
	opacity: 0.85;
	color: inherit;
}

.mf-cta__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mf-cta__social-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: var(--mf-radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #1a1a1a;
	color: var(--mf-white);
	font-family: var(--mf-font-heading);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background var(--mf-transition), border-color var(--mf-transition), color var(--mf-transition), transform var(--mf-transition);
}

.mf-cta__social-link i {
	font-size: 14px;
	line-height: 1;
}

.mf-cta__social-link:hover {
	background: var(--mf-accent);
	border-color: var(--mf-accent);
	color: var(--mf-black);
	transform: translateY(-2px);
}

.mf-cta__circle {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-shrink: 0;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #1a1a1a;
	color: var(--mf-white);
	text-align: center;
	text-transform: uppercase;
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
	overflow: hidden;
	isolation: isolate;
	will-change: transform;
	box-shadow:
		0 14px 36px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: background var(--mf-transition), color var(--mf-transition), border-color var(--mf-transition), box-shadow var(--mf-transition);
}

.mf-cta__circle:hover,
.mf-cta__circle.mf-hover-bubble:hover {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--mf-black);
}

.mf-cta__circle .mf-rounded-btn__icon,
.mf-cta__circle-icon,
.mf-cta__circle-text {
	position: relative;
	z-index: 1;
}

.mf-cta__circle.is-hovered {
	box-shadow:
		0 22px 48px rgba(0, 0, 0, 0.4),
		0 6px 16px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mf-cta__circle-icon {
	display: inline-flex;
	line-height: 0;
}

.mf-cta__circle-text {
	display: block;
}

@media (pointer: coarse), (hover: none) {
	.mf-cta__circle:hover {
		background: var(--mf-accent);
		border-color: var(--mf-accent);
		color: var(--mf-black);
	}
}

/* ==========================================================================
   18. Footer
   ========================================================================== */
.mf-footer {
	background: var(--mf-black);
	color: rgba(255, 255, 255, 0.55);
	padding-top: 100px;
}

.mf-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
	gap: 40px;
	padding-bottom: 60px;
}

.mf-footer__brand-logo {
	display: inline-block;
	margin-bottom: 26px;
}

.mf-footer__brand-logo img {
	height: 56px;
	width: auto;
}

.mf-footer__desc {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 26px;
	max-width: 260px;
}

.mf-footer__desk-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	transition: color var(--mf-transition);
}

.mf-footer__desk-link:hover {
	color: var(--mf-white);
}

.mf-footer__desk-link svg {
	flex-shrink: 0;
}

.mf-footer__col-title {
	font-family: var(--mf-font-body);
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 26px;
}

.mf-footer__col-list li {
	margin-bottom: 14px;
}

.mf-footer__col-list a {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	transition: color var(--mf-transition), padding-left var(--mf-transition);
}

.mf-footer__col-list a:hover {
	color: var(--mf-white);
	padding-left: 6px;
}

.mf-footer__form {
	position: relative;
	margin-bottom: 26px;
}

.mf-footer__form-input {
	width: 100%;
	padding: 16px 55px 16px 18px;
	border-radius: 30px;
	border: none;
	background: #0d0d0d;
	color: var(--mf-white);
	font-size: 14px;
}

.mf-footer__form-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.mf-footer__form-submit {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--mf-white);
	transition: background var(--mf-transition);
}

.mf-footer__form-submit:hover {
	background: var(--mf-accent);
	color: var(--mf-black);
}

.mf-footer__form-submit svg {
	width: 16px;
	height: 16px;
}

.mf-footer__social {
	display: flex;
	gap: 10px;
}

.mf-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--mf-border-light);
	color: rgba(255, 255, 255, 0.6);
	transition: all var(--mf-transition);
}

.mf-footer__social-link:hover {
	background: var(--mf-accent);
	color: var(--mf-black);
	border-color: var(--mf-accent);
}

.mf-footer__middle {
	border-top: 1px solid var(--mf-border-light);
	padding-block: 45px;
}

.mf-footer__locations {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.mf-footer__location-title {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--mf-white);
	margin-bottom: 14px;
}

.mf-footer__location-text {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
	transition: color var(--mf-transition);
}

.mf-footer__location-text:hover {
	color: var(--mf-white);
}

.mf-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 30px;
	border-top: 1px solid var(--mf-border-light);
}

.mf-footer__copyright {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
}

.mf-footer__copyright a {
	color: rgba(255, 255, 255, 0.85);
	transition: opacity var(--mf-transition);
}

.mf-footer__copyright a:hover {
	opacity: 0.7;
}

.mf-footer__legal {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
}

.mf-footer__legal a {
	color: rgba(255, 255, 255, 0.55);
	transition: color var(--mf-transition);
}

.mf-footer__legal a:hover {
	color: var(--mf-white);
}

/* ==========================================================================
   19. Swiper overrides
   ========================================================================== */
.mf-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: transparent;
	border: 1px solid var(--mf-border);
	opacity: 1;
	margin-inline: 5px !important;
	transition: background var(--mf-transition), border-color var(--mf-transition);
}

.mf-services .swiper-pagination-bullet {
	border-color: var(--mf-border-light);
}

.mf-swiper .swiper-pagination-bullet-active {
	background: var(--mf-accent);
	border-color: var(--mf-accent);
}

.mf-services .swiper-pagination-bullet-active {
	background: var(--mf-accent);
	border-color: var(--mf-accent);
}

/* ==========================================================================
   20. Split-type helpers
   ========================================================================== */
.mf-split-line {
	overflow: hidden;
	display: block;
}

/* ==========================================================================
   21. Magic cursor (Aleric mouse painter)
   ========================================================================== */
@media (min-width: 992px) and (pointer: fine) {
	body.mf-magic-cursor {
		cursor: none;
	}

	body.mf-magic-cursor a,
	body.mf-magic-cursor button,
	body.mf-magic-cursor input,
	body.mf-magic-cursor textarea,
	body.mf-magic-cursor select,
	body.mf-magic-cursor label {
		cursor: none;
	}

	body.mf-magic-cursor #magic-cursor {
		display: block;
	}
}

#magic-cursor {
	position: absolute;
	display: none;
	width: 10px;
	height: 10px;
	pointer-events: none;
	z-index: 99999;
	opacity: 0;
	top: 0;
	left: 0;
}

#ball {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	border-radius: 50%;
	color: transparent;
	mix-blend-mode: difference;
	background-color: var(--mf-black);
}

.cursor-white-bg #ball {
	background-color: var(--mf-white);
}

.cursor-white-bg #ball .ball-view {
	color: var(--mf-black);
}

#ball .ball-view {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	padding: 0 5px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	transform: scale(0);
	font-family: var(--mf-font-heading);
	color: var(--mf-black);
}

#ball.with-blur {
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	transform: translate3d(0, 0, 0);
}

.mf-magnetic-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ==========================================================================
   22. Service single (Aleric details)
   ========================================================================== */
.mf-service-hero {
	position: relative;
	padding: 220px 0 60px;
	overflow: hidden;
	background: var(--mf-white);
}

.mf-service-hero__shape {
	position: absolute;
	right: -8%;
	top: 10%;
	width: min(402px, 40vw);
	pointer-events: none;
}

.mf-service-hero__top {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 50px;
}

.mf-service-hero__title-wrap {
	position: relative;
}

.mf-service-hero__title {
	font-size: 50px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 25px;
	max-width: 12ch;
}

.mf-service-hero__spin {
	position: absolute;
	right: 0;
	top: 0;
	width: 110px;
	height: 110px;
	animation: mf-spin 14s linear infinite;
}

@keyframes mf-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.mf-service-hero__intro {
	font-family: var(--mf-font-heading);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--mf-text);
	margin: 0;
}

.mf-service-breadcrumb {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15px;
	color: var(--mf-text);
}

.mf-service-breadcrumb__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mf-black);
}

.mf-service-banner__media {
	overflow: hidden;
	max-height: 70vh;
}

.mf-service-banner img {
	display: block;
	width: 100%;
	height: 70vh;
	object-fit: cover;
}

.mf-service-section-title {
	font-size: 50px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 25px;
}

.mf-service-section-title--sm {
	font-size: 36px;
}

.mf-service-divider {
	display: block;
	width: 100%;
	height: 6px;
	margin-bottom: 40px;
}

.mf-service-lede {
	font-family: var(--mf-font-heading);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--mf-text);
	margin: 0 0 24px;
}

.mf-service-overview__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 50px;
}

.mf-service-approach__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.mf-service-approach__list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.5;
	color: var(--mf-text);
}

.mf-service-approach__icon {
	color: var(--mf-black);
	flex-shrink: 0;
	margin-top: 2px;
}

.mf-service-offers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.mf-service-offer {
	background: var(--mf-bg-light);
	padding: 40px 32px;
	min-height: 360px;
	transition: transform 0.4s ease, background 0.4s ease;
}

.mf-service-offer:hover {
	transform: translateY(-6px);
	background: #ebebeb;
}

.mf-service-offer__icon {
	display: block;
	width: 60px;
	height: 60px;
	margin-bottom: 28px;
	color: var(--mf-black);
}

.mf-service-offer__title {
	font-size: 28px;
	font-weight: 500;
	margin: 0 0 24px;
	line-height: 1.25;
}

.mf-service-offer__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: var(--mf-text);
	font-size: 16px;
}

.mf-service-offer__list span {
	margin-right: 8px;
	color: var(--mf-black);
}

.mf-service-dual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding: 0 var(--mf-container-pad) 80px;
	max-width: var(--mf-container-max);
	margin: 0 auto;
}

.mf-service-dual img {
	display: block;
	width: 100%;
	height: 520px;
	object-fit: cover;
}

.mf-service-process {
	background: var(--mf-black);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
}

.mf-service-process__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-bottom: 0;
}

.mf-services__pretitle--on-dark {
	border-color: rgba(255, 255, 255, 0.15);
	color: var(--mf-white);
	margin-bottom: 0;
}

.mf-services__pretitle--on-dark .mf-services__pretitle-dot {
	background: var(--mf-accent);
}

.mf-service-process__title {
	font-family: var(--mf-font-heading);
	font-size: 50px;
	font-weight: 500;
	color: var(--mf-white);
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 720px;
}

.mf-service-process__track {
	position: relative;
	margin-top: 50px;
}

.mf-service-process__line {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 0;
	pointer-events: none;
	transform: translateY(-50%);
}

.mf-service-process__line svg {
	display: block;
	width: 100%;
	height: 6px;
}

.mf-service-process__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mf-service-process__item {
	text-align: center;
}

.mf-service-process__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 40px;
	border-radius: 50%;
	background: var(--mf-accent);
	color: var(--mf-black);
	font-family: var(--mf-font-heading);
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
}

.mf-service-process__name {
	font-family: var(--mf-font-heading);
	font-size: 25px;
	font-weight: 500;
	color: var(--mf-white);
	line-height: 1.4;
	margin: 0 0 20px;
}

.mf-service-process__desc {
	font-size: 18px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 auto;
	max-width: 280px;
}

.mf-service-process__cta {
	margin-top: 35px;
}

.mf-service-process__cta-text {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 40px;
	margin: 0;
	padding: 8px 10px 8px 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	background: #0d0d0d;
	font-family: var(--mf-font-heading);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--mf-white);
}

.mf-service-process__cta-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--mf-font-heading);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0;
	color: var(--mf-accent);
	transition: opacity var(--mf-transition);
}

.mf-service-process__cta-link:hover {
	opacity: 0.8;
	color: var(--mf-accent);
}

.mf-service-process__cta-link svg {
	display: block;
	flex-shrink: 0;
}

.mf-service-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 70px;
}

.mf-service-benefit {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 28px 24px;
	border: 1px solid var(--mf-border);
	transition: border-color 0.35s ease, transform 0.35s ease;
}

.mf-service-benefit:hover {
	border-color: var(--mf-black);
	transform: translateY(-4px);
}

.mf-service-benefit__index {
	font-family: var(--mf-font-heading);
	font-weight: 600;
	font-size: 18px;
	color: var(--mf-purple);
}

.mf-service-benefit p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--mf-font-heading);
}

.mf-service-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mf-service-tech li {
	padding: 12px 22px;
	border: 1px solid var(--mf-border);
	border-radius: 100px;
	font-size: 15px;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.mf-service-tech li:hover {
	background: var(--mf-bg-light);
	border-color: var(--mf-black);
}

.mf-faq__item {
	border-bottom: 1px solid var(--mf-border);
}

.mf-faq__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px 0;
	text-align: left;
	font-family: var(--mf-font-heading);
	font-size: 22px;
	font-weight: 500;
	color: var(--mf-black);
	cursor: pointer;
}

.mf-faq__icon {
	position: relative;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.mf-faq__icon::before,
.mf-faq__icon::after {
	content: "";
	position: absolute;
	background: var(--mf-black);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.mf-faq__icon::before {
	left: 0;
	top: 8px;
	width: 18px;
	height: 2px;
}

.mf-faq__icon::after {
	left: 8px;
	top: 0;
	width: 2px;
	height: 18px;
}

.mf-faq__item.is-active .mf-faq__icon::after {
	opacity: 0;
	transform: rotate(90deg);
}

.mf-faq__panel {
	display: none;
	padding: 0 0 28px;
	color: var(--mf-text);
	font-size: 17px;
	line-height: 1.6;
	max-width: 760px;
}

.mf-faq__item.is-active .mf-faq__panel {
	display: block;
}

.mf-service-nav__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.mf-service-nav .nav-links {
	display: flex;
	gap: 40px;
}

.mf-nav-label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	color: var(--mf-text);
	margin-bottom: 6px;
}

.mf-nav-title {
	font-family: var(--mf-font-heading);
	font-size: 20px;
	font-weight: 500;
}

@media (max-width: 991px) {
	.mf-service-hero {
		padding-top: 140px;
	}

	.mf-service-hero__top,
	.mf-service-overview__grid,
	.mf-service-offers__grid,
	.mf-service-process__grid,
	.mf-service-dual,
	.mf-service-benefits__grid {
		grid-template-columns: 1fr;
	}

	.mf-service-process__line {
		display: none;
	}

	.mf-service-process__count {
		margin-bottom: 24px;
	}

	.mf-service-process__cta-text {
		padding: 16px 20px;
		gap: 16px;
	}

	.mf-service-hero__title,
	.mf-service-section-title,
	.mf-service-process__title {
		font-size: 34px;
	}

	.mf-service-hero__spin {
		position: static;
		margin-top: 20px;
	}

	.mf-service-dual img,
	.mf-service-banner img {
		height: 360px;
	}
}


/* ==========================================================================
   SEO content blocks (homepage) + Hyderabad local page
   ========================================================================== */
.mf-seo-block__header {
	max-width: 760px;
	margin: 0 0 48px;
}

.mf-seo-block__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 500;
	line-height: 1.2;
	margin: 18px 0 16px;
	color: var(--mf-black);
}

.mf-seo-block__lead,
.mf-seo-block__copy {
	font-size: 17px;
	line-height: 1.7;
	color: #525252;
	margin: 0 0 14px;
}

.mf-seo-block__copy a,
.mf-seo-block__footer-link a {
	color: var(--mf-black);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mf-seo-block--muted {
	background: #f7f7f7;
}

.mf-seo-local.mf-section--dark {
	background: var(--mf-black);
	color: rgba(255, 255, 255, 0.72);
}

.mf-seo-local .mf-seo-block__title {
	color: var(--mf-white);
}

.mf-seo-local .mf-seo-block__lead,
.mf-seo-local .mf-seo-block__copy {
	color: rgba(255, 255, 255, 0.72);
}

.mf-seo-local .mf-seo-block__copy a {
	color: var(--mf-accent, #fcc610);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mf-seo-local .mf-seo-block__copy a:hover {
	color: var(--mf-white);
}

.mf-seo-local .mf-seo-block__checklist {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mf-seo-local .mf-seo-block__checklist li {
	color: rgba(255, 255, 255, 0.88);
}

.mf-seo-block__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.mf-seo-block__card {
	padding: 28px 24px;
	border: 1px solid #eee;
	border-radius: 16px;
	background: #fff;
	min-height: 100%;
}

.mf-seo-block__card-title {
	font-family: var(--mf-font-heading);
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 12px;
}

.mf-seo-block__card-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #525252;
}

.mf-seo-block__split {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: start;
}

.mf-seo-block__checklist {
	list-style: none;
	margin: 0;
	padding: 28px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid #eee;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mf-seo-block__checklist li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	line-height: 1.5;
	color: #3a3a3a;
}

.mf-seo-block__checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mf-accent, #fcc610);
}

.mf-seo-block__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mf-seo-block__pills li {
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid #e5e5e5;
	background: #fff;
	font-size: 14px;
	font-weight: 500;
}

.mf-seo-faq-box {
	max-width: 920px;
	margin: 0 auto;
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid #e8e8e8;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 16px 48px rgba(3, 3, 3, 0.05);
}

.mf-seo-faq-box__header {
	max-width: none;
	margin: 0 0 28px;
}

.mf-seo-faq-box__header .mf-seo-block__title {
	margin-top: 14px;
}

.mf-seo-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: none;
}

.mf-seo-faq__item {
	border: 1px solid #ececec;
	border-radius: 14px;
	background: #fafafa;
	padding: 0 20px;
}

.mf-seo-faq__q {
	cursor: pointer;
	list-style: none;
	font-family: var(--mf-font-heading);
	font-size: 17px;
	font-weight: 500;
	padding: 18px 0;
}

.mf-seo-faq__q::-webkit-details-marker {
	display: none;
}

.mf-seo-faq__a {
	padding: 0 0 18px;
}

.mf-seo-faq__a p {
	margin: 0;
	color: #525252;
	line-height: 1.65;
}

.mf-seo-faq-box .mf-seo-block__footer-link {
	margin: 28px 0 0;
	font-size: 15px;
	color: #525252;
}

.mf-hyderabad__crumb {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 24px;
	font-size: 14px;
	color: #666;
}

.mf-hyderabad__crumb a {
	color: #666;
	text-decoration: none;
}

.mf-hyderabad__title {
	font-family: var(--mf-font-heading);
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 18px;
	max-width: 900px;
}

.mf-hyderabad__lead {
	font-size: 18px;
	line-height: 1.7;
	color: #525252;
	max-width: 780px;
	margin: 0 0 28px;
}

.mf-hyderabad__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.mf-hyderabad__intro-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 40px;
}

.mf-hyderabad__card {
	padding: 28px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid #eee;
}

.mf-hyderabad__card-title {
	font-size: 22px;
	margin: 0 0 16px;
}

.mf-hyderabad__service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 28px;
}

.mf-hyderabad__service {
	padding: 24px;
	border: 1px solid #eee;
	border-radius: 16px;
	background: #fff;
}

.mf-hyderabad__service h3 {
	font-size: 20px;
	margin: 0 0 10px;
}

.mf-hyderabad__service h3 a {
	color: inherit;
	text-decoration: none;
}

.mf-hyderabad__map-frame {
	margin-top: 20px;
	min-height: 420px;
	border-radius: 18px;
	overflow: hidden;
	background: #eee;
}

.mf-hyderabad__map-frame iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

@media (max-width: 991px) {
	.mf-seo-block__grid,
	.mf-seo-block__split,
	.mf-hyderabad__intro-grid,
	.mf-hyderabad__service-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Scroll to top (Aleric water-fill style)
   ========================================================================== */
.scrollToTop {
	appearance: none;
	border: 0;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	height: 55px;
	width: 55px;
	position: fixed;
	bottom: 24px;
	right: 24px;
	background-color: #cbc6c6;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	z-index: 1450;
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.5s ease;
}

.scrollToTop.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.scrollToTop:hover {
	transform: translateY(-15%);
}

.scrollToTop .arrowUp {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mf-black);
}

.scrollToTop .water {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	transform: translateY(100%);
	background-color: var(--mf-accent);
	border: 1px solid var(--mf-accent);
	transition: transform 0.2s linear;
}

.scrollToTop .water svg use {
	fill: var(--mf-accent);
}

.scrollToTop .water_wave {
	width: 200%;
	position: absolute;
	bottom: 100%;
}

.scrollToTop .water_wave_back {
	right: 0;
	fill: var(--mf-accent);
	animation: mf-wave-back 1.4s infinite linear;
}

.scrollToTop .water_wave_front {
	left: 0;
	fill: rgba(252, 198, 16, 0.85);
	margin-bottom: -1px;
	animation: mf-wave-front 0.7s infinite linear;
}

@keyframes mf-wave-front {
	100% {
		transform: translateX(-50%);
	}
}

@keyframes mf-wave-back {
	100% {
		transform: translateX(50%);
	}
}

@media (max-width: 991px) {
	.scrollToTop {
		height: 44px;
		width: 44px;
		bottom: 18px;
		right: 18px;
	}
}
