/*
Theme Name: Actions RDC
Theme URI: https://www.actionsrdc.com
Author: Actions RDC
Description: Thème sur mesure pour Actions RDC — agence d'externalisation RH, marketing terrain (BTL), import-export/dédouanement et logistique basée à Kinshasa, RDC.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: actions-rdc
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
	/* Colors */
	--color-navy: #0c2c7c;
	--color-blue-bright: #0038b0;
	--color-navy-shadow: #10182a;
	--color-orange: #f4a400;
	--color-orange-dark: #c38300;
	--color-orange-tint: #fad280;
	--color-red-alert: #e00000;
	--color-white: #ffffff;
	--color-ink: var(--color-navy);
	--color-surface: var(--color-white);
	--color-surface-inverse: var(--color-navy);
	--color-neutral-100: #f5f6f8;
	--color-neutral-300: #d8dce3;
	--color-neutral-600: #5a6270;

	/* Type */
	--font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;

	--text-display-1-size: 56px;
	--text-display-1-line: 62px;
	--text-display-2-size: 40px;
	--text-display-2-line: 46px;
	--text-h3-size: 28px;
	--text-h3-line: 38px;
	--text-h4-size: 22px;
	--text-h4-line: 30px;
	--text-body-lg-size: 19px;
	--text-body-lg-line: 28px;
	--text-body-size: 16px;
	--text-body-line: 24px;
	--text-caption-size: 13px;
	--text-caption-line: 18px;
	--text-label-size: 15px;
	--text-label-line: 20px;

	/* Spacing */
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-6: 24px;
	--space-8: 32px;
	--space-12: 48px;
	--space-16: 64px;

	/* Radius */
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 28px;
	--radius-full: 9999px;

	/* Layout */
	--container-width: 1200px;
	--header-height: 88px;
}

@media (max-width: 782px) {
	:root {
		--text-display-1-size: 36px;
		--text-display-1-line: 42px;
		--text-display-2-size: 30px;
		--text-display-2-line: 36px;
		--text-h3-size: 22px;
		--text-h3-line: 30px;
	}
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-family);
	font-size: var(--text-body-size);
	line-height: var(--text-body-line);
	color: var(--color-ink);
	background: var(--color-surface);
	-webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0 0 var(--space-4);
}

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

svg.icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: inline-block;
	vertical-align: -4px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: var(--space-4);
	background: var(--color-orange);
	color: var(--color-ink);
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-sm);
	z-index: 10000;
	font-weight: 700;
}

.skip-link:focus {
	top: var(--space-4);
}

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--space-6);
}

@media (max-width: 600px) {
	.container {
		padding-inline: var(--space-4);
	}
}

.section {
	padding-block: var(--space-16);
}

@media (max-width: 782px) {
	.section {
		padding-block: var(--space-12);
	}
}

.section--surface {
	background: var(--color-surface);
}

.section--inverse {
	background: var(--color-surface-inverse);
	color: var(--color-white);
}

.section--tint {
	background: var(--color-neutral-100);
}

