/* ==========================================================================
   Alter & Sens — shared.css
   Tout le CSS du site. Aucun autre fichier CSS n'est chargé.
   Design system + composants + responsive (1024 / 768 / 380).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');


/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	overflow-x: hidden;   /* bloque définitivement le scroll horizontal sur mobile */
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--as-text);
	background: var(--as-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--as-cyan);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--as-cyan-dark);
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

ul, ol {
	margin: 0;
	padding: 0 0 0 1.25em;
}

p {
	margin: 0 0 1em 0;
}

p:last-child {
	margin-bottom: 0;
}

::selection {
	background: var(--as-cyan);
	color: #fff;
}


/* ==========================================================================
   2. VARIABLES CSS
   ========================================================================== */

:root {
	/* === COULEURS PRINCIPALES === */
	--as-cyan:           #1FB6C0;
	--as-cyan-dark:      #168891;
	--as-cyan-light:     #E6F7F9;
	--as-cyan-soft:      #B8E8EC;

	--as-yellow:         #F4C842;
	--as-yellow-dark:    #D4AB2B;
	--as-yellow-light:   #FDF6E0;

	--as-dark:           #1E1F2E;
	--as-dark-2:         #2A2B3D;

	/* === COULEURS NEUTRES === */
	--as-white:          #FFFFFF;
	--as-cream:          #FAF7F2;
	--as-bg:             #FFFFFF;
	--as-bg-soft:        #F7F8FB;

	--as-text:           #2A2B3D;
	--as-text-body:      #4A4D5C;
	--as-text-light:     #8A8D9C;

	--as-border:         #E8EAF0;
	--as-border-soft:    #F1F2F6;

	/* === SÉMANTIQUES === */
	--as-success:        #22C55E;
	--as-error:          #EF4444;
	--as-warning:        #F4C842;

	/* === TYPOGRAPHIE === */
	--as-font-heading:   'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;
	--as-font-body:      'Plus Jakarta Sans', system-ui, sans-serif;

	/* === LAYOUT === */
	--as-container:      1360px;
	--as-container-narrow: 980px;
	--as-radius-sm:      8px;
	--as-radius:         14px;
	--as-radius-lg:      24px;

	/* === SHADOWS === */
	--as-shadow-sm:      0 2px 8px rgba(30, 31, 46, 0.06);
	--as-shadow:         0 8px 24px rgba(30, 31, 46, 0.08);
	--as-shadow-lg:      0 20px 60px rgba(30, 31, 46, 0.12);
	--as-shadow-cyan:    0 12px 32px rgba(31, 182, 192, 0.25);

	/* === TRANSITIONS === */
	--as-trans:          0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--as-trans-slow:     0.5s cubic-bezier(0.4, 0, 0.2, 1);

	/* === HEADER === */
	--as-header-h:       84px;
}


/* ==========================================================================
   3. TYPOGRAPHIE
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--as-font-heading);
	font-weight: 700;
	color: var(--as-dark);
	line-height: 1.15;
	margin: 0 0 0.6em 0;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 800;
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
}

h3 {
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	font-weight: 700;
}

h4 {
	font-size: 1.15rem;
	font-weight: 600;
}

.lead {
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	color: var(--as-text-body);
	line-height: 1.7;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--as-font-body);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--as-cyan);
	margin-bottom: 18px;
}

.eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--as-cyan);
}

.eyebrow.eyebrow-yellow {
	color: var(--as-yellow-dark);
}

.eyebrow.eyebrow-yellow::before {
	background: var(--as-yellow);
}

.eyebrow.eyebrow-white {
	color: var(--as-yellow);
}

.eyebrow.eyebrow-white::before {
	background: var(--as-yellow);
}


/* ==========================================================================
   4. LAYOUT — Container, sections, grids
   ========================================================================== */

.container {
	max-width: var(--as-container);
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
}

.container-narrow {
	max-width: var(--as-container-narrow);
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
}

.section {
	padding: clamp(60px, 9vw, 120px) 0;
}

