:root {
	--bg: #e8f4f7;
	--surface: rgba(255, 255, 255, 0.9);
	--surface-strong: #ffffff;
	--text: #171717;
	--muted: #4a6670;
	--line: rgba(0, 121, 151, 0.1);
	--accent: #007997;
	--accent-dark: #005a70;
	--accent-soft: rgba(0, 121, 151, 0.12);
	--accent-light: #68BED9;
	--accent-lighter: #B9E4ED;
	--dark: #004d5c;
	--shadow: 0 20px 60px rgba(0, 77, 92, 0.12);
	--shadow-hover: 0 24px 70px rgba(0, 77, 92, 0.18);
	--radius: 1.5rem;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "DM Sans", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, #f0f8fa 0%, #e4f1f5 100%);
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto;
}

.topbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 1.25rem 0;
}

.topbar--split {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 4rem 1.5rem 15rem;
}

.topbar__left {
	display: flex;
	align-items: center;
}

.topbar__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.topbar__brand {
	font-family: "DM Serif Display", Georgia, serif;
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	color: #fff;
}

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	isolation: isolate;
}

.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__background {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 65%;
	transform: translateX(-50%);
	height: 100%;
	width: auto;
	max-width: none;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 95%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 20%, black 95%, transparent 100%);
}

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(180deg, #007997 0%, #68BED9 50%, #B9E4ED 100%);
}

.hero__overlay {
	background: linear-gradient(120deg, rgba(8, 10, 12, 0.5) 0%, rgba(8, 10, 12, 0.4) 45%, rgba(8, 10, 12, 0.5) 100%), linear-gradient(180deg, rgba(4, 10, 12, 0.1) 0%, rgba(4, 10, 12, 0.76) 80%);
	display: none;
}

.hero__content {
	position: relative;
	padding: 5rem 0 10rem 18rem;
	max-width: 52rem;
	color: #fff;
	text-align: left;
	margin: 0;
}

.eyebrow,
.section__kicker {
	display: inline-block;
	margin-bottom: 0.6rem;
	font-size: 3.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-dark);
	white-space: nowrap;
}

