/* =============================================================================
   home.css — GlobalReach Theme v2 Homepage
   Design: Dark navy + gold + warm cream | Premium boutique consulting
   Loaded only on the front page via functions.php
============================================================================= */

/* =============================================================================
   DESIGN TOKENS
============================================================================= */

:root {
	--hp2-navy:       #0d1f3c;
	--hp2-navy-mid:   #162447;
	--hp2-navy-deep:  #0a1420;
	--hp2-gold:       #c5a028;
	--hp2-gold-lt:    #d4b857;
	--hp2-gold-dk:    #a8861f;
	--hp2-gold-muted: rgba(197, 160, 40, 0.10);
	--hp2-cream:      #f8f6f1;
	--hp2-warm:       #f0ede8;
	--hp2-text:       #1a1a2e;
	--hp2-muted:      #5f6b7c;
	--hp2-border:     #e2ddd8;
	--hp2-border-dk:  rgba(255, 255, 255, 0.10);
}

/* =============================================================================
   SHARED UTILITIES
============================================================================= */

/* Section padding */
.hp2-hero,
.hp2-intro,
.hp2-adn,
.hp2-expertises,
.hp2-model,
.hp2-metrics,
.hp2-contact-cta {
	padding-block: 96px;
}

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

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

/* Section title */
.hp2-section-title {
	font-size: clamp(1.875rem, 3.5vw, 2.875rem);
	color: var(--hp2-text);
	line-height: 1.1;
	margin-bottom: 16px;
}

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

/* Section subtitle */
.hp2-section-sub {
	color: var(--hp2-muted);
	font-size: 1.0625rem;
	max-width: 540px;
	line-height: 1.7;
	margin-top: 16px;
}

.hp2-section-sub--light { color: rgba(255, 255, 255, 0.65); }

/* Centered section header */
.hp2-section-header {
	text-align: center;
	margin-bottom: 56px;
}

.hp2-section-header .hp2-section-sub {
	margin-inline: auto;
}

/* Gold decorative line */
.hp2-gold-line {
	width: 48px;
	height: 3px;
	background: var(--hp2-gold);
	border-radius: 2px;
	margin-bottom: 24px;
}

.hp2-gold-line--center {
	margin-inline: auto;
}

/* =============================================================================
   BUTTONS
============================================================================= */

.hp2-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	background: var(--hp2-gold);
	color: var(--hp2-navy-deep);
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: 4px;
	text-decoration: none;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hp2-btn-primary:hover {
	background: var(--hp2-gold-lt);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(197, 160, 40, 0.38);
	text-decoration: none;
	color: var(--hp2-navy-deep);
}

.hp2-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	background: transparent;
	color: rgba(255, 255, 255, 0.88);
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hp2-btn-ghost:hover {
	border-color: var(--hp2-gold);
	background: rgba(197, 160, 40, 0.08);
	color: var(--hp2-gold);
	text-decoration: none;
}

.hp2-btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 36px;
	background: var(--hp2-gold);
	color: var(--hp2-navy-deep);
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 4px;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
	transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hp2-btn-gold:hover {
	background: var(--hp2-gold-lt);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(197, 160, 40, 0.42);
	text-decoration: none;
	color: var(--hp2-navy-deep);
}

/* French tagline accent */
.hp2-fr-tagline {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.125rem;
	color: var(--hp2-gold);
	font-weight: 700;
	border-left: 3px solid var(--hp2-gold);
	padding-left: 16px;
	margin-top: 8px;
	line-height: 1.4;
}

/* Scroll-reveal animation (applied by JS) */
.will-fade {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 650ms ease, transform 650ms ease;
}

.will-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =============================================================================
   OUTLINE BUTTON (ghost, dark background)
============================================================================= */

.hp2-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hp2-btn-outline:hover {
	border-color: var(--hp2-gold);
	background: rgba(197, 160, 40, 0.06);
	color: var(--hp2-gold);
	text-decoration: none;
}

.hp2-btn-outline-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	background: transparent;
	color: var(--hp2-text);
	font-family: 'Inter', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 1.5px solid rgba(13, 31, 60, 0.22);
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
	margin-top: 24px;
	align-self: flex-start;
}

.hp2-btn-outline-dark:hover {
	border-color: var(--hp2-gold);
	color: var(--hp2-gold-dk);
	text-decoration: none;
}

/* =============================================================================
   1. HERO
============================================================================= */