.section-sm {
	padding: clamp(40px, 6vw, 80px) 0;
}

.section-bg-cream { background: var(--as-cream); }
.section-bg-soft  { background: var(--as-bg-soft); }
.section-bg-cyan  { background: var(--as-cyan-light); }
.section-bg-dark  { background: var(--as-dark); color: rgba(255,255,255,0.92); }
.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 { color: var(--as-white); }

.section-header {
	max-width: 760px;
	margin: 0 auto clamp(40px, 6vw, 64px) auto;
	text-align: center;
}

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

.section-header p.lead {
	margin-top: 16px;
}

/* === GRIDS === */
.grid {
	display: grid;
	gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.grid-gap-sm { gap: 16px; }
.grid-gap-lg { gap: 40px; }

/* Layout 2 colonnes asymétrique (hero, sections texte+image) */
.layout-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

.layout-split-6-4 {
	grid-template-columns: 6fr 4fr;
}

.layout-split-4-6 {
	grid-template-columns: 4fr 6fr;
}


/* ==========================================================================
   5. BOUTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	font-family: var(--as-font-body);
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	border-radius: var(--as-radius-sm);
	cursor: pointer;
	transition: all var(--as-trans);
	text-decoration: none;
	white-space: nowrap;
	border: 2px solid transparent;
	line-height: 1.2;
}

.btn-primary {
	background: var(--as-cyan);
	color: var(--as-white);
	border-color: var(--as-cyan);
	box-shadow: var(--as-shadow-cyan);
}

.btn-primary:hover {
	background: var(--as-cyan-dark);
	border-color: var(--as-cyan-dark);
	color: var(--as-white);
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(31, 182, 192, 0.35);
}

.btn-secondary {
	background: transparent;
	color: var(--as-dark);
	border-color: var(--as-dark);
}

.btn-secondary:hover {
	background: var(--as-dark);
	color: var(--as-white);
}

.btn-yellow {
	background: var(--as-yellow);
	color: var(--as-dark);
	border-color: var(--as-yellow);
}

.btn-yellow:hover {
	background: var(--as-yellow-dark);
	border-color: var(--as-yellow-dark);
	transform: translateY(-2px);
}

.btn-ghost {
	background: transparent;
	color: var(--as-cyan);
	border-color: var(--as-cyan);
}

.btn-ghost:hover {
	background: var(--as-cyan);
	color: var(--as-white);
}

.btn-on-dark {
	background: var(--as-white);
	color: var(--as-dark);
	border-color: var(--as-white);
}

.btn-on-dark:hover {
	background: var(--as-yellow);
	border-color: var(--as-yellow);
	color: var(--as-dark);
}

.btn-lg {
	padding: 18px 36px;
	font-size: 1.05rem;
}

.btn-sm {
	padding: 10px 18px;
	font-size: 0.88rem;
}

.btn-block {
	display: flex;
	width: 100%;
}

.btn-arrow::after {
	content: "→";
	transition: transform var(--as-trans);
	font-weight: 700;
}

.btn-arrow:hover::after {
	transform: translateX(4px);
}

.btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}


/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */

.scroll-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--as-cyan);
	width: 0%;
	z-index: 1001;
	transition: width 0.1s linear;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: saturate(180%) blur(8px);
	-webkit-backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid transparent;
	transition: box-shadow var(--as-trans), border-color var(--as-trans);
}

.site-header.scrolled {
	box-shadow: 0 4px 24px rgba(30, 31, 46, 0.06);
	border-bottom-color: var(--as-border-soft);
}

.nav-inner {
	max-width: var(--as-container);
	margin: 0 auto;
	padding: 0 32px;
	height: var(--as-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--as-font-heading);
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--as-dark);
	letter-spacing: -0.02em;
}

.nav-brand:hover {
	color: var(--as-dark);
}

.nav-brand img,
.nav-brand svg {
	max-height: 44px;
	width: auto;
}

.nav-brand-text {
	display: inline-block;
}