.eyebrow {
	padding: 0.5rem 1.4rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
	color: #005a70;
	box-shadow: 0 2px 12px rgba(0, 89, 112, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.section__headline {
	font-size: 1.72rem;
	margin: 0 0 1.5rem;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--dark);
}

.hero__title,
.section-copy h2,
.section-heading h2,
.collaboration__content h2,
.footer h2 {
	margin: 0;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.hero__title {
	font-family: "DM Serif Display", Georgia, serif;
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 400;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.hero__text {
	max-width: 100%;
	width: 100%;
	margin: 1rem 0 1.5rem;
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	background: var(--accent-dark);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	backdrop-filter: blur(10px);
}

.button--dark {
	background: var(--dark);
	color: #fff;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero__meta a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.92rem;
}

.section {
	padding: clamp(4rem, 0.1vw, 7rem) 0;
}

.section--story {
	background: var(--surface-strong);
}

/* Nouvelle structure Histoire */
.story-header {
    text-align: center;
    margin: 0 auto 2rem;
}

.story-header h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	margin: 0 0 1rem;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.story-header__intro {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: var(--muted);
	line-height: 1.7;
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	gap: 2rem;
	align-items: start;
	margin-bottom: 3rem;
}

/* Bento Layout */
.story-bento {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		"photo text"
		"photo challenges"
		"values challenges";
	gap: 1.25rem;
	margin-bottom: 3rem;
}

.bento-photo {
	grid-area: photo;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.bento-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.bento-photo:hover img {
	transform: scale(1.03);
}

.bento-text,
.bento-values,
.bento-challenges {
	background: var(--surface);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-text:hover,
.bento-values:hover,
.bento-challenges:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.bento-text {
	grid-area: text;
}

.bento-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	color: var(--text);
}

.bento-text p {
	margin: 0 0 0.75rem;
	color: var(--muted);
	line-height: 1.6;
	font-size: 0.95rem;
}

.bento-text p:last-child {
	margin-bottom: 0;
}

.bento-values {
	grid-area: values;
	border-color: var(--accent);
}

.bento-pills {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
}

.bento-pills span {
	padding: 0.6rem 0.8rem;
	border-radius: 0.6rem;
	background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(0, 121, 151, 0.05) 100%);
	color: var(--accent-dark);
	font-weight: 600;
	font-size: 0.82rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.bento-challenges {
	grid-area: challenges;
}

.bento-challenges p {
	margin: 0 0 1rem;
	color: var(--muted);
	line-height: 1.6;
	font-size: 0.9rem;
}

.bento-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.bento-list li {
	padding: 0;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 0.5rem;
	border-left: 3px solid var(--accent);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.bento-list li:hover {
	background: rgba(0, 0, 0, 0.06);
	border-left-color: var(--accent-dark);
}

.bento-list li a {
	display: flex;
	flex-direction: column;
	padding: 0.75rem;
	text-decoration: none;
	color: inherit;
}

.bento-list strong {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text);
	transition: color 0.2s ease;
}

.bento-list li:hover strong {
	color: var(--accent-dark);
}

.bento-list span {
	font-size: 0.8rem;
	color: var(--muted);
	margin-top: 0.15rem;
}

/* Bento Responsive */
@media (max-width: 900px) {
	.story-bento {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas:
			"photo"
			"text"
			"challenges"
			"values";
	}

	.bento-photo {
		max-height: 300px;
	}

	.bento-pills {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 500px) {
	.bento-pills {
		grid-template-columns: 1fr;
	}
}

.story-main {
	display: grid;
	gap: 1.5rem;
}

.story-content {
	display: grid;
	gap: 1.5rem;
}

.story-highlight {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(0, 121, 151, 0.08) 100%);
	border: 1px solid var(--accent);
	border-radius: var(--radius);
	padding: clamp(1rem, 3vw, 2rem);
	margin: 0;
	text-align: center;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-highlight:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.story-highlight__image {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 3px solid var(--accent);
}

.story-highlight p {
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.5;
	margin: 0;
	color: var(--text);
}

.story-highlight strong {
	color: var(--accent-dark);
}

.story-highlight cite {
	font-style: normal;
	font-size: 0.9rem;
	color: var(--muted);
	font-weight: 600;
}

@media (max-width: 600px) {
	.story-highlight {
		flex-direction: column;
		text-align: center;
	}

	.story-highlight__image {
		width: 70px;
		height: 70px;
	}
}

/* Ancienne structure (conservée pour compatibilité) */
.section__grid--story {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 2rem;
	align-items: start;
}

.metric-list,
.detail-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
}

.card {
	padding: 1.5rem;
}

.card--image {
	overflow: hidden;
	padding: 0;
}

.card--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card--values h3 {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	line-height: 1.2;
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.pill-list span {
	padding: 0.65rem 1rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-weight: 700;
	font-size: 0.92rem;
}

.section--audience {
	background: linear-gradient(180deg, #007997 0%, #68BED9 50%, #B9E4ED 100%);
	color: #fff;
}

.section-heading {
	max-width: 44rem;
	margin-bottom: 2rem;
}

.section-heading--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-heading p,
.collaboration__content p,
.footer p {
	margin: 0;
	color: var(--muted);
}

.section--audience .section__kicker,
.section--audience p,
.section--audience h2 {
	color: inherit;
}

.section--audience .section__kicker {
	color: #fff;
}

.section--audience .section__headline {
	color: #fff;
}

.section--audience .story-header__intro {
	color: rgba(255, 255, 255, 0.85);
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
	.platform-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.platform-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

.platform-card,
.media-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.platform-card {
	display: block;
	padding: 1.6rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(0, 121, 151, 0.2);
	box-shadow: 0 8px 24px rgba(0, 77, 92, 0.12);
	color: var(--text);
}

.platform-card:hover,
.platform-card:focus-visible,
.media-card:hover,
.media-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.platform-card__header {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.platform-card__logo {
	width: 3.5rem;
	height: 3.5rem;
	object-fit: contain;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.8);
	padding: 0.55rem;
}

.platform-card__name,
.platform-card__period {
	margin: 0;
}

.platform-card__name {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text);
}

.platform-card__period {
	color: var(--muted);
	font-size: 0.92rem;
}

.platform-card__number {
	display: block;
	margin: 1.5rem 0 1rem;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--accent);
}

/* YouTube card accent */
.platform-card--youtube {
	border-color: rgba(255, 0, 0, 0.25);
	background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(255, 255, 255, 0.95));
}

.platform-card--youtube:hover {
	border-color: rgba(255, 0, 0, 0.4);
	box-shadow: 0 8px 32px rgba(255, 0, 0, 0.15);
}

.metric-list,
.detail-list {
	display: grid;
	gap: 0.8rem;
}

.metric-list li,
.detail-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0.95rem;
	border-radius: 1rem;
	background: rgba(0, 121, 151, 0.1);
	color: var(--text);
}

.metric-list strong,
.detail-list strong {
	white-space: nowrap;
	color: var(--accent-dark);
}

/* Stats responsive mobile */
@media (max-width: 480px) {
	.platform-card {
		padding: 1.2rem;
	}

	.platform-card__logo {
		width: 2.8rem;
		height: 2.8rem;
		padding: 0.4rem;
	}

	.platform-card__name {
		font-size: 0.95rem;
	}

	.platform-card__period {
		font-size: 0.8rem;
	}

	.platform-card__number {
		font-size: 2rem;
		margin: 1rem 0 0.75rem;
	}

	.metric-list li,
	.detail-list li {
		flex-direction: column;
		gap: 0.25rem;
		padding: 0.7rem 0.85rem;
		text-align: center;
	}

	.metric-list strong,
	.detail-list strong {
		font-size: 1.1rem;
	}
}

/* ===========================================
   SECTION TRUST - NOUVELLE STRUCTURE
   =========================================== */

.trust-showcase {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

/* Ambassadeur Hero */
.ambassador-hero {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	background: linear-gradient(135deg, var(--dark) 0%, #00626e 100%);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-hover);
	padding: 2.5rem 3rem;
}

.ambassador-hero__image {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 50%;
	border: 4px solid var(--accent-light);
	flex-shrink: 0;
	box-shadow: 0 0 30px rgba(104, 190, 217, 0.4);
}

.ambassador-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 1rem;
	flex: 1;
}

.ambassador-hero__header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

.ambassador-hero__label {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	background: var(--accent-light);
	color: var(--dark);
	font-size: 1.1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 999px;
}

.ambassador-hero__logo {
	height: 60px;
	max-width: 200px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.ambassador-hero__text {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	text-align: justify;
	width: 100%;
}

.ambassador-hero__handle {
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	transition: background 0.2s ease;
}

.ambassador-hero__handle:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* Section Marques */
.brands-section {
	background: var(--surface-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2.5rem;
	box-shadow: var(--shadow);
}

.brands-section__label,
.media-section__label {
	display: block;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
	margin-bottom: 2rem;
}

.brands-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2.5rem 3rem;
}

.brand-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-item img {
	height: 55px;
	max-width: 130px;
	object-fit: contain;
	filter: grayscale(0%);
	opacity: 0.85;
	transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}

/* Section Médias */
.media-section {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(0, 121, 151, 0.2);
	border-radius: var(--radius);
	padding: 2rem 2.5rem;
	box-shadow: 0 8px 24px rgba(0, 77, 92, 0.12);
}

.media-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem 2.5rem;
}

.media-logos a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: transform 0.2s ease, background 0.2s ease;
}

.media-logos a:hover {
	transform: scale(1.15);
	background: var(--surface-strong);
}

.media-logos img {
	height: 45px;
	max-width: 100px;
	object-fit: contain;
	filter: grayscale(30%);
	opacity: 0.8;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.media-logos a:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* Anciens styles trust-grid (conservés pour compatibilité) */
.trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.trust-block {
	background: var(--surface-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.trust-block__header {
	padding: 0.75rem 1.25rem;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}

.trust-block__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
}

.trust-block__content {
	padding: 2rem;
}

/* Ambassadeur */
.trust-block--ambassador {
	grid-column: 1 / 2;
}

.media-row a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	border-radius: 0.75rem;
	transition: transform 0.2s ease, background 0.2s ease;
}

.media-row a:hover {
	transform: scale(1.1);
	background: var(--bg);
}

.media-row img {
	height: 40px;
	max-width: 90px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.media-row a:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

.section--collaboration {
	background: linear-gradient(180deg, #007997 0%, #68BED9 50%, #B9E4ED 100%);
	color: #fff;
}

.section--collaboration .section__kicker {
	color: #fff;
}

.section--collaboration .section__headline {
	color: #fff;
}

.section--collaboration .story-header__intro {
	color: rgba(255, 255, 255, 0.85);
}

.collab-formats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
	margin-bottom: 3rem;
}

.collab-format {
	background: var(--surface-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	flex: 0 1 calc(25% - 1rem);
	min-width: 200px;
}

.collab-format:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.collab-format__icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.collab-format h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--text);
}

.collab-format p {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.5;
	margin: 0;
}

.collab-cta {
	background: var(--surface-strong);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.collab-cta__content {
	display: grid;
	grid-template-columns: 280px 1fr;
	align-items: center;
}

.collab-cta__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 280px;
}

.collab-cta__text {
	padding: 2rem 2.5rem;
}

.collab-cta__text h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 0.75rem;
	color: var(--text);
}

.collab-cta__text p {
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 1rem;
}

.collab-cta__note {
	font-size: 0.9rem;
	font-style: italic;
	color: var(--accent-dark);
	margin: 0 0 1.5rem;
}

.collab-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.collab-cta__actions .button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.button--outline {
	background: transparent;
	border: 2px solid var(--dark);
	color: var(--dark);
}

.button--outline:hover {
	background: var(--dark);
	color: #fff;
}

/* Ancien style (conservé) */
.collaboration {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
	gap: 2rem;
	align-items: center;
}

.collaboration__content {
	padding: clamp(1.5rem, 3vw, 2.4rem);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--shadow);
}

.collaboration__content p + p {
	margin-top: 1rem;
}

/* Nouveau Footer */
.footer {
	padding: 1.25rem 0;
	background: #B9E4ED;
	color: var(--dark);
	text-align: center;
}

.footer__brand {
	margin-bottom: 0.75rem;
}

.footer__name {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--dark);
	margin: 0;
	display: inline;
}

.footer__tagline {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent-dark);
	margin: 0;
	display: inline;
}

