/**
 * Page Agence FR (/agency/) — rythme vertical, cartes premium, sans casser l’identité dark/pink.
 */

/* Pages FR /agency/ : masquer les colonnes « catalogue » bruyantes et le sélecteur WPML (russe). */
body.agency-fr-premium .service_dropdown_blck {
	display: none !important;
}

body.agency-fr-premium .language_drp {
	display: none !important;
}

body.agency-fr-premium .footer_services.column {
	display: none !important;
}

body.agency-fr-premium .header_block.d_flex.sto_ {
	justify-content: space-between;
	gap: clamp(16px, 3vw, 28px);
}

/* ── Premium atmosphere : profondeur douce, glow rose quasi invisible ── */
body.agency-fr-premium {
	--agency-fr-pink-glow: rgba(255, 41, 208, 0.14);
	--agency-fr-line: rgba(255, 255, 255, 0.09);
	--agency-fr-glass: rgba(255, 255, 255, 0.04);
	--agency-fr-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--agency-fr-dur: 320ms;
	--af-card: #0a0a0a;
	--af-border: rgba(255, 255, 255, 0.08);
	--af-muted: rgba(255, 255, 255, 0.72);
}

body.agency-fr-premium main {
	position: relative;
	z-index: 0;
	overflow-x: clip;
}

body.agency-fr-premium main::before {
	content: "";
	position: fixed;
	inset: -12vh 0 0 0;
	height: 120vh;
	pointer-events: none;
	z-index: -1;
	opacity: 0.85;
	background:
		radial-gradient(ellipse 72% 52% at 12% -8%, rgba(255, 41, 208, 0.095), transparent 58%),
		radial-gradient(ellipse 58% 42% at 88% 10%, rgba(255, 41, 208, 0.055), transparent 55%),
		radial-gradient(ellipse 48% 38% at 48% 104%, rgba(255, 41, 208, 0.045), transparent 52%);
}

@media (prefers-reduced-motion: no-preference) {
	body.agency-fr-premium main::before {
		animation: agency-fr-ambient-shift 28s ease-in-out infinite alternate;
	}
}

@keyframes agency-fr-ambient-shift {
	0% {
		opacity: 0.78;
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		opacity: 0.92;
		transform: translate3d(0.6%, -0.4%, 0) scale(1.012);
	}
	100% {
		opacity: 0.84;
		transform: translate3d(-0.4%, 0.3%, 0) scale(1.008);
	}
}

body.agency-fr-premium main section.agency-fr {
	position: relative;
	z-index: 1;
}
.agency-fr {
	width: 100%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Inner width uses theme `.wrapper` (1660px / responsive padding) — same rhythm as homepage. */
.agency-fr > .wrapper {
	width: 100%;
	box-sizing: border-box;
}

.agency-fr > .wrapper.agency-fr__bound--narrow {
	max-width: min(920px, 100%);
}

/* Homepage-aligned services grid (mirrors templates/home.php inline block; loaded only on FR /agency/). */
.wsl-services {
	position: relative;
	padding: 80px 0;
	background: var(--black);
	color: var(--white);
	overflow: hidden;
}

.wsl-services::before {
	content: "";
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 41, 208, 0.12) 0%, rgba(255, 41, 208, 0) 60%);
	pointer-events: none;
	z-index: 0;
}

.wsl-services .wrapper {
	position: relative;
	z-index: 1;
}

.wsl-services__head {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 56px;
}

.wsl-services__eyebrow {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(255, 41, 208, 0.1);
	color: #ff29d0;
	border: 1px solid rgba(255, 41, 208, 0.35);
	border-radius: 999px;
	font-family: Unbounded-Medium, sans-serif;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.wsl-services__title {
	font-size: clamp(26px, 3.6vw, 42px);
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
	margin: 0;
	color: var(--white);
	text-transform: none;
}

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

.wsl-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 28px;
	min-height: 340px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
	color: var(--white);
	overflow: hidden;
	isolation: isolate;
	transition:
		transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
		border-color 0.35s ease,
		background 0.35s ease,
		box-shadow 0.35s ease;
}

.wsl-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 41, 208, 0.7) 0%, rgba(255, 41, 208, 0) 55%);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
	z-index: 2;
}

.wsl-card::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 41, 208, 0.35) 0%, rgba(255, 41, 208, 0) 70%);
	top: -110px;
	right: -110px;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 0;
}

.wsl-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 41, 208, 0.35);
	background: linear-gradient(180deg, rgba(255, 41, 208, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
	box-shadow: 0 24px 60px -20px rgba(255, 41, 208, 0.28);
}

.wsl-card:hover::before,
.wsl-card:hover::after {
	opacity: 1;
}

.wsl-card > * {
	position: relative;
	z-index: 1;
}

.wsl-card__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 22px;
}