.section-head {
	max-width: 720px;
	margin-bottom: var(--space-12);
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.eyebrow {
	display: inline-block;
	font-size: var(--text-label-size);
	line-height: var(--text-label-line);
	font-weight: 700;
	color: var(--color-orange);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: var(--space-3);
}

.eyebrow--long {
	text-transform: none;
	letter-spacing: normal;
}

.grid {
	display: grid;
	gap: var(--space-8);
}

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

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

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

@media (max-width: 900px) {
	.grid--3,
	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.grid--2,
	.grid--3,
	.grid--4 {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   4. Type
   ========================================================================== */

.display-1 {
	font-size: var(--text-display-1-size);
	line-height: var(--text-display-1-line);
	font-weight: 800;
	margin-bottom: var(--space-6);
}

.display-2 {
	font-size: var(--text-display-2-size);
	line-height: var(--text-display-2-line);
	font-weight: 800;
	margin-bottom: var(--space-4);
}

.h3 {
	font-size: var(--text-h3-size);
	line-height: var(--text-h3-line);
	font-weight: 700;
}

.h4 {
	font-size: var(--text-h4-size);
	line-height: var(--text-h4-line);
	font-weight: 600;
}

.body-lg {
	font-size: var(--text-body-lg-size);
	line-height: var(--text-body-lg-line);
	font-weight: 400;
}

.caption {
	font-size: var(--text-caption-size);
	line-height: var(--text-caption-line);
	font-weight: 500;
}

.label {
	font-size: var(--text-label-size);
	line-height: var(--text-label-line);
	font-weight: 700;
}

.text-muted {
	color: var(--color-neutral-600);
}

.section--inverse .text-muted {
	color: rgba(255, 255, 255, 0.72);
}

.accent {
	color: var(--color-orange);
}

/* ==========================================================================
   5. Buttons, tags
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	font-size: var(--text-label-size);
	line-height: var(--text-label-line);
	font-weight: 700;
	padding: var(--space-3) var(--space-6);
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.btn-primary {
	background: var(--color-orange);
	color: var(--color-ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background: var(--color-orange-dark);
	color: var(--color-white);
}

.btn-outline {
	background: transparent;
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover,
.btn-outline:focus-visible {
	background: rgba(255, 255, 255, 0.12);
}

.btn-icon svg {
	width: 18px;
	height: 18px;
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
	background: var(--color-orange);
	color: var(--color-ink);
	font-size: var(--text-caption-size);
	line-height: var(--text-caption-line);
	font-weight: 700;
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-sm);
}

.tag svg,
.job-card__meta svg {
	width: 14px;
	height: 14px;
	vertical-align: -2px;
}

.tag--alert {
	background: var(--color-red-alert);
	color: var(--color-white);
}

/* ==========================================================================
   6. Header
   ========================================================================== */

.site-header {
	background: var(--color-navy);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: var(--space-6);
}

.site-branding img {
	height: 44px;
	width: auto;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: var(--space-8);
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: var(--space-6);
}

.primary-nav ul a {
	color: var(--color-white);
	font-weight: 600;
	font-size: var(--text-body-size);
	padding: var(--space-2) 0;
	position: relative;
}

.primary-nav ul a:hover,
.primary-nav .current-menu-item > a {
	color: var(--color-orange);
}

.header-cta {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

.header-phone {
	color: var(--color-white);
	font-weight: 700;
	font-size: var(--text-label-size);
	display: none;
	align-items: center;
	gap: var(--space-2);
}

@media (min-width: 1024px) {
	.header-phone {
		display: inline-flex;
	}
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	color: var(--color-white);
	cursor: pointer;
	padding: var(--space-2);
}

.primary-nav__mobile-cta {
	display: none;
}

@media (max-width: 480px) {
	.header-cta__btn {
		display: none;
	}
}

@media (max-width: 900px) {
	.primary-nav__mobile-cta {
		display: inline-flex;
		margin-top: var(--space-6);
	}

	.primary-nav {
		position: fixed;
		inset: var(--header-height) 0 0 0;
		background: var(--color-navy);
		background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
		background-size: 24px 24px;
		flex-direction: column;
		align-items: flex-start;
		padding: var(--space-8) var(--space-6);
		transform: translateX(100%);
		transition: transform 0.25s ease;
		overflow-y: auto;
	}

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

	.primary-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-4);
		width: 100%;
	}

	.primary-nav ul ul {
		padding-left: var(--space-4);
	}

	.menu-toggle {
		display: inline-flex;
	}
}

/* ==========================================================================
   7. Hero
   ========================================================================== */

.hero {
	position: relative;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-shadow) 100%);
	color: var(--color-white);
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.62;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, #001957a1 60%, rgba(12, 44, 124, 0.5) 78%, rgba(12, 44, 124, 0.15) 100%)
}

.hero__content {
	position: relative;
	z-index: 2;
	padding-block: var(--space-16);
	max-width: 720px;
}

.hero__content .text-muted {
	color: rgba(255, 255, 255, 0.82);
}

.hero--page .hero__content {
	padding-block: var(--space-12);
	max-width: 900px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	margin-top: var(--space-8);
}

.hero__breadcrumb {
	display: flex;
	gap: var(--space-2);
	font-size: var(--text-caption-size);
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: var(--space-4);
}

.hero__breadcrumb a:hover {
	color: var(--color-orange);
}

/* Hero slider */

.hero--slider {
	overflow: hidden;
}