.footer__tagline::before {
	content: " — ";
}

.footer__description {
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--dark);
	opacity: 0.75;
	margin: 0.5rem auto 0;
	max-width: 450px;
}

.footer__bottom {
	padding-top: 0.75rem;
	border-top: 1px solid rgba(0, 77, 92, 0.12);
}

.footer__bottom p {
	margin: 0;
	font-size: 0.75rem;
	color: var(--dark);
	opacity: 0.6;
}

.footer__keywords {
	margin-top: 0.25rem !important;
	font-size: 0.7rem !important;
	opacity: 0.4 !important;
}

@media (max-width: 960px) {
	.section__grid--story,
	.story-grid,
	.collaboration,
	.footer__content,
	.footer__grid,
	.audience-grid,
	.trust-grid {
		grid-template-columns: 1fr;
	}

	.trust-block--ambassador,
	.trust-block--brands,
	.trust-block--events,
	.trust-block--media {
		grid-column: 1 / -1;
	}

	.ambassador-hero {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
	}

	.ambassador-hero__image {
		width: 120px;
		height: 120px;
	}

	.ambassador-hero__content {
		align-items: center;
		text-align: center;
	}

	.ambassador-hero__header {
		flex-direction: column;
		gap: 1rem;
	}

	.ambassador-hero__logo {
		height: 80px;
	}

	.brands-logos {
		gap: 2rem;
	}

	.brand-item img {
		height: 45px;
	}

	.media-logos {
		gap: 1.5rem;
	}

	.media-logos img {
		height: 38px;
	}

	.brands-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.media-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.story-grid {
		gap: 1.5rem;
	}

	.story-main {
		order: 2;
	}

	.story-content {
		order: 1;
	}

	.platform-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.collab-format {
		flex: 0 1 calc(33.33% - 1rem);
	}

	.collab-cta__content {
		grid-template-columns: 1fr;
	}

	.collab-cta__image {
		max-height: 250px;
	}

	.footer__grid {
		gap: 2rem;
		text-align: center;
	}

	.footer__social-links {
		justify-content: center;
	}

	.topbar__content {
		flex-direction: column;
		align-items: flex-start;
	}

	.topbar__links {
		gap: 0.75rem;
	}
}