.hp2-hero {
	background-color: var(--hp2-navy);
	background-image:
		radial-gradient(ellipse at 72% 40%, rgba(197, 160, 40, 0.07) 0%, transparent 55%),
		linear-gradient(155deg, #080f1e 0%, #0d1f3c 55%, #162447 100%);
	padding-block: 100px 88px;
	overflow: hidden;
}

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

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

.hp2-kicker {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--hp2-gold);
	border: 1px solid rgba(197, 160, 40, 0.3);
	padding: 6px 14px;
	border-radius: 2px;
	margin-bottom: 28px;
	align-self: flex-start;
}

.hp2-hero__h1 {
	font-size: clamp(2.25rem, 4.5vw, 3.875rem);
	color: #fff;
	line-height: 1.06;
	margin-bottom: 14px;
}

.hp2-hero__h1 em {
	display: block;
	color: var(--hp2-gold);
	font-style: normal;
}

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

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

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

/* Visual */
.hp2-hero__visual {
	display: flex;
	justify-content: flex-end;
	position: relative;
}

/* Gold dot grid — decorative accent behind image */
.hp2-hero__visual::before {
	content: '';
	position: absolute;
	top: -28px;
	right: -20px;
	width: 160px;
	height: 160px;
	background-image: radial-gradient(circle, rgba(197, 160, 40, 0.38) 1.5px, transparent 1.5px);
	background-size: 18px 18px;
	pointer-events: none;
	z-index: 0;
}

.hp2-hero__img-wrap {
	position: relative;
	width: 100%;
	max-width: 600px;
	padding-bottom: 22px;
	padding-right: 22px;
	animation: hp2-float 7s ease-in-out infinite;
	will-change: transform;
	z-index: 1;
}

/* Gold offset frame */
.hp2-hero__img-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc(100% - 26px);
	height: calc(100% - 26px);
	border: 2px solid rgba(197, 160, 40, 0.55);
	border-radius: 12px;
	pointer-events: none;
	z-index: 0;
	box-shadow: 0 0 0 1px rgba(197, 160, 40, 0.1);
}

.hp2-hero__img-wrap img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	filter: brightness(0.82) saturate(0.65);
}

/* Natural image variant — no filter, no overlay */
.hp2-hero__img-wrap--natural img {
	filter: none;
	height: auto;
	border-radius: 12px;
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.55),
		0 8px 24px rgba(0, 0, 0, 0.35),
		0 2px 8px rgba(197, 160, 40, 0.08);
}

/* Professional color overlay — navy + gold toning */
.hp2-hero__img-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: 8px;
	background: linear-gradient(
		155deg,
		rgba(13, 31, 60, 0.52) 0%,
		rgba(22, 36, 71, 0.28) 50%,
		rgba(197, 160, 40, 0.12) 100%
	);
	pointer-events: none;
}

/* Ensure badge stays above overlay */
.hp2-hero__badge {
	z-index: 3;
}

/* Floating stat badge */
.hp2-hero__badge {
	position: absolute;
	bottom: 32px;
	left: -16px;
	z-index: 2;
	background: var(--hp2-navy-deep);
	border: 1px solid rgba(197, 160, 40, 0.25);
	border-radius: 8px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hp2-hero__badge-num {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 2.125rem;
	font-weight: 900;
	color: var(--hp2-gold);
	line-height: 1;
}

.hp2-hero__badge-num sup {
	font-size: 1rem;
	vertical-align: super;
	line-height: 0;
}

.hp2-hero__badge-text {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.4;
}

/* =============================================================================
   2. INTRO
============================================================================= */

.hp2-intro {
	background: #fff;
}

.hp2-intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 88px;
	align-items: center;
}

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

.hp2-intro__copy .hp2-section-title {
	margin-bottom: 20px;
}

.hp2-intro__copy p {
	font-size: 1.0625rem;
	color: var(--hp2-muted);
	line-height: 1.8;
	margin-bottom: 20px;
}

.hp2-intro__copy p:last-of-type {
	margin-bottom: 0;
}

/* Image with gold frame */
.hp2-intro__visual {
	position: relative;
	padding-top: 14px;
	padding-left: 14px;
}

.hp2-intro__visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 28px);
	height: calc(100% - 28px);
	border: 2px solid rgba(197, 160, 40, 0.28);
	border-radius: 10px;
	pointer-events: none;
}

.hp2-intro__img-wrap {
	position: relative;
	z-index: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 56px rgba(13, 31, 60, 0.13);
}

.hp2-intro__img-wrap img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	filter: brightness(0.88) saturate(0.7);
}