.nav-brand-text .amp {
	color: var(--as-cyan);
	margin: 0 2px;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	justify-content: center;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	display: inline-block;
	padding: 10px 14px;
	color: var(--as-text);
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: 6px;
	transition: all var(--as-trans);
}

.nav-menu a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current-menu-parent > a {
	color: var(--as-cyan);
	background: var(--as-cyan-light);
}

/* Submenu */
.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 280px;
	background: var(--as-white);
	border: 1px solid var(--as-border-soft);
	border-radius: var(--as-radius);
	box-shadow: var(--as-shadow-lg);
	padding: 12px;
	list-style: none;
	margin: 12px 0 0 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all var(--as-trans);
	z-index: 100;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: block;
	padding: 10px 14px;
	font-size: 0.92rem;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--as-text);
	font-weight: 600;
	font-size: 0.95rem;
}

.nav-phone:hover {
	color: var(--as-cyan);
}

.nav-phone svg {
	width: 16px;
	height: 16px;
}

/* Burger button */
.nav-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	border-radius: 6px;
	background: transparent;
	transition: background var(--as-trans);
}

.nav-burger:hover {
	background: var(--as-bg-soft);
}

.nav-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--as-dark);
	border-radius: 2px;
	transition: all var(--as-trans);
	transform-origin: center;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================================================
   7. HERO
   ========================================================================== */

.hero {
	padding: clamp(60px, 8vw, 120px) 0 clamp(60px, 8vw, 100px);
	background: linear-gradient(180deg, var(--as-cream) 0%, var(--as-white) 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--as-cyan-light) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.hero-inner {
	position: relative;
	z-index: 1;
}

.hero h1 {
	margin-bottom: 24px;
}

.hero h1 .highlight {
	background: linear-gradient(180deg, transparent 65%, var(--as-yellow-light) 65%);
	padding: 0 4px;
}

.hero-lead {
	font-size: clamp(1.1rem, 1.6vw, 1.3rem);
	color: var(--as-text-body);
	line-height: 1.65;
	margin-bottom: 36px;
	max-width: 580px;
}

.hero-visual {
	position: relative;
}

.hero-visual .frame {
	position: relative;
	border-radius: var(--as-radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--as-cyan-light);
}

.hero-visual .frame::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 4px solid var(--as-cyan);
	border-radius: var(--as-radius-lg);
	transform: translate(20px, 20px);
	pointer-events: none;
	z-index: -1;
}

.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: var(--as-white);
	border: 1px solid var(--as-border);
	border-radius: 99px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--as-text);
	box-shadow: var(--as-shadow-sm);
}

.hero-badge::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--as-cyan);
	border-radius: 50%;
}


/* ==========================================================================
   8. STATS / CHIFFRES-CLÉS
   ========================================================================== */

.stats-band {
	background: var(--as-dark);
	color: var(--as-white);
	padding: clamp(40px, 6vw, 70px) 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-item {
	padding: 0 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:first-child {
	border-left: none;
}

.stat-value {
	font-family: var(--as-font-heading);
	font-size: clamp(2.4rem, 4vw, 3.4rem);
	font-weight: 800;
	color: var(--as-yellow);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 8px;
	display: block;
}

.stat-label {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.4;
}


/* ==========================================================================
   9. CARDS
   ========================================================================== */

.card {
	background: var(--as-white);
	border: 1px solid var(--as-border-soft);
	border-radius: var(--as-radius);
	padding: 32px;
	transition: transform var(--as-trans), box-shadow var(--as-trans), border-color var(--as-trans);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--as-shadow-lg);
	border-color: var(--as-cyan-soft);
}

.card-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: var(--as-cyan-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--as-cyan);
}

.card-icon svg {
	width: 28px;
	height: 28px;
}

.card-icon.icon-yellow {
	background: var(--as-yellow-light);
	color: var(--as-yellow-dark);
}

.card h3 {
	margin-bottom: 12px;
}

.card-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
}

.card-bullets li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	font-size: 0.95rem;
	color: var(--as-text-body);
}

.card-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 14px;
	height: 2px;
	background: var(--as-cyan);
}

