/* ============================================================
   ANJUNA THEME — main.css
   Thème custom WordPress + ACF Pro
   ============================================================ */


/* ────────────────────────────────────────────────────────────
   1. VARIABLES & RESET
   ──────────────────────────────────────────────────────────── */

:root {
	--navy:      #172f4a;
	--blue:      #2f5e94;
	--orange:    #f15a24;
	--orange-dk: #d14518;
	--white:     #ffffff;
	--off-white: #f4f7fb;
	--body-text: #2d3748;
	--muted:     #64748b;
	--muted2:    #94a3b8;
	--border:    #dde5ef;
	--border-dk: #c8d8ea;
	--ff-serif:  'Playfair Display', Georgia, serif;
	--ff-sans:   'DM Sans', sans-serif;
	--ff-mono:   'JetBrains Mono', monospace;
	--radius:    8px;
	--shadow-sm: 0 1px 4px rgba(23,47,74,.06);
	--shadow-md: 0 6px 20px rgba(23,47,74,.09);
	--shadow-lg: 0 12px 40px rgba(23,47,74,.14);
	--container: 1160px;
	--nav-h:     64px;
}

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

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

body {
	font-family: var(--ff-sans);
	font-size: 15px;
	font-weight: 400;
	color: var(--body-text);
	background: var(--white);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }


/* ────────────────────────────────────────────────────────────
   2. LAYOUT
   ──────────────────────────────────────────────────────────── */

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

section {
	padding: 88px 0;
}


/* ────────────────────────────────────────────────────────────
   3. NAVIGATION
   ──────────────────────────────────────────────────────────── */

#main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 0 48px;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.nav-logo {
	font-family: var(--ff-serif);
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	flex-shrink: 0;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
}

.nav-links li a {
	display: block;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 400;
	color: var(--muted);
	border-radius: 4px;
	transition: color .2s, background .2s;
}

.nav-links li a:hover,
.nav-links li a[aria-current="page"] {
	color: var(--navy);
	background: var(--off-white);
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 20px;
	background: var(--orange);
	color: #fff !important;
	font-size: 13px;
	font-weight: 500;
	border-radius: 4px;
	flex-shrink: 0;
	transition: background .2s;
}

.nav-cta:hover { background: var(--orange-dk); }

/* Burger mobile */
.nav-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 24px;
}
.nav-burger span {
	display: block;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform .25s, opacity .2s;
}
.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); }

/* Offset body pour nav fixe */
body { padding-top: var(--nav-h); }


/* ────────────────────────────────────────────────────────────
   4. TYPOGRAPHIE
   ──────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5 {
	font-family: var(--ff-serif);
	font-weight: 400;
	line-height: 1.2;
	color: var(--navy);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ff-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 16px;
}

.eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: var(--orange);
	flex-shrink: 0;
}

.s-title {
	font-size: clamp(24px, 3vw, 36px);
	font-style: italic;
	color: var(--navy);
	margin-bottom: 12px;
}

.section-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.section-title {
	font-family: var(--ff-serif);
	font-size: 22px;
	font-style: italic;
	color: var(--navy);
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-count {
	font-family: var(--ff-mono);
	font-size: 11px;
	color: var(--muted2);
	font-style: normal;
}

/* Breadcrumb */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ff-mono);
	font-size: 11px;
	color: var(--muted2);
	margin-bottom: 24px;
}

.breadcrumb a { color: var(--muted2); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }


/* ────────────────────────────────────────────────────────────
   5. BOUTONS & LIENS
   ──────────────────────────────────────────────────────────── */

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	background: var(--orange);
	color: #fff !important;
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
	transition: background .2s, transform .15s;
	box-shadow: 0 2px 8px rgba(241,90,36,.3);
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); }

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	border: 1px solid var(--border-dk);
	color: var(--navy) !important;
	font-size: 14px;
	border-radius: 4px;
	transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--blue); background: var(--off-white); }

.btn-ghost-white {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	border: 1px solid rgba(255,255,255,.3);
	color: rgba(255,255,255,.85) !important;
	font-size: 14px;
	border-radius: 4px;
	transition: border-color .2s, background .2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--orange);
	transition: gap .2s;
}
.link-arrow:hover { gap: 10px; color: var(--orange-dk); }