@media (max-width: 640px) {
	.collab-format {
		flex: 0 1 100%;
	}

	.collab-cta__text {
		padding: 1.5rem;
	}

	.collab-cta__actions {
		flex-direction: column;
	}

	.collab-cta__actions .button {
		width: 100%;
		justify-content: center;
	}

	.container {
		width: min(100% - 1.25rem, 1120px);
	}

	.hero__content {
		padding: 8rem 0 4rem;
	}

	.hero__actions,
	.hero__meta {
		flex-direction: column;
		align-items: stretch;
	}

	.button,
	.hero__meta a {
		width: 100%;
	}

	.metric-list li,
	.detail-list li {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media print {
	.hero__overlay,
	.topbar {
		display: none;
	}

	body {
		background: #fff;
	}

	.section,
	.footer {
		padding: 2rem 0;
	}
}

/* ===========================================
   SECTION PARTENAIRES
   =========================================== */

.section--partners {
	background: var(--bg);
}

.partners-section {
	display: grid;
	gap: 3rem;
}

.partners-group__title {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin: 0 0 1.25rem;
	text-align: center;
}

/* ===========================================
   SECTION PROJETS À VENIR
   =========================================== */

.section--projects {
	background: var(--surface-strong);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.project-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.75rem;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.project-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.project-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.project-card__date {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent-dark);
}

.project-card__status {
	padding: 0.3rem 0.65rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 999px;
}

.project-card__status--open {
	background: rgba(34, 197, 94, 0.15);
	color: #16a34a;
}

.project-card__status--planned {
	background: var(--accent-soft);
	color: var(--accent-dark);
}

.project-card__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--text);
}