.hero__viewport {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.hero__slides {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
	will-change: transform;
}

.hero__slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
}

.hero__nav {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-6);
	padding-bottom: var(--space-8);
}

.hero__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--color-white);
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.15s ease;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-ink);
}

.hero__arrow--prev svg {
	transform: rotate(180deg);
}

.hero__dots {
	display: flex;
	align-items: center;
	gap: 0;
}

.hero__dot {
	box-sizing: content-box;
	width: 8px;
	height: 8px;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.4);
	background-clip: content-box;
	border-radius: var(--radius-full);
	border: none;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.hero__dot.is-active {
	background-color: var(--color-orange);
	background-clip: content-box;
	transform: scale(1.15);
}

@media (max-width: 600px) {
	.hero__nav {
		gap: var(--space-4);
		padding-bottom: var(--space-6);
	}
}

/* ==========================================================================
   8. Cards
   ========================================================================== */

.card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	box-shadow: 0 12px 32px rgba(12, 44, 124, 0.08);
}

.service-card {
	background: var(--color-neutral-100);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(12, 44, 124, 0.12);
}

.service-card__icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-full);
	background: var(--color-orange-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-navy);
}

.service-card__icon svg {
	width: 28px;
	height: 28px;
}

.service-card__link {
	margin-top: auto;
	color: var(--color-navy);
	font-weight: 700;
	font-size: var(--text-label-size);
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
}

.service-card__link svg {
	width: 16px;
	height: 16px;
	transition: transform 0.15s ease;
}

.service-card:hover .service-card__link svg {
	transform: translateX(4px);
}

/* Callout / benefits card */

.callout-card {
	background: var(--color-orange);
	border-radius: var(--radius-lg);
	padding: var(--space-12);
	color: var(--color-ink);
}

.callout-card__list {
	display: grid;
	gap: var(--space-3);
	margin-top: var(--space-6);
}

.callout-card__list li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
}

.callout-card__check {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: var(--radius-full);
	background: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.callout-card__check svg {
	width: 14px;
	height: 14px;
	color: var(--color-navy);
}

/* Testimonials */

.testimonial-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	border: 1px solid var(--color-neutral-300);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.testimonial-card__quote {
	font-size: var(--text-body-lg-size);
	line-height: var(--text-body-lg-line);
	position: relative;
}

.testimonial-card__quote::before {
	content: '\201C';
	color: var(--color-orange);
	font-size: 48px;
	font-weight: 800;
	line-height: 0;
	display: block;
	margin-bottom: var(--space-2);
}

.testimonial-card__author {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin-top: auto;
}

.testimonial-card__avatar {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background: var(--color-navy);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

/* Team members */

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-8);
	align-items: start;
}

@media (max-width: 767px) {
	.team-grid {
		display: flex;
		align-items: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: var(--space-4);
		margin-inline: calc(var(--space-4) * -1);
		padding: var(--space-2) var(--space-4) var(--space-4);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.team-grid::-webkit-scrollbar {
		display: none;
	}

	.team-grid .team-card {
		flex: 0 0 78%;
		scroll-snap-align: center;
	}
}

.team-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: 0 12px 32px rgba(12, 44, 124, 0.1);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(12, 44, 124, 0.14);
}

.team-card__photo {
	position: relative;
	aspect-ratio: 1 / 1;
}

.team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-shadow) 100%);
}

.team-card__initial {
	font-size: 64px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.3);
}

.team-card__mark {
	position: absolute;
	top: var(--space-4);
	left: var(--space-4);
	width: 24px;
	height: auto;
	opacity: 0.1;
	pointer-events: none;
}

.team-card__body {
	position: relative;
	padding: var(--space-8) var(--space-6) var(--space-6);
}

.team-card__badge {
	position: absolute;
	top: -16px;
	right: var(--space-6);
	background: var(--color-orange);
	color: var(--color-ink);
	font-size: var(--text-caption-size);
	font-weight: 700;
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-full);
	box-shadow: 0 6px 16px rgba(12, 44, 124, 0.25);
	white-space: nowrap;
}

.team-card__body h3 {
	color: var(--color-navy);
	margin-bottom: var(--space-2);
}

.team-card__body p {
	margin: 0;
}

/* Job postings */

