/* =============================================================================
   home.css — GlobalReach Theme | Dark Corporate Redesign
   Dark base (#07070E), gold accent (#C9A84C), Inter throughout
============================================================================= */

:root {
	--navy:        #07070E;
	--navy-mid:    #0D0D1C;
	--navy-card:   rgba(255, 255, 255, 0.04);
	--gold:        #C9A84C;
	--gold-lt:     #E0B75C;
	--gold-dk:     #A8852A;
	--white:       #ffffff;
	--text:        #E8E8F0;
	--muted:       rgba(255, 255, 255, 0.58);
	--border:      rgba(255, 255, 255, 0.08);
	--border-gold: rgba(201, 168, 76, 0.20);
	--r-sm:        8px;
	--r:           12px;
	--r-lg:        16px;
}

/* ─── KEYFRAMES ──────────────────────────────────────────────────────────── */

@keyframes hero-in {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0);    }
}

@keyframes shimmer {
	0%   { background-position: 200% center; }
	100% { background-position: -200% center; }
}

@keyframes mesh-drift-1 {
	0%, 100% { transform: translate(0, 0) scale(1);          }
	33%       { transform: translate(60px, -40px) scale(1.08); }
	66%       { transform: translate(-30px, 25px) scale(0.96); }
}

@keyframes mesh-drift-2 {
	0%, 100% { transform: translate(0, 0) scale(1);           }
	33%       { transform: translate(-60px, 30px) scale(1.06); }
	66%       { transform: translate(40px, -25px) scale(0.98); }
}

@keyframes orb-float {
	0%, 100% { transform: translateY(0) scale(1);    }
	50%       { transform: translateY(-40px) scale(1.05); }
}

@keyframes mouse-scroll {
	0%   { transform: translateY(0);    opacity: 1; }
	60%  { transform: translateY(14px); opacity: 0; }
	100% { transform: translateY(0);    opacity: 0; }
}

/* ─── Scroll-reveal ─────────────────────────────────────────────────────── */

/* Legacy .will-fade/.is-visible kept for backward compat */
.will-fade {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity  560ms cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.will-fade.is-visible { opacity: 1; transform: translateY(0); }

/* New .reveal/.visible system */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity  640ms cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* Graceful fallback */
@media (prefers-reduced-motion: reduce) {
	.reveal,
	.will-fade {
		opacity: 1;
		transform: none;
		transition: none;
		animation: none;
	}
}

/* Staggered card delays */
.hp2-expertises__grid .hp2-exp-card:nth-child(2) { transition-delay: 80ms; }
.hp2-expertises__grid .hp2-exp-card:nth-child(3) { transition-delay: 160ms; }
.hp2-expertises__grid .hp2-exp-card:nth-child(4) { transition-delay: 240ms; }
.hp2-expertises__grid .hp2-exp-card:nth-child(5) { transition-delay: 320ms; }
.hp2-expertises__grid--4col .hp2-exp-card:nth-child(5):last-child { grid-column: 2 / 4; }
.hp2-why-us__grid .hp2-why-card:nth-child(2)     { transition-delay: 80ms; }
.hp2-why-us__grid .hp2-why-card:nth-child(3)     { transition-delay: 160ms; }
.hp2-why-us__grid .hp2-why-card:nth-child(4)     { transition-delay: 240ms; }

/* ─── Shared labels & headers ───────────────────────────────────────────── */

.hp2-label {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}
.hp2-label--gold { color: var(--gold); }

.hp2-section-header { text-align: center; margin-bottom: 44px; }
.hp2-section-header .hp2-section-sub { margin-inline: auto; }

.hp2-section-title {
	font-size: clamp(1.875rem, 3.2vw, 2.875rem);
	color: var(--text);
	line-height: 1.07;
	letter-spacing: -0.025em;
	margin-bottom: 14px;
}
.hp2-section-title--light { color: #fff; }

.hp2-section-sub {
	color: var(--muted);
	font-size: 1.0625rem;
	max-width: 520px;
	line-height: 1.72;
}
.hp2-section-sub--light { color: rgba(255, 255, 255, 0.58); }

.hp2-gold-line {
	width: 44px;
	height: 3px;
	background: var(--gold);
	border-radius: 2px;
	margin-bottom: 22px;
}
.hp2-gold-line--center { margin-inline: auto; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */

.hp2-btn-primary,
.hp2-btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	background: var(--gold);
	color: #07070E;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: var(--r-sm);
	text-decoration: none;
	letter-spacing: 0.01em;
	white-space: nowrap;
	box-shadow: 0 4px 18px rgba(201, 168, 76, 0.38), 0 1px 4px rgba(0, 0, 0, 0.14);
	transition: background 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}
.hp2-btn-primary:hover,
.hp2-btn-gold:hover {
	background: var(--gold-lt);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(201, 168, 76, 0.52), 0 2px 8px rgba(0, 0, 0, 0.16);
	text-decoration: none;
	color: #07070E;
}
.hp2-btn-primary:active,  .hp2-btn-gold:active  { transform: translateY(0); box-shadow: none; }
.hp2-btn-primary:focus-visible, .hp2-btn-gold:focus-visible { outline: 2px solid var(--gold-dk); outline-offset: 3px; }

.hp2-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: transparent;
	color: rgba(255, 255, 255, 0.75);
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--r-sm);
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 170ms ease, color 170ms ease, background 170ms ease;
}
.hp2-btn-ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(201, 168, 76, 0.07);
	text-decoration: none;
}
.hp2-btn-ghost:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.hp2-btn-ghost:active        { background: rgba(201, 168, 76, 0.12); }

