/*!
Theme Name: strateg-up
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: strateg-up
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/**
 * CSS Principal - Strateg'Up
 * Styles sémantiques et spécifiques pour chaque composant
 * Version refactorisée octobre 2025 - Classes non-génériques
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* ========================================
   RESET CSS MODERNE
======================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #1B1B1B;
	background-color: var(--background-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

main {
	background-color: var(--background-color);
}

section {
	background-color: var(--background-color);
	margin: 0 auto;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

/* ========================================
   VARIABLES CSS
======================================== */
:root {
	/* Couleurs principales */
	--primary-color: #14233a;
	--primary-hover: #1e3a5f;
	--clickable-color: #FBDEDA;
	--background-color: #FDFDFF;
	--dark-color: #1B1B1B;

	/* Palette de couleurs étendue */
	--accent-pink: #f7dfd8;
	--accent-green-light: #e8f6ee;
	--accent-mint: #f5fffa;
	--accent-cream: #fcfef1;
	--accent-sage: #eef1de;
	--accent-beige: #eddfc8;
	--accent-tan: #d7b98b;
	--accent-seafoam: #E8F6EE;

	/* Couleurs utilitaires (utilisées directement dans le code) */
	--danger-color: #dc3545;

	--font-size-xs: 0.75rem;
	--font-size-sm: 12px;
	--font-size-base: 1rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.25rem;
	--font-size-xxl: 1.5rem;

	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 40px;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;

	/* Section Layout - Basé sur Figma */
	--section-padding-height: 50px;
	--section-padding-width: 80px;
	--section-gap: 48px;

	--border-radius: 0.375rem;
	--border-radius-lg: 0.5rem;
	--box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	--box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);

	--container-max-width: 1440px;
	--transition-base: all 0.2s ease-in-out;
}

/* Response Variables Overrides */
@media (max-width: 992px) {
	:root {
		--section-padding-height: 50px;
		--section-padding-width: 24px;
		--section-gap: 32px;
		--spacing-md: 32px;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding-height: 50px;
		--section-padding-width: 16px;
		--section-gap: 24px;
		--spacing-md: 24px;
		--font-size-base: 16px;
	}
}

@media (max-width: 480px) {
	:root {
		--section-padding-height: 50px;
		--section-padding-width: 16px;
	}
}

/* ========================================
   BOUTONS - STYLES DE BASE
======================================== */

/* Base commune pour tous les boutons */
.btn-primary,
.btn-secondary {
	/* Layout */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	height: 46px;
	gap: 10px;

	/* Spacing */
	padding: 12px 28px;

	/* Style */
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);

	/* Typography */
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	font-style: normal;
	line-height: 100%;
	text-decoration: none;
	white-space: nowrap;

	/* Interaction */
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-primary br,
.btn-secondary br {
	display: none;
}

/* Bouton principal réutilisable */
.btn-primary {
	background-color: #FBDEDA;
	color: var(--primary-color);
	border: none;
}

.btn-primary:hover {
	background-color: #f0c5bc;
	color: var(--primary-color);
	text-decoration: none;
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

/* Bouton secondaire réutilisable */
.btn-secondary {
	background-color: #FFFFFF;
	color: var(--primary-color);
	border: 1px solid #FBDEDA;
}

.btn-secondary:hover {
	background-color: #f0c5bc;
	color: var(--primary-color);
	text-decoration: none;
}

.btn-secondary:active {
	transform: translateY(0);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

/* ========================================
   COMPONENTS SPÉCIFIQUES - NAVIGATION
======================================== */

/* ========================================
   TYPOGRAPHIE DE BASE
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: normal;
	font-style: normal;
	color: var(--primary-color);
	text-align: left;
}

h1 {
	font-family: 'Libre Baskerville', Georgia, Times, serif;
	font-size: 48px;
	margin-bottom: var(--spacing-md);
}

h2 {
	font-family: 'Libre Baskerville', Georgia, Times, serif;
	margin-bottom: var(--spacing-md);
	font-size: 40px;
}

h3 {
	font-family: 'Libre Baskerville', Georgia, Times, serif;
	margin-bottom: 32px;
	font-size: 28px;
}

h4 {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
}

h5 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

h6 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--dark-color);
	line-height: 1.6;
	text-align: left;
}



/* ========================================
   LAYOUT CENTRALISÉ - SECTIONS
======================================== */

/* Container standard pour toutes les sections */
.section-container {
	width: 100%;
	max-width: var(--container-max-width);
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
	gap: var(--section-gap);
}




/* Navigation principale */
.site-header {
	background-color: white;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease, padding 0.3s ease;
}

/* Spacer injected by JS to compensate for fixed header height */
.site-header-spacer {
	display: block;
	width: 100%;
}

.site-header.scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0px var(--section-padding-width) 40px var(--section-padding-width);
	display: flex;
	flex-direction: column;
	transition: padding 0.3s ease;
}

.site-header.scrolled .header-wrapper {
	padding: 15px var(--section-padding-width) 20px var(--section-padding-width);
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 18px;
}

.site-logo-link {
	font-size: var(--font-size-xl);
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-logo {
	height: 100px;
	width: auto;
	max-width: 300px;
	object-fit: contain;
	object-position: left center;
	margin-left: -15px;
}

.main-nav-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 0;
}

.main-navigation {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
}

.nav-menu-item {
	font-weight: 600;
	color: var(--primary-color);
	position: relative;
}

.nav-menu-link {
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.nav-menu-link:hover {
	color: var(--primary-hover);
	text-shadow: 0 3px 12px rgba(251, 222, 218, 0.9);
}

.nav-menu-link.current-page {
	color: var(--primary-hover);
	border-bottom: 2px solid var(--primary-hover);
}

/* Dropdown accompagnements */
.services-dropdown-toggle::after {
	content: '\f078';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.7em;
	margin-left: 6px;
	transition: transform 0.3s ease;
}

.services-dropdown:hover .services-dropdown-toggle::after {
	transform: rotate(180deg);
}

.services-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #FFFFFF;
	border: 1px solid #e0e0e0;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	list-style: none;
	margin: 0;
	margin-top: 20px;
	min-width: 220px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.services-dropdown-menu::before {
	content: "";
	display: block;
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: transparent;
}

.services-dropdown:hover .services-dropdown-menu,
.services-dropdown-menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.services-dropdown-link {
	display: block;
	width: 100%;
	padding: 10px 20px;
	color: var(--primary-color);
	text-decoration: none;
	border: none;
	background: none;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.services-dropdown-link:hover {
	color: var(--primary-color);
	background-color: var(--clickable-color);
}

/* Style pour l'élément actif du menu déroulant */
.services-dropdown-link.current-page {
	background-color: transparent;
	color: var(--primary-color);
	font-weight: 500;
	text-decoration: none;
}

.services-dropdown-link.current-page span {
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 3px;
}

/* Actions header */
.header-actions {
	display: flex;
	align-items: center;
}

/* Mobile CTA - Hidden on Desktop */
.mobile-contact-cta {
	display: none;
}

/* ========================================
   CONTENU PRINCIPAL
======================================== */
.main-content {
	min-height: 60vh;
}

/* ========================================
   SECTION HERO - PAGE D'ACCUEIL
======================================== */



/* Section hero de la page d'accueil */
.homepage-hero {
	min-height: 538px;
	display: flex;
	position: relative;
	overflow: visible;
	width: 100%;
	justify-content: center;
	margin-bottom: 50px;
}

.hero-container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	height: 100%;
}

.hero-content-grid {
	display: flex;
	width: 100%;
	min-height: 538px;
	align-items: stretch;
}

.hero-text-column {
	flex: 0 0 67%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background-color: #14233A;
	padding: 4rem 4rem;
	text-align: left;
	border-radius: 16px 0 0 16px;
	position: relative;
}

.hero-text-content {
	width: 100%;
	max-width: 100%;
}

.hero-image-column {
	flex: 0 0 33%;
	display: flex;
	align-items: flex-end;
	position: relative;
	overflow: visible;
	background: linear-gradient(to bottom, #c4c4c4 0%, #e8e8e8 50%, #ffffff 100%);
	border-radius: 0 16px 16px 0;
}

.hero-main-title {
	color: white;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: left;
	font-size: 48px;
	line-height: 1.15;
}

.hero-description {
	margin-bottom: 2rem;
	text-align: left;
	color: white;
	font-size: 29px;
	line-height: 1.6;
}

.hero-subtitle {
	color: white;
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.hero-features-list {
	list-style: none;
	margin: 0 0 24px 0;
	padding: 0;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
	color: white;
	font-size: 25px;
	line-height: 1.6;
	margin-bottom: 0.75rem;
	font-family: 'Open Sans', sans-serif;
}

.hero-feature-item:last-child {
	margin-bottom: 0;
}

.hero-checkmark {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	color: white;
	margin-top: 5px;
}

.hero-button-group {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.hero-visual-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	position: relative;
}

/* Hero image — works regardless of which class Gutenberg applies after replacement */
.hero-main-image,
.hero-visual-wrapper a,
.hero-visual-wrapper figure,
.hero-visual-wrapper .wp-block-image {
	width: 100%;
	height: 100%;
	margin: 0;
	display: flex;
}

img.hero-main-image,
figure.hero-main-image img,
.hero-visual-wrapper img,
.hero-visual-wrapper figure img,
.hero-visual-wrapper .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	overflow: hidden;
	border-radius: 0 16px 16px 0;
}

/* Note: Les styles responsive pour le hero sont consolidés dans la section
   MEDIA QUERIES CONSOLIDÉES en fin de fichier */

/* ========================================
   SECTION PARTENAIRES
======================================== */

.partners-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
}

.partners-logos-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 24px 16px;
	align-items: center;
	justify-items: center;
	max-width: 100%;
	margin: 0 auto;
}

.partner-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	height: 70px;
	width: 100%;
	padding: 8px;
}

