/* =====================================================================
   Flowaivo Agency — « Le Pipeline » — noir bleuté + bleu électrique
   ===================================================================== */

:root {
	--void: #04070F;
	--deep: #0A1120;
	--edge: #14203A;
	--flux: #3D7BFF;
	--flux-bright: #6EA8FF;
	--flux-2: #46E0D4;
	--ice: #E9EFFA;
	--mist: #8B97AD;
	--font-display: "Syne", sans-serif;
	--font-body: "Instrument Sans", sans-serif;
	--font-mono: "JetBrains Mono", monospace;
	--w-content: 1200px;
	--pad-x: clamp(20px, 4vw, 48px);
	--rule: 1px solid rgba(61, 123, 255, 0.16);
	--radius: 14px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--void);
	color: var(--ice);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--flux-bright); text-decoration: none; }
a:hover { color: var(--ice); }

:focus-visible { outline: 2px solid var(--flux); outline-offset: 3px; border-radius: 3px; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px; width: 1px;
	overflow: hidden; position: absolute;
}

.skip-link:focus {
	clip: auto; clip-path: none;
	height: auto; width: auto;
	position: fixed; top: 12px; left: 12px; z-index: 999;
	background: var(--flux); color: var(--void);
	padding: 10px 16px; border-radius: 8px; font-weight: 600;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 0.5em; }

.fw-eyebrow {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--mist);
	letter-spacing: 0.02em;
	margin: 0 0 14px;
}

.fw-eyebrow__prompt { color: var(--flux); font-weight: 600; }

.fw-section__title { font-size: clamp(30px, 4.4vw, 52px); max-width: 20ch; }

.fw-section {
	max-width: var(--w-content);
	margin: 0 auto;
	padding: clamp(70px, 9vw, 130px) var(--pad-x);
	position: relative;
	z-index: 1;
}

.fw-section__head { margin-bottom: clamp(34px, 5vw, 60px); }

/* ---------- Buttons ---------- */
.fw-btn {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--void);
	background: var(--flux);
	padding: 14px 26px;
	border: 1px solid var(--flux);
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.fw-btn:hover {
	color: var(--void);
	background: var(--flux-bright);
	transform: translateY(-2px);
	box-shadow: 0 10px 34px rgba(61, 123, 255, 0.35);
}

.fw-btn--ghost { background: transparent; color: var(--ice); border-color: rgba(233, 239, 250, 0.25); }
.fw-btn--ghost:hover { background: rgba(61, 123, 255, 0.1); color: var(--ice); box-shadow: none; border-color: var(--flux); }
.fw-btn--large { padding: 17px 34px; font-size: 15.5px; }
.fw-btn--nav { padding: 10px 18px; font-size: 13px; }

.fw-link { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--flux-bright); }
.fw-link:hover { color: var(--flux-2); }

