/* ==========================================================================
   SANJI SA — Feuille de style principale
   Charte : vert & rouge SANJI SA, blanc, gris clair.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables
   -------------------------------------------------------------------------- */
:root {
	--vert-900: #0A3D2C;
	--vert-800: #0B4D35;
	--vert-700: #0E6B3A;
	--vert-600: #15884A;
	--vert-100: #E8F3EC;
	--rouge-700: #B31422;
	--rouge-600: #D11B2A;
	--rouge-50: #FCEBEC;
	--blanc: #FFFFFF;
	--gris-50: #F5F7F6;
	--gris-100: #EAEDEB;
	--gris-200: #DDE2DF;
	--gris-500: #8A9490;
	--gris-600: #5B6570;
	--gris-900: #1B232B;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow-sm: 0 4px 14px rgba(10, 61, 44, .07);
	--shadow-md: 0 12px 32px rgba(10, 61, 44, .12);
	--shadow-lg: 0 24px 60px rgba(10, 61, 44, .18);
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-display: "Sora", "Inter", system-ui, sans-serif;
	--container: 1180px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--gris-900);
	background: var(--blanc);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vert-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--rouge-600); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	line-height: 1.22;
	margin: 0 0 .55em;
	color: var(--vert-900);
	font-weight: 700;
}

p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.2em; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

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

/* --------------------------------------------------------------------------
   3. Boutons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
	background: linear-gradient(135deg, var(--rouge-600), var(--rouge-700));
	color: var(--blanc);
	box-shadow: 0 10px 24px rgba(209, 27, 42, .30);
}
.btn-red:hover { color: var(--blanc); box-shadow: 0 14px 30px rgba(209, 27, 42, .38); }
.btn-green {
	background: linear-gradient(135deg, var(--vert-700), var(--vert-800));
	color: var(--blanc);
	box-shadow: 0 10px 24px rgba(14, 107, 58, .28);
}
.btn-green:hover { color: var(--blanc); box-shadow: 0 14px 30px rgba(14, 107, 58, .36); }
.btn-outline {
	background: transparent;
	color: var(--blanc);
	border-color: rgba(255, 255, 255, .65);
}
.btn-outline:hover { border-color: var(--blanc); color: var(--blanc); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* --------------------------------------------------------------------------
   4. Sections & entêtes
   -------------------------------------------------------------------------- */
.section { padding: 88px 0; }
.section-alt { background: var(--gris-50); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-kicker {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--rouge-600);
	background: var(--rouge-50);
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--gris-600); font-size: 17px; margin: 0; }

/* --------------------------------------------------------------------------
   5. Barre supérieure
   -------------------------------------------------------------------------- */
