/* Maquette standalone — Page d'accueil 2026
   Aucun lien avec le thème WordPress en production. */

*, *::before, *::after { box-sizing: border-box; }

:root {
	--brand-orange: #e98030;
	--brand-orange-hover: #d56f20;
	--brand-orange-soft: #fff4eb;
	--brand-orange-light: #ffcaa1;
	--brand-yellow: #ecc059;
	--bg-page: #f8f8f8;
	--bg-card: #ffffff;
	--bg-dark: #000000;
	--border: #ededed;
	--text: #000000;
	--text-muted: #666666;
	--link: #e98030;
	--radius: 16px;
	--radius-sm: 10px;
	--max: 1280px;
	--font: 'muli', sans-serif;
	--font-display: 'Montserrat', sans-serif;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--reveal-duration: 0.7s;
	--hero-parallax: 0;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.reveal { opacity: 1 !important; transform: none !important; }
	body.is-loaded .hero-kinetic__cell { animation: none !important; }
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg-page);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

body:not(.is-loaded) .hero__intro,
body:not(.is-loaded) .hero-kinetic,
body:not(.is-loaded) .hero__paths,
body:not(.is-loaded) .site-header__inner {
	opacity: 0;
}

.hero__intro {
	transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
body.is-loaded .hero__intro { opacity: 1; transform: translateY(0); }
body:not(.is-loaded) .hero__intro { transform: translateY(20px); }

.hero-kinetic {
	transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
	transition-delay: 0.12s;
}
body.is-loaded .hero-kinetic { opacity: 1; transform: translateY(0) scale(1); }
body:not(.is-loaded) .hero-kinetic { transform: translateY(32px) scale(0.97); }

.hero__paths {
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
	transition-delay: 0.28s;
}
body.is-loaded .hero__paths { opacity: 1; transform: translateY(0); }
body:not(.is-loaded) .hero__paths { transform: translateY(16px); }

@keyframes kinetic-cell-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
body.is-loaded .hero-kinetic__cell:nth-child(1) { animation: kinetic-cell-float 6s var(--ease-out) 0.2s infinite; }
body.is-loaded .hero-kinetic__cell:nth-child(3) { animation: kinetic-cell-float 5.5s var(--ease-out) 0.8s infinite; }
body.is-loaded .hero-kinetic__cell:nth-child(5) { animation: kinetic-cell-float 6.5s var(--ease-out) 1.1s infinite; }
body.is-loaded .hero-kinetic__cell:nth-child(7) { animation: kinetic-cell-float 5s var(--ease-out) 0.5s infinite; }

.site-header__inner {
	transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
body.is-loaded .site-header__inner { opacity: 1; transform: translateY(0); }
body:not(.is-loaded) .site-header__inner { transform: translateY(-8px); }

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity var(--reveal-duration) var(--ease-out),
		transform var(--reveal-duration) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }

.mock-banner {
	background: #000;
	color: #fff;
	font-size: 13px;
	text-align: center;
	padding: 10px 16px;
}
.mock-banner strong { color: var(--brand-orange); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248, 248, 248, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}
.site-header__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.logo {
	font-weight: 700;
	font-size: 15px;
	color: var(--text);
	text-decoration: none;
	letter-spacing: -0.02em;
}
.logo span { color: var(--brand-orange); }
.nav { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.nav a {
	color: var(--text-muted);
	font-size: 13px;
	text-decoration: none;
	font-weight: 500;
}
.nav a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
	background: var(--brand-orange);
	color: #fff !important;
	padding: 8px 16px;
	border: 2px solid var(--brand-orange);
}
.nav-cta:hover {
	background: #fff;
	color: var(--brand-orange) !important;
}

.wrapper { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section-title {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin: 0 0 40px;
	line-height: 1.2;
}
.section-title--center { text-align: center; }

/* Hero — scène centrale accueil */
.hero {
	position: relative;
	overflow: hidden;
	padding: 40px 0 56px;
}
.hero--stage {
	padding-bottom: 64px;
}
.hero__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	transform: translate3d(0, calc(var(--hero-parallax, 0) * 1px), 0);
}
.hero__ambient-base {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, #fff 0%, #fffaf5 42%, #f8f8f8 100%);
}
.hero__grid-lines {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.hero__orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.hero__orb--orange {
	width: min(95vw, 1000px);
	height: min(95vw, 1000px);
	top: -40%;
	left: 50%;
	margin-left: calc(min(95vw, 1000px) / -2);
	opacity: 0.9;
	background: radial-gradient(
		circle,
		rgba(233, 128, 48, 0.34) 0%,
		rgba(233, 128, 48, 0.18) 24%,
		rgba(255, 196, 140, 0.08) 44%,
		transparent 68%
	);
	animation: hero-drift-orange 10s ease-in-out infinite;
	will-change: transform;
}
.hero__orb--orange-b {
	width: min(60vw, 520px);
	height: min(60vw, 520px);
	top: 10%;
	left: 20%;
	opacity: 0.55;
	background: radial-gradient(
		circle,
		rgba(255, 160, 80, 0.25) 0%,
		rgba(233, 128, 48, 0.08) 40%,
		transparent 70%
	);
	animation: hero-drift-orange-b 13s ease-in-out infinite reverse;
	will-change: transform;
}
.hero__orb--gray {
	width: min(50vw, 480px);
	height: min(50vw, 480px);
	bottom: -5%;
	right: -8%;
	opacity: 0.5;
	background: radial-gradient(
		circle,
		rgba(0, 0, 0, 0.06) 0%,
		transparent 68%
	);
}
@keyframes hero-drift-orange {
	0% { transform: translate(-8%, 0) scale(1); }
	33% { transform: translate(6%, 10%) scale(1.1); }
	66% { transform: translate(-4%, -8%) scale(0.96); }
	100% { transform: translate(8%, 4%) scale(1.06); }
}
@keyframes hero-drift-orange-b {
	0% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(12%, -10%) scale(1.15); }
	100% { transform: translate(-8%, 12%) scale(0.92); }
}
@keyframes kinetic-mesh-a {
	0% { transform: translate(0, 0) scale(1); opacity: 0.75; }
	50% { transform: translate(14%, -12%) scale(1.18); opacity: 0.95; }
	100% { transform: translate(-10%, 10%) scale(1.05); opacity: 0.8; }
}
@keyframes kinetic-mesh-b {
	0% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-16%, 8%) scale(1.12); }
	100% { transform: translate(10%, -14%) scale(0.9); }
}