/* ---------- Header ---------- */
.fw-header {
	position: sticky; top: 0; z-index: 90;
	background: rgba(4, 7, 15, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: var(--rule);
}

.fw-header__inner {
	max-width: var(--w-content);
	margin: 0 auto;
	padding: 14px var(--pad-x);
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.fw-brand { display: flex; align-items: center; gap: 10px; }

.fw-brand__mark {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 18px;
	color: var(--flux);
	background: var(--deep);
	border: var(--rule);
	border-radius: 8px;
	padding: 4px 8px;
}

.fw-brand__name { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--ice); letter-spacing: -0.01em; }
.fw-brand__name em { font-style: normal; color: var(--flux); }

.fw-nav { display: flex; align-items: center; gap: 26px; }

.fw-nav__list { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.fw-nav__list a { color: var(--mist); font-size: 15px; font-weight: 500; }
.fw-nav__list a:hover, .fw-nav__list .current-menu-item a { color: var(--ice); }

.fw-nav__extra { display: flex; align-items: center; gap: 14px; }

.fw-lang {
	font-family: var(--font-mono);
	font-size: 12.5px; font-weight: 600;
	color: var(--mist);
	border: var(--rule);
	border-radius: 8px;
	padding: 7px 11px;
}
.fw-lang:hover { color: var(--flux); border-color: var(--flux); }

.fw-burger { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.fw-burger span { display: block; width: 24px; height: 2px; background: var(--ice); margin: 5px 0; transition: transform 0.3s var(--ease); }

/* ---------- Flow line ---------- */
.fw-flowline {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	pointer-events: none;
	z-index: 0;
}

.fw-flowline path {
	stroke: url(#fwFlowGradient);
	stroke-width: 2;
	opacity: 0.6;
}

/* ---------- Hero « compile » ---------- */
.fw-hero {
	position: relative;
	min-height: 200vh; /* piste de défilement pour la compilation */
	z-index: 1;
}

.fw-hero__stage {
	position: sticky;
	top: 0;
	min-height: 100svh;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(30px, 5vw, 70px);
	max-width: var(--w-content);
	margin: 0 auto;
	padding: 90px var(--pad-x) 60px;
	overflow: hidden;
}

.fw-hero__glow {
	position: absolute;
	width: 70vmax; height: 70vmax;
	left: 50%; top: 10%;
	transform: translateX(-10%);
	background: radial-gradient(closest-side, rgba(61, 123, 255, 0.16), rgba(70, 224, 212, 0.05) 55%, transparent 75%);
	pointer-events: none;
}

.fw-hero__title { font-size: clamp(38px, 5.6vw, 68px); }
.fw-hero__title em { font-style: normal; color: var(--flux); }

.fw-hero__lead { color: var(--mist); font-size: clamp(16px, 1.6vw, 19px); max-width: 46ch; margin: 0 0 30px; }

.fw-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Compile panel */
.fw-compile { position: relative; min-height: 420px; }

.fw-editor, .fw-browser {
	position: absolute; inset: 0;
	border-radius: var(--radius);
	border: var(--rule);
	background: var(--deep);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	will-change: transform, opacity;
}

.fw-editor__bar, .fw-browser__bar {
	display: flex; align-items: center; gap: 8px;
	padding: 11px 16px;
	background: var(--edge);
	font-family: var(--font-mono); font-size: 11.5px; color: var(--mist);
}

.fw-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(233, 239, 250, 0.18); }
.fw-dot--a { background: rgba(61, 123, 255, 0.8); }

.fw-editor__code { padding: 20px 22px; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.9; }

.fw-codeline { display: block; white-space: pre; will-change: transform, opacity; }
.fw-codeline .c-kw { color: var(--flux-bright); }
.fw-codeline .c-str { color: var(--flux-2); }
.fw-codeline .c-com { color: var(--mist); opacity: 0.7; }
.fw-codeline .c-fn { color: #B7C7FF; }

.fw-compile__status {
	position: absolute; left: 16px; right: 16px; bottom: 14px;
	font-family: var(--font-mono); font-size: 12px; color: var(--mist);
	background: rgba(4, 7, 15, 0.85);
	border: var(--rule); border-radius: 9px;
	padding: 9px 13px;
	display: flex; align-items: center; gap: 10px;
	z-index: 3;
}

.fw-compile__track { flex: 1; height: 4px; border-radius: 4px; background: var(--edge); overflow: hidden; }
.fw-compile__fill { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--flux), var(--flux-2)); transform: scaleX(0); transform-origin: left; }
.fw-compile__label--done { color: var(--flux-2); opacity: 0; }

/* Browser mockup (mini-site CSS pur) */
.fw-browser { opacity: 0; transform: translateY(26px) scale(0.96); }
.fw-browser__view { padding: 22px; display: grid; gap: 14px; }
.fw-mock__hero { height: 96px; border-radius: 10px; background: linear-gradient(120deg, var(--edge), rgba(61, 123, 255, 0.35)); position: relative; overflow: hidden; }
.fw-mock__hero::after { content: ""; position: absolute; left: 14px; top: 22px; width: 46%; height: 12px; border-radius: 6px; background: rgba(233, 239, 250, 0.85); box-shadow: 0 22px 0 -3px rgba(233, 239, 250, 0.4), 0 40px 0 0 rgba(61, 123, 255, 0.9); }
.fw-mock__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fw-mock__card { height: 64px; border-radius: 9px; background: var(--edge); border: var(--rule); position: relative; }
.fw-mock__card::after { content: ""; position: absolute; left: 10px; top: 12px; width: 55%; height: 8px; border-radius: 4px; background: rgba(139, 151, 173, 0.6); box-shadow: 0 16px 0 -2px rgba(139, 151, 173, 0.35); }
.fw-mock__cta { height: 34px; width: 42%; border-radius: 8px; background: var(--flux); justify-self: start; }

.fw-hero__hint {
	position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
	font-family: var(--font-mono); font-size: 12px; color: var(--mist);
	transition: opacity 0.4s;
	z-index: 3;
}
.fw-hero__hint.is-hidden { opacity: 0; }

/* ---------- Proof counters ---------- */
.fw-proof { border-top: var(--rule); border-bottom: var(--rule); background: linear-gradient(180deg, rgba(10, 17, 32, 0.7), rgba(4, 7, 15, 0)); }
.fw-proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.fw-stat dt { font-size: 13.5px; color: var(--mist); order: 2; }
.fw-stat dd { margin: 0; font-family: var(--font-mono); font-weight: 600; font-size: clamp(30px, 3.4vw, 46px); color: var(--flux-bright); }
.fw-stat dd .fw-count { display: inline-block; min-width: 1ch; }
.fw-stat { display: flex; flex-direction: column; gap: 4px; }

/* ---------- Services ---------- */
.fw-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.fw-service {
	position: relative;
	background: var(--deep);
	border: var(--rule);
	border-radius: var(--radius);
	padding: 30px 26px 26px;
	overflow: hidden;
	transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.fw-service:hover { transform: translateY(-5px); border-color: rgba(61, 123, 255, 0.5); box-shadow: 0 18px 50px rgba(61, 123, 255, 0.15); }

.fw-service__cmd { font-family: var(--font-mono); font-size: 12px; color: var(--flux); margin: 0 0 16px; }
.fw-service__title { font-size: 23px; margin-bottom: 10px; }
.fw-service__desc { color: var(--mist); font-size: 15.5px; margin: 0 0 18px; }
.fw-service__list { list-style: none; margin: 0 0 20px; padding: 0; }
.fw-service__list li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--ice); margin-bottom: 7px; }
.fw-service__list li::before { content: "→"; position: absolute; left: 0; color: var(--flux); font-family: var(--font-mono); }

/* ---------- Integrations ---------- */
.fw-integrations__panel {
	background: var(--deep);
	border: var(--rule);
	border-radius: var(--radius);
	padding: clamp(28px, 4vw, 48px);
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(26px, 4vw, 54px);
	align-items: center;
	position: relative;
	overflow: hidden;
}

.fw-integrations__media { border-radius: 10px; min-height: 240px; background-size: cover; background-position: center; border: var(--rule); }

.fw-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; }
.fw-chip {
	font-family: var(--font-mono); font-size: 13px; font-weight: 600;
	color: var(--ice);
	background: var(--edge);
	border: var(--rule);
	border-radius: 999px;
	padding: 8px 15px;
	transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.fw-chip:hover { border-color: var(--flux); color: var(--flux-bright); transform: translateY(-2px); }

/* ---------- Pipeline steps ---------- */
.fw-pipeline__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: pipeline; }