.hp2-btn-outline-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: transparent;
	color: rgba(255, 255, 255, 0.75);
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--r-sm);
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 170ms ease, color 170ms ease, background 170ms ease;
}
.hp2-btn-outline-dark:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(201, 168, 76, 0.06);
	text-decoration: none;
}
.hp2-btn-outline-dark:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ─── 1. HERO ───────────────────────────────────────────────────────────── */

.hp2-hero {
	background-color: var(--navy);
	padding-block: 108px 96px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	z-index: 0;
}

/* Dot grid overlay with radial mask fade */
.hp2-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
	background-size: 30px 30px;
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
	z-index: 2;
	pointer-events: none;
}

/* Animated gradient mesh container */
.hp2-hero__mesh {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

/* First drifting radial gradient (gold) */
.hp2-hero__mesh-g1 {
	position: absolute;
	width: 900px;
	height: 700px;
	top: -250px;
	right: -100px;
	background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.14) 0%, transparent 68%);
	animation: mesh-drift-1 14s ease-in-out infinite;
}

/* Second drifting radial gradient (indigo) */
.hp2-hero__mesh-g2 {
	position: absolute;
	width: 700px;
	height: 600px;
	bottom: -200px;
	left: -150px;
	background: radial-gradient(ellipse at center, rgba(61, 59, 142, 0.15) 0%, transparent 68%);
	animation: mesh-drift-2 18s ease-in-out infinite;
}

/* Floating blur orbs */
.hp2-hero__orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 2;
}

.hp2-hero__orb--gold {
	width: 500px;
	height: 500px;
	top: -120px;
	right: 5%;
	background: rgba(201, 168, 76, 0.13);
	filter: blur(72px);
	animation: orb-float 9s ease-in-out infinite;
}

.hp2-hero__orb--indigo {
	width: 380px;
	height: 380px;
	bottom: -80px;
	left: 3%;
	background: rgba(99, 102, 241, 0.11);
	filter: blur(72px);
	animation: orb-float 11s ease-in-out infinite reverse;
	animation-delay: -4s;
}

/* Hero inner above mesh */
.hp2-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	position: relative;
	z-index: 3;
}

.hp2-hero__copy { display: flex; flex-direction: column; }