.hero__shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.hero__intro {
	max-width: 820px;
	text-align: center;
}
.hero__eyebrow {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand-orange);
	margin: 0 0 20px;
}
.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4.2vw, 2.85rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin: 0 0 18px;
	text-transform: uppercase;
}
.hero__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 12px;
}
.hero__title-row > span:first-child {
	color: var(--text);
}
.hero__slash {
	font-weight: 400;
	color: var(--text-muted);
	font-size: 0.85em;
}
.hero__chip {
	font-style: normal;
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.92em;
	letter-spacing: -0.02em;
}
.hero__chip--ps {
	background: rgba(233, 128, 48, 0.14);
	color: #c86a18;
	box-shadow: inset 0 0 0 1px rgba(233, 128, 48, 0.35);
}
.hero__chip--wp {
	background: rgba(0, 0, 0, 0.06);
	color: var(--text);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.hero__title-sub {
	display: block;
	margin-top: 14px;
	font-size: clamp(1.1rem, 2.4vw, 1.45rem);
	font-weight: 700;
	color: var(--text-muted);
	letter-spacing: -0.02em;
}
.hero__subtitle {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin: 0 auto 22px;
	line-height: 1.55;
	max-width: 560px;
}
.hero__metrics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 14px;
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
}
.hero__metrics li {
	font-size: 13px;
	color: var(--text-muted);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--border);
	padding: 8px 14px;
	border-radius: 999px;
	backdrop-filter: blur(8px);
}
.hero__metrics strong {
	color: var(--brand-orange);
	font-weight: 700;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* Bento glass kinetic — UX 2026 (sans mockup navigateur) */
.hero-kinetic {
	position: relative;
	width: min(100%, 880px);
	min-height: 300px;
	opacity: 0;
	padding: 8px 0 16px;
}
.hero-kinetic__mesh {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: none;
}
.hero-kinetic__mesh--a {
	width: 72%;
	height: 72%;
	top: 8%;
	left: 14%;
	background: radial-gradient(
		circle,
		rgba(233, 128, 48, 0.42) 0%,
		rgba(233, 128, 48, 0.2) 28%,
		rgba(255, 200, 150, 0.06) 50%,
		transparent 72%
	);
	animation: kinetic-mesh-a 9s ease-in-out infinite;
	will-change: transform, opacity;
}
.hero-kinetic__mesh--b {
	width: 48%;
	height: 48%;
	bottom: 0;
	right: 8%;
	background: radial-gradient(
		circle,
		rgba(255, 180, 100, 0.35) 0%,
		rgba(233, 128, 48, 0.12) 35%,
		transparent 68%
	);
	animation: kinetic-mesh-b 11s ease-in-out infinite reverse;
	will-change: transform;
}
.hero-kinetic__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, minmax(76px, auto));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hero-kinetic__cell {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.hero-kinetic__cell--wide { grid-column: span 2; }
.hero-kinetic__cell--stat strong {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--brand-orange);
	line-height: 1;
	letter-spacing: -0.03em;
}
.hero-kinetic__cell--stat span {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
}
.hero-kinetic__cell--pill {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.hero-kinetic__cell--ps {
	background: rgba(255, 244, 235, 0.88);
	border-color: rgba(233, 128, 48, 0.35);
	color: #c86a18;
}
.hero-kinetic__cell--wp {
	background: rgba(0, 0, 0, 0.04);
	color: var(--text);
}
.hero-kinetic__cell--cert {
	grid-column: span 2;
	align-items: center;
	text-align: center;
	color: var(--text-muted);
}
.hero-kinetic__cell--speed {
	grid-column: span 2;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, rgba(233, 128, 48, 0.16), rgba(255, 255, 255, 0.8));
	border-color: rgba(233, 128, 48, 0.3);
}
.hero-kinetic__cell--speed strong {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--brand-orange);
}
.hero-kinetic__cell--speed span {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 600;
}
.hero-kinetic__cell--project {
	padding: 0;
	overflow: hidden;
	position: relative;
	min-height: 88px;
}
.hero-kinetic__cell--project img {
	width: 100%;
	height: 100%;
	min-height: 88px;
	object-fit: cover;
	border-radius: 18px;
}
.hero-kinetic__cell--project span {
	position: absolute;
	left: 10px;
	bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.45);
}