.card-link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--as-cyan);
}

.card-link::after {
	content: "→";
	transition: transform var(--as-trans);
}

.card:hover .card-link::after {
	transform: translateX(4px);
}

/* Card variant : presentation cabinet */
.card-feature {
	padding: 40px;
	background: var(--as-cream);
	border: none;
}


/* ==========================================================================
   10. CERTIFICATIONS / LOGOS
   ========================================================================== */

.cert-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
	align-items: center;
}

.cert-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	padding: 24px 16px;
	border-radius: var(--as-radius);
	background: var(--as-white);
	border: 1px solid var(--as-border-soft);
	transition: all var(--as-trans);
}

.cert-item:hover {
	border-color: var(--as-cyan-soft);
	transform: translateY(-2px);
}

.cert-item img {
	max-height: 56px;
	width: auto;
	filter: grayscale(0%);
	transition: filter var(--as-trans);
}

.cert-item h4 {
	font-size: 1rem;
	margin: 0;
	color: var(--as-dark);
}

.cert-item p {
	font-size: 0.82rem;
	color: var(--as-text-light);
	margin: 0;
}

/* Logos clients (grille mosaïque) */
.refs-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	align-items: center;
}

.ref-item {
	aspect-ratio: 3 / 2;
	background: var(--as-white);
	border: 1px solid var(--as-border-soft);
	border-radius: var(--as-radius-sm);
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--as-trans);
}

.ref-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.75;
	transition: all var(--as-trans);
}

.ref-item:hover {
	border-color: var(--as-cyan-soft);
	transform: scale(1.04);
}

.ref-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}


/* ==========================================================================
   11. TÉMOIGNAGES — CAROUSEL INFINI
   ========================================================================== */

.testimonials {
	position: relative;
	overflow: hidden;
	padding: 40px 0;
	-webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
	mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonials-track {
	display: flex;
	gap: 24px;
	width: max-content;
	animation: as-scroll 50s linear infinite;
}

.testimonials:hover .testimonials-track {
	animation-play-state: paused;
}

@keyframes as-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-card {
	flex: 0 0 380px;
	background: var(--as-white);
	border: 1px solid var(--as-border-soft);
	border-radius: var(--as-radius);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: var(--as-shadow-sm);
}

.testimonial-rating {
	display: flex;
	gap: 2px;
	color: var(--as-yellow);
	font-size: 1.1rem;
	letter-spacing: 2px;
}

.testimonial-text {
	font-size: 0.98rem;
	color: var(--as-text);
	line-height: 1.6;
	font-style: italic;
	flex: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid var(--as-border-soft);
}

.testimonial-author-name {
	font-weight: 700;
	color: var(--as-dark);
	font-size: 0.95rem;
}

.testimonial-author-date {
	font-size: 0.82rem;
	color: var(--as-text-light);
}

.testimonial-source {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.78rem;
	color: var(--as-text-light);
	font-weight: 500;
}

.testimonial-source svg {
	width: 14px;
	height: 14px;
}


/* ==========================================================================
   12. SECTION IMPACT (stats INRS/ISSA)
   ========================================================================== */

.impact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.impact-card {
	background: var(--as-white);
	border-left: 4px solid var(--as-cyan);
	border-radius: var(--as-radius-sm);
	padding: 32px;
	box-shadow: var(--as-shadow-sm);
}

.impact-card.impact-yellow {
	border-left-color: var(--as-yellow);
}

.impact-figure {
	font-family: var(--as-font-heading);
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: 800;
	color: var(--as-dark);
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 12px;
	display: block;
}

.impact-text {
	color: var(--as-text-body);
	font-size: 1rem;
	margin-bottom: 8px;
}

.impact-source {
	font-size: 0.82rem;
	color: var(--as-text-light);
	font-style: italic;
}


/* ==========================================================================
   13. ARTICLES BLOG (cards)
   ========================================================================== */

.post-card {
	display: flex;
	flex-direction: column;
	background: var(--as-white);
	border: 1px solid var(--as-border-soft);
	border-radius: var(--as-radius);
	overflow: hidden;
	transition: all var(--as-trans);
	height: 100%;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--as-shadow-lg);
	border-color: var(--as-cyan-soft);
}