.fw-pipestep {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 20px;
	align-items: start;
	background: var(--deep);
	border: var(--rule);
	border-radius: var(--radius);
	padding: 24px 26px;
	position: relative;
}

.fw-pipestep__no {
	font-family: var(--font-mono); font-weight: 600; font-size: 15px;
	color: var(--flux);
	background: var(--edge);
	border: 1px solid rgba(61, 123, 255, 0.4);
	border-radius: 10px;
	width: 52px; height: 52px;
	display: grid; place-items: center;
}

.fw-pipestep h3 { font-size: 20px; margin-bottom: 6px; }
.fw-pipestep p { margin: 0; color: var(--mist); font-size: 15.5px; }
.fw-pipestep__tag { font-family: var(--font-mono); font-size: 11.5px; color: var(--flux-2); display: block; margin-top: 8px; }

/* ---------- Projects ---------- */
.fw-projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.fw-project { background: var(--deep); border: var(--rule); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s; }
.fw-project:hover { transform: translateY(-5px); border-color: rgba(61, 123, 255, 0.5); }

.fw-project__media { aspect-ratio: 8 / 5.6; background-size: cover; background-position: center; position: relative; }
.fw-project__type {
	position: absolute; left: 12px; top: 12px;
	font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
	color: var(--void);
	background: var(--flux);
	border-radius: 6px;
	padding: 5px 10px;
}

.fw-project__body { padding: 20px 22px 24px; }
.fw-project__title { font-size: 20px; margin-bottom: 8px; }
.fw-project__desc { color: var(--mist); font-size: 14.5px; margin: 0 0 12px; }
.fw-project__stack { font-family: var(--font-mono); font-size: 12px; color: var(--flux-2); margin: 0 0 12px; }