/* Entrées rapides PS / WP */
.hero__paths {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	width: min(100%, 920px);
	opacity: 0;
}
.hero-path {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.hero-path:hover {
	text-decoration: none;
	border-color: var(--brand-orange);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(233, 128, 48, 0.12);
}
.hero-path__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 18px;
	color: #fff;
	background: var(--brand-orange);
}
.hero-path--wp .hero-path__icon {
	background: #111;
}
.hero-path__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.hero-path__body strong {
	font-family: var(--font-display);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}
.hero-path__body span {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.4;
}
.hero-path__arrow {
	margin-left: auto;
	flex-shrink: 0;
	font-size: 1.25rem;
	color: var(--brand-orange);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.2s, transform 0.2s;
}
.hero-path:hover .hero-path__arrow {
	opacity: 1;
	transform: translateX(0);
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--brand-orange);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 26px;
	border-radius: 0;
	text-decoration: none;
	border: 2px solid var(--brand-orange);
	cursor: pointer;
	transition: color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.btn:hover {
	background: #fff;
	color: var(--brand-orange);
	text-decoration: none;
}
.btn--outline {
	background: #fff;
	color: var(--text);
	border: 2px solid var(--border);
}
.btn--outline:hover {
	background: var(--brand-orange-soft);
	border-color: var(--brand-orange);
	color: var(--brand-orange);
}
.btn--dark {
	background: var(--bg-dark);
	border-color: var(--bg-dark);
}
.btn--dark:hover {
	background: #fff;
	color: var(--bg-dark);
}