.project-card__desc {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--muted);
	flex-grow: 1;
	text-align: justify;
}

.project-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.5rem 0 0;
	padding: 0;
	list-style: none;
	justify-content: center;
}

.project-card__tags li {
	padding: 0.35rem 0.7rem;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--muted);
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   =========================================== */

@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.events-grid {
		grid-template-columns: 1fr;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	.project-card__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}

/* ===========================================
   ANIMATED COUNTERS - Follower counts
   =========================================== */

.follower-count {
	display: inline-block;
	transition: transform 0.3s ease, color 0.3s ease;
}

/* Animation de "pop" quand le compteur termine */
.follower-count.count-complete {
	animation: countPop 0.4s ease;
}

@keyframes countPop {
	0% { transform: scale(1); }
	50% { transform: scale(1.15); }
	100% { transform: scale(1); }
}

/* Effet de brillance au survol */
.platform-card:hover .follower-count {
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Animation subtile de "respiration" quand visible */
.follower-count.animated {
	animation: breathe 3s ease-in-out infinite;
	animation-delay: 2.5s; /* Commence après l'animation du compteur */
}

@keyframes breathe {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.02); }
}

/* Style pour le footer (plus petit) */
.footer__social-link .follower-count {
	font-variant-numeric: tabular-nums;
}

.footer__social-link:hover .follower-count {
	color: var(--accent);
}

/* ===========================================
   GALLERY - Carrousel défilant automatique
   =========================================== */

.section--gallery {
	background: linear-gradient(180deg, #007997 0%, #68BED9 50%, #B9E4ED 100%);
	overflow: hidden;
	color: #fff;
}

.section--gallery .section__kicker {
	color: #fff;
}

.section--gallery .section__headline {
	color: #fff;
}

.section--gallery .story-header__intro {
	color: rgba(255, 255, 255, 0.85);
}

/* Carrousel marquee */
.gallery-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 1rem 0;
}

.gallery-track {
	display: flex;
	gap: 12px;
	width: max-content;
	will-change: transform;
}

.gallery-item {
	position: relative;
	flex-shrink: 0;
	height: 280px;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	background: var(--surface-strong);
}