.post-card-image {
	aspect-ratio: 16 / 10;
	background: var(--as-cyan-light);
	overflow: hidden;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--as-trans-slow);
}

.post-card:hover .post-card-image img {
	transform: scale(1.05);
}

.post-card-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.post-card-date {
	font-size: 0.82rem;
	color: var(--as-cyan);
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.post-card h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
}

.post-card-excerpt {
	color: var(--as-text-body);
	font-size: 0.95rem;
	margin-bottom: 16px;
	flex: 1;
}

.post-card-link {
	margin-top: auto;
	font-weight: 600;
	color: var(--as-cyan);
	display: inline-flex;
	gap: 6px;
}


/* ==========================================================================
   14. FORMULAIRES
   ========================================================================== */

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-weight: 600;
	color: var(--as-dark);
	font-size: 0.92rem;
	margin-bottom: 8px;
}

.form-label .required {
	color: var(--as-error);
	margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 14px 16px;
	font-size: 1rem;
	font-family: var(--as-font-body);
	color: var(--as-text);
	background: var(--as-white);
	border: 1.5px solid var(--as-border);
	border-radius: var(--as-radius-sm);
	transition: border-color var(--as-trans), box-shadow var(--as-trans);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: var(--as-cyan);
	box-shadow: 0 0 0 4px rgba(31, 182, 192, 0.12);
}

.form-textarea {
	min-height: 140px;
	resize: vertical;
	font-family: var(--as-font-body);
}

.form-input.error,
.form-textarea.error {
	border-color: var(--as-error);
}

.form-input.error:focus,
.form-textarea.error:focus {
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.form-error-msg {
	display: block;
	color: var(--as-error);
	font-size: 0.85rem;
	margin-top: 6px;
}

.form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	visibility: hidden !important;
}

.form-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.85rem;
	color: var(--as-text-body);
	line-height: 1.5;
}

.form-consent input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	accent-color: var(--as-cyan);
	cursor: pointer;
}

.form-consent a {
	color: var(--as-cyan);
	text-decoration: underline;
}

.form-feedback {
	margin-top: 20px;
	padding: 16px 20px;
	border-radius: var(--as-radius-sm);
	font-size: 0.95rem;
	display: none;
}

.form-feedback.is-visible {
	display: block;
}

.form-feedback-success {
	background: #DCFCE7;
	border-left: 4px solid var(--as-success);
	color: #14532D;
}

.form-feedback-error {
	background: #FEE2E2;
	border-left: 4px solid var(--as-error);
	color: #7F1D1D;
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.site-footer {
	background: var(--as-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 80px 0 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.5fr 1fr;
	gap: 48px;
	padding-bottom: 60px;
}

.footer-brand img,
.footer-brand svg {
	max-height: 56px;
	width: auto;
	margin-bottom: 20px;
}

.footer-brand-text {
	font-family: var(--as-font-heading);
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--as-white);
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	display: block;
}

.footer-brand-text .amp {
	color: var(--as-cyan);
}

.footer h4 {
	color: var(--as-white);
	font-size: 1rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.footer-col p {
	font-size: 0.92rem;
	line-height: 1.6;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.92rem;
}

.footer-col a:hover {
	color: var(--as-yellow);
}

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

.footer-list li {
	margin-bottom: 10px;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-contact-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.92rem;
}

.footer-contact-item svg {
	width: 18px;
	height: 18px;
	color: var(--as-cyan);
	flex-shrink: 0;
	margin-top: 3px;
}

.footer-portrait {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-portrait-img {
	width: 100%;
	max-width: 180px;
	aspect-ratio: 4 / 5;
	border-radius: var(--as-radius-sm);
	overflow: hidden;
	border: 3px solid var(--as-cyan);
}

.footer-portrait-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
	color: var(--as-yellow);
}

.footer-legal-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}


/* ==========================================================================
   16. REVEAL ANIMATIONS
   ========================================================================== */

.reveal,
.reveal-left,
.reveal-right {
	opacity: 0;
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
}

.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
	opacity: 1;
	transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.reveal, .reveal-left, .reveal-right {
		opacity: 1;
		transform: none;
	}
}