.wsl-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #ff29d0 0%, #b81896 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px -6px rgba(255, 41, 208, 0.45);
	transition: transform 0.4s ease;
}

.wsl-card:hover .wsl-card__icon {
	transform: scale(1.06) rotate(-4deg);
}

.wsl-card__icon img {
	width: 26px;
	height: 26px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.wsl-card__num {
	font-family: Unbounded-Medium, sans-serif;
	font-size: 13px;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1;
	padding-top: 10px;
}

.wsl-card__title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.25;
	margin: 0 0 16px;
	color: var(--white);
	text-transform: uppercase;
}

.wsl-card__tags {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wsl-card__tags li {
	font-size: 12px;
	line-height: 1;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
	white-space: nowrap;
}

.wsl-card__cta {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.wsl-card__cta > span:first-child:not(.wsl-card__arrow) {
	font-family: Unbounded-Medium, sans-serif;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s ease;
}

.wsl-card__arrow {
	margin-left: auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.85);
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease,
		transform 0.35s ease;
}

.wsl-card__arrow svg {
	transition: transform 0.35s ease;
}

.wsl-card:hover .wsl-card__arrow {
	background: #ff29d0;
	border-color: #ff29d0;
	color: #fff;
}

.wsl-card:hover .wsl-card__arrow svg {
	transform: translate(2px, -2px);
}

.wsl-card:hover .wsl-card__cta > span:first-child {
	color: #fff;
}

.wsl-card:focus-visible {
	outline: 2px solid #ff29d0;
	outline-offset: 3px;
}

.agency-fr__expertises-intro--below-head {
	text-align: center;
	max-width: 52rem;
	margin: -38px auto 44px;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.65;
	font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.agency-fr__exp-wsl-card.wsl-card {
	min-height: 300px;
}

.agency-fr__card-desc {
	margin: 0 0 18px;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
	flex-grow: 1;
}

.agency-fr--expertises .wsl-card__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}

.agency-fr--expertises .wsl-card__icon svg path,
.agency-fr--expertises .wsl-card__icon svg rect,
.agency-fr--expertises .wsl-card__icon svg circle {
	stroke: #ffffff !important;
}

@media (max-width: 1100px) {
	.wsl-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.wsl-services__grid {
		grid-template-columns: 1fr;
	}

	.wsl-services {
		padding: 56px 0;
	}

	.wsl-services__head {
		margin-bottom: 40px;
	}
}

.agency-fr__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.agency-fr--hero {
	margin-top: clamp(40px, 7vw, 88px);
	margin-bottom: clamp(48px, 8vw, 104px);
	padding-block: clamp(32px, 5vw, 56px);
	padding-inline: 0;
	border-radius: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	box-sizing: border-box;
}

.agency-fr__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(22px, 4vw, 48px);
	align-items: center;
}

.agency-fr__hero-copy {
	min-width: 0;
}

.agency-fr__hero-visual {
	position: relative;
	min-width: 0;
}

.agency-fr__hero-visual::before {
	content: "";
	position: absolute;
	inset: -14% -12% -18% -12%;
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(closest-side at 48% 42%, rgba(255, 41, 208, 0.13), transparent 74%);
	filter: blur(42px);
	opacity: 0.65;
}

@media (prefers-reduced-motion: no-preference) {
	.agency-fr__hero-visual::before {
		animation: agency-fr-hero-glow 16s ease-in-out infinite alternate;
	}
}

@keyframes agency-fr-hero-glow {
	from {
		opacity: 0.5;
		transform: scale(0.96);
	}
	to {
		opacity: 0.78;
		transform: scale(1.05);
	}
}

.agency-fr__hero-visual-inner {
	position: relative;
	z-index: 1;
	border-radius: 0;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

@media (prefers-reduced-motion: no-preference) {
	.agency-fr__hero-visual-inner {
		animation: agency-fr-float-inner 11s ease-in-out infinite;
	}

	.agency-fr__hero-visual:hover .agency-fr__hero-visual-inner {
		animation-play-state: paused;
	}
}

@keyframes agency-fr-float-inner {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -9px, 0);
	}
}

.agency-fr__glass {
	display: none;
}