.partner-logo-image,
.partner-logo-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(0);
	transition: all 0.3s ease;
}

.partner-logo-item:hover .partner-logo-image {
	filter: grayscale(0);
	transform: scale(1.05);
}



/* ========================================
   SECTION ACCOMPAGNEMENTS
======================================== */

/* Prevent WP's has-background block CSS from creating a scroll container
   that breaks position:sticky on the header. */
.services-bg.wp-block-group,
.services-bg.wp-block-group.has-background {
	overflow: visible !important;
}

.services-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.services-section-header {
	text-align: center;
}

.services-intro {
	text-align: left;
}

.services-intro p {
	margin-bottom: 20px;

}

.services-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: stretch;
}

.service-offering-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	padding: 20px;
}

.service-card-image {
	width: 100%;
	height: 360px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 16px;
}

.service-image,
.service-card-image img,
.service-offering-card > img,
.service-offering-card > a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.service-card-content {
	padding: 24px 0;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	text-align: left;
}

.service-card-content h3 {
	margin-bottom: 16px;
}

.service-card-content p {
	margin-top: 8px;
	margin-bottom: 24px;
	flex-grow: 1;
}

.service-cta-button {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}



/* ========================================
   SECTION ACTUALITÉS
======================================== */

.news-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
}

.news-section-header {
	text-align: left;
	margin-bottom: 0;
}

.news-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: stretch;
}

.news-card {
	background: rgba(255, 255, 255, 1);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	transition: var(--transition-base);
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	padding: 12px;
}

.news-excerpt {
	margin-bottom: 24px;
}

.news-cta-button {
	margin-top: 24px;
}

.news-content {
	flex: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
}

.news-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 16px;
}

.news-title {
	text-align: left;
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	flex: 1;
}

.news-meta {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
}

.news-category {
	background-color: var(--accent-seafoam);
	color: var(--primary-color);
	padding: 8px 14px;
	border-radius: 999px;
	font-size: var(--font-size-sm);
	font-weight: 600;
	white-space: nowrap;
}

.news-date {
	font-size: var(--font-size-sm);
	background-color: var(--accent-seafoam);
	color: var(--primary-color);
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 600;
	white-space: nowrap;
	display: flex;
}

.news-date::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('assets/img/calendrier.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 8px;
}

.news-image {
	display: flex;
	border-radius: 16px;
	align-items: flex-start;
	justify-content: center;
	background-color: #ffffff;
	overflow: hidden;
	padding: 16px;
	height: auto;
	align-self: flex-start;
}

.news-image-element,
.news-image img {
	width: 300px;
	height: auto;
	max-height: 160px;
	object-fit: cover;
	transition: transform 0.3s ease;
	border-radius: 16px;
}

/* ========================================
   SECTION CHIFFRES CLÉS
======================================== */

.stats-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.stats-cards-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--section-gap);
}

.stats-card {
	flex: 1;
	min-width: 280px;
	max-width: 400px;
	background: #E8F6EE;
	border: none;
	border-radius: 16px;
	box-shadow: none;
	overflow: hidden;
}

.stats-card-content {
	padding: 2rem var(--spacing-xl);
}

.stats-number {
	font-size: 3rem;
	color: var(--dark-color);
	font-weight: 700;
}

.stats-label {
	margin-bottom: 0;
	color: var(--dark-color);
	font-size: 24px;
	line-height: 1.5;
}

/* ========================================
   SECTION RESSOURCES
======================================== */


.resources-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
}

.resources-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.resource-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	transition: var(--transition-base);
	border: none;
	padding: 20px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.resource-card-image {
	width: 100%;
	overflow: hidden;
	background: #1e3a5f;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
}

.resource-image,
.resource-card-image img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	transition: var(--transition-base);
}

.resource-card-content {
	padding: 24px 12px;
	background: white;
	text-align: left;
}

.resource-title {
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 16px;
}

.resources-cta-wrapper {
	display: flex;
	align-items: center;
	margin-top: 24px;
}



/* ========================================
   PAGE RESSOURCES - STYLES SPÉCIFIQUES
======================================== */

.resources-hero-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.resources-hero-intro {
	max-width: var(--container-max-width);
}

.resources-hero-description strong {
	font-weight: 600;
	color: var(--primary-color);
}

/* Section Podcast */
.resources-podcast-section {
	max-width: var(--container-max-width);
	padding: var(--section-padding-height) var(--section-padding-width);
}

.resources-podcast-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
}

.resources-podcast-text {
	text-align: left;
}

.resources-podcast-tagline {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.resources-podcast-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.resources-podcast-image {
	width: 100%;
	max-width: 550px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Section Plateformes */
.resources-platforms-section {
	padding: var(--section-padding-height) var(--section-padding-width);
	max-width: var(--container-max-width);
}

.resources-platforms-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

/* Cartes de plateformes */
.platform-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 16px;
	text-decoration: none;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid #FBDEDA;
	width: 230px;
	flex: 1;
	transition: all 0.3s ease;
}

.platform-card:hover {
	border-color: var(--primary-color);
}

.platform-card img {
	width: 180px;
	height: 100px;
	object-fit: contain;
}

#platform-card-apple img {
	width: 70px;
	height: 70px;
	object-fit: contain;
	margin: 15px 0;
}

.platform-name {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}

/* Section Newsletter */
.resources-newsletter-section {
	padding: var(--section-padding-height) var(--section-padding-width);
	max-width: var(--container-max-width);
}

.resources-newsletter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
}