.job-card {
	background: var(--color-white);
	border: 1px solid var(--color-neutral-300);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.job-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	align-items: center;
	margin-top: var(--space-2);
}

.job-detail__block {
	margin-bottom: var(--space-8);
}

.job-detail__block h2 {
	font-size: var(--text-h3-size);
	line-height: var(--text-h3-line);
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: var(--space-3);
}

/* ==========================================================================
   9. CTA banner
   ========================================================================== */

.cta-banner {
	background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-blue-bright) 100%);
	border-radius: var(--radius-lg);
	color: var(--color-white);
	padding: var(--space-12);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-8);
	flex-wrap: wrap;
}

.cta-banner .text-muted {
	color: rgba(255, 255, 255, 0.82);
}

/* ==========================================================================
   10. Forms
   ========================================================================== */

.contact-form {
	display: grid;
	gap: var(--space-4);
}

.form-row {
	display: grid;
	gap: var(--space-2);
}

.form-row--2col {
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-4);
}

@media (max-width: 600px) {
	.form-row--2col {
		grid-template-columns: 1fr;
	}
}

.form-row label {
	font-size: var(--text-label-size);
	font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
	background: var(--color-white);
	border: 1px solid var(--color-neutral-300);
	border-radius: var(--radius-md);
	padding: var(--space-3) var(--space-4);
	color: var(--color-ink);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
	outline: 2px solid var(--color-orange);
	outline-offset: 1px;
}

.form-notice {
	border-radius: var(--radius-md);
	padding: var(--space-4);
	font-weight: 600;
}

.form-notice--success {
	background: #e6f4ea;
	color: #1e6b34;
}

.form-notice--error {
	background: #fdeaea;
	color: var(--color-red-alert);
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

.site-footer {
	background: var(--color-navy);
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
	background-size: 24px 24px;
	color: var(--color-white);
}

.site-footer .text-muted {
	color: rgba(255, 255, 255, 0.65);
}

.footer-main {
	padding-block: var(--space-16);
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: var(--space-8);
}

@media (max-width: 900px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
	}
}

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

.footer-col h3 {
	font-size: var(--text-label-size);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--color-orange);
	margin-bottom: var(--space-4);
}

.footer-col ul {
	display: grid;
	gap: var(--space-3);
}

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

.footer-logo img {
	margin-bottom: var(--space-4);
}

.footer-social {
	display: flex;
	gap: var(--space-3);
	margin-top: var(--space-6);
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease;
}

.footer-social a:hover {
	background: var(--color-orange);
	color: var(--color-ink);
}

.footer-social svg {
	width: 16px;
	height: 16px;
}

/* Footer contact bar — the recurring component from the brief */

.footer-contact-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-block: var(--space-4);
}

.footer-contact-bar__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--space-4);
	font-size: var(--text-caption-size);
	line-height: var(--text-caption-line);
}

.footer-contact-bar__items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-4);
}

.footer-contact-bar__item {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	position: relative;
	padding-right: var(--space-4);
}

.footer-contact-bar__item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 782px) {
	.footer-contact-bar__item:not(:last-child)::after {
		display: none;
	}
}

.footer-contact-bar__item svg {
	width: 16px;
	height: 16px;
	color: var(--color-orange);
	flex-shrink: 0;
}

.footer-bottom {
	text-align: center;
	padding-block: var(--space-4);
	font-size: var(--text-caption-size);
	color: rgba(255, 255, 255, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   12. Presence / cities strip
   ========================================================================== */

.presence-strip {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-6) var(--space-8);
	box-shadow: 0 12px 32px rgba(12, 44, 124, 0.1);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3) var(--space-6);
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--color-navy);
}

/* Client logos ("Ils nous ont fait confiance") */

.client-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--space-12) var(--space-16);
}

.client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 190px;
}