.agency-fr__hero-mock {
	position: relative;
	z-index: 1;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(0, 0, 0, 0.14);
	box-shadow:
		0 26px 76px rgba(0, 0, 0, 0.42),
		0 0 0 1px rgba(255, 255, 255, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition:
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out),
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__hero-visual:hover .agency-fr__hero-mock {
	transform: translateY(-5px) rotate(-0.35deg) scale(1.01);
	border-color: rgba(255, 41, 208, 0.22);
	box-shadow:
		0 38px 104px rgba(0, 0, 0, 0.48),
		0 0 0 1px rgba(255, 41, 208, 0.18),
		0 0 52px rgba(255, 41, 208, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.agency-fr__hero-mock img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	opacity: 1;
}

.agency-fr__intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}

.agency-fr__intro-visual {
	min-width: 0;
}

.agency-fr__ui-stack {
	position: relative;
	min-height: 0;
	border-radius: 0;
	padding: 0;
	border: none;
	background: transparent;
	overflow: visible;
}

.agency-fr__ui-card {
	display: none;
}

.agency-fr__ui-thumb {
	position: relative;
	z-index: 2;
	max-width: 340px;
	margin-left: auto;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(0, 0, 0, 0.12);
	box-shadow:
		0 24px 70px rgba(0, 0, 0, 0.38),
		0 0 0 1px rgba(255, 255, 255, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition:
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out),
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__ui-thumb::before {
	content: "";
	position: absolute;
	inset: -32%;
	z-index: -1;
	background: radial-gradient(circle at 38% 32%, rgba(255, 41, 208, 0.14), transparent 64%);
	filter: blur(44px);
	opacity: 0.65;
	pointer-events: none;
}

.agency-fr__intro-visual:hover .agency-fr__ui-thumb {
	transform: translateY(-5px) rotate(0.35deg);
	border-color: rgba(255, 41, 208, 0.26);
	box-shadow:
		0 34px 92px rgba(0, 0, 0, 0.44),
		0 0 0 1px rgba(255, 41, 208, 0.12),
		0 0 44px rgba(255, 41, 208, 0.1);
}

.agency-fr__ui-thumb img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 1;
}

.agency-fr__surface-card {
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
	box-sizing: border-box;
	transition:
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out),
		background var(--agency-fr-dur) var(--agency-fr-ease-out),
		filter var(--agency-fr-dur) var(--agency-fr-ease-out);
	will-change: transform;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.agency-fr__hover-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 41, 208, 0.38);
	box-shadow:
		0 28px 72px rgba(0, 0, 0, 0.42),
		0 0 0 1px rgba(255, 41, 208, 0.14),
		0 0 52px rgba(255, 41, 208, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
	background: linear-gradient(152deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
}

a.agency-fr__hover-card:hover {
	color: inherit;
}

.agency-fr__btn-hover {
	transition:
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out),
		filter var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__btn-hover:hover {
	transform: translateY(-4px);
	box-shadow:
		0 22px 54px rgba(255, 41, 208, 0.34),
		0 0 0 1px rgba(255, 255, 255, 0.14);
	filter: saturate(1.06);
}

.agency-fr__h2--sub {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	margin-bottom: 10px;
}

.agency-fr__awards-lead {
	margin: 0 0 clamp(14px, 2vw, 18px);
	max-width: 62rem;
	color: rgba(255, 255, 255, 0.66);
	line-height: 1.55;
	font-size: 0.98rem;
}

.agency-fr__awards-block {
	display: grid;
	gap: clamp(12px, 2vw, 18px);
	position: relative;
	padding: clamp(4px, 1vw, 8px);
	border-radius: 24px;
}

.agency-fr__awards-block::before {
	content: "";
	position: absolute;
	inset: -18% -10% auto -10%;
	height: 140%;
	background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 170, 0.06), transparent 62%);
	opacity: 0.85;
	pointer-events: none;
	z-index: 0;
}

.agency-fr__awards-block > * {
	position: relative;
	z-index: 1;
}

.agency-fr__award-card {
	min-height: 148px;
}

.agency-fr__award-brand {
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.28));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 14px 34px rgba(0, 0, 0, 0.32);
	transition:
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out),
		transform var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__award.agency-fr__hover-card:hover .agency-fr__award-brand {
	border-color: rgba(255, 215, 160, 0.28);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 18px 42px rgba(0, 0, 0, 0.36),
		0 0 28px rgba(255, 41, 208, 0.12);
	transform: translateY(-2px);
}

.agency-fr__award-brand img {
	max-height: 52px;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	filter: none;
	opacity: 1;
}

.agency-fr__award-brand--empty {
	min-height: 56px;
	border-style: dashed;
	opacity: 0.55;
}

.agency-fr__expertises-intro {
	margin: 0 0 clamp(14px, 2vw, 22px);
	max-width: 62rem;
	color: rgba(255, 255, 255, 0.66);
	line-height: 1.55;
	font-size: 0.98rem;
}