.resources-newsletter-text {
	text-align: left;
	display: flex;
	flex-direction: column;
}

.resources-newsletter-tagline {
	font-size: 1rem;
	font-weight: 400;
	color: var(--dark-color);
	margin-bottom: 1rem;
}

.resources-newsletter-cta {
	margin-top: 24px;
}

.resources-newsletter-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.resources-newsletter-image {
	width: 100%;
	max-width: 550px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Section CTA Action */
.resources-action-section {
	padding: var(--section-padding-height) var(--section-padding-width);
	max-width: var(--container-max-width);
}

.resources-action-content {
	padding: 3rem;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid #e9ecef;
}

.resources-action-description p {
	margin-bottom: 0.75rem;
}

.resources-action-cta {
	margin-top: 24px;
}




/* ========================================
   PAGE TÉMOIGNAGES - STYLES SPÉCIFIQUES
======================================== */

.testimonials-hero {
	margin-top: 0;
	margin-bottom: 0;
}

.testimonials-hero-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

/* ========================================
   SECTION TÉMOIGNAGES
======================================== */

.testimonials-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
}

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

.testimonial-item {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: #ffffff;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border-radius: 16px;

}

.testimonial-content-card {
	background: white;
	border-radius: 0;
	overflow: visible;
	display: grid;
	grid-template-columns: 48px 1fr;
	grid-template-rows: auto auto;
	column-gap: 16px;
	row-gap: 8px;
	align-items: start;
	height: 100%;
	transition: none;
	padding: 0;
	border: none;
	box-shadow: none;
}

.testimonial-logo {
	grid-column: 1;
	grid-row: 1 / 3;
	padding: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	background-color: transparent;
	min-height: auto;
	margin-top: 4px;
}

.testimonial-logo-image,
.testimonial-logo img {
	width: 48px;
	height: 48px;
	border-radius: 0;
	background-color: transparent;
	padding: 0;
	object-fit: contain;
}

.testimonial-text {
	grid-column: 2;
	grid-row: 1;
	padding: 0;
	margin-bottom: 0;
	font-style: normal;
	color: #333333;
	line-height: 1.6;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}

.testimonial-author-name {
	font-weight: 400;
	font-style: italic;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

.testimonials-cta-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 24px;
}



/* ========================================
   FOOTER (NOUVEAU DESIGN)
======================================== */
.site-footer {
	background-color: #14233a;
	/* Dark blue */
	color: #ffffff;
	padding: 60px 0;
	font-family: 'Open Sans', sans-serif;
	margin-top: 50px;
}

.footer-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--section-padding-width);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	column-gap: 40px;
	row-gap: 30px;
	align-items: start;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

/* Grid Alignment for Desktop */
.footer-column-mission,
.footer-column-social {
	display: contents;
}

.footer-column-mission .footer-group-top {
	grid-column: 1;
	grid-row: 1;
}

.footer-column-mission .footer-group-bottom {
	grid-column: 1;
	grid-row: 2;
}

.footer-column-social .footer-group-top {
	grid-column: 2;
	grid-row: 1;
}

.footer-column-social .footer-group-bottom {
	grid-column: 2;
	grid-row: 2;
}

/* Column 3: Newsletter et Podcast empilés */
.footer-column-newsletter {
	grid-column: 3;
	grid-row: 1;
}

.footer-column-podcast {
	grid-column: 3;
	grid-row: 2;
}

.footer-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.125rem;
	/* 18px */
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.footer-title-legal,
.footer-title-qualiopi {
	margin-top: 0;
	/* Reset margin since we use grid gap now */
}

.footer-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 1rem;
}

/* Links */
.footer-legal-links,
.footer-social-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-legal-links li {
	margin-bottom: 0.5rem;
}

.footer-legal-links a {
	color: #ffffff;
	text-decoration: underline;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.footer-legal-links a:hover {
	color: var(--clickable-color);
}

/* Social Links */
.footer-social-links li {
	margin-bottom: 0.8rem;
}

.footer-social-links a {
	display: flex;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
	font-size: 0.95rem;
	gap: 10px;
}

.footer-social-links a:hover {
	color: var(--clickable-color);
}

.footer-social-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	transition: transform 0.2s ease;
}

.footer-social-links a:hover .footer-social-icon {
	transform: scale(1.1);
}

.footer-external-icon {
	font-size: 0.75rem;
	margin-left: 5px;
	opacity: 0.8;
}

/* Qualiopi */
.footer-qualiopi {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.footer-qualiopi-img {
	height: 70px;
	width: 130px;
	background-color: white;
	padding: 5px;
	border-radius: 4px;
}

.footer-qualiopi-link {
	color: #ffffff;
	text-decoration: underline;
	font-size: 0.95rem;
}

/* Newsletter */
.footer-link-highlight {
	color: #ffffff;
	text-decoration: underline;
	margin-bottom: 1.5rem;
	display: inline-block;
}

.footer-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 2rem;
}

.footer-form-label {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0;
}

.footer-form-input {
	padding: 10px;
	border-radius: 4px;
	border: none;
	font-size: 1rem;
	width: 100%;
}

.footer-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 10px 0;
}

.footer-checkbox-group input[type="checkbox"] {
	margin-top: 4px;
}

.footer-checkbox-group label {
	font-size: 12px;
	line-height: 1.4;
	color: #cccccc;
}

.footer-submit-btn {
	background-color: #FBDEDA;
	/* Pink */
	color: #14233a;
	/* Dark blue text */
	border: none;
	padding: 10px 20px;
	border-radius: 16px;
	font-weight: 700;
	cursor: pointer;
	align-self: flex-start;
	transition: background-color 0.2s ease;
}

.footer-submit-btn:hover {
	background-color: #f0c5bc;
}

.footer-copyright {
	font-size: 0.85rem;
	color: #cccccc;
	margin-top: 10px;
}

/* Note: Les styles responsive du footer sont consolidés dans la section 
   MEDIA QUERIES CONSOLIDÉES en fin de fichier */

/* ========================================
   BOUTON RETOUR EN HAUT
======================================== */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: var(--clickable-color);
	color: var(--primary-color);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: var(--primary-hover);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
	transform: translateY(-1px);
}



/* ========================================
   PRINT STYLES
======================================== */
@media print {
	* {
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	.hero-cta-primary,
	.hero-cta-secondary,
	.service-cta-button,
	.contact-cta-button,
	.contact-submit-button {
		border: 1px solid #000;
	}

	.site-header,
	.site-footer {
		display: none;
	}
}

/* ========================================
   STYLES SPÉCIFIQUES - PAGE À PROPOS
======================================== */

.about-hero {
	margin-top: 0;
}

.about-hero-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

/* Section Approche */

.about-approach-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
}

.about-approach-wrapper h2 {
	white-space: nowrap;
	overflow: visible;
	width: 100%;
}

.about-approach-content {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 4rem;
	align-items: stretch;
}

.about-approach-text {
	display: flex;
	flex-direction: column;
}

.about-approach-text h2 {
	white-space: nowrap;
	overflow: visible;
	margin-bottom: 2.5rem;
}

.about-approach-description,
.about-approach-objectives {
	margin-bottom: 32px;
}

.about-approach-objectives h4,
.about-approach-values h4 {
	margin-bottom: 16px;
}

.about-approach-objectives-end h4 {
	margin-bottom: 1rem;
	color: var(--primary-color);
	font-weight: 700;
}

.about-approach-objectives-end {
	margin-bottom: 0;
}

#about-approach-objectives-end {
	margin-bottom: 0;
}

