/* ==========================================================================
   Mind Funnel Method — main stylesheet
   ========================================================================== */

:root {
	--color-dark: #0B1628;
	--color-dark-2: #131F33;
	--color-dark-3: #1A2B43;
	--color-accent: #E05926;
	--color-accent-dark: #C84E20;
	--color-bg: #FFFFFF;
	--color-bg-alt: #F5F5F7;
	--color-bg-warm: #FFF0EA;
	--color-text: #0A0A0A;
	--color-text-mid: #3A3A3A;
	--color-text-muted: #737373;
	--color-text-faint: #A0A0A0;

	--font-display: 'Cormorant Garamond', serif;
	--font-body: 'Outfit', sans-serif;
	--font-mono: 'DM Mono', monospace;

	--container-max: 1440px;
	--pad-desktop: 72px;
	--pad-mobile: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-body);
	background: var(--color-bg);
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
input, button, textarea { font-family: inherit; border: none; outline: none; background: none; }
img { max-width: 100%; display: block; }

.mfm-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--pad-desktop); }
.mfm-mono { font-family: var(--font-mono); }
.mfm-mono--accent { color: var(--color-accent); }
.mfm-accent { color: var(--color-accent); }

.mfm-eyebrow {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.mfm-display { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3vw, 44px); line-height: 1.15; letter-spacing: -.01em; margin-bottom: 28px; }
.mfm-display p, .mfm-about__text p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--color-text-mid); margin-bottom: 18px; }
.mfm-display-bold { font-family: var(--font-body); font-weight: 800; letter-spacing: -.03em; }
.mfm-display-italic { font-family: var(--font-display); font-weight: 300; font-style: italic; letter-spacing: -.02em; }
.mfm-display-em { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 1.1em; letter-spacing: -.01em; }
.mfm-display-quote { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--color-text); }

.mfm-accent-bar { width: 3px; height: 52px; background: var(--color-accent); margin-bottom: 28px; }
.mfm-accent-bar--tall { width: 2px; height: 80px; margin-top: 8px; }

/* Buttons */
.mfm-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 3px;
	letter-spacing: .02em;
	transition: background .2s, transform .2s, box-shadow .2s, border-color .2s, color .2s;
	cursor: pointer;
}
.mfm-btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 4px 32px rgba(224,89,38,.38); }
.mfm-btn--accent:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(224,89,38,.48); }
.mfm-btn--outline { border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75); }
.mfm-btn--outline:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.mfm-btn--dark { background: var(--color-text); color: #fff; }
.mfm-btn--dark:hover { background: var(--color-accent); transform: translateY(-2px); }
.mfm-btn--nav { padding: 10px 24px; }
.mfm-btn--nav:hover { background: var(--color-accent-dark); transform: translateY(-1px); }
.mfm-btn--full { width: 100%; justify-content: center; box-shadow: 0 4px 24px rgba(224,89,38,.32); }
.mfm-btn--compact { padding: 13px 22px; font-size: 13px; white-space: nowrap; }

.mfm-link-arrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--color-accent); letter-spacing: .04em; text-transform: uppercase; transition: gap .2s; }
.mfm-link-arrow:hover { gap: 16px; }