/* ────────────────────────────────────────────────────────────
   6. SECTION HERO (commune à tous les templates)
   ──────────────────────────────────────────────────────────── */

#hero {
	background-color: var(--navy);
	padding: 100px 0 88px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

#hero::before {
	content: '';
	position: absolute;
	top: -80px; left: 50%;
	transform: translateX(-50%);
	width: 700px; height: 700px;
	background: radial-gradient(circle, rgba(47,94,148,.25) 0%, transparent 65%);
	pointer-events: none; z-index: 0;
}

#hero::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--orange) 30%, rgba(241,90,36,.3) 70%, transparent);
}

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

.hero-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--ff-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(241,90,36,.85);
	margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
	content: '';
	display: block; width: 28px; height: 1px;
	background: rgba(241,90,36,.5);
}

.hero-h1 {
	font-family: var(--ff-serif) !important;
	font-size: clamp(34px, 5.5vw, 62px) !important;
	font-weight: 400 !important;
	font-style: italic !important;
	color: #fff !important;
	line-height: 1.1 !important;
	max-width: 780px;
	margin: 0 auto 24px;
	letter-spacing: -.01em;
}

.hero-h1 em { color: var(--orange); font-style: normal; }

.hero-sub {
	font-size: 17px;
	font-weight: 300;
	color: rgba(255,255,255,.65);
	line-height: 1.75;
	max-width: 580px;
	margin: 0 auto 44px;
}

.hero-cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}


/* ────────────────────────────────────────────────────────────
   7. STATS / CHIFFRES CLÉS
   ──────────────────────────────────────────────────────────── */

.agence-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
	padding-top: 36px;
	border-top: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-num {
	font-family: var(--ff-mono);
	font-size: 28px;
	font-weight: 500;
	color: var(--orange);
	line-height: 1;
	margin-bottom: 6px;
}

.stat-label {
	font-size: 12px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.4;
}


/* ────────────────────────────────────────────────────────────
   8. SECTION AGENCE
   ──────────────────────────────────────────────────────────── */

#agence { background: var(--white); }

.agence-inner { max-width: 720px; }

.agence-body {
	font-size: 15px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 28px;
}

.agence-body p { margin-bottom: 16px; }
.agence-body p:last-child { margin-bottom: 0; }


/* ────────────────────────────────────────────────────────────
   9. GRILLES DE CARDS (réutilisable)
   ──────────────────────────────────────────────────────────── */

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

/* Card expertise */
.exp-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	transition: box-shadow .25s, transform .2s;
}
.exp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.exp-card-icon {
	width: 40px; height: 40px;
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
}
.exp-card-icon svg { color: var(--blue); }

.exp-card-title {
	font-family: var(--ff-serif) !important;
	font-size: 17px !important;
	font-weight: 500 !important;
	color: var(--navy) !important;
	margin-bottom: 10px;
	line-height: 1.25;
}

.exp-card-promise {
	font-size: 13px !important;
	font-weight: 300;
	color: var(--muted) !important;
	line-height: 1.7;
	flex: 1;
	margin-bottom: 20px;
}

.exp-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--orange);
	margin-top: auto;
	transition: gap .2s;
}
.exp-card-cta:hover { gap: 10px; }