.gallery-item img {
	height: 100%;
	width: auto;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-item__overlay {
	display: none;
}

.gallery-item__overlay span {
	display: none;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-item:hover .gallery-item__overlay {
	display: none;
}

.gallery-item:hover .gallery-item__overlay span {
	display: none;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox__content {
	position: relative;
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox__media-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox__media {
	max-width: 90vw;
	max-height: 80vh;
	object-fit: contain;
	border-radius: var(--radius);
}

.lightbox__counter {
	text-align: center;
	margin-top: 1rem;
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
}

.lightbox__close {
	position: absolute;
	top: -3rem;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s ease, transform 0.2s ease;
	line-height: 1;
}

.lightbox__close:hover {
	opacity: 1;
	transform: scale(1.1);
}

.lightbox__nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 10001;
}

.lightbox__nav:hover {
	background: rgba(255,255,255,0.3);
	transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--prev {
	left: 2rem;
}

.lightbox__nav--next {
	right: 2rem;
}

/* Gallery responsive */
@media (max-width: 900px) {
	.gallery-item {
		height: 220px;
	}

	.lightbox__nav--prev {
		left: 1rem;
	}

	.lightbox__nav--next {
		right: 1rem;
	}

	.lightbox__nav {
		width: 3rem;
		height: 3rem;
		font-size: 1.5rem;
	}
}

@media (max-width: 600px) {
	.gallery-item {
		height: 180px;
	}

	.lightbox__content {
		max-width: 95vw;
	}

	.lightbox__close {
		top: -2.5rem;
		right: 0.5rem;
	}
}

/* ===========================================
   REVEAL ON SCROLL - Animation d'apparition
   =========================================== */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

/* Variante pour les éléments venant de la gauche */
.reveal--left {
	transform: translateX(-30px);
}

.reveal--left.reveal--visible {
	transform: translateX(0);
}

/* Variante pour les éléments venant de la droite */
.reveal--right {
	transform: translateX(30px);
}

.reveal--right.reveal--visible {
	transform: translateX(0);
}

/* Désactiver si l'utilisateur préfère moins de mouvement */
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Responsive */
@media (max-width: 640px) {
	.videos-grid {
		grid-template-columns: 1fr;
	}
}

/* ===========================================
   BACK TO TOP - Bouton retour en haut
   =========================================== */

.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	border: none;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
	z-index: 1000;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: #fff;
	color: var(--accent);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
	.back-to-top {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}
}

/* ===========================================
   MOBILE OPTIMIZATIONS - Écrans < 480px
   =========================================== */

@media (max-width: 480px) {
	/* Typography mobile */
	html {
		font-size: 15px;
	}

	/* Hero mobile */
	.hero {
		min-height: 100svh;
	}

	.hero__content {
		padding: 6rem 1rem 3rem !important;
		max-width: 100%;
	}

	.hero__title {
		font-size: 2.5rem;
	}

	.hero__text {
		font-size: 0.95rem;
	}

	.eyebrow {
		font-size: 0.65rem;
		padding: 0.4rem 1rem;
	}

	.hero__background {
		left: 50%;
		opacity: 0.4;
	}

	/* Topbar mobile */
	.topbar--split {
		padding: 1rem 1rem 1rem 1rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.topbar__brand {
		font-size: 1.4rem;
	}

	.topbar__links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
	}

	.topbar__links a {
		font-size: 0.75rem;
		padding: 0.3rem 0.6rem;
	}

	/* Sections mobile */
	.section {
		padding: 3rem 0;
	}

	.section__kicker {
		font-size: 2rem;
		white-space: normal;
		word-wrap: break-word;
	}

	.section__headline {
		font-size: 1.4rem;
	}

	/* Story header mobile */
	.story-header {
		margin-bottom: 2rem;
	}

	.story-header h2 {
		font-size: 1.6rem;
	}

	.story-header__intro {
		font-size: 1rem;
	}

	/* Bento mobile */
	.bento-photo {
		max-height: 200px;
	}

	.bento-text p,
	.bento-challenges p {
		font-size: 0.9rem;
	}

	.bento-title {
		font-size: 1.1rem;
	}

	.bento-list li a {
		padding: 0.6rem;
	}

	.bento-list strong {
		font-size: 0.85rem;
	}

	.bento-list span {
		font-size: 0.75rem;
	}

	/* Story highlight (TikTok Awards) mobile */
	.story-highlight {
		padding: 1.2rem;
		gap: 1rem;
	}

	.story-highlight__image {
		width: 60px;
		height: 60px;
	}

	.story-highlight p {
		font-size: 0.9rem;
	}

	/* Platform cards mobile (audience) */
	.platform-card {
		padding: 1.2rem;
	}

	.platform-card__header {
		gap: 0.75rem;
	}

	.platform-card__icon {
		width: 36px;
		height: 36px;
	}

	.platform-card__name {
		font-size: 0.85rem;
	}

	.platform-card__count {
		font-size: 1.8rem;
	}

	.platform-card__growth {
		font-size: 0.7rem;
	}

	/* Ambassador hero mobile */
	.ambassador-hero {
		padding: 1.5rem 1rem;
	}

	.ambassador-hero__image {
		width: 100px;
		height: 100px;
	}

	.ambassador-hero__label {
		font-size: 1.3rem;
	}

	.ambassador-hero__logo {
		height: 60px;
	}

	.ambassador-hero__text {
		font-size: 0.9rem;
	}

	/* Brands & Media logos mobile */
	.brands-logos {
		gap: 1.5rem;
	}

	.brand-item img {
		height: 35px;
	}

	.media-section {
		padding: 1.5rem;
	}

	.media-logos img {
		height: 28px;
	}

	/* Gallery mobile */
	.gallery-item {
		width: 250px;
		height: 180px;
	}

	.lightbox__nav {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.lightbox__close {
		top: 0.5rem;
		right: 0.5rem;
		font-size: 1.5rem;
	}

	/* Projects mobile */
	.project-card {
		padding: 1.25rem;
	}

	.project-card__title {
		font-size: 1.1rem;
	}

	.project-card__desc {
		font-size: 0.85rem;
	}

	.project-card__tag {
		font-size: 0.7rem;
		padding: 0.25rem 0.6rem;
	}

	/* Collaboration section mobile */
	.collab-formats {
		gap: 0.75rem;
	}

	.collab-format {
		padding: 1rem;
	}

	.collab-format__title {
		font-size: 1rem;
	}

	.collab-format__desc {
		font-size: 0.85rem;
	}

	.collab-cta__content {
		flex-direction: column;
	}

	.collab-cta__image {
		max-height: 180px;
	}

	.collab-cta__text {
		padding: 1.25rem;
	}

	.collab-cta__text h3 {
		font-size: 1.2rem;
	}

	.collab-cta__text p {
		font-size: 0.9rem;
	}

	.collab-cta__actions .button {
		font-size: 0.85rem;
		padding: 0.8rem 1rem;
	}

	/* Footer mobile */
	.footer {
		padding: 2rem 0 1rem;
	}

	.footer__name {
		font-size: 1.3rem;
	}

	.footer__tagline {
		font-size: 0.85rem;
	}

	.footer__description {
		font-size: 0.8rem;
	}

	.footer__bottom {
		font-size: 0.7rem;
		padding-top: 1rem;
	}

	/* Buttons mobile */
	.button {
		padding: 0.8rem 1.2rem;
		font-size: 0.9rem;
	}

	.button--outline {
		padding: 0.7rem 1.1rem;
	}

	/* Back to top mobile */
	.back-to-top {
		bottom: 1rem;
		right: 1rem;
		width: 42px;
		height: 42px;
		font-size: 1.2rem;
	}
}

/* ===========================================
   TRÈS PETITS ÉCRANS - < 360px
   =========================================== */

@media (max-width: 360px) {
	html {
		font-size: 14px;
	}

	.hero__title {
		font-size: 2rem;
	}

	.hero__content {
		padding: 5rem 0.75rem 2.5rem !important;
	}

	.topbar--split {
		padding: 0.75rem;
	}

	.topbar__brand {
		font-size: 1.2rem;
	}

	.section__headline {
		font-size: 1.25rem;
	}

	.section__kicker {
		font-size: 1.6rem;
	}

	.story-header h2 {
		font-size: 1.4rem;
	}

	.platform-card__count {
		font-size: 1.5rem;
	}

	.gallery-item {
		width: 200px;
		height: 150px;
	}

	.bento-pills {
		gap: 0.4rem;
	}

	.bento-pills .pill {
		padding: 0.4rem 0.7rem;
		font-size: 0.7rem;
	}
}

/* ===========================================
   TOUCH DEVICE OPTIMIZATIONS
   =========================================== */

@media (hover: none) and (pointer: coarse) {
	/* Désactiver les hovers sur tactile */
	.platform-card:hover,
	.media-card:hover,
	.project-card:hover,
	.collab-format:hover,
	.brand-item:hover img,
	.bento-list li:hover {
		transform: none;
	}

	/* Agrandir les zones tactiles */
	.topbar__links a {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.button {
		min-height: 48px;
	}

	.hero__meta a {
		min-height: 44px;
	}

	.bento-list li a {
		min-height: 48px;
	}

	/* Lightbox navigation plus grande */
	.lightbox__nav {
		width: 50px;
		height: 50px;
	}

	.lightbox__close {
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* ===========================================
   LANDSCAPE MOBILE
   =========================================== */

@media (max-height: 500px) and (orientation: landscape) {
	.hero {
		min-height: auto;
		padding: 1rem 0;
	}

	.hero__content {
		padding: 4rem 2rem 2rem !important;
	}

	.hero__title {
		font-size: 2rem;
	}

	.hero__text {
		margin: 0.5rem 0 1rem;
	}

	.hero__actions {
		margin-bottom: 1rem;
	}
}