.about-values-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-values-list li {
	display: flex;
	align-items: baseline;
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.about-values-list li::before {
	content: "•";
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.2rem;
	flex-shrink: 0;
	line-height: 1;
	width: 16px;
	display: inline-block;
}

.about-approach-values p {
	margin-top: 1rem;
}

/* Visualisation graphique */
.about-approach-visual {
	position: relative;
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
	height: 100%;
}

.about-chart-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.about-strategy-chart {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	border-radius: 16px;
}

.about-strategy-chart-visibility {
	object-position: center bottom;
}

/* Section Expertise */

.about-expertise-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
}

.about-expertise-content {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 4rem;
	align-items: start;
}

/* Section visuelle (graphique) */
.expertise-visual-section {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-right: 0;
}

.expertise-image-wrapper {
	max-width: 600px;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.expertise-chart-image {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

/* Section texte */
.expertise-text-section {
	text-align: left;
}

.expertise-text-section h4:first-child {
	margin-top: 0;
}

.expertise-description {
	margin-bottom: 2rem;
}

.expertise-description strong {
	font-weight: 600;
	color: var(--primary-color);
}

.services-list {
	list-style: none;
	margin: 0.8rem 0 1.5rem 0;
	padding: 0;
}

.services-list li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.services-list li::before {
	content: "•";
	color: var(--primary-color);
	font-weight: bold;
	position: absolute;
	left: 0;
	font-size: 1.1rem;
}

.services-list .smart-talent-link {
	color: var(--primary-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color 0.2s ease;
}

.services-list .smart-talent-link:hover,
.services-list .smart-talent-link:focus-visible {
	color: var(--primary-hover);
}

.expertise-pillars-simple {
	margin-top: 1.5rem;
}

.expertise-pillars-simple strong {
	font-weight: 600;
	color: var(--primary-color);
}

/* ========================================
   SECTION MA MÉTHODE DÉTAILLÉE
======================================== */


.about-method-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
}

.about-method-wrapper h2 {
	white-space: nowrap;
	overflow: visible;
	width: 100%;
}

.about-method-content {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 4rem;
	align-items: start;
}

/* Section texte de la méthode */
.method-text-section {
	text-align: left;
	display: flex;
	flex-direction: column;
}

.method-text-section h2 {
	white-space: nowrap;
	overflow: visible;
}

.method-intro {
	margin-bottom: 3rem;
}

.method-pillars {
	margin-bottom: 1rem;
	margin-top: 0;
}

.method-pillar {
	padding: 0 0 32px 0;
}

.method-pillar:first-child {
	padding-top: 0;
}

.method-pillar h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.method-pillar p {
	line-height: 1.7;
}

.method-conclusion {
	font-style: italic;
	margin-top: 1rem;
}

/* Section visuelle de la méthode */
.method-visual-section {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-left: 0;
}

.method-image-wrapper {
	max-width: 600px;
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.method-chart-image {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

/* Section texte de la méthode */
.method-text-section {
	text-align: left;
}

.method-text-section h2 {
	white-space: nowrap;
	overflow: visible;
}

/* ========================================
   SECTION ÉCHANGEONS
======================================== */


.about-contact-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.about-contact-content {
	padding: 3rem;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid #e9ecef;
}

.contact-message p {
	margin-bottom: 1rem;
}

.contact-message em {
	font-style: italic;
	color: var(--primary-color);
	font-weight: 500;
}

.contact-cta-wrapper {
	margin-top: 24px;
}

.contact-cta-button-primary {
	display: inline-block;
	background-color: var(--clickable-color);
	color: var(--primary-color);
	padding: 1rem 2rem;
	border-radius: 16px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-color);
}

.contact-cta-button-primary:hover {
	color: var(--primary-color);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design - Page À propos */
@media (max-width: 768px) {

	.about-approach-wrapper h2,
	.about-expertise-wrapper h2,
	.about-method-wrapper h2 {
		white-space: normal;
	}

	.about-approach-content {
		grid-template-columns: 1fr;
		gap: 0rem;
	}

	.about-approach-visual {
		margin-top: 0;
		height: auto;
		overflow: visible;
	}

	.about-chart-container {
		position: static;
		height: auto;
	}

	.about-strategy-chart {
		height: auto;
	}

	.about-expertise-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.expertise-visual-section {
		padding-right: 0;
		order: 2;
		margin-top: 0;
	}

	.expertise-text-section {
		order: 1;
	}

	.about-method-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.method-visual-section {
		padding-left: 0;
		order: 2;
		margin-top: 0;
	}

	.method-text-section {
		order: 1;
	}

	.about-contact-content {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.about-approach {
		padding: 50px 0;
	}

	.about-approach-wrapper {
		padding: 0 1rem;
	}

	.about-expertise {
		padding: 50px 0;
	}

	.about-expertise-wrapper {
		padding: 0 1rem;
	}

	.method-intro {
		margin-bottom: 1rem;
	}

	.about-contact {
		padding: 3rem 0;
	}

	.about-contact-wrapper {
		padding: 0 1rem;
	}

	.about-contact-content {
		padding: 1.5rem 1rem;
	}
}

/* ========================================
   PAGE TÉMOIGNAGES - STYLES SPÉCIFIQUES
======================================== */

.testimonials-page {
	min-height: unset;
}

.testimonials-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.testimonials-header {
	text-align: left;
	margin-bottom: 3rem;
}

.testimonials-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.testimonial-card {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: auto auto;
	column-gap: 2rem;
	row-gap: 0;
	padding: 2rem;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid #f0f0f0;
	transition: box-shadow 0.3s ease;
}

.testimonial-avatar {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border: 2px solid #e9ecef;
	border-radius: 50%;
	overflow: hidden;
	padding: 6px;
	grid-column: 1;
	grid-row: 1 / 3;
}

.testimonial-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	opacity: 1;
	max-width: 100%;
	max-height: 100%;
}

.testimonial-content {
	grid-column: 2;
	grid-row: 1;
}

.testimonial-author {
	display: block;
	font-size: 16px;
	color: var(--primary-color);
	font-style: normal;
	grid-column: 2;
	grid-row: 2;
}

.testimonial-author strong {
	font-weight: 600;
}

/* ========================================
   SECTION CALL-TO-ACTION TÉMOIGNAGES
======================================== */

.testimonials-cta-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.testimonials-cta-content {
	padding: 3rem;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid #e9ecef;
}

.testimonials-cta-description {
	margin-bottom: 24px;
}

/* Responsive Design pour la section CTA */
@media (max-width: 768px) {
	.testimonials-cta-section {
		padding: 10px 0 10px 0;
	}

	.testimonials-cta-container {
		padding: 0 1.5rem;
	}

	.testimonials-cta-content {
		padding: 2.5rem 2rem;
	}
}

@media (max-width: 480px) {
	.testimonials-cta-section {
		padding: 10px 0 10px 0;
	}

	.testimonials-cta-container {
		padding: 0 1rem;
	}

	.testimonials-cta-content {
		padding: 2rem 1.5rem;
	}

	.testimonials-cta-description {
		margin-bottom: 2rem;
	}
}



/* ========================================
   PAGE REVUE DE PRESSE
======================================== */

.press-hero {
	margin-top: 0;
}

.press-hero-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.press-articles-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* Press Article Card */
.press-article-card {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	background-color: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	transition: box-shadow 0.3s ease;
}

/* Article Content */
.press-article-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.press-article-source {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-color);
	background-color: var(--accent-seafoam);
	padding: 6px 16px;
	border-radius: 16px;
	align-self: flex-start;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.press-article-title {
	font-size: 1.75rem;
	margin: 0;
}

.press-article-excerpt {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--dark-color);
	margin: 0 0 8px 0;
}

/* Article Image */
.press-article-image {
	flex: 0 0 380px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.press-image-element {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}



/* ========================================
   SECTION FAQ - PAGE FAQ
======================================== */

.faq-hero {
	margin-top: 0;
	margin-bottom: 0;
}

.faq-hero-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.faq-content-wrapper {
	max-width: var(--container-max-width);
	padding: var(--section-padding-height) var(--section-padding-width);
	margin: 0 auto;
}

.faq-accordion {
	max-width: var(--container-max-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* FAQ Items */
.faq-item {
	background-color: #ffffff;
	border: 2px solid #FBDEDA;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	transition: all 0.2s ease;
	overflow: hidden;
}

@media (hover: hover) {
	.faq-item:hover {
		background-color: #FBDEDA;
	}
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--primary-color);
	font-family: 'Open Sans', sans-serif;
	transition: all 0.2s ease;
}

.faq-question:hover {
	background-color: transparent;
}

.faq-question-text {
	flex: 1;
	padding-right: 1rem;
}

.faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #FFB6C1;
	transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
	color: #FF69B4;
}

/* FAQ Answers */
.faq-answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
	max-height: 500px;
	padding-bottom: 1.5rem;
}

.faq-answer-content {
	padding: 0 2rem;
	color: #333;
	line-height: 1.7;
}

.faq-answer-content p {
	margin: 0;
}

/* Section CTA Final */
.faq-cta-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.faq-cta-content {
	padding: 3rem;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid #e9ecef;
}


.faq-cta-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--primary-color);
	margin-bottom: 24px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}



/* ========================================
   PAGE CONTACT - STYLES SPÉCIFIQUES
======================================== */

.contact-hero-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.contact-hero-intro {
	max-width: var(--container-max-width);
}

/* Section Formulaire */
.contact-form-section {
	margin-top: 0;
}

.contact-form-wrapper {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--section-padding-height) var(--section-padding-width);
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: stretch;
}