/* Card réalisation */
.real-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .25s, transform .2s;
}
.real-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-thumb { height: 110px; position: relative; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Couleurs de fallback thumbnail */
.t-rp   { background: linear-gradient(135deg, #172f4a, #2f5e94); }
.t-seo  { background: linear-gradient(135deg, #1a4a5c, #2f7a8e); }
.t-site { background: linear-gradient(135deg, #2a3a52, #3d5a7a); }

.card-body {
	padding: 16px 18px 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 9px;
	flex-wrap: wrap;
}

.card-badge {
	display: inline-block;
	font-family: var(--ff-mono);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
}
.b-rp      { background: rgba(241,90,36,.1);  color: var(--orange-dk); }
.b-seo     { background: rgba(47,94,148,.1);  color: var(--blue); }
.b-site    { background: rgba(23,47,74,.08);  color: var(--navy); }
.b-content { background: rgba(30,69,112,.09); color: #1e4570; }

.card-client {
	font-family: var(--ff-mono);
	font-size: 10px;
	color: var(--muted2);
}

.card-title {
	font-family: var(--ff-serif) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: var(--navy) !important;
	line-height: 1.35;
	margin-bottom: 6px;
	flex: 1;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	border-top: 1px solid var(--border);
	margin-top: auto;
}

.card-read {
	font-size: 12px;
	font-weight: 500;
	color: var(--orange);
	display: flex;
	align-items: center;
	gap: 4px;
}

.card-tag {
	font-family: var(--ff-mono);
	font-size: 10px;
	color: var(--muted2);
}

/* Card article */
.article-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .25s, transform .2s;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.article-thumb { height: 120px; position: relative; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-navy  { background: linear-gradient(135deg, #172f4a, #2f5e94); }
.thumb-teal  { background: linear-gradient(135deg, #1a4a5c, #2f7a8e); }
.thumb-slate { background: linear-gradient(135deg, #2a3a52, #3d5a7a); }

.article-body {
	padding: 18px 20px 16px;
	flex: 1; display: flex; flex-direction: column;
}

.article-meta-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.article-cat {
	display: inline-block;
	font-family: var(--ff-mono);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
}
.cat-rp  { background: rgba(241,90,36,.9);  color: #fff; }
.cat-seo { background: rgba(47,94,148,.9);  color: #fff; }
.cat-ia  { background: rgba(23,47,74,.85);  color: rgba(255,255,255,.9); }

.article-date {
	font-family: var(--ff-mono);
	font-size: 10px;
	color: var(--muted2);
}

.article-title {
	font-family: var(--ff-serif) !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	color: var(--navy) !important;
	line-height: 1.35;
	margin-bottom: 8px;
	flex: 1;
}
.article-card:hover .article-title { color: var(--blue) !important; }

.article-excerpt {
	font-size: 12px !important;
	font-weight: 300;
	color: var(--muted) !important;
	line-height: 1.7;
	margin-bottom: 12px;
}

.article-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--border);
	margin-top: auto;
}

.article-read {
	font-size: 12px;
	font-weight: 500;
	color: var(--orange);
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap .2s;
}
.article-read:hover { gap: 7px; }

.article-tag {
	font-family: var(--ff-mono);
	font-size: 10px;
	color: var(--muted2);
}


/* ────────────────────────────────────────────────────────────
   10. SECTION PROBLÈMES
   ──────────────────────────────────────────────────────────── */

#problemes {
	background: var(--navy);
	position: relative;
	overflow: hidden;
}

#problemes::before {
	content: '';
	position: absolute;
	bottom: -100px; right: -100px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(47,94,148,.2) 0%, transparent 65%);
	pointer-events: none;
}

.problemes-header { text-align: center; margin-bottom: 56px; }

.problemes-title {
	font-family: var(--ff-serif) !important;
	font-size: clamp(24px, 3.2vw, 38px) !important;
	font-style: italic !important;
	color: #fff !important;
	max-width: 580px;
	margin: 0 auto !important;
}

.pb-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255,255,255,.08);
}

.pb-card {
	background: var(--navy);
	padding: 40px 32px;
	transition: background .25s;
}
.pb-card:hover { background: rgba(255,255,255,.04); }

.pb-num {
	font-family: var(--ff-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(241,90,36,.7);
	margin-bottom: 10px;
}

.pb-title {
	font-family: var(--ff-serif) !important;
	font-size: 19px !important;
	font-weight: 500 !important;
	color: #fff !important;
	margin-bottom: 12px;
	line-height: 1.25;
}

.pb-desc {
	font-size: 13px !important;
	font-weight: 300;
	color: rgba(255,255,255,.55) !important;
	line-height: 1.75;
	margin-bottom: 20px;
}

.pb-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--orange);
	border-bottom: 1px solid transparent;
	transition: border-color .2s, gap .2s;
}
.pb-link:hover { border-color: var(--orange); gap: 10px; }


/* ────────────────────────────────────────────────────────────
   11. SECTION CLIENTS / LOGOS
   ──────────────────────────────────────────────────────────── */

#clients {
	padding: 64px 0 !important;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.clients-label {
	font-family: var(--ff-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted2);
	text-align: center;
	margin-bottom: 40px;
}

.logos-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.logo-item {
	padding: 16px 32px;
	border-right: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo-item:last-child { border-right: none; }
.logo-item img, .logo-item svg { opacity: .35; transition: opacity .2s; max-height: 32px; width: auto; }
.logo-item:hover img, .logo-item:hover svg { opacity: .65; }


/* ────────────────────────────────────────────────────────────
   12. SECTION BLOG — FILTRES
   ──────────────────────────────────────────────────────────── */

.blog-filters,
.real-filters {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}

.blog-filter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: 20px;
	transition: all .2s;
}
.blog-filter:hover,
.blog-filter.active {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.filter-count {
	font-family: var(--ff-mono);
	font-size: 10px;
	opacity: .6;
}

.blog-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
}

.blog-pagination .nav-links a,
.blog-pagination .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	font-size: 13px;
	border: 1px solid var(--border);
	border-radius: 4px;
	margin: 0 3px;
	color: var(--muted);
	transition: all .2s;
}
.blog-pagination .nav-links a:hover { border-color: var(--navy); color: var(--navy); }
.blog-pagination .nav-links span.current { background: var(--navy); border-color: var(--navy); color: #fff; }


/* ────────────────────────────────────────────────────────────
   13. ARTICLE SINGLE
   ──────────────────────────────────────────────────────────── */

.article-header {
	background: var(--navy);
	padding: 72px 0 64px;
}

.article-h1-a {
	font-family: var(--ff-serif);
	font-size: clamp(26px, 4vw, 48px);
	font-weight: 400;
	font-style: italic;
	color: #fff;
	line-height: 1.15;
	max-width: 760px;
	margin-bottom: 20px;
}

.article-lead {
	font-size: 18px;
	font-weight: 300;
	color: rgba(255,255,255,.7);
	line-height: 1.7;
	max-width: 680px;
	margin-bottom: 24px;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ff-mono);
	font-size: 11px;
	color: rgba(255,255,255,.35);
}

.article-meta-sep { opacity: .4; }

.article-layout { padding: 64px 0 88px; }

.article-grid {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 64px;
	align-items: start;
}

/* Sommaire */
.article-toc {
	position: sticky;
	top: calc(var(--nav-h) + 24px);
}

.toc-label {
	font-family: var(--ff-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted2);
	margin-bottom: 16px;
}

.toc-link {
	display: block;
	font-size: 13px;
	font-weight: 300;
	color: var(--muted);
	padding: 6px 0 6px 14px;
	border-left: 2px solid var(--border);
	line-height: 1.4;
	transition: color .2s, border-color .2s;
}
.toc-link:hover,
.toc-link.active { color: var(--navy); border-color: var(--orange); }

.toc-cta {
	margin-top: 32px;
	padding: 20px;
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.toc-cta-title {
	font-family: var(--ff-serif);
	font-size: 15px;
	font-style: italic;
	color: var(--navy);
	margin-bottom: 14px;
	line-height: 1.35;
}

/* Contenu article */
.article-content { max-width: 680px; }

.article-content h2 {
	font-size: 24px;
	font-style: italic;
	color: var(--navy);
	margin: 48px 0 16px;
	padding-top: 8px;
	border-top: 1px solid var(--border);
}

.article-content h3 {
	font-size: 18px;
	color: var(--navy);
	margin: 32px 0 12px;
}

.article-content p {
	font-size: 15px;
	font-weight: 300;
	color: var(--body-text);
	line-height: 1.85;
	margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
	margin: 20px 0 24px 20px;
}

.article-content li {
	font-size: 15px;
	font-weight: 300;
	color: var(--body-text);
	line-height: 1.75;
	margin-bottom: 8px;
	list-style: disc;
}

.article-content ol li { list-style: decimal; }

.article-content blockquote {
	border-left: 3px solid var(--orange);
	padding: 16px 24px;
	margin: 32px 0;
	background: var(--off-white);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content blockquote p {
	font-family: var(--ff-serif);
	font-style: italic;
	font-size: 17px;
	color: var(--navy);
	margin: 0;
}

.article-content a {
	color: var(--orange);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-content img {
	border-radius: var(--radius);
	margin: 28px 0;
	border: 1px solid var(--border);
	width: 100%;
}

.article-content code {
	font-family: var(--ff-mono);
	font-size: 13px;
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: 3px;
	padding: 2px 6px;
}

.article-content pre {
	background: var(--navy);
	border-radius: var(--radius);
	padding: 24px;
	overflow-x: auto;
	margin: 28px 0;
}

.article-content pre code {
	background: none;
	border: none;
	color: rgba(255,255,255,.85);
	padding: 0;
	font-size: 13px;
	line-height: 1.7;
}

/* Tags article */
.article-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.article-tag-link {
	display: inline-block;
	font-family: var(--ff-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border: 1px solid var(--border);
	border-radius: 20px;
	color: var(--muted);
	transition: all .2s;
}
.article-tag-link:hover { border-color: var(--orange); color: var(--orange); }

/* Articles liés */
.related-articles {
	background: var(--off-white);
	padding: 64px 0;
}


/* ────────────────────────────────────────────────────────────
   14. FAQ
   ──────────────────────────────────────────────────────────── */

.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	font-family: var(--ff-serif);
	font-size: 17px;
	font-weight: 500;
	color: var(--navy);
	cursor: pointer;
	list-style: none;
	line-height: 1.3;
}

.faq-q::after {
	content: '+';
	font-family: var(--ff-sans);
	font-size: 22px;
	font-weight: 300;
	color: var(--orange);
	flex-shrink: 0;
	transition: transform .25s;
}

.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
	overflow: hidden;
}

.faq-a-inner {
	padding: 0 0 20px;
	font-size: 14px;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.8;
}


/* ────────────────────────────────────────────────────────────
   15. FORMULAIRE DE CONTACT
   ──────────────────────────────────────────────────────────── */

.contact-form,
.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

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

.form-input,
.form-textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	width: 100%;
	padding: 11px 14px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 4px;
	font-family: var(--ff-sans);
	font-size: 13px;
	color: #fff;
	outline: none;
	transition: border-color .2s;
}

.form-input::placeholder,
.form-textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: rgba(255,255,255,.3);
}

.form-input:focus,
.form-textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	border-color: rgba(241,90,36,.5);
}

.form-textarea,
.wpcf7-form textarea { resize: vertical; min-height: 90px; }

.form-submit,
.wpcf7-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--orange);
	color: #fff;
	font-family: var(--ff-sans);
	font-size: 13px;
	font-weight: 500;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background .2s;
	width: fit-content;
}
.form-submit:hover,
.wpcf7-form input[type="submit"]:hover { background: var(--orange-dk); }

.form-legal {
	font-size: 11px;
	color: rgba(255,255,255,.25);
	line-height: 1.5;
}

.form-legal a { color: rgba(255,255,255,.3); }

/* CF7 — suppression styles parasites */
.wpcf7-not-valid-tip { font-size: 11px; color: #f87171; margin-top: 4px; }
.wpcf7-response-output { font-size: 13px; margin-top: 12px !important; border-radius: 4px !important; }


/* ────────────────────────────────────────────────────────────
   16. CTA FINAL & FOOTER
   ──────────────────────────────────────────────────────────── */

#footer { background: var(--navy); }

#cta-final {
	padding: 96px 0 0;
	position: relative;
	overflow: hidden;
}

#cta-final::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--orange), rgba(241,90,36,.3), transparent);
}

.cta-inner { text-align: center; padding-bottom: 80px; }

.cta-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--ff-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(241,90,36,.8);
	margin-bottom: 20px;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
	content: '';
	display: block; width: 28px; height: 1px;
	background: rgba(241,90,36,.4);
}

.cta-title {
	font-family: var(--ff-serif) !important;
	font-size: clamp(24px, 3.8vw, 44px) !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #fff !important;
	line-height: 1.2;
	max-width: 640px;
	margin: 0 auto 16px !important;
}

.cta-sub {
	font-size: 14px;
	font-weight: 300;
	color: rgba(255,255,255,.5);
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 72px;
}

.cta-reassurance {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	padding: 28px 0;
	border-top: 1px solid rgba(255,255,255,.07);
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.reassure-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--ff-mono);
	font-size: 11px;
	letter-spacing: .04em;
	color: rgba(255,255,255,.4);
}
.reassure-item svg { color: var(--orange); flex-shrink: 0; }

/* Footer form strip */
.footer-form-strip {
	background: rgba(255,255,255,.04);
	border-top: 1px solid rgba(255,255,255,.07);
	padding: 48px 0;
}

.footer-form-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.footer-form-title {
	font-family: var(--ff-serif);
	font-size: 20px;
	font-style: italic;
	color: rgba(255,255,255,.8);
	margin-bottom: 8px;
	line-height: 1.3;
}

.footer-form-desc {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255,255,255,.4);
	line-height: 1.7;
}

/* Footer bottom */
.footer-bottom {
	background: rgba(0,0,0,.2);
	padding: 24px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-logo {
	font-family: var(--ff-serif);
	font-size: 16px;
	font-weight: 700;
	color: rgba(255,255,255,.5);
}

.footer-links {
	display: flex;
	gap: 24px;
}

.footer-links a {
	font-size: 11px;
	color: rgba(255,255,255,.3);
	transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.6); }

.footer-copy {
	font-family: var(--ff-mono);
	font-size: 10px;
	color: rgba(255,255,255,.2);
	letter-spacing: .04em;
}


/* ────────────────────────────────────────────────────────────
   17. PAGE 404
   ──────────────────────────────────────────────────────────── */

.error-404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
}