/* ---------- Quotes ---------- */
.fw-quotes__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.fw-quote { margin: 0; background: var(--deep); border: var(--rule); border-left: 3px solid var(--flux); border-radius: var(--radius); padding: 26px 28px; }
.fw-quote p { margin: 0 0 16px; font-size: 16.5px; }
.fw-quote cite { font-style: normal; font-weight: 600; font-family: var(--font-mono); font-size: 13.5px; color: var(--flux-bright); }
.fw-quote__meta { display: block; font-size: 13px; color: var(--mist); margin-top: 3px; }

/* ---------- Story / à propos ---------- */
.fw-story__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.fw-story__media { border-radius: var(--radius); overflow: hidden; border: var(--rule); }
.fw-story__media img { display: block; width: 100%; }
.fw-story__text p { color: var(--mist); }
.fw-story__text p strong { color: var(--ice); }

/* ---------- Inquiry (formulaire projet) ---------- */
.fw-contact__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(26px, 4vw, 54px); align-items: start; }

.fw-inq { background: var(--deep); border: var(--rule); border-radius: var(--radius); padding: clamp(24px, 3.4vw, 40px); }

.fw-inq__steps { list-style: none; display: flex; gap: 8px; margin: 0 0 26px; padding: 0; }
.fw-inq__steps li { flex: 1; display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12.5px; color: var(--mist); padding-bottom: 12px; border-bottom: 2px solid var(--edge); }
.fw-inq__steps li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; background: var(--edge); font-weight: 600; }
.fw-inq__steps li.is-active { color: var(--ice); border-color: var(--flux); }
.fw-inq__steps li.is-active span, .fw-inq__steps li.is-done span { background: var(--flux); color: var(--void); }
.fw-inq__steps li.is-done { border-color: rgba(61, 123, 255, 0.5); }

.fw-inq__step { border: none; margin: 0 0 8px; padding: 0; }
.fw-inq.is-enhanced .fw-inq__step { display: none; }
.fw-inq.is-enhanced .fw-inq__step.is-active { display: block; }

.fw-inq__legend { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 18px; }

.fw-inq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 12px; }

.fw-inq__opt { position: relative; display: block; background: var(--edge); border: 1px solid transparent; border-radius: 10px; padding: 15px 16px; cursor: pointer; transition: border-color 0.2s, background 0.2s; font-size: 15px; }
.fw-inq__opt:hover { border-color: rgba(61, 123, 255, 0.5); }
.fw-inq__opt input { position: absolute; opacity: 0; }
.fw-inq__opt input:checked + span { color: var(--flux-bright); font-weight: 600; }
.fw-inq__opt input:checked ~ * { color: var(--flux-bright); }
.fw-inq__opt:has(input:checked) { border-color: var(--flux); background: rgba(61, 123, 255, 0.1); }
.fw-inq__opt input:focus-visible + span { outline: 2px solid var(--flux); outline-offset: 6px; }