/* Staggered entrance animations */
.hp2-hero .hp2-kicker      { animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.30s both; }
.hp2-hero .hp2-hero__h1    { animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.50s both; }
.hp2-hero .hp2-hero__sub   { animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.70s both; }
.hp2-hero .hp2-hero__ctas  { animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.90s both; }
.hp2-hero .hp2-hero__trust { animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 1.00s both; }

.hp2-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--gold);
	border: 1px solid rgba(201, 168, 76, 0.30);
	background: rgba(201, 168, 76, 0.07);
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 26px;
	align-self: flex-start;
}

.hp2-hero__h1 {
	font-size: clamp(2.625rem, 5.2vw, 4.5rem);
	color: #ffffff;
	line-height: 1.03;
	margin-bottom: 22px;
	letter-spacing: -0.03em;
}

/* Shimmering gold gradient text */
.hp2-hero__h1 em {
	background: linear-gradient(
		90deg,
		#C9A84C 0%,
		#F5D98A 30%,
		#FFEDAA 50%,
		#F5D98A 70%,
		#C9A84C 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-style: normal;
	animation: shimmer 3.5s linear infinite;
}

.hp2-hero__sub {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.78;
	max-width: 500px;
	margin-bottom: 36px;
}

.hp2-hero__ctas {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* Trust strip */
.hp2-hero__trust {
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	flex-wrap: nowrap;
}

.hp2-hero__trust-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 28px;
	margin-right: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hp2-hero__trust-item:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

.hp2-hero__trust-item strong {
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}

.hp2-hero__trust-item span {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.44);
	line-height: 1.4;
}

/* Hero image */
.hp2-hero__visual {
	display: flex;
	justify-content: flex-end;
	position: relative;
	animation: hero-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.60s both;
}

.hp2-hero__visual::before {
	content: '';
	position: absolute;
	bottom: -18px;
	right: -18px;
	width: 110px;
	height: 110px;
	border: 2px solid rgba(201, 168, 76, 0.22);
	border-radius: var(--r);
	pointer-events: none;
	z-index: 0;
}

.hp2-hero__img-wrap,
.hp2-hero__img-wrap--natural {
	position: relative;
	width: 100%;
	max-width: 580px;
	border-radius: var(--r-lg);
	overflow: hidden;
	z-index: 1;
	box-shadow:
		0 36px 88px rgba(0, 0, 0, 0.50),
		0 10px 28px rgba(0, 0, 0, 0.30),
		0 0 0 1px rgba(201, 168, 76, 0.14);
}

.hp2-hero__img-wrap::after,
.hp2-hero__img-wrap--natural::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(140deg, rgba(7, 7, 14, 0.32) 0%, rgba(201, 168, 76, 0.05) 100%);
	pointer-events: none;
	border-radius: var(--r-lg);
}

.hp2-hero__img-wrap img,
.hp2-hero__img-wrap--natural img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
	border-radius: var(--r-lg);
}

/* Scroll indicator */
.hp2-hero__scroll {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 1;
	text-decoration: none;
	animation: hero-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 1.30s both;
}

.hp2-scroll-mouse {
	width: 22px;
	height: 36px;
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	border-radius: 11px;
	position: relative;
	display: flex;
	justify-content: center;
}

.hp2-scroll-mouse__dot {
	position: absolute;
	top: 5px;
	width: 3px;
	height: 6px;
	background: var(--gold);
	border-radius: 2px;
	animation: mouse-scroll 2s ease-in-out infinite;
}

.hp2-scroll-label {
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.28);
}

/* ─── Background image panel ────────────────────────────────────────────── */

@keyframes hp2-hero-zoom {
	from { transform: scale(1);    }
	to   { transform: scale(1.08); }
}

.hp2-hero { min-height: clamp(560px, 82vh, 920px); }

.hp2-hero__image-panel {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	filter: brightness(0.92) saturate(0.88);
}

.hp2-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	display: block;
	animation: hp2-hero-zoom 16s ease-out forwards;
	transform-origin: center center;
	will-change: transform;
}