.client-logo img {
	max-height: 76px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.55;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.client-logo:hover img,
.client-logo:focus-visible img {
	filter: grayscale(0);
	opacity: 1;
}

/* ==========================================================================
   13. WP core alignment / misc
   ========================================================================== */

.alignwide {
	max-width: 1000px;
	margin-inline: auto;
}

.alignfull {
	width: 100%;
	max-width: none;
}

.wp-block-image {
	margin-bottom: var(--space-6);
}

.entry-content > * + * {
	margin-top: var(--space-4);
}

.entry-content h2 {
	font-size: var(--text-h3-size);
	line-height: var(--text-h3-line);
	font-weight: 700;
	color: var(--color-navy);
	margin-top: var(--space-8);
}

.entry-content h3 {
	font-size: var(--text-h4-size);
	line-height: var(--text-h4-line);
	font-weight: 600;
	color: var(--color-navy);
}

.entry-content ul {
	list-style: disc;
	padding-left: var(--space-6);
}

.entry-content ol {
	list-style: decimal;
	padding-left: var(--space-6);
}

.entry-content li + li {
	margin-top: var(--space-2);
}

.entry-content a {
	color: var(--color-navy);
	text-decoration: underline;
	text-decoration-color: var(--color-orange);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	margin: var(--space-8) 0;
	padding: var(--space-6) var(--space-8);
	border-left: 4px solid var(--color-orange);
	background: var(--color-neutral-100);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-size: var(--text-body-lg-size);
	line-height: var(--text-body-lg-line);
	font-style: italic;
	color: var(--color-navy);
}

.entry-content figure {
	margin: var(--space-8) 0;
}

.entry-content figure img {
	border-radius: var(--radius-lg);
}

.entry-content figcaption {
	margin-top: var(--space-2);
	font-size: var(--text-caption-size);
	line-height: var(--text-caption-line);
	color: var(--color-neutral-600);
	text-align: center;
}

.entry-content .wp-block-gallery {
	margin: var(--space-8) 0;
}

.entry-content .wp-block-gallery figure img {
	border-radius: var(--radius-md);
}

.entry-content hr {
	border: none;
	border-top: 1px solid var(--color-neutral-300);
	margin: var(--space-12) 0;
}

.not-found {
	text-align: center;
	padding-block: var(--space-16);
}

/* ==========================================================================
   14. WhatsApp floating action button
   ========================================================================== */

.whatsapp-fab {
	position: fixed;
	right: var(--space-6);
	bottom: var(--space-6);
	width: 56px;
	height: 56px;
	border-radius: var(--radius-full);
	background: #25d366;
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	z-index: 900;
	transition: transform 0.15s ease;
}

.whatsapp-fab:hover {
	transform: scale(1.06);
}

.whatsapp-fab svg {
	width: 28px;
	height: 28px;
}

@media (max-width: 600px) {
	.whatsapp-fab {
		right: var(--space-4);
		bottom: var(--space-4);
	}
}

.media-frame {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(12, 44, 124, 0.18);
}

.section--inverse .media-frame {
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.media-frame img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}

.pull-quote {
	position: relative;
	max-width: 760px;
	margin: 0 auto var(--space-8);
	text-align: center;
	font-size: var(--text-h3-size);
	line-height: var(--text-h3-line);
	font-weight: 700;
	font-style: italic;
}

.pull-quote::before {
	content: '\201C';
	display: block;
	color: var(--color-orange);
	font-size: 64px;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
	margin-bottom: var(--space-2);
}

/* ==========================================================================
   15. Staff request wizard ("Personnel de maison")
   ========================================================================== */

.staff-wizard {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	box-shadow: 0 12px 32px rgba(12, 44, 124, 0.1);
}

.staff-wizard__progress {
	display: flex;
	gap: var(--space-2);
	margin-bottom: var(--space-8);
}

.staff-wizard__dot {
	flex: 1;
	height: 4px;
	border-radius: var(--radius-full);
	background: var(--color-neutral-300);
	transition: background-color 0.2s ease;
}

.staff-wizard__dot.is-active,
.staff-wizard__dot.is-done {
	background: var(--color-orange);
}

.staff-wizard__step {
	display: none;
}

.staff-wizard__step.is-active {
	display: block;
	animation: staff-wizard-fade 0.25s ease;
}

@keyframes staff-wizard-fade {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.staff-wizard__eyebrow {
	display: block;
	font-size: var(--text-caption-size);
	font-weight: 700;
	color: var(--color-neutral-600);
	margin-bottom: var(--space-1);
}

.staff-wizard__step h3 {
	font-size: var(--text-h4-size);
	line-height: var(--text-h4-line);
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: var(--space-1);
}

.staff-wizard__chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-6);
}