.error-code {
	font-family: var(--ff-mono);
	font-size: 120px;
	font-weight: 500;
	color: var(--border);
	line-height: 1;
	margin-bottom: 24px;
}

.error-title {
	font-size: clamp(24px, 3vw, 36px);
	font-style: italic;
	color: var(--navy);
	margin-bottom: 16px;
}

.error-desc {
	font-size: 15px;
	font-weight: 300;
	color: var(--muted);
	max-width: 480px;
	margin: 0 auto 36px;
	line-height: 1.75;
}


/* ────────────────────────────────────────────────────────────
   18. ANIMATIONS
   ──────────────────────────────────────────────────────────── */

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

.animate-fadeup { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }


/* ────────────────────────────────────────────────────────────
   19. RESPONSIVE
   ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.container { padding: 0 32px; }

	.exp-header {
		grid-template-columns: 1fr;
		gap: 32px;
	}

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

	.article-toc { position: static; }

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

@media (max-width: 820px) {
	.container { padding: 0 20px; }
	section { padding: 64px 0; }

	#main-nav { padding: 0 20px; }
	.nav-links { display: none; }
	.nav-burger { display: flex; }

	/* Menu mobile ouvert */
	.nav-links.is-open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: var(--nav-h); left: 0; right: 0;
		background: #fff;
		padding: 20px;
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		z-index: 99;
	}

	#hero { padding: 80px 0 64px !important; }

	.exp-grid,
	.cards-grid,
	.articles-grid,
	.pb-grid { grid-template-columns: 1fr !important; }

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

	.form-row { grid-template-columns: 1fr; }

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.cta-reassurance { gap: 16px; }

	.logos-row { gap: 0; }
	.logo-item { padding: 12px 20px; }
}

@media (max-width: 600px) {
	.hero-h1 { font-size: clamp(28px, 8vw, 40px) !important; }
	.agence-stats { grid-template-columns: 1fr; gap: 16px; }
	.cta-reassurance { flex-direction: column; align-items: flex-start; }
	.hero-cta-row { flex-direction: column; align-items: center; }
	.btn-primary, .btn-ghost, .btn-ghost-white { width: 100%; justify-content: center; }
}