.hp2-hero__bg-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		160deg,
		rgba(7, 7, 14, 0.50) 0%,
		rgba(7, 7, 14, 0.30) 45%,
		rgba(7, 7, 14, 0.44) 100%
	);
	pointer-events: none;
}

.hp2-hero__copy { max-width: 760px; }

@media (prefers-reduced-motion: reduce) {
	.hp2-hero__bg-img { animation: none; will-change: auto; }
}

/* ─── 2. NOS EXPERTISES ─────────────────────────────────────────────────── */

.hp2-expertises {
	background: var(--navy-mid);
	padding-block: 84px;
	border-bottom: 1px solid var(--border);
}

.hp2-expertises__cta {
	text-align: center;
	margin-top: 44px;
}

.hp2-expertises__grid { display: grid; gap: 20px; }
.hp2-expertises__grid--4col { grid-template-columns: repeat(4, 1fr); }

.hp2-exp-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--r);
	padding: 32px 26px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hp2-exp-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 220ms ease;
}

.hp2-exp-card--link { cursor: pointer; }
.hp2-exp-card--link:hover { text-decoration: none; }

.hp2-exp-card:hover {
	border-color: rgba(201, 168, 76, 0.38);
	transform: translateY(-5px);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30), 0 4px 12px rgba(201, 168, 76, 0.10);
	background: rgba(255, 255, 255, 0.07);
}
.hp2-exp-card:hover::before { transform: scaleX(1); }

.hp2-exp-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(201, 168, 76, 0.10);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hp2-exp-card h3 { font-size: 1.0625rem; color: #ffffff; line-height: 1.3; margin: 0; }
.hp2-exp-card p  { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.58); line-height: 1.72; flex: 1; margin: 0; }

.hp2-exp-card__arrow {
	font-size: 1.125rem;
	color: var(--gold);
	opacity: 0.6;
	align-self: flex-end;
	transition: opacity 200ms ease, transform 200ms ease;
}
.hp2-exp-card:hover .hp2-exp-card__arrow { opacity: 1; transform: translateX(4px); }

/* ─── 3. POURQUOI NOUS ──────────────────────────────────────────────────── */

.hp2-why-us {
	background: var(--navy);
	padding-block: 84px;
	border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.hp2-why-us .hp2-section-title { color: #fff; }

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

.hp2-why-card {
	padding: 36px 28px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(201, 168, 76, 0.18);
	border-top: 2px solid rgba(201, 168, 76, 0.45);
	border-radius: var(--r);
	transition: background 240ms ease, border-color 240ms ease, border-top-color 240ms ease, transform 240ms ease;
}

.hp2-why-card:hover {
	background: rgba(201, 168, 76, 0.08);
	border-color: rgba(201, 168, 76, 0.36);
	border-top-color: var(--gold);
	transform: translateY(-4px);
}

.hp2-why-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: rgba(201, 168, 76, 0.12);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.hp2-why-card h3 { font-size: 1.0625rem; color: #fff; margin: 0 0 12px; line-height: 1.3; }
.hp2-why-card p  { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.62); line-height: 1.72; margin: 0; }

/* ─── 4. SECTEURS ───────────────────────────────────────────────────────── */

.hp2-sectors-preview {
	background: var(--navy-mid);
	padding-block: 80px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.hp2-sectors-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 48px;
}

.hp2-sector-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1.5px solid rgba(255, 255, 255, 0.10);
	border-radius: 100px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: border-color 190ms ease, color 190ms ease, transform 190ms ease, background 190ms ease;
}

.hp2-sector-chip:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-2px);
	background: rgba(201, 168, 76, 0.06);
	text-decoration: none;
}

.hp2-sector-chip__icon { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; }

.hp2-sectors-preview__cta { text-align: center; }

/* ─── 4b. QUI SOMMES-NOUS ───────────────────────────────────────────────── */

.hp2-about {
	background: var(--navy);
	padding-block: 84px;
	border-top: 1px solid var(--border);
}