.agency-fr__expert-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 18px);
}

.agency-fr__expert-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: clamp(20px, 2.4vw, 26px);
	text-decoration: none;
	color: inherit;
	min-height: 158px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition:
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out),
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__expert-card::before {
	content: "";
	position: absolute;
	inset: -42% -28% auto -28%;
	height: 115%;
	background: radial-gradient(ellipse at 16% 0%, rgba(255, 41, 208, 0.11), transparent 60%);
	opacity: 0.62;
	pointer-events: none;
	z-index: 0;
	transition: opacity var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__expert-card:hover::before {
	opacity: 0.92;
}

.agency-fr__expert-card:hover {
	transform: translateY(-6px);
}

.agency-fr__expert-card > * {
	position: relative;
	z-index: 1;
}

.agency-fr__expert-title {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--white);
	display: flex;
	align-items: flex-start;
	gap: 11px;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 1) .agency-fr__expert-title::before,
.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 2) .agency-fr__expert-title::before,
.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 3) .agency-fr__expert-title::before,
.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 4) .agency-fr__expert-title::before,
.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 5) .agency-fr__expert-title::before,
.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 6) .agency-fr__expert-title::before {
	content: "";
	width: 9px;
	height: 9px;
	margin-top: 5px;
	border-radius: 99px;
	flex-shrink: 0;
	box-shadow: 0 0 16px rgba(255, 41, 208, 0.22);
}

.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 1) .agency-fr__expert-title::before {
	background: linear-gradient(145deg, rgba(255, 41, 208, 0.92), rgba(255, 255, 255, 0.28));
}

.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 2) .agency-fr__expert-title::before {
	background: linear-gradient(145deg, rgba(130, 210, 255, 0.75), rgba(255, 41, 208, 0.55));
	box-shadow: 0 0 16px rgba(130, 210, 255, 0.22);
}

.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 3) .agency-fr__expert-title::before {
	background: linear-gradient(145deg, rgba(200, 140, 255, 0.85), rgba(255, 255, 255, 0.22));
	box-shadow: 0 0 16px rgba(200, 140, 255, 0.22);
}

.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 4) .agency-fr__expert-title::before {
	background: linear-gradient(145deg, rgba(120, 255, 190, 0.55), rgba(255, 41, 208, 0.45));
	box-shadow: 0 0 16px rgba(120, 255, 190, 0.18);
}

.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 5) .agency-fr__expert-title::before {
	background: linear-gradient(145deg, rgba(255, 200, 120, 0.75), rgba(255, 41, 208, 0.45));
	box-shadow: 0 0 16px rgba(255, 200, 120, 0.2);
}

.agency-fr__expert-grid .agency-fr__expert-card:nth-child(6n + 6) .agency-fr__expert-title::before {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 41, 208, 0.55));
}

.agency-fr__expert-desc {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.66);
	flex-grow: 1;
}

.agency-fr__expert-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-top: auto;
	padding-top: 4px;
	transition:
		color var(--agency-fr-dur) var(--agency-fr-ease-out),
		transform var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__expert-cta::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid rgba(255, 255, 255, 0.36);
	border-bottom: 2px solid rgba(255, 255, 255, 0.36);
	transform: rotate(-45deg);
	transition:
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__expert-card:hover .agency-fr__expert-cta {
	color: var(--pink);
}

.agency-fr__expert-card:hover .agency-fr__expert-cta::after {
	transform: translateX(5px) rotate(-45deg);
	border-color: rgba(255, 41, 208, 0.78);
}

.agency-fr__eyebrow {
	margin: 0 0 14px;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
	font-family: Unbounded-Light, Unbounded-Regular, sans-serif;
}

.agency-fr__h1 {
	margin: 0 0 22px;
	font-size: clamp(2.15rem, 4.6vw, 3.25rem);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.035em;
	color: var(--white);
	text-transform: none;
	text-shadow: 0 22px 58px rgba(0, 0, 0, 0.55);
}

.agency-fr__lead {
	margin: 0 0 clamp(28px, 4vw, 40px);
	font-size: clamp(1.05rem, 1.35vw, 1.25rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
	font-family: Unbounded-Light, Unbounded-Regular, sans-serif;
	max-width: 54rem;
}

.agency-fr__lead--hero {
	font-size: clamp(1.12rem, 1.55vw, 1.35rem);
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.88);
	max-width: 40rem;
}

.agency-fr__cta-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(14px, 2vw, 22px);
}

.agency-fr__cta-bar--single {
	max-width: 22rem;
}