.hp2-intro__img-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: 8px;
	background: linear-gradient(
		135deg,
		rgba(13, 31, 60, 0.32) 0%,
		rgba(197, 160, 40, 0.08) 100%
	);
	pointer-events: none;
}

.hp2-intro__actions {
	margin-top: 4px;
}

/* =============================================================================
   3. ADN
============================================================================= */

.hp2-adn {
	background: var(--hp2-cream);
}

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

.hp2-adn-card {
	background: #fff;
	border-radius: 8px;
	padding: 40px 32px;
	border-top: 3px solid transparent;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.hp2-adn-card:hover {
	border-top-color: var(--hp2-gold);
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}

.hp2-adn-card__num {
	display: block;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 3.5rem;
	font-weight: 900;
	color: rgba(197, 160, 40, 0.13);
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.hp2-adn-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--hp2-gold-muted);
	color: var(--hp2-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.hp2-adn-card h3 {
	font-size: 1.3125rem;
	color: var(--hp2-text);
	margin-bottom: 12px;
}

.hp2-adn-card p {
	font-size: 0.9375rem;
	color: var(--hp2-muted);
	line-height: 1.75;
}

/* =============================================================================
   4. NOS EXPERTISES
============================================================================= */

.hp2-expertises {
	background: #fff;
	border-top: 1px solid var(--hp2-border);
}

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

.hp2-exp-card {
	background: var(--hp2-cream);
	border: 1px solid var(--hp2-border);
	border-radius: 8px;
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: background 250ms ease, border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.hp2-exp-card:hover {
	background: rgba(197, 160, 40, 0.05);
	border-color: var(--hp2-gold);
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(197, 160, 40, 0.1);
}

.hp2-exp-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: rgba(197, 160, 40, 0.12);
	color: var(--hp2-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hp2-exp-card h3 {
	font-size: 1.125rem;
	color: var(--hp2-text);
	line-height: 1.25;
}

.hp2-exp-card p {
	font-size: 0.9rem;
	color: var(--hp2-muted);
	line-height: 1.72;
	flex: 1;
}

.hp2-exp-card__arrow {
	font-size: 1.125rem;
	color: var(--hp2-gold);
	opacity: 0.65;
	align-self: flex-end;
	transition: opacity 200ms ease, transform 200ms ease;
}

.hp2-exp-card:hover .hp2-exp-card__arrow {
	opacity: 1;
	transform: translateX(4px);
}

/* =============================================================================
   5. NOTRE MODELE
============================================================================= */

.hp2-model {
	background: #fff;
}

.hp2-model__inner {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 80px;
	align-items: start;
}

.hp2-model__copy {
	display: flex;
	flex-direction: column;
	position: sticky;
	top: calc(88px + 40px);
}

.hp2-model__copy .hp2-section-title {
	margin-bottom: 20px;
}

.hp2-model__pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.hp2-pillar {
	padding: 32px 28px;
	border: 1px solid var(--hp2-border);
	border-radius: 8px;
	transition: border-color 250ms ease, box-shadow 250ms ease;
}

.hp2-pillar:hover {
	border-color: var(--hp2-gold);
	box-shadow: 0 4px 24px rgba(197, 160, 40, 0.1);
}

.hp2-pillar__num {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--hp2-gold);
	margin-bottom: 14px;
}

.hp2-pillar h3 {
	font-size: 1.125rem;
	color: var(--hp2-text);
	margin-bottom: 10px;
}

.hp2-pillar p {
	font-size: 0.9375rem;
	color: var(--hp2-muted);
	line-height: 1.72;
}

/* =============================================================================
   6. MÉTRIQUES
============================================================================= */

.hp2-metrics {
	background-color: var(--hp2-navy-deep);
	background-image: linear-gradient(135deg, #070d18 0%, #0a1420 50%, #0d1f3c 100%);
	padding-block: 88px;
	border-top: 1px solid rgba(197, 160, 40, 0.12);
	border-bottom: 1px solid rgba(197, 160, 40, 0.12);
}

.hp2-metrics__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	text-align: center;
}

.hp2-metric {
	padding: 32px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.hp2-metric:last-child {
	border-right: none;
}

.hp2-metric__val {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: clamp(2.75rem, 5vw, 4.25rem);
	font-weight: 900;
	color: var(--hp2-gold);
	line-height: 1;
	letter-spacing: -0.02em;
	display: block;
}

.hp2-metric__val--word {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	line-height: 1.15;
	text-align: center;
}

.hp2-metric__label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.55;
	max-width: 160px;
	display: block;
}

/* =============================================================================
   7. CONTACT CTA
============================================================================= */

.hp2-contact-cta {
	background-color: var(--hp2-navy-mid);
	background-image:
		radial-gradient(ellipse at 15% 85%, rgba(197, 160, 40, 0.06) 0%, transparent 50%),
		linear-gradient(135deg, #080f1e 0%, #162447 100%);
	padding-block: 100px;
}

.hp2-contact-cta__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hp2-contact-cta__copy {
	display: flex;
	flex-direction: column;
}

.hp2-contact-cta__h2 {
	font-size: clamp(2rem, 3.5vw, 3rem);
	color: #fff;
	line-height: 1.08;
	margin-bottom: 20px;
}

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

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

.hp2-contact-cta__info {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 8px;
}

.hp2-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.hp2-contact-item svg {
	flex-shrink: 0;
	margin-top: 3px;
	color: var(--hp2-gold);
	opacity: 0.85;
}

.hp2-contact-item a,
.hp2-contact-item span {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.6;
	text-decoration: none;
	transition: color 150ms ease;
}

.hp2-contact-item a:hover {
	color: var(--hp2-gold);
	text-decoration: none;
}

/* =============================================================================
   RESPONSIVE — Tablet (≤ 1024px)
============================================================================= */

@media (max-width: 1024px) {

	.hp2-hero,
	.hp2-intro,
	.hp2-adn,
	.hp2-expertises,
	.hp2-model,
	.hp2-metrics,
	.hp2-contact-cta {
		padding-block: 72px;
	}

	.hp2-hero__inner {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.hp2-hero__copy {
		max-width: 680px;
		margin-inline: auto;
		text-align: center;
		align-items: center;
	}

	.hp2-hero__sub { max-width: 100%; }

	.hp2-hero__visual { justify-content: center; }

	.hp2-intro__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hp2-adn__grid {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin-inline: auto;
	}

	.hp2-expertises__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp2-model__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hp2-model__copy { position: static; }

	.hp2-metrics__grid { grid-template-columns: repeat(3, 1fr); }

	.hp2-contact-cta__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

}

/* =============================================================================
   RESPONSIVE — Mobile (≤ 768px)
============================================================================= */

@media (max-width: 768px) {

	.hp2-hero,
	.hp2-intro,
	.hp2-adn,
	.hp2-expertises,
	.hp2-model,
	.hp2-metrics,
	.hp2-contact-cta {
		padding-block: 56px;
	}

	.hp2-hero__h1 { font-size: 2.25rem; }

	.hp2-hero__img-wrap img { height: 300px; }

	.hp2-hero__badge {
		left: 12px;
		bottom: 18px;
	}

	.hp2-intro__img-wrap img { height: 300px; }

	.hp2-expertises__grid { grid-template-columns: 1fr; }

	.hp2-model__pillars { grid-template-columns: 1fr; }

	.hp2-contact-cta__info { padding: 28px 24px; }

	.hp2-metrics__grid { grid-template-columns: 1fr; }

}

/* =============================================================================
   RESPONSIVE — Small mobile (≤ 480px)
============================================================================= */

@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-metrics__grid { grid-template-columns: 1fr; }

	.hp2-metric {
		border-right: none !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	}

	.hp2-metric:last-child { border-bottom: none !important; }

}

/* =============================================================================
   VALUE PROPS BAR
============================================================================= */

.hp2-value-props {
	background: var(--hp2-cream);
	padding-block: 28px;
	border-bottom: 1px solid var(--hp2-border);
}

.hp2-value-props__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.hp2-vp-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 24px;
	border-right: 1px solid var(--hp2-border);
}

.hp2-vp-item:last-child { border-right: none; }

.hp2-vp-item__icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: rgba(197, 160, 40, 0.10);
	color: var(--hp2-gold-dk);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hp2-vp-item h3 {
	font-size: 0.9375rem;
	color: var(--hp2-text);
	font-weight: 600;
	line-height: 1.3;
}

/* =============================================================================
   EXPERTISES — 4-column variant + CTA
============================================================================= */

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

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

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

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

/* =============================================================================
   SECTORS PREVIEW
============================================================================= */

.hp2-sectors-preview {
	background: var(--hp2-cream);
	padding-block: 96px;
}

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

.hp2-sector-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	background: #fff;
	border: 1.5px solid var(--hp2-border);
	border-radius: 6px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--hp2-text);
	text-decoration: none;
	transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.hp2-sector-chip:hover {
	border-color: var(--hp2-gold);
	color: var(--hp2-gold-dk);
	box-shadow: 0 4px 18px rgba(197, 160, 40, 0.12);
	transform: translateY(-2px);
	text-decoration: none;
}

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

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

/* =============================================================================
   CREDIBILITY — Certifications
============================================================================= */

.hp2-credibility {
	background: #fff;
	padding-block: 96px;
}

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

.hp2-cert-badge {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 28px;
	background: var(--hp2-cream);
	border: 1px solid var(--hp2-border);
	border-radius: 8px;
	border-left: 3px solid var(--hp2-gold);
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.hp2-cert-badge:hover {
	box-shadow: 0 6px 24px rgba(197, 160, 40, 0.1);
	transform: translateY(-3px);
}

.hp2-cert-badge__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(197, 160, 40, 0.10);
	color: var(--hp2-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hp2-cert-badge__info {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.hp2-cert-badge__info strong {
	font-size: 1rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	color: var(--hp2-text);
}

.hp2-cert-badge__info span {
	font-size: 0.8125rem;
	color: var(--hp2-muted);
}

/* =============================================================================
   METRICS — 4-column variant
============================================================================= */

.hp2-metrics__grid {
	grid-template-columns: repeat(4, 1fr);
}

/* =============================================================================
   CONTACT CTA — multiple buttons
============================================================================= */

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

/* =============================================================================
   RESPONSIVE — new sections tablet (≤ 1024px)
============================================================================= */

@media (max-width: 1024px) {

	.hp2-value-props__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp2-expertises__grid--4col {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp2-cert-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp2-metrics__grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

/* =============================================================================
   RESPONSIVE — new sections mobile (≤ 768px)
============================================================================= */

@media (max-width: 768px) {

	.hp2-value-props__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp2-vp-item {
		border-right: none;
		border-bottom: 1px solid var(--hp2-border);
	}

	.hp2-expertises__grid--4col {
		grid-template-columns: 1fr;
	}

	.hp2-cert-grid {
		grid-template-columns: 1fr;
	}

	.hp2-metrics__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp2-contact-cta__btns {
		flex-direction: column;
		align-items: flex-start;
	}

}

@media (max-width: 480px) {

	.hp2-value-props__grid {
		grid-template-columns: 1fr;
	}

	.hp2-metrics__grid {
		grid-template-columns: 1fr;
	}

}

/* =============================================================================
   TRUST STRIP — Certifications + Métriques compactes
============================================================================= */

.hp2-trust-strip {
	background: var(--hp2-cream);
	padding-block: 60px;
	border-top: 1px solid var(--hp2-border);
	border-bottom: 1px solid var(--hp2-border);
}

.hp2-trust-strip__inner {
	display: flex;
	align-items: center;
	gap: 56px;
}

.hp2-trust-certs {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-shrink: 0;
}

.hp2-trust-certs__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--hp2-muted);
}

.hp2-trust-certs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hp2-trust-certs__list span {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--hp2-text);
	padding: 5px 12px;
	background: #fff;
	border: 1px solid var(--hp2-border);
	border-left: 2px solid var(--hp2-gold);
	border-radius: 4px;
	letter-spacing: 0.01em;
}

.hp2-trust-divider {
	width: 1px;
	height: 72px;
	background: var(--hp2-border);
	flex-shrink: 0;
}

.hp2-trust-metrics {
	display: flex;
	flex: 1;
	gap: 0;
}

.hp2-trust-metric {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 12px 20px;
	border-right: 1px solid var(--hp2-border);
	text-align: center;
}

.hp2-trust-metric:last-child {
	border-right: none;
}

.hp2-trust-metric strong {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: clamp(1.375rem, 2.2vw, 1.875rem);
	font-weight: 900;
	color: var(--hp2-gold-dk);
	line-height: 1;
	display: block;
}

.hp2-trust-metric span {
	font-size: 0.8125rem;
	color: var(--hp2-muted);
	line-height: 1.45;
}

@media (max-width: 1024px) {
	.hp2-trust-strip__inner {
		flex-direction: column;
		gap: 40px;
		align-items: flex-start;
	}
	.hp2-trust-divider { display: none; }
	.hp2-trust-certs { width: 100%; }
}

@media (max-width: 768px) {
	.hp2-trust-metrics { flex-wrap: wrap; }
	.hp2-trust-metric {
		flex: 1 1 40%;
		border-right: none;
		border-bottom: 1px solid var(--hp2-border);
		padding: 16px;
	}
	.hp2-trust-metric:nth-last-child(-n+2) { border-bottom: none; }
}