/* Scroll reveal base state */
[data-reveal] { opacity: 0; transform: translateY(40px); }
[data-reveal].mfm-revealed { transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   NAV
   ========================================================================== */
.mfm-nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
	background: rgba(11,22,40,.55);
	border-bottom: 1px solid rgba(255,255,255,.07);
	transition: background .5s, border-color .5s;
}
.mfm-nav.mfm-nav--scrolled { background: rgba(255,255,255,.97); border-bottom-color: rgba(10,10,10,.08); }
.mfm-nav__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 48px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.mfm-nav__logo-name { display: block; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; transition: color .4s; line-height: 1.1; }
.mfm-nav--scrolled .mfm-nav__logo-name { color: var(--color-text); }
.mfm-nav__logo-tag { display: block; font-family: var(--font-mono); font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: var(--color-accent); line-height: 1.1; margin-top: 2px; }
.mfm-nav__links { display: flex; align-items: center; gap: 32px; }
.mfm-nav__links a { font-size: 13px; font-weight: 500; color: #fff; opacity: .65; transition: opacity .2s, color .4s; }
.mfm-nav--scrolled .mfm-nav__links a { color: var(--color-text); }
.mfm-nav__links a:hover { opacity: 1; }

/* ==========================================================================
   HERO
   ========================================================================== */
.mfm-hero { min-height: 100vh; display: grid; grid-template-columns: 58% 42%; position: relative; }
.mfm-hero__content { background: var(--color-dark); display: flex; flex-direction: column; justify-content: flex-end; padding: 140px 72px 64px; position: relative; overflow: hidden; }
.mfm-hero__bg-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 10% 80%, rgba(224,89,38,.09) 0%, transparent 100%); pointer-events: none; }
.mfm-hero__inner { position: relative; }
.mfm-hero__badge { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 52px; animation: fadeIn 1s .1s both; }
.mfm-hero__badge .mfm-mono { font-size: 9px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.mfm-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.mfm-hero__headline { margin-bottom: 48px; }
.mfm-hero__h1 { font-family: var(--font-body); font-size: clamp(60px,9vw,144px); font-weight: 800; line-height: .9; color: #fff; letter-spacing: -.03em; animation: heroFade 1s cubic-bezier(.16,1,.3,1) .25s both; }
.mfm-hero__h1--accent { color: var(--color-accent); animation-delay: .4s; }
.mfm-hero__sub { margin-top: 20px; font-family: var(--font-display); font-size: clamp(26px,3vw,44px); font-weight: 300; font-style: italic; color: rgba(255,255,255,.7); letter-spacing: -.01em; line-height: 1.15; padding-bottom: .05em; animation: heroFade 1s cubic-bezier(.16,1,.3,1) .55s both; }
.mfm-hero__lead { font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.55); max-width: 460px; margin-bottom: 44px; animation: fadeUp 1s cubic-bezier(.16,1,.3,1) .7s both; }
.mfm-hero__cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; animation: fadeUp 1s cubic-bezier(.16,1,.3,1) .85s both; }

.mfm-hero__photo { background: #0F1D2E; position: relative; overflow: hidden; }
.mfm-hero__photo-img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: auto; max-height: 88%; width: 85%; object-fit: contain; object-position: bottom center; z-index: 0; pointer-events: none; }
.mfm-hero__photo-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(0deg, rgba(11,22,40,.96) 0%, transparent 100%); pointer-events: none; z-index: 1; }
.mfm-hero__photo-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--color-accent); z-index: 2; }
.mfm-hero__nameplate { position: absolute; bottom: 36px; left: 36px; z-index: 3; }
.mfm-hero__nameplate-name { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.1; }
.mfm-hero__nameplate-role { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 5px; }

/* ==========================================================================
   STATS
   ========================================================================== */