.topbar { background: var(--vert-900); color: rgba(255, 255, 255, .85); font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-link { color: rgba(255, 255, 255, .85); display: inline-flex; gap: 6px; align-items: center; }
.topbar-link:hover { color: var(--blanc); }
.topbar-hours { display: inline-flex; align-items: center; gap: 6px; }
.topbar-cta {
	background: var(--rouge-600);
	color: var(--blanc);
	padding: 6px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13px;
}
.topbar-cta:hover { background: var(--rouge-700); color: var(--blanc); }

/* --------------------------------------------------------------------------
   6. En-tête
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--gris-100);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: block; line-height: 0; }
.brand-logo { width: 46px; height: auto; }
.brand-logo-footer { width: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .02em;
	color: var(--vert-900);
}
.brand-name em { font-style: normal; color: var(--rouge-600); }
.brand-tag { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gris-500); }

.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-menu { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-menu li { position: relative; }
.nav-menu a {
	display: block;
	padding: 12px 13px;
	font-size: 15px;
	font-weight: 500;
	color: var(--gris-900);
	border-radius: 8px;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--vert-700); background: var(--vert-100); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 1px solid var(--gris-200);
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.nav-toggle-bar { width: 22px; height: 2px; background: var(--vert-900); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Héro
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	background: linear-gradient(140deg, var(--vert-900) 0%, var(--vert-800) 45%, var(--vert-700) 100%);
	color: var(--blanc);
	overflow: hidden;
	padding: 96px 0 108px;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .10) 0, rgba(255, 255, 255, .10) 1px, transparent 1px),
		radial-gradient(circle at 85% 75%, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .08) 1px, transparent 1px);
	background-size: 34px 34px;
	pointer-events: none;
}
.hero::after {
	content: "";
	position: absolute;
	width: 560px; height: 560px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(209, 27, 42, .22), transparent 65%);
	top: -160px; right: -120px;
	pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .28);
	color: var(--blanc);
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .03em;
	margin-bottom: 26px;
}
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 4px rgba(74, 222, 128, .22); }

.hero h1 {
	color: var(--blanc);
	font-size: clamp(34px, 4.6vw, 54px);
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 22px;
}
.hero h1 span { color: #A8E6C0; }
.hero-sub { font-size: 18px; color: rgba(255, 255, 255, .86); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; margin: 0; padding: 0; font-size: 14.5px; color: rgba(255, 255, 255, .9); }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: "✓"; color: #4ADE80; font-weight: 700; }

.hero-visual { position: relative; }
.card-stack { position: relative; height: 420px; }
.currency-card {
	position: absolute;
	width: 240px;
	padding: 22px 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(4px);
}
.currency-card .cc-flag { font-size: 34px; display: block; margin-bottom: 10px; }
.currency-card .cc-code { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--vert-900); }
.currency-card .cc-label { font-size: 13px; color: var(--gris-600); margin-bottom: 14px; }
.currency-card .cc-chip {
	display: inline-block;
	background: var(--vert-100);
	color: var(--vert-700);
	font-weight: 600;
	font-size: 12.5px;
	padding: 6px 12px;
	border-radius: 999px;
}
.currency-card.cc-1 { top: 8px; left: 20px; transform: rotate(-6deg); z-index: 3; }
.currency-card.cc-2 { top: 128px; left: 120px; transform: rotate(4deg); z-index: 2; }
.currency-card.cc-3 { top: 248px; left: 26px; transform: rotate(-2deg); z-index: 1; }
.hero-float-badge {
	position: absolute;
	top: 30px;
	right: 0;
	background: var(--blanc);
	color: var(--vert-900);
	border-radius: 16px;
	padding: 14px 18px;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 14px;
}
.hero-float-badge .fb-icon {
	width: 40px; height: 40px;
	border-radius: 12px;
	background: var(--rouge-600);
	color: var(--blanc);
	display: grid; place-items: center;
	font-size: 20px;
}
.hero-float-badge small { display: block; font-weight: 500; color: var(--gris-600); }

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
	display: block;
	background: var(--blanc);
	border: 1px solid var(--gris-100);
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.service-icon {
	width: 58px; height: 58px;
	border-radius: 16px;
	background: var(--vert-100);
	color: var(--vert-700);
	display: grid; place-items: center;
	font-size: 27px;
	margin-bottom: 20px;
	transition: background .2s ease, color .2s ease;
}
.service-card:hover .service-icon { background: var(--vert-700); color: var(--blanc); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gris-600); margin: 0; }
.service-card .service-more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14.5px; color: var(--vert-700); }
.service-card:hover .service-more { color: var(--rouge-600); }

/* --------------------------------------------------------------------------
   9. Comment ça marche
   -------------------------------------------------------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step-card {
	position: relative;
	background: var(--blanc);
	border: 1px solid var(--gris-100);
	border-radius: var(--radius);
	padding: 30px 26px 28px;
	box-shadow: var(--shadow-sm);
}
.step-card::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	position: absolute;
	top: -18px; left: 26px;
	width: 38px; height: 38px;
	background: linear-gradient(135deg, var(--vert-700), var(--vert-800));
	color: var(--blanc);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	display: grid; place-items: center;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(14, 107, 58, .30);
}
.step-card h3 { font-size: 18px; margin: 18px 0 8px; }
.step-card p { font-size: 15px; color: var(--gris-600); margin: 0; }
.step-card .step-icon { font-size: 30px; display: block; margin-bottom: 4px; }

/* --------------------------------------------------------------------------
   10. Devises
   -------------------------------------------------------------------------- */
.devises-table-wrap {
	overflow-x: auto;
	background: var(--blanc);
	border: 1px solid var(--gris-100);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}
.devises-table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	font-size: 15px;
}
.devises-table thead th {
	background: var(--vert-700);
	color: var(--blanc);
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	text-align: left;
	padding: 15px 22px;
}
.devises-table thead th:not(:first-child) { text-align: right; }
.devises-table tbody td {
	padding: 15px 22px;
	border-top: 1px solid var(--gris-100);
	vertical-align: middle;
}
.devises-table tbody tr:nth-child(even) td { background: var(--gris-50); }
.devises-table tbody tr:hover td { background: var(--vert-100); }
.devise-cell-name { display: flex; align-items: center; gap: 14px; }
.devise-cell-flag .devise-flag { font-size: 26px; line-height: 1; }
.devise-cell-flag .devise-symbole-large { font-size: 22px; line-height: 1; color: var(--gris-400); }
.devise-cell-title { display: flex; flex-direction: column; line-height: 1.35; gap: 4px; }
.devise-cell-title .devise-name { font-size: 16px; color: var(--vert-900); }
.devise-code {
	align-self: flex-start;
	background: var(--vert-100);
	color: var(--vert-700);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 11.5px;
	padding: 3px 10px;
	border-radius: 999px;
	letter-spacing: .04em;
}
.devise-cell-taux {
	text-align: right;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--vert-900);
	white-space: nowrap;
}
.devises-api-note {
	font-size: 13px;
	color: var(--gris-500);
	text-align: center;
	max-width: 760px;
	margin: 18px auto 0;
}