.agency-fr__btn-primary.pink_button {
	min-height: 52px;
	padding-inline: 26px;
}

.agency-fr__btn-primary--xl.pink_button {
	min-height: 56px;
	padding-inline: 32px;
	width: 100%;
	justify-content: center;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.agency-fr__btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.agency-fr__btn-secondary:hover {
	border-color: var(--pink);
	color: var(--white);
	background: rgba(255, 41, 208, 0.08);
}

.agency-fr__h2 {
	margin: 0 0 clamp(18px, 3vw, 26px);
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.2;
	font-weight: 600;
	color: var(--white);
	letter-spacing: -0.02em;
	text-transform: none;
}

.agency-fr__h3 {
	margin: 0 0 10px;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--white);
}

.agency-fr__prose p,
.agency-fr__mission-lead,
.agency-fr__services-intro {
	margin: 0 0 1rem;
	font-size: clamp(1rem, 1.15vw, 1.08rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
	max-width: 62rem;
}

.agency-fr__prose p:last-child {
	margin-bottom: 0;
}

.agency-fr--split-intro,
.agency-fr--mission-premium,
.agency-fr--approche,
.agency-fr--process,
.agency-fr--metrics,
.agency-fr--leadership,
.agency-fr--intl,
.agency-fr--testimonials {
	margin-bottom: clamp(56px, 9vw, 112px);
}

.agency-fr__bullets {
	margin: clamp(12px, 2vw, 18px) 0 0;
	padding-left: 1.15rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.65;
	max-width: 54rem;
}

.agency-fr__bullets li + li {
	margin-top: 0.55rem;
}

.agency-fr__cards {
	display: grid;
	gap: clamp(14px, 2vw, 18px);
}

.agency-fr__cards--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agency-fr__cards--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agency-fr__card {
	padding: clamp(18px, 2.2vw, 22px);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.agency-fr__card p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

.agency-fr__card.agency-fr__surface-card {
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
	border-color: rgba(255, 255, 255, 0.11);
}

.agency-fr__timeline {
	list-style: none;
	margin: clamp(8px, 2vw, 14px) 0 0;
	padding: 0;
	display: grid;
	gap: 0;
	counter-reset: agency-step;
	max-width: 920px;
	position: relative;
}

.agency-fr__timeline--premium {
	padding-left: 22px;
}

.agency-fr__timeline--premium::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 8px;
	bottom: 12px;
	width: 2px;
	border-radius: 3px;
	background: linear-gradient(
		180deg,
		rgba(255, 41, 208, 0.55),
		rgba(255, 255, 255, 0.07) 48%,
		rgba(255, 41, 208, 0.28)
	);
	box-shadow: 0 0 22px rgba(255, 41, 208, 0.14);
	opacity: 0.88;
	pointer-events: none;
}

.agency-fr__timeline li {
	display: grid;
	grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
	gap: clamp(14px, 2vw, 28px);
	padding: clamp(17px, 2vw, 24px) clamp(10px, 2vw, 14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	align-items: start;
	border-radius: 16px;
	transition:
		background var(--agency-fr-dur) var(--agency-fr-ease-out),
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__timeline li:hover {
	background: rgba(255, 255, 255, 0.032);
	transform: translateX(4px);
	box-shadow: inset 1px 0 0 rgba(255, 41, 208, 0.12);
}

.agency-fr__timeline li:last-child {
	border-bottom: none;
}

.agency-fr__step {
	position: relative;
	padding-left: 34px;
	font-weight: 600;
	color: var(--white);
}

.agency-fr__step::before {
	counter-increment: agency-step;
	content: counter(agency-step);
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.24), rgba(255, 41, 208, 0.18));
	border: 1px solid rgba(255, 41, 208, 0.55);
	font-size: 11px;
	line-height: 22px;
	text-align: center;
	color: var(--white);
	font-variant-numeric: tabular-nums;
	box-shadow:
		0 0 0 5px rgba(255, 41, 208, 0.06),
		0 14px 28px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
	.agency-fr__timeline--premium .agency-fr__step::before {
		animation: agency-fr-step-pulse 7s ease-in-out infinite;
	}
}

@keyframes agency-fr-step-pulse {
	0%,
	100% {
		box-shadow:
			0 0 0 5px rgba(255, 41, 208, 0.06),
			0 14px 28px rgba(0, 0, 0, 0.35);
	}
	50% {
		box-shadow:
			0 0 0 9px rgba(255, 41, 208, 0.07),
			0 18px 34px rgba(0, 0, 0, 0.38);
	}
}

.agency-fr__step-desc {
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.65;
	font-size: 0.98rem;
}

.agency-fr__metrics-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 18px);
}