.trust {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--bg-card);
	padding: 20px 0;
}
.trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	text-align: center;
}
.trust__item strong {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--brand-orange);
}
.trust__item span {
	font-size: 13px;
	color: var(--text-muted);
}

/* Services bento — 9 blocs accueil */
.services-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: auto;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.services-bento > li {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	transition: border-color 0.2s, box-shadow 0.2s;
	overflow: hidden;
}
.services-bento > li::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	background: radial-gradient(
		420px circle at var(--spot-x, 50%) var(--spot-y, 50%),
		rgba(233, 128, 48, 0.14) 0%,
		transparent 55%
	);
	transition: opacity 0.25s;
	pointer-events: none;
}
.services-bento > li.is-spotlit::before { opacity: 1; }
.services-bento > li:hover {
	border-color: var(--brand-orange);
	box-shadow: 0 8px 32px rgba(233, 128, 48, 0.12);
}
.services-bento > li:nth-child(1),
.services-bento > li:nth-child(5),
.services-bento > li:nth-child(9) {
	grid-column: span 2;
}
.service-icon {
	width: 44px;
	height: 44px;
	border-radius: 0;
	background: var(--brand-orange-soft);
	color: var(--brand-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 16px;
}
.services-bento h2,
.services-bento h3 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.services-bento p {
	margin: 0 0 12px;
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.55;
}
.services-bento .link {
	font-size: 14px;
	font-weight: 600;
	color: var(--brand-orange);
	text-decoration: none;
}
.services-bento .link:hover { text-decoration: underline; }

/* Modules CTA */
.modules-banner {
	background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
	color: #fff;
	border-radius: var(--radius);
	padding: 40px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.modules-banner h2 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 1.2rem;
	text-transform: uppercase;
	color: #fff;
}
.modules-banner p {
	margin: 0;
	color: #bbb;
	max-width: 560px;
}
.modules-banner .btn:hover {
	background: var(--brand-orange);
	color: #fff;
	border-color: var(--brand-orange);
}

/* Bandeau humain */
.human-strip {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
	background: var(--bg-card);
}
.human-strip__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px 32px;
	align-items: center;
}
.human-strip__photo {
	margin: 0;
	flex-shrink: 0;
}
.human-strip__photo img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--brand-orange-light);
	box-shadow: 0 8px 24px rgba(233, 128, 48, 0.15);
}
.human-strip__eyebrow {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--brand-orange);
}
.human-strip__text h2 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.human-strip__text p {
	margin: 0;
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.5;
	max-width: 520px;
}
.human-strip__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}