.hp2-about__inner {
	display: grid;
	grid-template-columns: 52fr 48fr;
	gap: 72px;
	align-items: center;
}

.hp2-about__copy {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hp2-about__h2 {
	font-size: clamp(1.875rem, 3vw, 2.75rem);
	color: #ffffff;
	line-height: 1.07;
	letter-spacing: -0.025em;
	margin-bottom: 16px;
}

.hp2-about__copy .hp2-gold-line { margin-bottom: 24px; }
.hp2-about__copy .hp2-label     { margin-bottom: 14px; }

.hp2-about__copy p {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.78;
	margin: 0 0 16px;
}

.hp2-about__copy .hp2-btn-primary {
	align-self: flex-start;
	margin-top: 12px;
}

.hp2-about__visual {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.40),
		0 4px 16px rgba(0, 0, 0, 0.20),
		0 0 0 1px rgba(201, 168, 76, 0.12);
}

.hp2-about__visual img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.hp2-about__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(7, 7, 14, 0.20) 0%, rgba(201, 168, 76, 0.06) 100%);
	pointer-events: none;
}

/* ─── 5. ÉTUDES DE CAS ──────────────────────────────────────────────────── */

.hp2-cases {
	background: #0B0B18;
	padding-block: 84px;
	border-top: 1px solid rgba(201, 168, 76, 0.10);
}

.hp2-cases .hp2-label { color: var(--gold); }

.hp2-cases-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.hp2-case-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.17);
	border-radius: var(--r);
	padding: 40px 36px;
	transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.hp2-case-card:hover {
	background: rgba(201, 168, 76, 0.06);
	border-color: rgba(201, 168, 76, 0.40);
	transform: translateY(-4px);
}

.hp2-case-card__badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	background: rgba(201, 168, 76, 0.12);
	padding: 5px 13px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.hp2-case-card h3 {
	font-family: 'Inter', sans-serif;
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 14px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.hp2-case-card > p {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.72;
	margin: 0 0 28px;
}

.hp2-case-results {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
}

.hp2-case-results__label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.hp2-case-results ul  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }

.hp2-case-results li {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.52;
	padding-left: 20px;
	position: relative;
}

.hp2-case-results li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 2px;
	background: var(--gold);
	border-radius: 1px;
}

/* ─── 6. CONTACT CTA ────────────────────────────────────────────────────── */

.hp2-contact-cta {
	background: var(--navy);
	background-image:
		radial-gradient(ellipse at 78% 22%, rgba(201, 168, 76, 0.09) 0%, transparent 50%),
		radial-gradient(ellipse at 22% 78%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
	padding-block: 96px;
	border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.hp2-contact-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 680px;
	margin-inline: auto;
}

.hp2-contact-cta__copy { display: flex; flex-direction: column; align-items: center; width: 100%; }

.hp2-contact-cta__h2 {
	font-size: clamp(2rem, 3.6vw, 3.125rem);
	color: #fff;
	line-height: 1.07;
	margin-bottom: 20px;
	letter-spacing: -0.025em;
}

.hp2-contact-cta__copy .hp2-gold-line { margin-bottom: 20px; }

.hp2-contact-cta__copy p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.78;
	max-width: 460px;
	margin-bottom: 36px;
}

.hp2-contact-cta__btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ─── WhatsApp CTA button ───────────────────────────────────────────────── */

.hp2-btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 28px;
	background: #25D366;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: var(--r-sm);
	text-decoration: none;
	letter-spacing: 0.01em;
	white-space: nowrap;
	box-shadow: 0 4px 18px rgba(37, 211, 102, 0.32), 0 1px 4px rgba(0, 0, 0, 0.14);
	transition: background 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.hp2-btn-whatsapp:hover {
	background: #1ebe5c;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42), 0 2px 8px rgba(0, 0, 0, 0.16);
	text-decoration: none;
	color: #fff;
}