/* Formulaire */
.contact-form-container {
	display: flex;
	flex-direction: column;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.contact-form-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 20px;
}

.contact-form-full {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-form-label {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--dark-color);
}

.required-asterisk {
	color: #dc3545;
}

.contact-form-input,
.contact-form-textarea {
	width: 100%;
	padding: 12px 16px;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: var(--dark-color);
	background-color: #ffffff;
	border: 2px solid #e0e0e0;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 35, 58, 0.1);
}

.contact-form-input.is-invalid,
.contact-form-textarea.is-invalid {
	border-color: #dc3545;
}

.contact-form-input.is-valid,
.contact-form-textarea.is-valid {
	border-color: #28a745;
}

.contact-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.invalid-feedback {
	font-size: 14px;
	color: #dc3545;
	margin-top: 4px;
	display: none;
}

.contact-form-input.is-invalid~.invalid-feedback,
.contact-form-textarea.is-invalid~.invalid-feedback {
	display: block;
}

.contact-form-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}

.required-note {
	font-size: 14px;
	color: #dc3545;
	font-style: italic;
}

.contact-submit-button {
	padding: 14px 32px;
}

/* Image de contact */
.contact-image-container {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
}

.contact-image {
	width: 100%;
	max-width: 500px;
	height: 83.5%;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	object-fit: cover;
}



/* ========================================
   STYLES SPÉCIFIQUES - PAGE ACCOMPAGNEMENT-1
======================================== */