/* Preuve sociale punchy */
.proof-wall {
	padding: 64px 0;
}
.proof-wall__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 32px;
	margin-bottom: 36px;
}
.proof-wall__score {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 12px;
}
.proof-wall__stars {
	color: var(--brand-orange);
	font-size: 1.1rem;
	letter-spacing: 0.08em;
}
.proof-wall__score strong {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.proof-wall__score span {
	font-size: 14px;
	color: #999;
}
.proof-wall__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	color: #fff;
	flex: 1;
	min-width: 200px;
}
.btn--light {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.35);
}
.btn--light:hover {
	background: #fff;
	color: var(--text) !important;
	border-color: #fff;
}
.proof-ticker {
	overflow: hidden;
	margin-bottom: 28px;
	padding: 14px 0;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.proof-ticker__track {
	display: flex;
	gap: 48px;
	width: max-content;
	animation: proof-marquee 28s linear infinite;
}
.proof-ticker__track span {
	font-size: 15px;
	font-weight: 600;
	color: #ccc;
	white-space: nowrap;
}
.proof-ticker__track span::before {
	content: "★ ";
	color: var(--brand-orange);
}
@keyframes proof-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.proof-spotlight {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.proof-spotlight__card {
	padding: 28px 24px;
	border-radius: var(--radius);
	background: #141414;
	border: 1px solid #2a2a2a;
	transition: border-color 0.2s, transform 0.25s;
}
.proof-spotlight__card:hover {
	border-color: var(--brand-orange);
	transform: translateY(-4px);
}
.proof-spotlight__card--accent {
	background: linear-gradient(145deg, rgba(233, 128, 48, 0.18), #141414);
	border-color: rgba(233, 128, 48, 0.35);
}
.proof-spotlight__quote {
	margin: 0 0 12px;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.proof-spotlight__detail {
	margin: 0 0 16px;
	font-size: 14px;
	color: #999;
	line-height: 1.5;
}
.proof-spotlight__detail strong {
	color: var(--brand-orange-light);
}
.proof-spotlight__author {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #666;
}

/* Hub contact */
.contact-hub {
	background: var(--brand-orange-soft);
	border-top: 2px solid var(--brand-orange-light);
}
.contact-hub__intro {
	margin-bottom: 32px;
}
.contact-hub__intro .section-title {
	margin-bottom: 8px;
}
.contact-hub__intro p {
	margin: 0;
	color: var(--text-muted);
	font-size: 16px;
}
.contact-hub__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.contact-hub__card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 28px 24px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.contact-hub__card:hover {
	text-decoration: none;
	border-color: var(--brand-orange);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(233, 128, 48, 0.12);
}
.contact-hub__card--primary {
	background: var(--bg-dark);
	border-color: var(--bg-dark);
	color: #fff;
}
.contact-hub__card--primary:hover {
	background: var(--brand-orange);
	border-color: var(--brand-orange);
	color: #fff;
}
.contact-hub__card--primary span {
	color: #bbb;
}
.contact-hub__card--primary:hover span {
	color: rgba(255, 255, 255, 0.85);
}
.contact-hub__card strong {
	font-family: var(--font-display);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}
.contact-hub__card span {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.45;
}

/* Logos clients */
.logos-marquee {
	overflow: hidden;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--bg-card);
	padding: 24px 0;
}
.logos-marquee__track {
	display: flex;
	gap: 48px;
	width: max-content;
	animation: marquee 40s linear infinite;
}
.logos-marquee__track span {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
}
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.logos-marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
	.proof-ticker__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* Piliers PS / WP */
.pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.pillar-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 32px;
	transition: border-color 0.2s, transform 0.25s;
}
.pillar-card:hover {
	border-color: var(--brand-orange);
	transform: translateY(-3px);
}
.pillar-card--accent {
	background: var(--brand-orange-soft);
	border-color: var(--brand-orange-light);
}
.pillar-card h2 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	text-transform: uppercase;
	margin: 0 0 16px;
	line-height: 1.25;
}
.pillar-card p {
	margin: 0 0 12px;
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.55;
}
.pillar-card .link {
	font-weight: 600;
	color: var(--brand-orange);
}

.section--dark {
	background: var(--bg-dark);
	color: #f5f5f5;
}
.section--dark .section-title { color: #fff; }
.section--dark a { color: var(--brand-orange-light); }

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}
.portfolio-grid li {
	border-radius: var(--radius);
	overflow: hidden;
	background: #222;
	border: 1px solid #333;
	transition: transform 0.25s;
}
.portfolio-grid li:hover { transform: translateY(-4px); }
.portfolio-grid a { display: block; text-decoration: none; color: inherit; }
.portfolio-grid .thumb {
	aspect-ratio: 4/3;
	background: #333;
	position: relative;
	overflow: hidden;
}
.portfolio-grid .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.portfolio-grid .meta { padding: 16px 18px; }
.portfolio-grid .meta h3 {
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}
.portfolio-grid .meta span {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.portfolio-cta { text-align: center; }

/* Blog grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}
.blog-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s, transform 0.25s;
}
.blog-card:hover {
	border-color: var(--brand-orange);
	transform: translateY(-3px);
}
.blog-card a { display: block; text-decoration: none; color: inherit; }
.blog-card .thumb {
	aspect-ratio: 16/9;
	background: #eee;
	overflow: hidden;
}
.blog-card .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-card .meta { padding: 20px 22px; }
.blog-card .cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand-orange);
	margin-bottom: 8px;
}
.blog-card h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--text);
}

.cta-band {
	background: var(--brand-orange-soft);
	border-top: 2px solid var(--brand-orange-light);
	border-bottom: 2px solid var(--brand-orange-light);
}
.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cta-band h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.cta-band p {
	margin: 4px 0 0;
	color: var(--text-muted);
	font-size: 15px;
}

.faq-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	align-items: start;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar p {
	color: var(--text-muted);
	font-size: 15px;
	margin: 0 0 20px;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.faq-item summary {
	padding: 18px 22px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--brand-orange);
	flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
	padding: 0 22px 20px;
	font-size: 15px;
	color: var(--text-muted);
	border-top: 1px solid var(--border);
}
.faq-item .faq-body p:first-child { margin-top: 16px; }
.faq-item .faq-body p { margin: 0 0 12px; }
.faq-item .faq-body ul { margin: 0 0 12px; padding-left: 20px; }
.faq-item .faq-body strong { color: var(--text); }

.geo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.geo-grid a {
	display: block;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 24px 20px;
	text-decoration: none;
	color: var(--text);
	transition: border-color 0.2s;
}
.geo-grid a:hover {
	border-color: var(--brand-orange);
	text-decoration: none;
}
.geo-grid strong {
	display: block;
	font-size: 1.05rem;
	margin-bottom: 4px;
}
.geo-grid span {
	font-size: 13px;
	color: var(--text-muted);
}

.site-footer {
	background: var(--bg-dark);
	color: #999;
	padding: 48px 0 32px;
	font-size: 14px;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.site-footer h3 {
	color: #fff;
	font-size: 15px;
	margin: 0 0 12px;
}
.site-footer a { color: #bbb; }
.site-footer__bottom {
	border-top: 1px solid #333;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.seo-note {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: var(--radius-sm);
	padding: 20px 24px;
	margin-top: 48px;
	font-size: 14px;
	color: #166534;
}
.seo-note ul { margin: 8px 0 0; padding-left: 20px; }

@media (max-width: 960px) {
	.hero__paths { grid-template-columns: 1fr; }
	.hero-kinetic__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}
	.hero-kinetic__cell--wide,
	.hero-kinetic__cell--speed,
	.hero-kinetic__cell--cert { grid-column: span 2; }
	.human-strip__inner {
		grid-template-columns: auto 1fr;
	}
	.human-strip__actions {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.proof-wall__head { flex-direction: column; align-items: flex-start; }
	.proof-spotlight { grid-template-columns: 1fr; }
	.contact-hub__grid { grid-template-columns: 1fr; }
	.trust__grid { grid-template-columns: repeat(2, 1fr); }
	.services-bento { grid-template-columns: 1fr 1fr; }
	.services-bento > li:nth-child(1),
	.services-bento > li:nth-child(5),
	.services-bento > li:nth-child(9) { grid-column: span 2; }
	.pillars { grid-template-columns: 1fr; }
	.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.blog-grid { grid-template-columns: 1fr; }
	.faq-layout { grid-template-columns: 1fr; }
	.faq-sidebar { position: static; }
	.geo-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr; }
	.nav { display: none; }
}

@media (max-width: 767px) {
	.hero__ambient { transform: none; }
	.hero__orb--orange,
	.hero__orb--orange-b { animation: none; will-change: auto; }
	.hero-kinetic__mesh { animation: none !important; }
	.hero-kinetic__grid { grid-template-columns: 1fr; }
	.hero-kinetic__cell--wide,
	.hero-kinetic__cell--speed,
	.hero-kinetic__cell--cert { grid-column: span 1; }
	.human-strip__inner { grid-template-columns: 1fr; text-align: center; }
	.human-strip__photo { justify-self: center; }
	.human-strip__actions { justify-content: center; }
}

@media (max-width: 600px) {
	.section { padding: 48px 0; }
	.services-bento,
	.services-bento > li:nth-child(1),
	.services-bento > li:nth-child(5),
	.services-bento > li:nth-child(9) {
		grid-template-columns: 1fr;
		grid-column: span 1;
	}
	.portfolio-grid { grid-template-columns: 1fr; }
	.geo-grid { grid-template-columns: 1fr; }
	.modules-banner { padding: 28px 24px; }
	.cta-band__inner { flex-direction: column; text-align: center; }
}