.chip-select {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	background: var(--color-neutral-100);
	border: 1.5px solid var(--color-neutral-300);
	color: var(--color-ink);
	border-radius: var(--radius-full);
	padding: var(--space-2) var(--space-4);
	font-family: inherit;
	font-size: var(--text-body-size);
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.1s ease;
}

.chip-select:hover {
	border-color: var(--color-orange);
}

.chip-select:active {
	transform: scale(0.97);
}

.chip-select.is-selected {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-ink);
}

.chip-select .icon {
	color: var(--color-navy);
}

.staff-wizard__stepper {
	display: inline-flex;
	align-items: center;
	gap: var(--space-6);
	margin-top: var(--space-8);
	background: var(--color-neutral-100);
	border-radius: var(--radius-full);
	padding: var(--space-2) var(--space-6);
}

.staff-wizard__stepper button {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-full);
	border: none;
	background: var(--color-navy);
	color: var(--color-white);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.staff-wizard__stepper button:hover {
	background: var(--color-blue-bright);
}

.staff-wizard__stepper-value {
	font-size: var(--text-h3-size);
	font-weight: 800;
	min-width: 32px;
	text-align: center;
}

.staff-wizard__date {
	margin-top: var(--space-8);
	max-width: 280px;
}

.staff-wizard__summary {
	background: var(--color-neutral-100);
	border-radius: var(--radius-md);
	padding: var(--space-6);
	margin: var(--space-6) 0;
	display: grid;
	gap: var(--space-2);
	font-size: var(--text-body-size);
}

.staff-wizard__summary strong {
	color: var(--color-navy);
}

.staff-wizard__actions-final {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
}

.staff-wizard__actions-final .btn-outline {
	color: var(--color-navy);
	border-color: var(--color-neutral-300);
}

.staff-wizard__nav {
	display: flex;
	justify-content: space-between;
	margin-top: var(--space-8);
	padding-top: var(--space-6);
	border-top: 1px solid var(--color-neutral-300);
}

.staff-wizard__nav .btn-outline {
	color: var(--color-navy);
	border-color: var(--color-neutral-300);
}

.staff-wizard__nav [data-nav="prev"][hidden] {
	display: none;
}

.staff-wizard__hint {
	margin-top: var(--space-2);
	color: var(--color-red-alert);
	font-size: var(--text-caption-size);
	display: none;
}

.staff-wizard__hint.is-visible {
	display: block;
}

/* ==========================================================================
   16. Decorative motifs (echoing the corporate deck: dot grids, circuit
   lines, radiating icon rings) & scroll-reveal animation
   ========================================================================== */

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	-webkit-mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 65%);
	mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 65%);
	pointer-events: none;
}

.section--inverse {
	position: relative;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
	background-size: 24px 24px;
	background-position: -8px -8px;
	overflow: hidden;
}

.section--inverse::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 140%;
	background: repeating-linear-gradient(115deg, rgba(244, 164, 0, 0.08) 0 1px, transparent 1px 34px);
	pointer-events: none;
}

.cta-banner {
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image: repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 30px);
	pointer-events: none;
}

.service-card__icon {
	position: relative;
}

.service-card__icon::before,
.service-card__icon::after {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(12, 44, 124, 0.14);
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-card__icon::after {
	inset: -16px;
	border-color: rgba(244, 164, 0, 0.25);
	transition-delay: 0.05s;
}

.service-card:hover .service-card__icon::before,
.service-card:hover .service-card__icon::after {
	opacity: 1;
	transform: scale(1);
}

.presence-strip {
	position: relative;
	overflow: hidden;
}

.presence-strip::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image: radial-gradient(circle, rgba(12, 44, 124, 0.06) 1.5px, transparent 1.5px);
	background-size: 20px 20px;
	pointer-events: none;
}

/* Scroll-reveal (assets/js/reveal.js adds/removes these classes) */

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal-on-scroll {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==========================================================================
   17. Blog
   ========================================================================== */

/* Reading progress bar */

.reading-progress {
	position: sticky;
	top: var(--header-height);
	z-index: 900;
	height: 3px;
	background: var(--color-neutral-300);
}

.reading-progress__bar {
	height: 100%;
	width: 100%;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--color-orange);
	transition: transform 0.1s linear;
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.reading-progress__bar {
		transition: none;
	}
}