.fw-inq__fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.fw-inq__field { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.fw-inq__field--full { grid-column: 1 / -1; }
.fw-inq__field label { font-family: var(--font-mono); font-size: 12.5px; color: var(--mist); }
.fw-inq__field input, .fw-inq__field select, .fw-inq__field textarea {
	background: var(--edge);
	border: 1px solid rgba(61, 123, 255, 0.18);
	border-radius: 9px;
	color: var(--ice);
	font-family: var(--font-body);
	font-size: 15px;
	padding: 12px 14px;
}
.fw-inq__field input:focus, .fw-inq__field textarea:focus { outline: none; border-color: var(--flux); }

.fw-hp { position: absolute; left: -9999px; }

.fw-inq__nav { display: flex; gap: 12px; margin-top: 20px; }
.fw-inq__error { color: #FF9D9D; font-size: 14px; margin: 12px 0 0; }

.fw-contact__aside { background: var(--deep); border: var(--rule); border-radius: var(--radius); padding: 30px 28px; position: sticky; top: 96px; }
.fw-contact__aside-title { font-size: 21px; }
.fw-contact__aside p { color: var(--mist); font-size: 15px; }
.fw-contact__aside address { font-style: normal; }

.fw-alert { border-radius: 12px; padding: 16px 20px; margin-bottom: 24px; border: 1px solid; }
.fw-alert--ok { background: rgba(70, 224, 212, 0.08); border-color: rgba(70, 224, 212, 0.4); }
.fw-alert--warn { background: rgba(255, 157, 157, 0.07); border-color: rgba(255, 157, 157, 0.35); }
.fw-alert p { margin: 0; }

/* ---------- CTA ---------- */
.fw-cta { padding: clamp(70px, 9vw, 120px) var(--pad-x); position: relative; z-index: 1; }
.fw-cta__inner {
	max-width: var(--w-content); margin: 0 auto;
	background: linear-gradient(135deg, var(--deep), var(--edge));
	border: 1px solid rgba(61, 123, 255, 0.35);
	border-radius: 20px;
	padding: clamp(40px, 6vw, 80px);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.fw-cta__inner::before {
	content: "";
	position: absolute; inset: -40%;
	background: radial-gradient(closest-side, rgba(61, 123, 255, 0.22), transparent 70%);
	pointer-events: none;
}
.fw-cta__title { font-size: clamp(28px, 4vw, 46px); position: relative; }
.fw-cta__text { color: var(--mist); max-width: 52ch; margin: 0 auto 28px; position: relative; }
.fw-cta__inner .fw-btn { position: relative; }
.fw-cta__prompt { font-family: var(--font-mono); font-size: 13px; color: var(--flux-2); display: block; margin-bottom: 14px; position: relative; }

/* ---------- Footer ---------- */
.fw-footer { border-top: var(--rule); background: var(--deep); position: relative; z-index: 1; }
.fw-footer__inner { max-width: var(--w-content); margin: 0 auto; padding: clamp(44px, 6vw, 70px) var(--pad-x); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.fw-footer__tag { color: var(--mist); font-size: 15px; max-width: 34ch; }
.fw-footer__title { font-size: 14px; font-family: var(--font-mono); font-weight: 600; color: var(--mist); letter-spacing: 0.06em; text-transform: uppercase; }
.fw-footer__menu { list-style: none; margin: 0; padding: 0; }
.fw-footer__menu li { margin-bottom: 9px; }
.fw-footer__menu a { color: var(--ice); font-size: 15px; }
.fw-footer__menu a:hover { color: var(--flux-bright); }
.fw-footer__address { font-style: normal; color: var(--mist); font-size: 15px; line-height: 1.9; }
.fw-footer__bar { border-top: var(--rule); max-width: var(--w-content); margin: 0 auto; padding: 18px var(--pad-x); display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--mist); }
.fw-footer__bar p { margin: 0; }
.fw-footer__build { font-family: var(--font-mono); }

/* ---------- Reveals ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Elementor compat ---------- */
[data-elementor-type="wp-page"] > .e-con,
[data-elementor-type="wp-page"] .e-con-inner { max-width: 100%; }
[data-elementor-type="wp-page"] .elementor-widget:not(:last-child) { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
	.fw-hero__stage { grid-template-columns: 1fr; padding-top: 110px; }
	.fw-compile { min-height: 340px; }
	.fw-proof__grid { grid-template-columns: repeat(2, 1fr); }
	.fw-services__grid, .fw-projects__grid { grid-template-columns: 1fr 1fr; }
	.fw-integrations__panel { grid-template-columns: 1fr; }
	.fw-story__inner { grid-template-columns: 1fr; }
	.fw-contact__grid { grid-template-columns: 1fr; }
	.fw-contact__aside { position: static; }
}

@media (max-width: 720px) {
	.fw-nav {
		position: fixed; inset: 0; top: 61px;
		background: var(--void);
		flex-direction: column; align-items: flex-start;
		padding: 30px var(--pad-x);
		gap: 22px;
		transform: translateX(100%);
		transition: transform 0.35s var(--ease);
		z-index: 89;
	}
	.fw-nav.is-open { transform: none; }
	.fw-nav__list { flex-direction: column; gap: 16px; }
	.fw-nav__list a { font-size: 20px; }
	.fw-burger { display: block; }
	.fw-services__grid, .fw-projects__grid, .fw-quotes__grid, .fw-inq__grid, .fw-inq__fields { grid-template-columns: 1fr; }
	.fw-proof__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
	.fw-pipestep { grid-template-columns: 44px 1fr; padding: 18px; }
	.fw-pipestep__no { width: 40px; height: 40px; }
	.fw-hero { min-height: auto; }
	.fw-hero__stage { position: relative; min-height: auto; padding-top: 60px; }
	.fw-footer__inner { grid-template-columns: 1fr; }
	.fw-footer__bar { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.fw-hero { min-height: auto; }
	.fw-hero__stage { position: relative; min-height: auto; }
	.fw-editor { opacity: 0; }
	.fw-browser { opacity: 1; transform: none; }
	.fw-compile__fill { transform: scaleX(1); }
	.fw-compile__label--done { opacity: 1; }
	.fw-btn, .fw-service, .fw-project, .fw-chip { transition: none; }
	.fw-flowline { display: none; }
}