.agency-fr__metrics-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Trust metrics: layout + equal height; chrome comes from .agency-fr__surface-card */
.agency-fr__metric.agency-fr__surface-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 128px;
	justify-content: center;
	align-items: stretch;
	padding: clamp(18px, 2vw, 22px);
}

.agency-fr__metric-val {
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 600;
	line-height: 1.12;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.035em;
	text-wrap: balance;
	background: linear-gradient(125deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 205, 236, 0.98) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 18px 46px rgba(255, 41, 208, 0.06);
}

.agency-fr__metric-val--running {
	filter: saturate(1.02);
}

.agency-fr__metric-val--done {
	text-shadow: none;
}

.agency-fr__metric-label {
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.62);
	font-weight: 500;
	letter-spacing: 0.01em;
}

.agency-fr__trust-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 28px;
	max-width: 760px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.55;
}

.agency-fr__trust-list li {
	position: relative;
	padding-left: 18px;
}

.agency-fr__trust-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 99px;
	background: var(--pink);
	opacity: 0.85;
}

.agency-fr__services-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(10px, 2vw, 16px);
}

.agency-fr__svc {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.2s ease, background 0.2s ease;
}

.agency-fr__svc:hover {
	border-color: rgba(255, 41, 208, 0.65);
	background: rgba(255, 41, 208, 0.09);
}

.agency-fr__intl {
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	max-width: 46rem;
	margin-left: auto;
	margin-right: auto;
}

.agency-fr__quote {
	margin: 0;
	padding: clamp(22px, 2.6vw, 30px);
	border-radius: 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 100%;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.agency-fr__quote::before {
	content: "\201C";
	position: absolute;
	left: clamp(16px, 2vw, 22px);
	top: clamp(8px, 1.2vw, 14px);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.4rem, 4vw, 3.2rem);
	line-height: 1;
	color: rgba(255, 41, 208, 0.16);
	pointer-events: none;
	z-index: 0;
}

.agency-fr__blockquote {
	position: relative;
	z-index: 1;
	margin: 0;
	padding-top: clamp(10px, 1.2vw, 16px);
	font-size: 0.98rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
	font-style: normal;
	letter-spacing: 0.01em;
}

.agency-fr__cite {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	margin-top: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 11px;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.agency-fr__cite::before {
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 999px;
	flex-shrink: 0;
	background:
		radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.38), transparent 62%),
		linear-gradient(145deg, rgba(255, 41, 208, 0.55), rgba(110, 70, 170, 0.38));
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
	opacity: 0.88;
}

.agency-fr__split {
	display: grid;
	grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
	gap: clamp(22px, 4vw, 56px);
	align-items: start;
}

.agency-fr__kicker {
	margin: 6px 0 0;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.52);
}

.agency-fr__prose--tight p {
	max-width: 44rem;
	line-height: 1.74;
}

.agency-fr--mission-premium {
	padding: clamp(18px, 3vw, 28px) 0 clamp(8px, 2vw, 12px);
	position: relative;
}

.agency-fr--mission-premium::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 45%;
	width: min(720px, 88vw);
	height: 240px;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse at 50% 40%, rgba(255, 41, 208, 0.11), transparent 68%);
	filter: blur(50px);
	opacity: 0.75;
	pointer-events: none;
	z-index: 0;
}

.agency-fr--mission-premium .wrapper {
	position: relative;
	z-index: 1;
}

.agency-fr__mission-overline {
	margin: 0 0 14px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.48);
	font-weight: 500;
}

.agency-fr__display {
	margin: 0 0 clamp(16px, 2.4vw, 24px);
	font-size: clamp(2rem, 4.2vw, 3.1rem);
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: -0.032em;
	color: var(--white);
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.agency-fr__display::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -12px;
	width: min(220px, 46%);
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, rgba(255, 41, 208, 0.65), rgba(255, 255, 255, 0));
	opacity: 0.55;
}

.agency-fr__mission-statement {
	margin: clamp(18px, 2vw, 26px) 0 0;
	max-width: 42rem;
	font-size: clamp(1.06rem, 1.65vw, 1.28rem);
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.76);
	font-weight: 400;
}