/* Section Enjeux - Grille de 2 colonnes */
.accompagnement-enjeux-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.enjeu-item {
	display: flex;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.enjeu-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	font-size: 20px;
	font-weight: bold;
	color: var(--primary-color);
	line-height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.enjeu-content {
	flex: 1;
}

.enjeu-content h4 {
	margin: 0 0 8px 0;
	line-height: 24px;
	font-size: 18px;
}

.enjeu-content p {
	margin: 0;
	line-height: 1.6;
}

/* Section Impact - Liste verticale */
.accompagnement-impact-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.impact-item {
	display: flex;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.impact-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	font-size: 20px;
	font-weight: bold;
	color: var(--primary-color);
	line-height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.impact-content {
	flex: 1;
}

.impact-content h4 {
	margin: 0 0 8px 0;
	line-height: 24px;
	font-size: 18px;
}

.impact-content p {
	margin: 0;
	line-height: 1.6;
}



/* ========================================
   RESPONSIVE & MOBILE MENU REFACTOR
======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	/* Hidden on desktop */
	flex-direction: column;
	justify-content: space-between;

	/* CTA Styling - Primary Button Look */
	width: 46px;
	height: 46px;
	padding: 13px 9px;
	background-color: #FBDEDA;
	border-radius: 16px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
	border: none;
	cursor: pointer;
	z-index: 1001;
	margin-left: 20px;
	transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
	background-color: #f0c5bc;
}

.mobile-menu-toggle .hamburger-line {
	width: 100%;
	height: 3px;
	background-color: var(--primary-color);
	border-radius: 3px;
	transition: all 0.3s ease-in-out;
	transform-origin: center;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
	width: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu State */
body.menu-open {
	overflow: hidden;
	/* Prevent scrolling when menu is open */
}

/* Tablet - Footer 2 colonnes */
@media (max-width: 1200px) {
	.footer-container {
		grid-template-columns: 1fr 1fr;
		column-gap: 40px;
		row-gap: 40px;
	}

	.footer-column-mission .footer-group-top {
		grid-column: 1;
		grid-row: 1;
	}

	.footer-column-mission .footer-group-bottom {
		grid-column: 1;
		grid-row: 2;
	}

	.footer-column-social .footer-group-top {
		grid-column: 2;
		grid-row: 1;
	}

	.footer-column-social .footer-group-bottom {
		grid-column: 2;
		grid-row: 2;
	}

	.footer-column-newsletter {
		grid-column: 1;
		grid-row: 3;
	}

	.footer-column-podcast {
		grid-column: 2;
		grid-row: 3;
	}
}

@media (max-width: 992px) {

	/* Header Adjustments */
	.site-header {
		position: fixed !important;
		top: 0;
		z-index: 9999;
		background-color: #fff;
		width: 100%;
	}

	.header-wrapper {
		padding: 15px 16px;
		background-color: #fff;
	}

	.header-actions {
		background-color: transparent;
	}

	.header-top {
		margin-bottom: 0;
		position: relative;
		z-index: 1001;
	}

	.site-logo {
		height: 80px;
		/* Logo size for mobile */
		position: relative;
		z-index: 1001;
	}

	.site-logo-link {
		position: relative;
		z-index: 1001;
	}

	.header-actions .contact-cta-button {
		display: none;
		/* Hide contact button in header top on mobile */
	}

	/* Show Hamburger */
	.mobile-menu-toggle {
		display: flex;
		position: relative;
		z-index: 1002;
	}

	/* Navigation Wrapper Mobile */
	.main-nav-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 100px;
		/* Space for header */
		padding-bottom: 40px;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		z-index: 998;
		/* Behind hamburger */
		overflow-y: auto;
	}

	.main-nav-wrapper.is-open {
		transform: translateX(0);
	}

	/* Navigation Items Mobile */
	.main-navigation {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: 100%;
		padding: 0 20px;
	}

	/* Mobile CTA in Navigation */
	.main-nav-wrapper .mobile-contact-cta {
		display: flex;
		justify-content: center;
		padding: 0 20px;
		margin-top: auto;
		padding-top: 24px;
		border-top: 1px solid #e0e0e0;
		width: 100%;
	}

	.mobile-contact-cta .btn-primary {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.nav-menu-item {
		width: 100%;
		text-align: left;
	}

	.nav-menu-link {
		justify-content: flex-start;
		font-size: 1.1rem;
		padding: 8px 0;
		color: var(--primary-color);
		font-weight: 500;
		transition: color 0.3s ease;
	}

	.nav-menu-link:hover {
		color: var(--primary-hover);
	}

	/* Style pour l'élément actif dans le menu mobile */
	.nav-menu-link.current-page {
		color: var(--primary-hover);
		font-weight: 700;
		display: inline-block;
		border-bottom: 3px solid var(--primary-hover);
		padding-bottom: 8px;
	}

	/* Dropdown Mobile */
	.services-dropdown-menu {
		position: static;
		box-shadow: none;
		border: none;
		background-color: #f9f9f9;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		margin-top: 10px;
		width: 100%;
		padding: 0;
	}

	.services-dropdown.active .services-dropdown-menu,
	.services-dropdown-menu.active {
		display: block !important;
	}

	/* Disable hover on mobile to prevent conflicts */
	.services-dropdown:hover .services-dropdown-menu {
		display: none;
	}

	.services-dropdown.active:hover .services-dropdown-menu {
		display: block;
	}

	.services-dropdown-link {
		padding: 12px 20px;
		font-size: 0.95rem;
		text-align: left;
		color: var(--primary-color);
		font-weight: 500;
		transition: all 0.3s ease;
	}

	.services-dropdown-link:hover {
		background-color: var(--clickable-color);
		color: var(--primary-hover);
	}

	/* Style pour l'élément actif dans le dropdown mobile */
	.services-dropdown-link.current-page {
		color: var(--primary-hover);
		font-weight: 700;
	}

	.services-dropdown-link.current-page span {
		border-bottom: 2px solid var(--primary-hover);
		padding-bottom: 2px;
	}

	/* Hero Section Mobile */
	.hero-content-grid {
		flex-direction: column;
		min-height: auto;
	}

	.hero-text-column {
		width: 100%;
		border-radius: 16px 16px 0 0;
		padding: 40px 20px;
		order: 1;
	}

	.hero-image-column {
		width: 100%;
		height: 300px;
		border-radius: 0 0 16px 16px;
		order: 2;
	}

	.hero-visual-wrapper img,
	.hero-visual-wrapper figure img,
	.hero-visual-wrapper .wp-block-image img {
		border-radius: 0 0 16px 16px;
	}

	.hero-button-group {
		flex-direction: column;
		width: 100%;
	}

	/* Stats Section Mobile */
	.stats-cards-grid {
		flex-direction: column;
		gap: 20px;
	}

	.stats-card {
		width: 100%;
	}

	/* Footer Mobile */
	.footer-container {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.footer-column {
		width: 100%;
	}

	.footer-submit-btn {
		width: 100%;
		justify-content: center;
		align-self: stretch;
		text-align: center;
	}
}

@media (max-width: 480px) {

	.section-container,
	.hero-container,
	.footer-container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Note: Tous les autres styles responsive sont consolidés dans la section 
   MEDIA QUERIES CONSOLIDÉES ci-dessous */

/* ========================================
   BOUTONS CTA - STYLES RESPONSIFS HOMOGÈNES
======================================== */

/* Note: Les styles responsive des boutons sont consolidés 
   dans la section MEDIA QUERIES CONSOLIDÉES en fin de fichier */

/* ========================================
   MEDIA QUERIES CONSOLIDÉES PAR BREAKPOINT
   Organisation : Desktop-first approach
   Breakpoints : 992px, 768px, 576px, 480px
======================================== */

/* ====================================
   TABLETTES ET PETITS ÉCRANS (max-width: 992px)
==================================== */
@media (max-width: 992px) {

	/* === BOUTONS === */
	.btn-primary,
	.btn-secondary {
		padding: 12px 24px;
		font-size: 15px;
	}

	/* === TYPOGRAPHIE === */
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 34px;
	}

	h3 {
		font-size: 26px;
	}

	/* === HEADER & NAVIGATION === */
	.site-header {
		position: fixed !important;
		/* Force fixed functionality */
		top: 0;
		z-index: 9999;
		background-color: #fff;
		width: 100%;
		/* Ensure full width */
	}

	.header-wrapper {
		padding: 15px 16px;
		background-color: #fff;
	}

	.header-actions {
		background-color: transparent;
	}

	.header-top {
		margin-bottom: 0;
		position: relative;
		z-index: 1001;
	}

	.site-logo {
		height: 80px;
		position: relative;
		z-index: 1001;
	}

	.site-logo-link {
		position: relative;
		z-index: 1001;
	}

	.header-actions .contact-cta-button {
		display: none;
	}

	/* Mobile Menu Toggle */
	.mobile-menu-toggle {
		display: flex;
		position: relative;
		z-index: 1002;
	}

	/* Navigation Mobile */
	.main-nav-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 100px;
		padding-bottom: 40px;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		z-index: 998;
		overflow-y: auto;
	}

	.main-nav-wrapper.is-open {
		transform: translateX(0);
	}

	.main-navigation {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: 100%;
		padding: 0 20px;
	}

	.main-nav-wrapper .mobile-contact-cta {
		display: flex;
		justify-content: center;
		padding: 0 20px;
		margin-top: auto;
		padding-top: 24px;
		border-top: 1px solid #e0e0e0;
		width: 100%;
	}

	.mobile-contact-cta .btn-primary {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.nav-menu-item {
		width: 100%;
		text-align: left;
	}

	.nav-menu-link {
		justify-content: flex-start;
		font-size: 1.1rem;
		padding: 8px 0;
		color: var(--primary-color);
		font-weight: 500;
		transition: color 0.3s ease;
	}

	.nav-menu-link:hover {
		color: var(--primary-hover);
	}

	.nav-menu-link.current-page {
		color: var(--primary-hover);
		font-weight: 700;
		display: inline-block;
		border-bottom: 3px solid var(--primary-hover);
		padding-bottom: 8px;
	}

	/* Dropdown Mobile */
	.services-dropdown-menu {
		position: static;
		box-shadow: none;
		border: none;
		background-color: #f9f9f9;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		margin-top: 10px;
		width: 100%;
		padding: 0;
	}

	.services-dropdown.active .services-dropdown-menu,
	.services-dropdown-menu.active {
		display: block !important;
	}

	.services-dropdown:hover .services-dropdown-menu {
		display: none;
	}

	.services-dropdown.active:hover .services-dropdown-menu {
		display: block;
	}

	.services-dropdown-link {
		padding: 12px 20px;
		font-size: 0.95rem;
		text-align: left;
		color: var(--primary-color);
		font-weight: 500;
		transition: all 0.3s ease;
	}

	.services-dropdown-link:hover {
		background-color: var(--clickable-color);
		color: var(--primary-hover);
	}

	.services-dropdown-link.current-page {
		color: var(--primary-hover);
		font-weight: 700;
	}

	.services-dropdown-link.current-page span {
		border-bottom: 2px solid var(--primary-hover);
		padding-bottom: 2px;
	}

	/* === HERO === */
	.hero-content-grid {
		flex-direction: column;
		min-height: auto;
	}

	.hero-text-column {
		width: 100%;
		border-radius: 16px 16px 0 0;
		padding: 40px 20px;
		order: 1;
	}

	.hero-image-column {
		width: 100%;
		height: 300px;
		border-radius: 0 0 16px 16px;
		order: 2;
	}

	.hero-visual-wrapper img,
	.hero-visual-wrapper figure img,
	.hero-visual-wrapper .wp-block-image img {
		border-radius: 0 0 16px 16px;
	}

	.hero-button-group {
		flex-direction: column;
		width: 100%;
	}

	/* === STATS === */
	.stats-cards-grid {
		flex-direction: column;
		gap: 20px;
	}

	.stats-card {
		width: 100%;
	}

	/* === FOOTER === */
	.footer-container {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.footer-column {
		width: 100%;
	}

	/* Utiliser display: contents pour permettre le réordonnancement des sous-éléments */
	.footer-column-mission,
	.footer-column-social {
		display: contents;
	}

	/* Ordre d'affichage sur mobile */
	.footer-column-mission .footer-group-top {
		order: 1;
	}

	.footer-column-social .footer-group-top {
		order: 2;
	}

	.footer-column-social .footer-group-bottom {
		order: 3;
	}

	.footer-column-newsletter {
		order: 4;
	}

	.footer-column-podcast {
		order: 5;
	}

	/* Le copyright (dans footer-group-bottom de mission) apparaît en dernier */
	.footer-column-mission .footer-group-bottom {
		order: 6;
	}

	/* === PAGE RESSOURCES === */
	.resources-podcast-content,
	.resources-newsletter-content {
		flex-direction: column;
		gap: 30px;
	}

	.resources-podcast-visual,
	.resources-newsletter-visual {
		width: 100%;
		order: -1;
	}

	.resources-podcast-image,
	.resources-newsletter-image {
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}

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

	.platform-card {
		width: 100%;
	}

	/* === PAGE REVUE DE PRESSE === */
	.press-article-card {
		flex-direction: column;
		gap: 20px;
	}

	.press-article-image {
		width: 100%;
		order: -1;
	}

	.press-image-element {
		width: 100%;
		height: auto;
		max-height: 300px;
		object-fit: cover;
	}

	.press-article-content {
		width: 100%;
	}

	/* === PAGE TÉMOIGNAGES === */
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 20px;
	}
}

/* ====================================
   MOBILE (max-width: 768px)
==================================== */
@media (max-width: 768px) {

	/* === BOUTONS === */
	.btn-primary,
	.btn-secondary {
		padding: 12px 24px;
		font-size: 15px;
		width: 100%;
		justify-content: center;
	}

	.hero-button-group {
		width: 100%;
		gap: 12px;
	}

	.news-card {
		flex-direction: column;
		padding: 0;
		height: 100%;
	}

	.news-image {
		order: -1;
		width: 100%;
		height: 220px;
		padding: 0;
		align-self: auto;
		align-items: center;
		justify-content: center;
		border-radius: 16px 16px 0 0;
	}

	.news-image-element {
		width: 100%;
		height: 100%;
		max-height: none;
		min-height: 220px;
		object-fit: cover;
		border-radius: 16px 16px 0 0;
	}

	.news-content {
		padding: 20px;
		flex-grow: 1;
	}

	.news-cta-button {
		width: 100%;
		justify-content: center;
		margin-top: auto;
		padding-top: 16px;
	}

	.testimonials-cta-wrapper,
	.resources-cta-wrapper {
		width: 100%;
		margin-top: 24px;
	}

	.testimonials-cta-wrapper .btn-primary,
	.resources-cta-wrapper .btn-primary {
		width: 100%;
	}

	/* === TYPOGRAPHIE === */
	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}

	h4 {
		font-size: 18px;
	}

	p {
		font-size: 16px;
	}

	/* === LAYOUT === */
	.section-container {
		padding: 30px 24px;
		gap: 32px;
	}

	/* === HERO === */
	.homepage-hero {
		min-height: auto;
	}

	.hero-content-grid {
		flex-direction: column;
		min-height: auto;
	}

	.hero-text-column {
		flex: none;
		width: 100%;
		padding: 2rem 2rem;
		border-radius: 24px 24px 0 0;
		order: 1;
	}

	.hero-image-column {
		flex: none;
		width: 100%;
		min-height: 400px;
		border-radius: 0 0 24px 24px;
		order: 2;
	}

	.hero-main-title {
		font-size: 23px;
	}

	.hero-description {
		font-size: 17px;
		margin-bottom: 1rem;
	}

	.hero-visual-wrapper img,
	.hero-visual-wrapper figure img,
	.hero-visual-wrapper .wp-block-image img {
		border-radius: 0 0 24px 24px;
	}

	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 1.25rem;
	}

	.hero-feature-item {
		font-size: 16px;
		align-items: flex-start;
		gap: 8px;
	}

	.hero-checkmark {
		width: 20px;
		height: 20px;
		margin-top: 3px;
		flex-shrink: 0;
	}

	.hero-features-list {
		margin-bottom: 24px;
	}

	/* === PARTENAIRES === */
	.partners-logos-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px 16px;
	}

	.partner-logo-item {
		height: 50px;
	}

	/* === ACCOMPAGNEMENTS === */
	.services-section-header {
		margin-bottom: 32px;
	}

	.services-cards-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.service-card-image {
		height: 240px;
	}

	/* === RESSOURCES === */
	.resources-section-title {
		margin-bottom: 32px;
	}

	.resources-cards-grid {
		grid-template-columns: 1fr;
	}

	.resource-card-image {
		height: 260px;
	}

	.resource-card-content {
		padding: 24px 0;
	}

	.resource-title {
		font-size: 20px;
	}

	.resource-description {
		font-size: 16px;
	}

	/* === TÉMOIGNAGES === */
	.testimonials-wrapper {
		padding: 0 var(--section-padding-width);
	}

	.testimonials-showcase {
		padding: 50px 0 10px 0;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.testimonial-content-card {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		column-gap: 12px;
		row-gap: 16px;
	}

	.testimonial-text {
		font-size: 16px;
		grid-column: 1 / 3;
		grid-row: 1;
	}

	.testimonial-logo {
		grid-column: 1;
		grid-row: 2;
		align-self: center;
	}

	.testimonial-logo-image {
		width: 40px;
		height: 40px;
	}

	.testimonial-author {
		grid-column: 2;
		grid-row: 2;
		align-self: center;
		display: flex;
		align-items: center;
		margin: 0;
	}

	.testimonial-author-name {
		line-height: 1.4;
	}

	/* === STATS === */
	.stats-cards-grid {
		flex-direction: column;
		align-items: center;
	}

	.stats-card {
		width: 100%;
		max-width: 400px;
	}

	.stats-label {
		font-size: 16px;
	}

	/* === BACK TO TOP === */
	.back-to-top {
		width: 45px;
		height: 45px;
		bottom: 20px;
		right: 20px;
		font-size: 18px;
	}

	/* === PAGE À PROPOS === */
	.about-approach-wrapper h2,
	.about-expertise-wrapper h2,
	.about-method-wrapper h2 {
		white-space: normal;
	}

	.about-approach-content {
		grid-template-columns: 1fr;
		gap: 0rem;
	}

	.about-approach-visual {
		margin-top: 0;
		height: auto;
		overflow: visible;
	}

	.about-chart-container {
		position: static;
		height: auto;
	}

	.about-strategy-chart {
		height: auto;
	}

	.about-expertise-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.expertise-visual-section {
		padding-right: 0;
		order: 2;
		margin-top: 0;
	}

	.expertise-text-section {
		order: 1;
	}

	.about-method-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.method-visual-section {
		padding-left: 0;
		order: 2;
		margin-top: 0;
	}

	.method-text-section {
		order: 1;
	}

	.about-contact-content {
		padding: 2rem 1.5rem;
	}

	/* === PAGE TÉMOIGNAGES (fullpage) === */
	.testimonials-container {
		padding: 0 1.5rem;
	}

	.testimonial-card {
		display: grid;
		grid-template-columns: 60px 1fr;
		grid-template-rows: auto auto;
		column-gap: 12px;
		row-gap: 12px;
		padding: 1.5rem;
		align-items: start;
	}

	.testimonial-content {
		grid-column: 1 / 3;
		grid-row: 1;
	}

	.testimonial-quote {
		font-size: 16px;
		text-align: left;
		margin-bottom: 0;
	}

	.testimonial-avatar {
		width: 60px;
		height: 60px;
		padding: 5px;
		grid-column: 1;
		grid-row: 2;
		align-self: start;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.testimonial-author {
		grid-column: 2;
		grid-row: 2;
		display: flex;
		align-items: center;
		font-size: 14px;
		align-self: start;
		margin: 0;
		min-height: 60px;
	}

	.testimonial-logo {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.testimonials-cta-section {
		padding: 10px 0 10px 0;
	}

	.testimonials-cta-container {
		padding: 0 1.5rem;
	}

	.testimonials-cta-content {
		padding: 2.5rem 2rem;
	}

	/* === PAGE RESSOURCES === */
	.resources-podcast-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.resources-podcast-visual {
		order: -1;
	}

	.resources-platforms-title {
		margin-bottom: 32px;
		text-align: left;
	}

	.resources-platforms-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin: 0 auto;
	}

	.platform-card {
		width: 100%;
		min-height: 140px;
		padding: 16px 8px;
		justify-content: space-between;
	}

	.platform-card img {
		width: 120px;
		height: 60px;
		margin: 8px 0;
	}

	#platform-card-apple img {
		width: 50px;
		height: 50px;
		margin: 12px 0;
	}

	.platform-name {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.platform-card:last-child {
		grid-column: 1 / -1;
		max-width: 200px;
		margin: 0 auto;
		justify-self: center;
	}

	.resources-newsletter-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.resources-newsletter-text {
		justify-content: flex-start;
	}

	.resources-newsletter-visual {
		order: -1;
	}

	.resources-action-section {
		padding: 32px 24px;
	}

	/* === PAGE REVUE DE PRESSE === */
	.press-article-card {
		flex-direction: column;
		gap: 30px;
		padding: 30px;
	}

	.press-article-image {
		flex: 1 1 auto;
		width: 100%;
		height: 250px;
	}

	/* === PAGE FAQ === */
	.faq-hero-subtitle {
		font-size: 1.125rem;
	}

	.faq-question {
		font-size: 1rem;
		padding: 20px 16px;
	}

	.faq-cta-title {
		font-size: 1.75rem;
	}

	.faq-cta-description {
		font-size: 1rem;
	}

	.faq-answer-content {
		padding: 1rem;
	}

	/* === PAGE CONTACT === */
	.contact-hero-title {
		font-size: 2rem;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-image-container {
		order: -1;
	}

	.contact-image {
		max-width: 400px;
		height: auto;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-form-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.contact-submit-button {
		width: 100%;
		justify-content: center;
	}

	/* === PAGE ACCOMPAGNEMENTS === */
	.accompagnement-enjeux-list {
		grid-template-columns: 1fr;
	}

	.enjeu-item,
	.impact-item {
		padding: 16px;
	}

	.enjeu-content h4,
	.impact-content h4 {
		font-size: 16px;
	}
}

/* ====================================
   PETITS MOBILES (max-width: 576px)
==================================== */
@media (max-width: 576px) {

	/* Extra small screens */
	.homepage-hero {
		padding: var(--spacing-xl) 0;
	}

	.partners-logos-grid {
		flex-direction: column;
		gap: var(--spacing-md);
	}

	.partner-logo-item {
		flex: none;
	}
}

/* ====================================
   TRÈS PETITS MOBILES (max-width: 480px)
==================================== */
@media (max-width: 480px) {

	/* === BOUTONS === */
	.btn-primary,
	.btn-secondary {
		padding: 11px 20px;
		font-size: 14px;
		height: auto;
		min-height: 42px;
	}

	.hero-button-group {
		gap: 10px;
	}

	/* === TYPOGRAPHIE === */
	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 20px;
	}

	/* === LAYOUT === */
	.section-container,
	.hero-container,
	.footer-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.section-container {
		padding: 24px 16px;
		gap: 24px;
	}

	/* === PARTENAIRES === */
	.partners-logos-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px 12px;
	}

	.partner-logo-item {
		height: 45px;
	}

	/* === PAGE À PROPOS === */
	.about-approach {
		padding: 50px 0;
	}

	.about-approach-wrapper {
		padding: 0 1rem;
	}

	.about-expertise {
		padding: 50px 0;
	}

	.about-expertise-wrapper {
		padding: 0 1rem;
	}

	.method-intro {
		margin-bottom: 1rem;
	}

	.about-contact {
		padding: 3rem 0;
	}

	.about-contact-wrapper {
		padding: 0 1rem;
	}

	.about-contact-content {
		padding: 1.5rem 1rem;
	}

	/* === PAGE TÉMOIGNAGES (fullpage) === */
	.testimonials-section {
		padding: 50px 0;
	}

	.testimonials-container {
		padding: 0 1rem;
	}

	.testimonials-header {
		font-weight: 700;
		margin-bottom: 1rem;
		line-height: 1.2;
	}

	.testimonials-title {
		font-size: 1.8rem;
	}

	.testimonials-description {
		font-size: 0.9rem;
	}

	.testimonials-list {
		gap: 1.5rem;
	}

	.testimonial-card {
		padding: 1.25rem;
	}

	.testimonial-avatar {
		width: 50px;
		height: 50px;
		padding: 4px;
		display: flex;
		align-items: center;
		justify-content: center;
		align-self: start;
	}

	.testimonial-logo {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.testimonial-quote {
		font-size: 0.9rem;
		margin-bottom: 0;
		line-height: 1.5;
	}

	.testimonial-author {
		font-size: 0.85rem;
		line-height: 1.4;
		display: flex;
		align-items: center;
		align-self: start;
		min-height: 50px;
	}

	.testimonials-cta-section {
		padding: 10px 0 10px 0;
	}

	.testimonials-cta-container {
		padding: 0 1rem;
	}

	.testimonials-cta-content {
		padding: 2rem 1.5rem;
	}

	.testimonials-cta-description {
		margin-bottom: 2rem;
	}

	/* === PAGE RESSOURCES === */
	.resources-page-header {
		margin-bottom: 32px;
	}

	.resources-platforms-title {
		margin-bottom: 24px;
	}

	.resources-platforms-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.platform-card {
		min-height: 130px;
		padding: 16px 12px;
	}

	.platform-card img {
		width: 100px;
		height: 55px;
	}

	#platform-card-apple img {
		width: 45px;
		height: 45px;
	}

	.platform-name {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.platform-card:last-child {
		max-width: 100%;
	}

	.resources-action-content {
		padding: 32px 24px;
	}

	/* === PAGE REVUE DE PRESSE === */
	.press-hero-description {
		font-size: 1rem;
	}

	.press-articles-section {
		padding: 0 0 20px 0;
	}

	.press-articles-container {
		gap: 40px;
	}

	.press-article-card {
		padding: 24px;
		gap: 20px;
	}

	.press-article-title {
		font-size: 1.25rem;
	}

	.press-article-excerpt {
		font-size: 0.9375rem;
	}

	.press-article-image {
		height: 200px;
	}

	.press-article-cta {
		width: 100%;
		text-align: center;
	}

	/* === PAGE CONTACT === */
	.contact-hero {
		padding: 2rem 0 1.5rem;
	}

	.contact-hero-wrapper {
		padding: 0 1rem;
	}

	.contact-hero-title {
		font-size: 1.75rem;
	}

	.contact-hero-intro p {
		font-size: 0.95rem;
	}

	.contact-form-section {
		padding: 2rem 0;
	}

	.contact-form-wrapper {
		padding: 0 1rem;
	}

	.contact-image {
		max-width: 100%;
	}
}

/* ========================================
   FIN DES MEDIA QUERIES CONSOLIDÉES
======================================== */