.mfm-stats { background: #fff; border-bottom: 1px solid rgba(10,10,10,.07); }
.mfm-stats__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--pad-desktop); display: grid; grid-template-columns: repeat(4,1fr); }
.mfm-stats__cell { padding: 36px 32px; border-right: 1px solid rgba(10,10,10,.07); }
.mfm-stats__cell:first-child { padding-left: 0; }
.mfm-stats__cell--last { border-right: none; padding-right: 0; }
.mfm-stats__num { font-family: var(--font-display); font-size: 52px; font-weight: 300; color: var(--color-text); line-height: 1; margin-bottom: 6px; }
.mfm-stats__num--accent { color: var(--color-accent); }
.mfm-stats__label { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--color-text-faint); }

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.mfm-problem { padding: 140px 0; background: #fff; }
.mfm-problem__grid { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; }
.mfm-problem__title { font-size: clamp(52px,6vw,88px); line-height: .97; color: var(--color-text); margin-bottom: 56px; padding-bottom: .04em; }
.mfm-problem__list { display: flex; flex-direction: column; }
.mfm-problem__item { padding: 22px 0; border-top: 1px solid rgba(10,10,10,.1); }
.mfm-problem__item--first { border-top: 1.5px solid var(--color-text); }
.mfm-problem__item--last { border-bottom: 1px solid rgba(10,10,10,.1); }
.mfm-problem__item p { font-size: 17px; font-weight: 400; line-height: 1.55; color: var(--color-text); }
.mfm-problem__aside { padding-top: 28px; position: sticky; top: 96px; }
.mfm-problem__aside-text { font-size: 15px; font-weight: 300; line-height: 1.78; color: var(--color-text-muted); margin-bottom: 36px; }
.mfm-display-quote.mfm-problem__title ~ .mfm-display-quote {}
.mfm-problem__aside .mfm-display-quote { font-size: clamp(22px,2.4vw,32px); line-height: 1.45; margin-bottom: 28px; }

/* ==========================================================================
   WHY
   ========================================================================== */
.mfm-why { padding: 140px 0; background: var(--color-dark); position: relative; overflow: hidden; }
.mfm-why__glow { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse 100% 80% at 100% 50%, rgba(224,89,38,.055) 0%, transparent 70%); pointer-events: none; }
.mfm-why__inner { position: relative; }
.mfm-why__header { margin-bottom: 64px; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.mfm-why__header h2 { font-size: clamp(36px,5vw,72px); line-height: .9; color: #fff; }
.mfm-why__intro { font-size: 16px; font-weight: 300; line-height: 1.72; color: rgba(255,255,255,.5); max-width: 360px; }
.mfm-why__row { border-top: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: 52px 1fr auto; gap: 36px; align-items: center; padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.mfm-why__row--first { }
.mfm-why__row:not(.mfm-why__row--first) { border-top: none; }
.mfm-why__row--last { border-bottom: none; }
.mfm-why__num { font-size: 11px; color: var(--color-accent); font-weight: 500; }
.mfm-why__title { font-size: clamp(18px,1.8vw,24px); font-weight: 600; color: #fff; line-height: 1.3; }
.mfm-why__row div > .mfm-why__title { margin-bottom: 8px; }
.mfm-why__desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.55; }
.mfm-why__meta { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.25); white-space: nowrap; text-align: right; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.mfm-about { background: var(--color-bg-warm); overflow: hidden; }
.mfm-about__grid { display: grid; grid-template-columns: 52% 48%; min-height: 72vh; align-items: stretch; padding: 0; max-width: var(--container-max); }
.mfm-about__photo { background: var(--color-dark-3); position: relative; min-height: 560px; display: flex; flex-direction: column; justify-content: flex-end; padding: 64px; overflow: hidden; }
.mfm-about__photo-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--color-accent), rgba(224,89,38,.3)); z-index: 2; }
.mfm-about__photo-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: linear-gradient(0deg, rgba(26,43,67,.97) 0%, transparent 100%); pointer-events: none; z-index: 1; }
.mfm-about__photo-img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: auto; max-height: 100%; width: 85%; object-fit: contain; object-position: bottom center; z-index: 0; pointer-events: none; }
.mfm-about__nameplate { position: relative; z-index: 2; }
.mfm-about__nameplate-name { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.1; }
.mfm-about__nameplate-role { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-top: 6px; }
.mfm-about__text { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.mfm-quote-box { padding: 22px 26px; border-left: 2px solid var(--color-accent); background: #fff; }
.mfm-quote-box p { font-family: var(--font-display); font-size: 19px; font-weight: 400; font-style: italic; line-height: 1.55; color: var(--color-text); margin: 0; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.mfm-marquee { background: var(--color-accent); overflow: hidden; height: 52px; display: flex; align-items: center; }
.mfm-marquee__track { display: flex; animation: marqueeScroll 22s linear infinite; white-space: nowrap; will-change: transform; }
.mfm-marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.mfm-marquee__group span { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: #fff; letter-spacing: .12em; text-transform: uppercase; padding: 0 40px; border-right: 1px solid rgba(255,255,255,.25); }

/* ==========================================================================
   METHOD
   ========================================================================== */
.mfm-method { padding: 140px 0; background: #fff; }
.mfm-method__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 72px; }
.mfm-method__header h2 { font-size: clamp(36px,5vw,72px); line-height: .9; color: var(--color-text); }
.mfm-method__intro { font-size: 16px; font-weight: 300; line-height: 1.72; color: var(--color-text-muted); max-width: 380px; }
.mfm-method__row { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: rgba(10,10,10,.08); border: 1px solid rgba(10,10,10,.08); overflow: hidden; }
.mfm-method__row--top { border-radius: 6px 6px 0 0; }
.mfm-method__row--bottom { border-top: none; border-radius: 0 0 6px 6px; }
.mfm-method__card { padding: 28px 22px; background: #fff; border-bottom: 2px solid var(--color-accent); }
.mfm-method__card-num { font-size: 10px; color: var(--color-accent); margin-bottom: 10px; letter-spacing: .06em; }
.mfm-method__card-title { font-size: 13.5px; font-weight: 600; color: var(--color-text); line-height: 1.4; }
.mfm-method__card--muted { padding: 20px; background: #F9F9F9; border-bottom: none; }
.mfm-method__card-num--muted { color: var(--color-text-faint); margin-bottom: 7px; }
.mfm-method__card-title--muted { font-size: 13px; font-weight: 500; color: #555; }

/* ==========================================================================
   BENTO
   ========================================================================== */
.mfm-bento { padding: 140px 0; background: var(--color-bg-alt); }
.mfm-bento__header { margin-bottom: 72px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.mfm-bento__header h2 { font-size: clamp(36px,4.5vw,64px); line-height: .95; color: var(--color-text); }
.mfm-bento__intro { font-size: 16px; font-weight: 300; line-height: 1.72; color: var(--color-text-muted); max-width: 360px; }
.mfm-bento__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mfm-bento__card { background: #fff; border-radius: 8px; padding: 40px; position: relative; overflow: hidden; border: 1px solid rgba(10,10,10,.07); }
.mfm-bento__card--full { grid-column: 1/-1; background: var(--color-dark); border: none; padding: 52px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 52px; }
.mfm-bento__card--accent { background: var(--color-accent); border: none; }
.mfm-bento__card--wide { grid-column: 2/4; background: var(--color-dark); border: none; padding: 40px; display: flex; align-items: center; gap: 44px; }
.mfm-bento__glow { position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: radial-gradient(ellipse at 100% 50%, rgba(224,89,38,.1) 0%, transparent 70%); }
.mfm-bento__glow--wide { width: 50%; background: radial-gradient(ellipse at 100% 50%, rgba(224,89,38,.08) 0%, transparent 70%); }
.mfm-bento__watermark { font-family: var(--font-display); font-size: 72px; font-weight: 300; color: rgba(10,10,10,.05); line-height: 1; position: absolute; top: 12px; right: 16px; }
.mfm-bento__watermark--light { color: rgba(255,255,255,.07); position: static; font-size: 96px; flex-shrink: 0; }
.mfm-bento__card--full .mfm-bento__watermark--light { position: relative; }
.mfm-bento__title { font-size: 19px; font-weight: 700; color: var(--color-text); margin-bottom: 12px; line-height: 1.3; position: relative; }
.mfm-bento__card--full .mfm-bento__title { font-size: 24px; }
.mfm-bento__title--light { color: #fff; }
.mfm-bento__text { font-size: 14px; font-weight: 300; line-height: 1.72; color: var(--color-text-muted); margin-bottom: 20px; position: relative; }
.mfm-bento__card--full .mfm-bento__text { color: rgba(255,255,255,.85); max-width: 480px; margin-bottom: 0; }
.mfm-bento__text--light { color: rgba(255,255,255,.78); }
.mfm-bento__card--wide .mfm-bento__text--light { color: rgba(255,255,255,.82); margin-bottom: 0; }
.mfm-bento__tag { font-size: 10px; color: var(--color-accent); letter-spacing: .1em; text-transform: uppercase; position: relative; }
.mfm-bento__tag--light { color: rgba(255,255,255,.7); }
.mfm-bento__body { position: relative; }
.mfm-bento__metric { flex-shrink: 0; text-align: right; position: relative; }
.mfm-bento__metric-num { font-family: var(--font-display); font-size: 60px; font-weight: 300; color: var(--color-accent); line-height: 1; }
.mfm-bento__metric-label { font-size: 10px; color: rgba(255,255,255,.38); letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }
.mfm-bento__quote { font-family: var(--font-display); font-size: 26px; font-weight: 400; font-style: italic; color: var(--color-accent); line-height: 1.25; max-width: 180px; flex-shrink: 0; position: relative; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.mfm-process { padding: 140px 0; background: #fff; }
.mfm-process__header { margin-bottom: 72px; }
.mfm-process__title { font-size: clamp(44px,5.5vw,80px); line-height: 1; color: var(--color-text); }
.mfm-process__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mfm-process__col--left { border-right: 1px solid rgba(10,10,10,.1); }
.mfm-process__col--right { padding-left: 64px; }
.mfm-process__step { padding: 28px 48px 28px 0; border-top: 1px solid rgba(10,10,10,.1); display: flex; gap: 24px; }
.mfm-process__col--right .mfm-process__step { padding: 28px 0; }
.mfm-process__col--left .mfm-process__step:last-child { border-bottom: 1px solid rgba(10,10,10,.1); }
.mfm-process__col--right .mfm-process__step:last-child { border-bottom: 1px solid rgba(10,10,10,.1); }
.mfm-process__step-num { font-size: 11px; color: var(--color-accent); flex-shrink: 0; padding-top: 2px; min-width: 22px; }
.mfm-process__step-title { font-size: 16px; font-weight: 700; color: var(--color-text); margin-bottom: 5px; }
.mfm-process__step-text { font-size: 13px; line-height: 1.65; color: var(--color-text-muted); }

/* ==========================================================================
   RESULTS
   ========================================================================== */
.mfm-results { padding: 140px 0; background: var(--color-dark); position: relative; overflow: hidden; }
.mfm-results__watermark {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; overflow: hidden;
	font-family: var(--font-body); font-size: 320px; font-weight: 800; color: rgba(255,255,255,.022); letter-spacing: -.06em; white-space: nowrap; transform: rotate(-6deg);
}
.mfm-results__inner { position: relative; }
.mfm-results__header { margin-bottom: 80px; }
.mfm-results__title { font-size: clamp(44px,6vw,88px); line-height: .95; color: #fff; }
.mfm-results__grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.1); }
.mfm-results__cell { padding: 44px 32px; border-right: 1px solid rgba(255,255,255,.1); }
.mfm-results__cell:first-child { padding-left: 0; }
.mfm-results__cell--last { border-right: none; padding-right: 0; }
.mfm-results__num { font-family: var(--font-display); font-size: clamp(44px,5vw,76px); font-weight: 300; color: #fff; line-height: 1; margin-bottom: 10px; }
.mfm-results__num--accent { color: var(--color-accent); }
.mfm-results__desc { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.42); }
.mfm-results__img { margin-top: 20px; border-radius: 6px; overflow: hidden; }
.mfm-results__img img { width: 100%; height: 200px; object-fit: cover; object-position: top center; }
.mfm-results__featured { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,.1); padding: 44px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.mfm-results__featured-num { font-family: var(--font-display); font-size: clamp(36px,4vw,60px); font-weight: 300; color: #fff; line-height: 1; margin-bottom: 10px; }
.mfm-results__featured-img { border-radius: 6px; overflow: hidden; }
.mfm-results__featured-img img { width: 100%; height: 220px; object-fit: cover; object-position: top center; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.mfm-testimonials { padding: 140px 0; background: #fff; }
.mfm-testimonials__featured { margin-bottom: 72px; display: grid; grid-template-columns: 60px 1fr; gap: 32px; align-items: start; }
.mfm-testimonials__quote { font-size: clamp(24px,3.2vw,44px); line-height: 1.38; margin-bottom: 26px; }
.mfm-testimonials__author { display: flex; align-items: center; gap: 14px; }
.mfm-testimonials__author-line { width: 32px; height: 1px; background: var(--color-accent); }
.mfm-testimonials__author-name { font-size: 13px; font-weight: 700; color: var(--color-text); }
.mfm-testimonials__card .mfm-testimonials__author-name { font-size: 13px; }
.mfm-testimonials__author-role { font-size: 12px; color: var(--color-text-faint); margin-top: 2px; }
.mfm-testimonials__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(10,10,10,.08); border: 1px solid rgba(10,10,10,.08); border-radius: 6px; overflow: hidden; }
.mfm-testimonials__card { padding: 38px 32px; background: #fff; }
.mfm-testimonials__card p { font-size: 15px; font-weight: 300; line-height: 1.78; color: var(--color-text-mid); margin-bottom: 24px; }
.mfm-testimonials__card--warm { background: var(--color-bg-warm); }
.mfm-testimonials__card-footer { border-top: 1px solid rgba(10,10,10,.07); padding-top: 18px; }

/* ==========================================================================
   LEAD MAGNET
   ========================================================================== */
.mfm-lead { padding: 140px 0; background: var(--color-dark); position: relative; overflow: hidden; }
.mfm-lead__glow { position: absolute; top: 0; left: -10%; width: 55%; height: 100%; background: radial-gradient(ellipse, rgba(224,89,38,.065) 0%, transparent 70%); pointer-events: none; }
.mfm-lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.mfm-lead__title { font-family: var(--font-body); font-size: clamp(32px,4vw,56px); font-weight: 800; line-height: .95; color: #fff; letter-spacing: -.03em; margin: 0 0 6px; }
.mfm-lead__subtitle { font-family: var(--font-display); font-size: clamp(30px,3.8vw,54px); font-weight: 300; font-style: italic; line-height: .95; color: rgba(255,255,255,.55); margin-bottom: 30px; letter-spacing: -.01em; padding-bottom: .04em; }
.mfm-lead__desc { font-size: 16px; font-weight: 300; line-height: 1.72; color: rgba(255,255,255,.58); margin-bottom: 36px; }
.mfm-lead__checklist { display: flex; flex-direction: column; gap: 12px; }
.mfm-lead__check { display: flex; align-items: center; gap: 12px; }
.mfm-lead__check span:last-child { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.68); }
.mfm-check-icon { width: 16px; height: 16px; border-radius: 50%; background: var(--color-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mfm-lead__form-wrap { position: relative; }
.mfm-lead__success { padding: 56px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; text-align: center; }
.mfm-lead__success-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--color-accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.mfm-lead__success-title { font-family: var(--font-display); font-size: 28px; font-weight: 400; font-style: italic; color: #fff; margin-bottom: 10px; }
.mfm-lead__success-text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6); }
.mfm-lead__form { padding: 52px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; display: flex; flex-direction: column; gap: 13px; }
.mfm-lead__form-hint { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 13px; }
.mfm-lead__form input { padding: 14px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 3px; color: #fff; font-size: 15px; font-family: var(--font-body); transition: border-color .2s; }
.mfm-lead__form input:focus { border-color: var(--color-accent); }
.mfm-lead__form-footnote { font-size: 11px; color: rgba(255,255,255,.28); text-align: center; line-height: 1.5; }
.mfm-form-error { color: #ff8a65; font-size: 12px; text-align: center; }

/* ==========================================================================
   CONSULTATION + NEWSLETTER
   ========================================================================== */
.mfm-consult { background: #fff; }
.mfm-consult__inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 300px 1fr; min-height: 460px; align-items: stretch; }
.mfm-consult__col--left { padding: 80px 64px 80px 72px; border-right: 1px solid rgba(10,10,10,.07); display: flex; flex-direction: column; justify-content: center; }
.mfm-consult__title { font-family: var(--font-body); font-size: clamp(28px,3.5vw,48px); font-weight: 800; line-height: 1; color: var(--color-text); margin-bottom: 16px; letter-spacing: -.03em; }
.mfm-consult__title-sub { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: 1.05em; letter-spacing: -.01em; color: var(--color-text-muted); }
.mfm-consult__text { font-size: 16px; font-weight: 300; line-height: 1.72; color: var(--color-text-muted); margin-bottom: 36px; max-width: 400px; }
.mfm-consult__footnote { font-size: 12px; color: var(--color-text-faint); margin-top: 12px; }
.mfm-consult__col--photo { display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: #fff; }
.mfm-consult__photo { height: 100%; max-height: 460px; width: 100%; object-fit: contain; object-position: bottom center; }
.mfm-consult__col--right { padding: 80px 72px 80px 64px; background: var(--color-bg-warm); display: flex; flex-direction: column; justify-content: center; }
.mfm-consult__news-title { font-family: var(--font-display); font-size: clamp(26px,3vw,40px); font-weight: 400; color: var(--color-text); line-height: 1.12; margin-bottom: 12px; }
.mfm-consult__news-text { font-size: 15px; font-weight: 300; color: var(--color-text-muted); margin-bottom: 28px; line-height: 1.65; }
.mfm-consult__news-success { padding: 18px 22px; background: #fff; border: 1px solid rgba(10,10,10,.1); border-radius: 3px; display: inline-flex; align-items: center; gap: 12px; }
.mfm-consult__news-success span { font-size: 14px; font-weight: 600; color: var(--color-text); }
.mfm-consult__news-form { display: flex; gap: 10px; }
.mfm-consult__news-form input { flex: 1; padding: 13px 16px; background: #fff; border: 1px solid rgba(10,10,10,.18); border-radius: 3px; font-size: 14px; font-family: var(--font-body); color: var(--color-text); }
.mfm-consult__news-form input:focus { border-color: var(--color-accent); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.mfm-faq { padding: 100px 0; background: var(--color-bg-alt); border-top: 1px solid rgba(10,10,10,.07); }
.mfm-faq__container { max-width: 800px; margin: 0 auto; padding: 0 var(--pad-desktop); }
.mfm-faq__header { margin-bottom: 52px; }
.mfm-faq__title { font-size: clamp(36px,4.5vw,56px); line-height: 1.05; color: var(--color-text); letter-spacing: -.01em; }
.mfm-faq__item { border-top: 1px solid rgba(10,10,10,.1); }
.mfm-faq__bottom-line { border-top: 1px solid rgba(10,10,10,.1); }
.mfm-faq__trigger { width: 100%; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); }
.mfm-faq__question { font-size: 16px; font-weight: 600; color: var(--color-text); line-height: 1.35; }
.mfm-faq__icon { width: 26px; height: 26px; border-radius: 50%; background: rgba(10,10,10,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-text); transform: rotate(0deg); transition: transform .3s, background .2s, color .2s; }
.mfm-faq__item.mfm-faq__item--open .mfm-faq__icon { background: var(--color-accent); color: #fff; transform: rotate(45deg); }
.mfm-faq__body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .2s ease; }
.mfm-faq__item.mfm-faq__item--open .mfm-faq__body { max-height: 400px; opacity: 1; transition: max-height .5s cubic-bezier(.16,1,.3,1), opacity .3s ease; }
.mfm-faq__body p { font-size: 15px; font-weight: 300; line-height: 1.78; color: var(--color-text-mid); padding-bottom: 24px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.mfm-footer { background: var(--color-dark); padding: 64px 0 44px; }
.mfm-footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.mfm-footer__logo { font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.mfm-footer__tag { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 8px; }
.mfm-footer__credentials { font-family: var(--font-mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 22px; }
.mfm-footer__desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,.32); max-width: 260px; }
.mfm-footer__nav { display: flex; gap: 64px; flex-wrap: wrap; }
.mfm-footer__nav-title { font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.mfm-footer__nav-links { display: flex; flex-direction: column; gap: 10px; }
.mfm-footer__nav-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); transition: color .2s; }
.mfm-footer__nav-links a:hover { color: #fff; }
.mfm-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.mfm-footer__bottom p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.22); }
.mfm-footer__legal { display: flex; gap: 20px; }
.mfm-footer__legal a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.22); transition: color .2s; }
.mfm-footer__legal a:hover { color: rgba(255,255,255,.55); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
	.mfm-problem__grid,
	.mfm-method__header,
	.mfm-bento__header,
	.mfm-why__header { gap: 40px; }
	.mfm-results__grid,
	.mfm-method__row,
	.mfm-stats__inner { grid-template-columns: repeat(2,1fr); }
	.mfm-results__cell:nth-child(2n) { border-right: none; }
	.mfm-results__featured { grid-template-columns: 1fr; }
	.mfm-bento__card--wide { grid-column: 1/-1; }
}

@media (max-width: 900px) {
	.mfm-container, .mfm-faq__container { padding: 0 var(--pad-mobile); }
	.mfm-nav__inner { padding: 0 var(--pad-mobile); }
	.mfm-nav__links { display: none; }
	.mfm-hero { grid-template-columns: 1fr; min-height: auto; }
	.mfm-hero__content { padding: 120px var(--pad-mobile) 48px; }
	.mfm-hero__photo { height: 60vh; }
	.mfm-problem__grid,
	.mfm-why__inner > .mfm-why__header,
	.mfm-about__grid,
	.mfm-process__grid,
	.mfm-bento__card--full,
	.mfm-lead__grid { grid-template-columns: 1fr; }
	.mfm-problem__aside { position: static; padding-top: 48px; }
	.mfm-about__grid { min-height: auto; }
	.mfm-about__photo { min-height: 360px; }
	.mfm-about__text { padding: 56px var(--pad-mobile); }
	.mfm-process__col--right { padding-left: 0; }
	.mfm-process__col--left { border-right: none; border-bottom: 1px solid rgba(10,10,10,.1); }
	.mfm-bento__grid { grid-template-columns: 1fr; }
	.mfm-bento__card--wide,
	.mfm-bento__card--full { grid-column: 1/-1; }
	.mfm-bento__card--full { grid-template-columns: 1fr; text-align: left; gap: 24px; }
	.mfm-bento__card--full .mfm-bento__metric { text-align: left; }
	.mfm-results__grid { grid-template-columns: 1fr; }
	.mfm-results__cell { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
	.mfm-testimonials__grid { grid-template-columns: 1fr; }
	.mfm-testimonials__featured { grid-template-columns: 1fr; }
	.mfm-stats__inner { grid-template-columns: 1fr 1fr; }
	.mfm-consult__inner { grid-template-columns: 1fr; }
	.mfm-consult__col--left,
	.mfm-consult__col--right { padding: 56px var(--pad-mobile); border-right: none; }
	.mfm-consult__col--photo { order: -1; max-height: 320px; }
	.mfm-method__row { grid-template-columns: 1fr 1fr; }
}

/* Hide Xpro theme builder sticky widget on MFM landing pages */
.xpro-theme-builder-frontend,
.xpro-theme-builder-mount {
	display: none !important;
}