/* --------------------------------------------------------------------------
   11. Bandeau CTA
   -------------------------------------------------------------------------- */
.cta-band {
	background: linear-gradient(135deg, var(--rouge-600), var(--rouge-700));
	color: var(--blanc);
	border-radius: 22px;
	padding: 54px 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 85% 20%, rgba(255,255,255,.16) 0, transparent 45%);
}
.cta-band h2 { color: var(--blanc); font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255, 255, 255, .9); font-size: 17px; max-width: 620px; margin: 0 auto 28px; position: relative; }
.cta-band .btn-white {
	background: var(--blanc);
	color: var(--rouge-700);
	border-radius: 999px;
	position: relative;
}
.cta-band .btn-white:hover { color: var(--rouge-600); }

/* --------------------------------------------------------------------------
   12. Réassurance / À propos court
   -------------------------------------------------------------------------- */
.reassure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.reassure-item { display: flex; gap: 18px; align-items: flex-start; }
.reassure-icon {
	flex: 0 0 52px;
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--vert-100);
	color: var(--vert-700);
	display: grid; place-items: center;
	font-size: 24px;
}
.reassure-item h3 { font-size: 18px; margin-bottom: 6px; }
.reassure-item p { font-size: 15px; color: var(--gris-600); margin: 0; }

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--blanc); border: 1px solid var(--gris-100); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16.5px;
	color: var(--vert-900);
}
.faq-question:hover { color: var(--vert-700); }
.faq-icon {
	position: relative;
	flex: 0 0 26px;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: var(--vert-100);
	transition: background .2s ease;
}
.faq-icon::before, .faq-icon::after {
	content: "";
	position: absolute;
	background: var(--vert-700);
	border-radius: 2px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	transition: transform .2s ease;
}
.faq-icon::before { width: 11px; height: 2px; }
.faq-icon::after { width: 2px; height: 11px; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--rouge-600); }
.faq-question[aria-expanded="true"] .faq-icon::before, .faq-question[aria-expanded="true"] .faq-icon::after { background: var(--blanc); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { border-top: 1px solid var(--gris-100); }
.faq-answer-inner { padding: 18px 24px 22px; color: var(--gris-600); font-size: 16px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   14. Formulaire
   -------------------------------------------------------------------------- */
.sanji-form-wrap { max-width: 860px; margin-inline: auto; }
.sanji-alert {
	border-radius: var(--radius-sm);
	padding: 16px 20px;
	margin-bottom: 24px;
	font-weight: 500;
}
.sanji-alert-success { background: var(--vert-100); color: var(--vert-800); border: 1px solid #BBDCC9; }
.sanji-alert-error { background: var(--rouge-50); color: var(--rouge-700); border: 1px solid #F2C5C9; }

.sanji-form {
	background: var(--blanc);
	border: 1px solid var(--gris-100);
	border-radius: var(--radius);
	padding: 34px 30px;
	box-shadow: var(--shadow-sm);
}
.sanji-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sanji-field { display: flex; flex-direction: column; gap: 7px; }
.sanji-field-full { grid-column: 1 / -1; }
.sanji-field label { font-weight: 600; font-size: 14.5px; color: var(--vert-900); }
.sanji-field label span { color: var(--rouge-600); }
.sanji-field input, .sanji-field select, .sanji-field textarea {
	border: 1.5px solid var(--gris-200);
	border-radius: var(--radius-sm);
	padding: 13px 14px;
	font-family: var(--font-body);
	font-size: 15.5px;
	color: var(--gris-900);
	background: var(--gris-50);
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.sanji-field input:focus, .sanji-field select:focus, .sanji-field textarea:focus {
	outline: none;
	border-color: var(--vert-600);
	background: var(--blanc);
	box-shadow: 0 0 0 4px rgba(14, 107, 58, .12);
}
.sanji-form-note { font-size: 13.5px; color: var(--gris-500); margin: 20px 0 18px; }

/* --------------------------------------------------------------------------
   15. Page intérieure
   -------------------------------------------------------------------------- */
.page-hero {
	background: linear-gradient(140deg, var(--vert-900), var(--vert-700));
	color: var(--blanc);
	padding: 64px 0;
	position: relative;
	overflow: hidden;
}
.page-hero::after {
	content: "";
	position: absolute;
	width: 420px; height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,.10), transparent 60%);
	right: -120px; top: -140px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--blanc); font-size: clamp(30px, 4vw, 44px); margin-bottom: 8px; }
.page-hero .page-hero-sub { color: rgba(255, 255, 255, .85); font-size: 17px; max-width: 640px; margin: 0; }

.page-content { padding: 72px 0 88px; }
.page-content .container { max-width: 880px; }
.page-content h2 { font-size: 27px; margin-top: 1.4em; }
.page-content h3 { font-size: 21px; margin-top: 1.2em; }
.page-content ul, .page-content ol { margin-bottom: 1.2em; }
.page-content li { margin-bottom: .4em; }
.page-content blockquote { border-left: 4px solid var(--vert-600); margin: 1.4em 0; padding: 8px 22px; background: var(--gris-50); border-radius: 0 10px 10px 0; }

/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; margin-bottom: 44px; }
.contact-panel {
	background: var(--blanc);
	border: 1px solid var(--gris-100);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
	flex: 0 0 44px;
	width: 44px; height: 44px;
	background: var(--vert-100);
	border-radius: 12px;
	display: grid; place-items: center;
	font-size: 21px;
}
.contact-item strong { display: block; font-family: var(--font-display); font-size: 14px; color: var(--vert-900); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 15.5px; color: var(--gris-900); display: block; }
.contact-item a:hover { color: var(--rouge-600); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; border: 1px solid var(--gris-100); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

/* --------------------------------------------------------------------------
   17. Pied de page
   -------------------------------------------------------------------------- */
.site-footer { background: var(--vert-900); color: rgba(255, 255, 255, .82); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
.footer-brand .brand-name { color: var(--blanc); }
.footer-brand .brand-name em { color: #FF7A85; }
.footer-brand .brand-tag { color: rgba(255, 255, 255, .5); }
.footer-about { font-size: 14.5px; color: rgba(255, 255, 255, .68); margin: 18px 0 0; }
.footer-title {
	color: var(--blanc);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .12em;
	margin-bottom: 18px;
	font-weight: 700;
}
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-menu a, .footer-contact li { color: rgba(255, 255, 255, .78); font-size: 14.5px; }
.footer-menu a:hover { color: var(--blanc); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 20px 0; font-size: 13.5px; color: rgba(255, 255, 255, .6); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-mini-links a { color: rgba(255, 255, 255, .7); }
.footer-mini-links a:hover { color: var(--blanc); }

/* Bouton WhatsApp flottant */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 70;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #25D366;
	color: var(--blanc);
	padding: 13px 18px;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
	font-weight: 600;
	font-size: 14.5px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); color: var(--blanc); box-shadow: 0 16px 36px rgba(37, 211, 102, .5); }
.whatsapp-float-text { display: none; }
@media (min-width: 720px) {
	.whatsapp-float-text { display: inline; }
}

/* --------------------------------------------------------------------------
   18. Médias / responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
	.hero-inner { grid-template-columns: 1fr; gap: 48px; }
	.hero-visual { max-width: 520px; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
	.nav-toggle { display: flex; }
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--blanc);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 14px 20px 20px;
		border-bottom: 1px solid var(--gris-100);
		box-shadow: var(--shadow-md);
		display: none;
	}
	.main-nav.is-open { display: flex; }
	.nav-menu { flex-direction: column; align-items: stretch; }
	.nav-menu a { padding: 13px 10px; border-radius: 8px; }
	.contact-grid { grid-template-columns: 1fr; }
	.page-hero { padding: 48px 0; }
	.section { padding: 64px 0; }
	.hero { padding: 72px 0 84px; }
}

@media (max-width: 680px) {
	.services-grid { grid-template-columns: 1fr; }
	.devises-table-wrap { border: 0; box-shadow: none; background: transparent; }
	.devises-table { min-width: 0; }
	.devises-table thead { display: none; }
	.devises-table tbody tr {
		display: block;
		background: var(--blanc);
		border: 1px solid var(--gris-100);
		border-radius: var(--radius-sm);
		box-shadow: var(--shadow-sm);
		margin-bottom: 14px;
		padding: 8px 0;
	}
	.devises-table tbody td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		border: 0;
		padding: 10px 18px;
	}
	.devises-table tbody tr:nth-child(even) td,
	.devises-table tbody tr:hover td { background: transparent; }
	.devises-table tbody td::before {
		content: attr(data-label);
		font-size: 11px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: .06em;
		color: var(--gris-500);
	}
	.devises-table tbody td.devise-cell-name { justify-content: flex-start; }
	.devises-table tbody td.devise-cell-name::before { display: none; }
	.steps-grid { grid-template-columns: 1fr; }
	.reassure-grid { grid-template-columns: 1fr; }
	.sanji-form-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.hero-actions .btn { width: 100%; }
	.card-stack { height: 360px; }
	.currency-card { width: 200px; padding: 18px 20px; }
	.currency-card.cc-2 { left: 90px; top: 108px; }
	.currency-card.cc-3 { top: 210px; }
	.cta-band { padding: 40px 26px; }
	.topbar-hours { display: none; }
}

@media (max-width: 420px) {
}

/* Petits ajustements utilitaires */
.aligncenter { margin-inline: auto; }

/* --------------------------------------------------------------------------
   19. Actualité (à la une + article)
   -------------------------------------------------------------------------- */
.actualite-card {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 0;
	align-items: stretch;
	background: var(--blanc);
	border: 1px solid var(--gris-100);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}
.actualite-card-media { min-height: 320px; }
.actualite-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.actualite-card-body {
	padding: 48px 50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 14px;
}
.actualite-card-body .section-kicker { margin-bottom: 0; }
.actualite-card-body h2 { font-size: clamp(24px, 3vw, 34px); margin: 0; }
.actualite-card-body p { margin: 0; color: var(--gris-600); }
.actualite-meta {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gris-500);
}

/* Page article */
.actualite-wrap { max-width: 860px; }
.actualite-media {
	margin: 0 0 36px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gris-100);
}
.actualite-media img { width: 100%; }
.actualite-media figcaption {
	margin: 0;
	padding: 14px 20px;
	font-size: 13.5px;
	color: var(--gris-500);
	background: var(--gris-50);
}
.actualite-body p:last-child { margin-bottom: 0; }
.actualite-cta {
	margin-top: 48px;
	text-align: center;
	background: var(--gris-50);
	border: 1px solid var(--gris-100);
	border-radius: var(--radius);
	padding: 46px 30px;
}
.actualite-cta h2 { margin-bottom: 10px; }
.actualite-cta p { color: var(--gris-600); max-width: 460px; margin: 0 auto 26px; }

.page-hero-kicker {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .9);
	background: rgba(255, 255, 255, .14);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

@media (max-width: 900px) {
	.actualite-card { grid-template-columns: 1fr; }
	.actualite-card-media { height: 260px; min-height: 0; }
	.actualite-card-media img { height: 100%; }
	.actualite-card-body { padding: 34px 26px; }
}