.hp2-btn-whatsapp:active        { transform: translateY(0); box-shadow: none; }
.hp2-btn-whatsapp:focus-visible { outline: 2px solid #1ebe5c; outline-offset: 3px; }

/* ─── Sticky CTA ────────────────────────────────────────────────────────── */

.hp2-sticky-cta {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	background: var(--gold);
	color: #07070E;
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: var(--r-sm);
	text-decoration: none;
	letter-spacing: 0.01em;
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.46), 0 1px 4px rgba(0, 0, 0, 0.18);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 280ms ease, transform 280ms ease, background 170ms ease, box-shadow 170ms ease;
}

.hp2-sticky-cta--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.hp2-sticky-cta:hover {
	background: var(--gold-lt);
	box-shadow: 0 8px 28px rgba(201, 168, 76, 0.55), 0 2px 8px rgba(0, 0, 0, 0.22);
	text-decoration: none;
	color: #07070E;
}

.hp2-sticky-cta:focus-visible { outline: 2px solid var(--gold-dk); outline-offset: 3px; }
.hp2-sticky-cta:active        { transform: translateY(1px); box-shadow: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

@media (max-width: 1140px) {
	.hp2-expertises__grid--4col { grid-template-columns: repeat(2, 1fr); }
	.hp2-why-us__grid            { grid-template-columns: repeat(2, 1fr); }
	.hp2-about__inner            { gap: 48px; }
}

@media (max-width: 1024px) {
	.hp2-hero                { padding-block: 80px 64px; }
	.hp2-hero__inner         { grid-template-columns: 1fr; gap: 52px; }
	.hp2-hero__copy          { max-width: 660px; margin-inline: auto; text-align: center; align-items: center; }
	.hp2-hero__sub           { max-width: 100%; }
	.hp2-hero__visual        { justify-content: center; }
	.hp2-hero__trust         { justify-content: center; }
	.hp2-hero__scroll        { display: none; }
	.hp2-cases-grid          { grid-template-columns: 1fr; }
	.hp2-about__inner        { grid-template-columns: 1fr; gap: 48px; }
	.hp2-about__visual       { order: -1; }
	.hp2-about__visual img   { height: 340px; }
	.hp2-about__copy         { align-items: center; text-align: center; }
	.hp2-about__copy .hp2-gold-line     { margin-inline: auto; }
	.hp2-about__copy .hp2-btn-primary   { align-self: center; }
}

@media (max-width: 768px) {
	.hp2-expertises          { padding-block: 64px; }
	.hp2-expertises__grid--4col { grid-template-columns: 1fr; }
	.hp2-why-us              { padding-block: 64px; }
	.hp2-why-us__grid        { grid-template-columns: 1fr; }
	.hp2-cases               { padding-block: 64px; }
	.hp2-case-card           { padding: 28px 22px; }
	.hp2-contact-cta         { padding-block: 64px; }
	.hp2-sectors-preview     { padding-block: 64px; }
	.hp2-about               { padding-block: 64px; }
	.hp2-about__visual img   { height: 280px; }
	.hp2-hero__h1            { font-size: 2.375rem; }
	.hp2-hero__img-wrap img,
	.hp2-hero__img-wrap--natural img { height: 360px; }
	.hp2-sticky-cta {
		bottom: 20px;
		right: 16px;
		padding: 14px;
		border-radius: 50%;
	}
	.hp2-sticky-cta span { display: none; }
}

@media (max-width: 480px) {
	.hp2-hero__ctas          { flex-direction: column; align-items: stretch; width: 100%; }
	.hp2-hero__ctas a        { text-align: center; justify-content: center; }
	.hp2-hero__trust         { flex-wrap: wrap; gap: 20px; }
	.hp2-hero__trust-item    { border-right: none; padding-right: 0; margin-right: 0; }
	.hp2-contact-cta__btns   { flex-direction: column; align-items: stretch; }
	.hp2-contact-cta__btns a { text-align: center; justify-content: center; }
	.hp2-about__inner        { gap: 36px; }
}