/* Blog index header — same navy gradient treatment as the marketing hero
   and the single-article header (explicit choice), differentiated from
   the article header by content instead of color: the icon badge + a
   generic "Blog" title here vs. a specific post title + category tag +
   byline there. */

.blog-header {
	position: relative;
	overflow: hidden;
	padding-block: var(--space-16) var(--space-12);
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-shadow) 100%);
	color: var(--color-white);
	text-align: center;
}

.blog-header::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	pointer-events: none;
}

.blog-header__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin-inline: auto;
}

.blog-header .text-muted {
	color: rgba(255, 255, 255, 0.82);
}

.blog-header__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--radius-full);
	background: var(--color-orange-tint);
	color: var(--color-navy);
	margin-bottom: var(--space-6);
}

.blog-header__badge svg {
	width: 28px;
	height: 28px;
}

.blog-header .eyebrow {
	display: block;
}

.blog-header h1 {
	color: var(--color-white);
	margin-top: var(--space-2);
}

/* Article header (light "reading" header, distinct from the marketing hero) */

.article-header {
	position: relative;
	overflow: hidden;
	padding-block: var(--space-12) var(--space-8);
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-shadow) 100%);
	color: var(--color-white);
}

.article-header::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	-webkit-mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 65%);
	mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 65%);
	pointer-events: none;
}

.article-header__inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.article-header .text-muted {
	color: rgba(255, 255, 255, 0.82);
}

.article-header .tag {
	margin-bottom: var(--space-4);
}

.article-header h1 {
	margin-top: var(--space-3);
	color: var(--color-white);
}

.article-header__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	margin-top: var(--space-4);
	margin-bottom: var(--space-4);
}

.article-header__meta span {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
}

.article-figure {
	max-width: 960px;
	margin-top: calc(var(--space-8) * -1);
	position: relative;
	z-index: 1;
}

.article-figure .media-frame img {
	min-height: 320px;
	max-height: 520px;
}

.article-body {
	max-width: 680px;
}

/* Share bar */

.share-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-3);
	padding-bottom: var(--space-6);
	margin-bottom: var(--space-6);
	border-bottom: 1px solid var(--color-neutral-300);
}

.share-bar__label {
	font-size: var(--text-caption-size);
	font-weight: 700;
	color: var(--color-neutral-600);
	margin-right: var(--space-1);
}

.share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	background: var(--color-neutral-100);
	color: var(--color-navy);
	border: none;
	cursor: pointer;
	position: relative;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.share-btn:hover,
.share-btn:focus-visible {
	background: var(--color-orange);
	color: var(--color-ink);
}

.share-btn--copy.is-copied {
	background: var(--color-orange);
	color: var(--color-ink);
}

.share-btn--copy::after {
	content: 'Lien copié !';
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: var(--color-navy);
	color: var(--color-white);
	font-size: var(--text-caption-size);
	font-weight: 600;
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-sm);
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.share-btn--copy.is-copied::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.article-body__footer-share {
	margin-top: var(--space-12);
	padding-top: var(--space-6);
	border-top: 1px solid var(--color-neutral-300);
}

.article-body__footer-share .share-bar {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

/* Tags */

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-top: var(--space-8);
}

/* Post cards (blog index + related posts) */

.post-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(12, 44, 124, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(12, 44, 124, 0.12);
}

.post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--color-neutral-100);
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-neutral-300);
}

.post-card__placeholder svg {
	width: 40px;
	height: 40px;
}

.post-card__tag {
	position: absolute;
	top: var(--space-4);
	left: var(--space-4);
}

.post-card__body {
	padding: var(--space-6);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	flex: 1;
}

.post-card__meta {
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

.post-card__body h3 {
	margin: 0;
}

.post-card__body .service-card__link {
	margin-top: auto;
}

/* Pagination */

.blog-pagination {
	margin-top: var(--space-12);
	display: flex;
	justify-content: center;
}

.blog-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-md);
	font-weight: 700;
	color: var(--color-navy);
}

.blog-pagination a:hover {
	background: var(--color-neutral-100);
}

.blog-pagination .current {
	background: var(--color-orange);
	color: var(--color-ink);
}