/* ==========================================================================
   17. FAQ ACCORDION
   ========================================================================== */

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--as-white);
	border: 1px solid var(--as-border-soft);
	border-radius: var(--as-radius-sm);
	overflow: hidden;
	transition: border-color var(--as-trans);
}

.faq-item.is-open {
	border-color: var(--as-cyan-soft);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 20px 24px;
	font-family: var(--as-font-heading);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--as-dark);
	text-align: left;
	background: transparent;
	cursor: pointer;
}

.faq-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--as-cyan-light);
	color: var(--as-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	transition: transform var(--as-trans);
}

.faq-item.is-open .faq-icon {
	background: var(--as-cyan);
	color: var(--as-white);
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--as-trans-slow), padding var(--as-trans);
	padding: 0 24px;
	color: var(--as-text-body);
	line-height: 1.65;
}

.faq-item.is-open .faq-answer {
	max-height: 600px;
	padding: 0 24px 24px 24px;
}


/* ==========================================================================
   18. BREADCRUMB
   ========================================================================== */

.breadcrumb {
	padding: 16px 0;
	font-size: 0.85rem;
	color: var(--as-text-light);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}

.breadcrumb a {
	color: var(--as-text-light);
}

.breadcrumb a:hover {
	color: var(--as-cyan);
}

.breadcrumb-sep {
	margin: 0 6px;
	color: var(--as-border);
}

.breadcrumb-current {
	color: var(--as-text);
	font-weight: 500;
}


/* ==========================================================================
   19. CTA SECTION
   ========================================================================== */

.cta-section {
	padding: clamp(60px, 8vw, 100px) 0;
	background:
		radial-gradient(ellipse at top right, rgba(31, 182, 192, 0.18) 0%, transparent 50%),
		radial-gradient(ellipse at bottom left, rgba(244, 200, 66, 0.12) 0%, transparent 50%),
		var(--as-dark);
	color: var(--as-white);
	text-align: center;
}

.cta-section h2 {
	color: var(--as-white);
	margin-bottom: 16px;
}

.cta-section .lead {
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
	margin: 0 auto 32px;
}

.cta-section .btn-group {
	justify-content: center;
}


/* ==========================================================================
   20. DISCLAIMER & ALERTES
   ========================================================================== */

.disclaimer-box {
	padding: 20px 24px;
	background: var(--as-cyan-light);
	border-left: 4px solid var(--as-cyan);
	border-radius: var(--as-radius-sm);
	font-size: 0.92rem;
	color: var(--as-text-body);
	line-height: 1.6;
}


/* ==========================================================================
   21. MAPS IFRAME
   ========================================================================== */

.map-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: var(--as-radius);
	overflow: hidden;
	border: 1px solid var(--as-border);
	box-shadow: var(--as-shadow);
}

.map-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(0.85) contrast(0.95);
}


/* ==========================================================================
   22. CONTENT (articles blog, pages éditoriales)
   ========================================================================== */

.content-body {
	max-width: 760px;
	margin: 0 auto;
}

.content-body h2 {
	margin-top: 2.2em;
	margin-bottom: 0.6em;
}

.content-body h3 {
	margin-top: 1.8em;
	margin-bottom: 0.5em;
}

.content-body p,
.content-body ul,
.content-body ol {
	margin-bottom: 1.2em;
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--as-text-body);
}

.content-body ul li,
.content-body ol li {
	margin-bottom: 0.5em;
}

.content-body blockquote {
	margin: 2em 0;
	padding: 24px 28px;
	border-left: 4px solid var(--as-yellow);
	background: var(--as-cream);
	font-style: italic;
	color: var(--as-dark);
	border-radius: 0 var(--as-radius-sm) var(--as-radius-sm) 0;
}