.agency-fr__cards--lux .agency-fr__card.agency-fr__surface-card {
	min-height: 144px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding-top: clamp(24px, 2.6vw, 30px);
	box-shadow:
		0 22px 60px rgba(0, 0, 0, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.agency-fr__cards--lux .agency-fr__card.agency-fr__surface-card::before {
	content: "";
	position: absolute;
	inset: -40% -20% auto -20%;
	height: 120%;
	background: radial-gradient(ellipse at 12% 0%, rgba(255, 41, 208, 0.14), transparent 58%);
	opacity: 0.75;
	pointer-events: none;
	z-index: 0;
}

.agency-fr__cards--lux .agency-fr__card.agency-fr__surface-card > * {
	position: relative;
	z-index: 1;
}

.agency-fr__cards--lux .agency-fr__hover-card:hover {
	transform: translateY(-6px) scale(1.012);
}

.agency-fr__cards--lux .agency-fr__h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 1.06rem;
	letter-spacing: -0.01em;
}

.agency-fr__cards--lux .agency-fr__card:nth-child(1) .agency-fr__h3::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: linear-gradient(145deg, rgba(255, 41, 208, 0.85), rgba(255, 255, 255, 0.25));
	box-shadow: 0 0 18px rgba(255, 41, 208, 0.35);
	flex-shrink: 0;
}

.agency-fr__cards--lux .agency-fr__card:nth-child(2) .agency-fr__h3::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: linear-gradient(145deg, rgba(160, 110, 255, 0.85), rgba(255, 255, 255, 0.22));
	box-shadow: 0 0 18px rgba(160, 110, 255, 0.28);
	flex-shrink: 0;
}

.agency-fr__cards--lux .agency-fr__card:nth-child(3) .agency-fr__h3::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: linear-gradient(145deg, rgba(90, 210, 255, 0.55), rgba(255, 41, 208, 0.45));
	box-shadow: 0 0 18px rgba(90, 210, 255, 0.22);
	flex-shrink: 0;
}

.agency-fr__cards--lux .agency-fr__card:nth-child(4) .agency-fr__h3::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: linear-gradient(145deg, rgba(255, 200, 120, 0.65), rgba(255, 41, 208, 0.45));
	box-shadow: 0 0 18px rgba(255, 200, 120, 0.22);
	flex-shrink: 0;
}

.agency-fr__cards--lux .agency-fr__card p {
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.66);
}

.agency-fr__metrics-sub {
	margin: clamp(-6px, -0.5vw, -4px) 0 clamp(18px, 3vw, 26px);
	max-width: 44rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.98rem;
}

.agency-fr__lead-panel {
	display: grid;
	gap: clamp(26px, 4vw, 42px);
}

.agency-fr__founders.agency-fr__surface-card {
	display: grid;
	grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 34px);
	align-items: center;
	padding: clamp(20px, 3vw, 30px);
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background:
		radial-gradient(ellipse 90% 70% at 12% 18%, rgba(255, 41, 208, 0.1), transparent 58%),
		linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
	box-shadow:
		0 26px 76px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition:
		transform var(--agency-fr-dur) var(--agency-fr-ease-out),
		box-shadow var(--agency-fr-dur) var(--agency-fr-ease-out),
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__founders.agency-fr__surface-card::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.06), transparent 62%);
	opacity: 0.55;
	pointer-events: none;
	z-index: 0;
}

.agency-fr__founders.agency-fr__surface-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 41, 208, 0.22);
	box-shadow:
		0 34px 96px rgba(0, 0, 0, 0.46),
		0 0 0 1px rgba(255, 41, 208, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.agency-fr__founders-photo {
	position: relative;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
	box-shadow:
		0 22px 50px rgba(0, 0, 0, 0.42),
		inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.agency-fr__founders-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 41, 208, 0.12);
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.65;
}

.agency-fr__founders-copy {
	position: relative;
	z-index: 1;
}

.agency-fr__founders-photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	transition: transform var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__founders:hover .agency-fr__founders-photo img {
	transform: scale(1.03);
}

.agency-fr__founders-tag {
	margin: 0 0 10px;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.52);
}

.agency-fr__founders-quote {
	margin: 0;
	font-size: clamp(1rem, 1.25vw, 1.08rem);
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.74);
	max-width: 52rem;
}

.agency-fr__h3--section {
	margin: 0 0 14px;
	font-size: 1rem;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.88);
}

.agency-fr__awards-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 18px);
}

/* Distinctions: structure only — surface + hover from shared card tokens */
.agency-fr__award.agency-fr__surface-card {
	padding: clamp(16px, 2vw, 20px);
}

.agency-fr__award {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 148px;
}

.agency-fr__award-title {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.72);
}

.agency-fr__cards--tight {
	gap: clamp(12px, 2vw, 16px);
}

.agency-fr__ceo .ceo_cotainer {
	align-items: flex-start;
}