.content-body a {
	border-bottom: 1px solid currentColor;
}

.content-body img {
	margin: 1.5em 0;
	border-radius: var(--as-radius-sm);
}


/* ==========================================================================
   23. UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mt-5 { margin-top: 48px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-5 { margin-bottom: 48px !important; }

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

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	background: var(--as-dark);
	color: var(--as-white);
	padding: 12px 20px;
	border-radius: var(--as-radius-sm);
	z-index: 9999;
	transition: top 0.2s;
}

.skip-link:focus {
	top: 16px;
	color: var(--as-yellow);
}


/* ==========================================================================
   24. RESPONSIVE — TABLETTE (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {

	.nav-menu,
	.nav-phone {
		display: none;
	}

	.nav-burger {
		display: flex;
	}

	.site-header.menu-open {
		box-shadow: 0 4px 24px rgba(30, 31, 46, 0.06);
	}

	.nav-menu.is-open {
		display: flex;
		position: fixed;
		top: var(--as-header-h);
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 24px;
		background: var(--as-white);
		overflow-y: auto;
		z-index: 999;
	}

	.nav-menu.is-open li {
		width: 100%;
	}

	.nav-menu.is-open a {
		display: block;
		padding: 16px 14px;
		font-size: 1.05rem;
		border-bottom: 1px solid var(--as-border-soft);
		border-radius: 0;
	}

	.nav-menu.is-open .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding: 0 0 0 20px;
		margin: 0;
		background: var(--as-bg-soft);
		border-radius: 0;
	}

	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.grid-5 { grid-template-columns: repeat(3, 1fr); }

	.layout-split,
	.layout-split-6-4,
	.layout-split-4-6 {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.stat-item:nth-child(3) { border-left: none; }
	.stat-item {
		padding: 16px 12px;
	}

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

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

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


/* ==========================================================================
   25. RESPONSIVE — MOBILE (max 768px)
   ========================================================================== */

@media (max-width: 768px) {

	.container,
	.container-narrow {
		padding: 0 18px;
	}

	.nav-inner {
		padding: 0 18px;
	}

	h1 { font-size: 2rem; }
	h2 { font-size: 1.6rem; }
	h3 { font-size: 1.2rem; }

	.grid-2,
	.grid-3,
	.grid-4,
	.grid-5 {
		grid-template-columns: 1fr;
	}

	.btn,
	.btn-primary,
	.btn-secondary,
	.btn-yellow,
	.btn-ghost {
		width: 100%;
		justify-content: center;
	}

	.btn-group .btn {
		width: 100%;
	}

	.hero {
		padding: 40px 0 60px;
	}

	.hero-visual {
		max-width: 360px;
		margin: 0 auto;
	}

	.hero-visual .frame::after {
		transform: translate(12px, 12px);
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		text-align: left;
	}

	.stat-item {
		padding: 0 8px;
		border-left: none;
	}

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

	.cert-item {
		padding: 18px 12px;
	}

	.refs-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.impact-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-legal-nav {
		justify-content: center;
	}

	.testimonial-card {
		flex: 0 0 300px;
	}

	.section { padding: 60px 0; }
	.section-sm { padding: 40px 0; }

	.section-header { text-align: left; }

	.card,
	.card-feature {
		padding: 24px;
	}

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

	.faq-item.is-open .faq-answer {
		padding: 0 18px 18px 18px;
	}
}


/* ==========================================================================
   26. RESPONSIVE — TRÈS PETIT MOBILE (max 380px)
   ========================================================================== */

@media (max-width: 380px) {

	body { font-size: 15px; }

	h1 { font-size: 1.75rem; }
	h2 { font-size: 1.4rem; }
	h3 { font-size: 1.1rem; }

	.nav-brand-text { font-size: 1.1rem; }

	.nav-brand img,
	.nav-brand svg { max-height: 36px; }

	.btn { padding: 12px 20px; font-size: 0.9rem; }

	.testimonial-card { flex: 0 0 260px; }

	.stat-value { font-size: 2rem; }
}