.agency-fr__tech {
	margin-top: clamp(24px, 5vw, 48px);
	margin-bottom: clamp(40px, 7vw, 88px);
}

@media (max-width: 1024px) {
	.agency-fr__hero-grid {
		grid-template-columns: 1fr;
		gap: clamp(22px, 4vw, 36px);
	}

	.agency-fr__intro-grid {
		grid-template-columns: 1fr;
	}

	.agency-fr__expert-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.agency-fr__cards--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.agency-fr__metrics-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.agency-fr__metrics-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.agency-fr__split {
		grid-template-columns: 1fr;
	}

	.agency-fr__founders.agency-fr__surface-card {
		grid-template-columns: 1fr;
	}

	.agency-fr__awards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.agency-fr__timeline li {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

@media (max-width: 768px) {
	.agency-fr__cta-bar {
		flex-direction: column;
		align-items: stretch;
	}

	.agency-fr__btn-secondary {
		width: 100%;
	}

	.agency-fr__cards--3 {
		grid-template-columns: 1fr;
	}

	.agency-fr__trust-list {
		grid-template-columns: 1fr;
	}

	.agency-fr__awards-grid {
		grid-template-columns: 1fr;
	}

	.agency-fr__cta-bar--single {
		max-width: none;
		width: 100%;
	}

	.agency-fr__metrics-grid {
		grid-template-columns: 1fr;
	}

	.agency-fr__expert-grid {
		grid-template-columns: 1fr;
	}

	body.agency-fr-premium main::before {
		opacity: 0.62;
	}

	.agency-fr__timeline--premium {
		padding-left: 16px;
	}

	.agency-fr__timeline--premium::before {
		left: 7px;
		opacity: 0.72;
	}
}

/* Reveal au scroll (voir js/agency-fr-motion.js) */
@media (prefers-reduced-motion: no-preference) {
	html.agency-fr-motion body.agency-fr-premium main section.agency-fr:not(.agency-fr--hero):not(.agency-fr--seo-intro):not(.agency-fr--inview) {
		opacity: 0;
		transform: translate3d(0, 22px, 0);
		transition:
			opacity 0.72s var(--agency-fr-ease-out),
			transform 0.72s var(--agency-fr-ease-out);
	}

	html.agency-fr-motion body.agency-fr-premium main section.agency-fr.agency-fr--inview {
		opacity: 1;
		transform: none;
	}
}

@supports not (background-clip: text) {
	.agency-fr__metric-val {
		color: var(--white);
		background: none !important;
		-webkit-text-fill-color: var(--white);
		text-shadow: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.agency-fr-premium main::before {
		animation: none !important;
		opacity: 0.78 !important;
	}

	.agency-fr__hero-visual-inner {
		animation: none !important;
	}

	.agency-fr__hero-visual::before {
		animation: none !important;
	}

	.agency-fr__timeline--premium .agency-fr__step::before {
		animation: none !important;
	}

	html.agency-fr-motion body.agency-fr-premium main section.agency-fr {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ── Bloc SEO intro : léger, style grille « expertises » maison ── */
.agency-fr--seo-intro {
	padding-top: clamp(24px, 4vw, 48px);
	padding-bottom: clamp(28px, 5vw, 56px);
	margin-bottom: clamp(36px, 6vw, 72px);
}

.agency-fr--logos {
	margin-bottom: clamp(48px, 8vw, 96px);
}

.agency-fr--seo-intro .agency-fr__seo-intro-inner.wsl-services__head {
	margin-bottom: 0;
}

.agency-fr--seo-intro .wsl-services__title {
	font-size: clamp(22px, 3vw, 34px);
}

.agency-fr--seo-intro .agency-fr__seo-intro-lead {
	margin: 14px auto 18px;
	max-width: 44rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(15px, 1.18vw, 17px);
	line-height: 1.58;
	text-wrap: balance;
}

.agency-fr__seo-pills-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	max-width: 920px;
}

.agency-fr__seo-pills-list li {
	font-size: 12px;
	line-height: 1;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
	max-width: 100%;
}

.agency-fr__seo-pills-list a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	transition:
		color var(--agency-fr-dur) var(--agency-fr-ease-out),
		border-color var(--agency-fr-dur) var(--agency-fr-ease-out),
		background var(--agency-fr-dur) var(--agency-fr-ease-out);
}

.agency-fr__seo-pills-list li:hover {
	border-color: rgba(255, 41, 208, 0.35);
	background: rgba(255, 41, 208, 0.07);
	color: #ffffff;
}

.agency-fr__seo-pills-list a:focus-visible {
	outline: 2px solid #ff29d0;
	outline-offset: 2px;
	border-radius: inherit;
}
