/*
Theme Name: Simohweb Theme
Theme URI: https://simohweb.fr
Author: Evo Multiservices
Author URI: https://simohweb.fr
Description: Thème WordPress premium pour Simohweb - Agence Digitale. Création de sites web, SEO, marketing digital. Design premium, animations, SEO local.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simohweb
Tags: business, agency, digital, premium, custom-colors, responsive-layout, translation-ready
*/

:root {
	--evo-blue-night:   #061B2E;
	--evo-blue-deep:    #0B2D4D;
	--evo-blue-card:    #102E4C;
	--evo-orange:       #FF7A1A;
	--evo-orange-hover: #FF8A00;
	--evo-cyan:         #00D4FF;
	--evo-white:        #FFFFFF;
	--evo-gray-light:   #F5F7FA;
	--evo-text:         #172033;
	--evo-text-muted:   #6B7A90;
	--evo-border:       rgba(255,255,255,0.08);
	--evo-border-dark:  rgba(6,27,46,0.08);
	--evo-font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--evo-radius-sm: 8px;
	--evo-radius:    16px;
	--evo-radius-lg: 24px;
	--evo-shadow-card:  0 10px 30px rgba(6,27,46,0.12);
	--evo-shadow-card-hover: 0 24px 48px rgba(6,27,46,0.22);
	--evo-shadow-glow:  0 0 32px rgba(0,212,255,0.18);
	--evo-shadow-cta:   0 10px 26px rgba(255,122,26,0.4);
	--evo-container: 1280px;
	--evo-gutter:    24px;
	--evo-header-height: 84px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--evo-font-base);
	font-size: 16px;
	line-height: 1.65;
	color: var(--evo-text);
	background: var(--evo-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--evo-orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--evo-orange-hover); }

h1,h2,h3,h4,h5,h6 {
	color: var(--evo-text);
	line-height: 1.15;
	margin: 0 0 .6em;
	font-weight: 800;
	letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 700; }
p  { margin: 0 0 1em; }
.evo-on-dark, .evo-on-dark h1, .evo-on-dark h2, .evo-on-dark h3 { color: var(--evo-white); }
.evo-on-dark p { color: rgba(255,255,255,0.78); }
.evo-accent { color: var(--evo-orange); }
.evo-cyan   { color: var(--evo-cyan); }

.evo-container { max-width: var(--evo-container); margin: 0 auto; padding: 0 var(--evo-gutter); }
.evo-container--wide { max-width: 1460px; }
.evo-section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.evo-section--dark {
	background: linear-gradient(180deg, var(--evo-blue-night) 0%, var(--evo-blue-deep) 100%);
	color: var(--evo-white);
	overflow: hidden;
}
.evo-section--dark::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(circle at 15% 30%, rgba(0,212,255,0.10), transparent 40%),
		radial-gradient(circle at 85% 70%, rgba(255,122,26,0.08), transparent 40%);
	pointer-events: none;
}
.evo-section--light { background: var(--evo-white); }
.evo-section--gray  { background: var(--evo-gray-light); }
.evo-section-title { text-align: center; margin-bottom: 56px; }
.evo-section-title h2 { margin-bottom: 14px; }
.evo-section-title p { color: var(--evo-text-muted); max-width: 680px; margin: 0 auto; font-size: 1.05rem; }
.evo-on-dark .evo-section-title p { color: rgba(255,255,255,0.7); }

.evo-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 15px 28px; border-radius: 999px;
	font-weight: 600; font-size: 0.95rem; line-height: 1;
	border: 1px solid transparent; cursor: pointer;
	transition: transform .25s, box-shadow .25s, background .25s;
	text-decoration: none; white-space: nowrap;
	position: relative; overflow: hidden;
}
.evo-btn--primary {
	background: linear-gradient(135deg, var(--evo-orange) 0%, var(--evo-orange-hover) 100%);
	color: var(--evo-white);
	box-shadow: var(--evo-shadow-cta);
}
.evo-btn--primary::after {
	content: ""; position: absolute; top: 0; left: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
	transition: left .6s;
}
.evo-btn--primary:hover { transform: translateY(-3px); color: var(--evo-white); box-shadow: 0 14px 32px rgba(255,122,26,0.5); }
.evo-btn--primary:hover::after { left: 100%; }
.evo-btn--ghost {
	background: rgba(255,255,255,0.08); color: var(--evo-white);
	border-color: rgba(255,255,255,0.18); backdrop-filter: blur(10px);
}
.evo-btn--ghost:hover { background: rgba(255,255,255,0.15); color: var(--evo-white); transform: translateY(-2px); }
.evo-btn--phone-light {
	background: rgba(255,255,255,0.06); color: var(--evo-white);
	border-color: rgba(255,255,255,0.22); backdrop-filter: blur(10px);
}
.evo-btn--phone-light:hover { background: rgba(255,255,255,0.14); color: var(--evo-white); transform: translateY(-2px); border-color: rgba(255,255,255,0.4); }
.evo-btn--whatsapp { background: #25D366; color: var(--evo-white); box-shadow: 0 8px 22px rgba(37,211,102,0.32); }
.evo-btn--whatsapp:hover { background: #1FB855; color: var(--evo-white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,0.42); }
.evo-btn--phone { background: rgba(255,255,255,0.05); color: var(--evo-white); border-color: rgba(255,255,255,0.25); font-weight: 700; }
.evo-btn--phone:hover { background: rgba(255,255,255,0.12); color: var(--evo-white); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }
.evo-btn--phone svg { color: var(--evo-cyan); }

.evo-header {
	position: sticky; top: 0; z-index: 100;
	background: linear-gradient(180deg, rgba(6,27,46,0.97) 0%, rgba(8,33,56,0.95) 100%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255,255,255,0.07);
	box-shadow: 0 4px 24px rgba(0,0,0,0.18);
	height: var(--evo-header-height);
	display: flex; align-items: center;
}
.evo-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.evo-logo { display: flex; flex-direction: column; gap: 0; color: var(--evo-white); text-decoration: none; flex-shrink: 0; }
.evo-logo__mark { font-weight: 800; font-size: 1.35rem; letter-spacing: 0.5px; line-height: 1.1; color: var(--evo-white); white-space: nowrap; }
.evo-logo__mark span { color: var(--evo-orange); }
.evo-logo__sub { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 1.2px; margin-top: 2px; text-transform: uppercase; white-space: nowrap; }
.evo-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.evo-nav a {
	color: rgba(255,255,255,0.85); padding: 8px 12px;
	border-radius: 8px; font-size: 0.92rem; font-weight: 500;
	transition: color .2s; position: relative;
	white-space: nowrap;
}
.evo-nav a:hover, .evo-nav .current-menu-item > a { color: var(--evo-orange); }
.evo-nav a::before {
	content: ""; position: absolute; bottom: 2px; left: 50%;
	width: 0; height: 2px; background: var(--evo-orange);
	transition: width .25s, left .25s; border-radius: 2px;
}
.evo-nav a:hover::before { width: 60%; left: 20%; }
.evo-header__cta { display: flex; align-items: center; gap: 12px; }
.evo-burger {
	display: none; flex-direction: column; gap: 5px;
	background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
	cursor: pointer; padding: 11px; border-radius: 10px;
	transition: background .2s;
}
.evo-burger:hover { background: rgba(255,255,255,0.12); }
.evo-burger span { display: block; width: 22px; height: 2px; background: var(--evo-white); border-radius: 2px; transition: transform .3s ease, opacity .25s ease; }
.evo-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.evo-burger.is-active span:nth-child(2) { opacity: 0; }
.evo-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile déroulant animé */
.evo-nav-mobile {
	display: none;
	position: fixed; top: var(--evo-header-height); left: 0; right: 0;
	background: linear-gradient(180deg, #061B2E, #0B2D4D);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	z-index: 99;
	flex-direction: column;
	padding: 8px 0;
	max-height: 0; overflow: hidden;
	opacity: 0; visibility: hidden;
	transition: max-height .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease, visibility .35s;
}
.evo-nav-mobile.is-open { max-height: 80vh; opacity: 1; visibility: visible; overflow-y: auto; }
.evo-nav-mobile a {
	color: rgba(255,255,255,0.9); text-decoration: none;
	padding: 14px 24px; font-size: 1rem; font-weight: 500;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	transition: background .2s, color .2s, padding-left .2s;
}
.evo-nav-mobile a:hover, .evo-nav-mobile a:focus { background: rgba(0,212,255,0.08); color: var(--evo-orange); padding-left: 30px; }
.evo-nav-mobile__cta { display: flex; gap: 10px; padding: 14px 20px; }
.evo-nav-mobile__cta .evo-btn { flex: 1; justify-content: center; }

.evo-hero {
	position: relative;
	background: linear-gradient(165deg, #061B2E 0%, #0B2D4D 55%, #0d3354 100%);
	color: var(--evo-white);
	padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 5vw, 60px);
	overflow: hidden;
}
.evo-hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 50% 60% at 78% 35%, rgba(0,212,255,0.16), transparent 60%),
		radial-gradient(ellipse 40% 50% at 12% 85%, rgba(255,122,26,0.08), transparent 55%);
	pointer-events: none;
}
.evo-hero::after {
	content: ""; position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(0,212,255,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px);
	background-size: 46px 46px;
	pointer-events: none;
	mask-image: radial-gradient(ellipse at 65% 45%, black 10%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at 65% 45%, black 10%, transparent 75%);
}
.evo-hero__inner {
	position: relative; z-index: 1;
	display: flex; flex-direction: column;
	gap: 28px; text-align: center;
}
.evo-hero__content { display: flex; flex-direction: column; align-items: center; }
.evo-hero__badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(0,212,255,0.35);
	color: rgba(255,255,255,0.92);
	padding: 7px 16px; border-radius: 999px;
	font-size: 0.8rem; font-weight: 600;
	margin-bottom: 20px;
	backdrop-filter: blur(8px);
	animation: evo-hero-in .6s ease-out both;
}
.evo-hero__badge svg { color: var(--evo-orange); }
.evo-hero__title {
	font-size: clamp(1.95rem, 7.5vw, 2.6rem);
	margin-bottom: 18px; line-height: 1.1;
	color: var(--evo-white);
	font-weight: 800; letter-spacing: -0.02em;
	animation: evo-hero-in .6s ease-out .05s both;
}
.evo-hero__title em { color: var(--evo-orange); font-style: normal; }
.evo-hero__lead {
	color: rgba(255,255,255,0.8); font-size: 1rem;
	max-width: 520px; margin: 0 auto 28px; line-height: 1.6;
	animation: evo-hero-in .6s ease-out .1s both;
}
.evo-hero__cta {
	display: flex; flex-wrap: wrap; gap: 10px;
	width: 100%; max-width: 420px;
	animation: evo-hero-in .6s ease-out .15s both;
}
.evo-hero__cta .evo-btn { flex: 1 1 calc(50% - 5px); justify-content: center; }
.evo-hero__cta .evo-btn:first-child { flex: 1 1 100%; }

.evo-hero__visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.evo-hero__visual-glow {
	position: absolute; top: -5%; left: 50%; transform: translateX(-50%);
	width: 115%; height: 85%;
	background:
		radial-gradient(ellipse 55% 55% at center, rgba(0,212,255,0.24) 0%, rgba(0,212,255,0.08) 45%, transparent 72%);
	border-radius: 50%;
	filter: blur(18px);
	pointer-events: none;
	animation: evo-glow 6s ease-in-out infinite;
}
.evo-hero__img {
	position: relative; z-index: 1;
	width: 92%; max-width: 560px; height: auto;
	border-radius: 16px;
	filter: drop-shadow(0 20px 45px rgba(0,0,0,0.45));
}

@keyframes evo-glow {
	0%, 100% { opacity: 0.6; }
	50%      { opacity: 1; }
}
@keyframes evo-hero-in {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes evo-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-7px); }
}

/* Silhouette agent — line art cyan discret en arrière-plan */
.evo-hero__agent {
	position: absolute; left: 0; bottom: 0; z-index: 0;
	width: clamp(95px, 9vw, 150px); height: auto;
	color: var(--evo-cyan);
	opacity: 0.30;
	pointer-events: none;
	filter: drop-shadow(0 0 5px rgba(0,212,255,0.55));
	animation: evo-agent-glow 6s ease-in-out infinite;
	transform-origin: bottom left;
}
@keyframes evo-agent-glow {
	0%, 100% { opacity: 0.24; filter: drop-shadow(0 0 4px rgba(0,212,255,0.4));  transform: translateY(0); }
	50%      { opacity: 0.36; filter: drop-shadow(0 0 9px rgba(0,212,255,0.7)); transform: translateY(-3px); }
}

/* Particules lumineuses discrètes dans le fond du hero */
.evo-hero__particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.evo-hero__particles span {
	position: absolute; border-radius: 50%;
	background: var(--evo-cyan); opacity: 0;
	animation: evo-particle 9s ease-in-out infinite;
}
.evo-hero__particles span:nth-child(1) { left: 12%; top: 30%; width: 4px; height: 4px; animation-delay: 0s; }
.evo-hero__particles span:nth-child(2) { left: 24%; top: 70%; width: 3px; height: 3px; animation-delay: 1.4s; }
.evo-hero__particles span:nth-child(3) { left: 58%; top: 22%; width: 5px; height: 5px; animation-delay: 2.6s; background: var(--evo-orange); }
.evo-hero__particles span:nth-child(4) { left: 70%; top: 80%; width: 3px; height: 3px; animation-delay: 3.8s; }
.evo-hero__particles span:nth-child(5) { left: 85%; top: 40%; width: 4px; height: 4px; animation-delay: 0.8s; }
.evo-hero__particles span:nth-child(6) { left: 45%; top: 85%; width: 3px; height: 3px; animation-delay: 4.6s; background: var(--evo-orange); }
.evo-hero__particles span:nth-child(7) { left: 6%; top: 60%; width: 4px; height: 4px; animation-delay: 5.5s; }

@keyframes evo-particle {
	0%        { opacity: 0; transform: translateY(0) scale(0.6); }
	20%, 70%  { opacity: 0.55; }
	100%      { opacity: 0; transform: translateY(-40px) scale(1); }
}

/* ===== Bandeau villes (marquee) ===== */
.evo-cities {
	position: relative; z-index: 4;
	background: rgba(6,27,46,0.45);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	overflow: hidden;
	padding: 10px 0;
	margin-top: 0;
}
.evo-cities::before, .evo-cities::after {
	content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.evo-cities::before { left: 0;  background: linear-gradient(90deg, var(--evo-blue-deep), transparent); }
.evo-cities::after  { right: 0; background: linear-gradient(270deg, var(--evo-blue-deep), transparent); }
.evo-cities__track {
	display: flex; width: max-content;
	animation: evo-marquee 38s linear infinite;
}
.evo-cities:hover .evo-cities__track { animation-play-state: paused; }
.evo-cities__list {
	display: flex; align-items: center; gap: 0;
	list-style: none; margin: 0; padding: 0;
}
.evo-cities__list li {
	white-space: nowrap; padding: 0 26px;
	position: relative; list-style: none;
}
.evo-cities__list li a {
	color: rgba(255,255,255,0.72);
	font-size: 0.88rem; font-weight: 600; letter-spacing: 0.3px;
	text-decoration: none; transition: color .2s;
}
.evo-cities__list li a:hover { color: var(--evo-orange); }
.evo-cities__list li::after {
	content: ""; position: absolute; right: -3px; top: 50%; transform: translateY(-50%);
	width: 5px; height: 5px; border-radius: 50%; background: var(--evo-orange);
}
@keyframes evo-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* Cartes confiance : mobile = en flux sous l'image */
.evo-hero__cards {
	position: static;
	display: flex; flex-direction: column; gap: 10px;
	width: 92%; max-width: 560px; margin: 18px auto 0; z-index: 2;
}
.evo-hero-card {
	display: flex; align-items: center; gap: 12px;
	background: rgba(15,42,68,0.40);
	backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
	border: 1px solid rgba(0,212,255,0.14);
	padding: 12px 15px; border-radius: 14px;
	color: var(--evo-white);
	box-shadow: 0 8px 28px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.07);
	transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s;
}
.evo-hero-card:hover {
	transform: translateY(-3px);
	border-color: rgba(0,212,255,0.4);
	background: rgba(15,42,68,0.58);
}
.evo-hero-card__icon {
	flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	transition: transform .3s, box-shadow .3s;
}
.evo-hero-card:hover .evo-hero-card__icon { transform: scale(1.12); }
.evo-hero-card__icon--cyan   { background: rgba(0,212,255,0.18); color: var(--evo-cyan); box-shadow: 0 0 16px rgba(0,212,255,0.25); }
.evo-hero-card__icon--orange { background: rgba(255,122,26,0.2); color: var(--evo-orange); box-shadow: 0 0 16px rgba(255,122,26,0.22); }
.evo-hero-card strong { display: block; font-size: 0.9rem; line-height: 1.2; margin-bottom: 2px; }
.evo-hero-card span   { color: rgba(255,255,255,0.62); font-size: 0.76rem; line-height: 1.3; }

/* ===== TABLETTE : 768px et plus ===== */
@media (min-width: 768px) {
	.evo-hero__title { font-size: clamp(2.4rem, 5vw, 3rem); }
	.evo-hero__lead  { font-size: 1.05rem; }
	.evo-hero__cta { max-width: 480px; }
	.evo-hero__cards { flex-direction: row; max-width: 660px; }
	.evo-hero-card { flex: 1; min-width: 0; }
	.evo-hero-card span { font-size: 0.72rem; }
}

/* ===== DESKTOP : 1025px et plus ===== */
@media (min-width: 1025px) {
	.evo-hero__inner {
		display: grid; grid-template-columns: 1.02fr 1.1fr;
		gap: 48px; align-items: center; text-align: left;
	}
	.evo-hero__content { align-items: flex-start; }
	.evo-hero__badge { margin-bottom: 24px; font-size: 0.82rem; }
	.evo-hero__title { font-size: clamp(2.8rem, 3.6vw, 4rem); line-height: 1.05; margin-bottom: 22px; }
	.evo-hero__lead { font-size: 1.12rem; margin: 0 0 32px; max-width: 540px; }
	.evo-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; max-width: none; width: auto; }
	.evo-hero__cta .evo-btn { width: auto; flex: 0 0 auto; }
	.evo-hero__cta .evo-btn:first-child { grid-column: auto; flex: 0 0 auto; }
	.evo-hero__visual { display: block; }
	.evo-hero__visual-glow {
		inset: -12% -8% -8% -8%; width: auto; height: auto; top: auto; left: auto;
		transform: none;
		background: radial-gradient(ellipse 62% 62% at 55% 45%, rgba(0,212,255,0.26) 0%, rgba(0,212,255,0.09) 45%, transparent 70%);
		filter: blur(26px);
	}
	.evo-hero__img { width: 100%; max-width: 600px; border-radius: 18px; }
	.evo-hero__cards {
		position: absolute; right: -8px; top: 50%;
		transform: translateY(-50%);
		flex-direction: column; width: auto; max-width: none; margin: 0; gap: 12px;
	}
	.evo-hero-card {
		min-width: 210px; max-width: 230px; padding: 12px 16px;
		animation: evo-float 5.5s ease-in-out infinite;
	}
	.evo-hero-card:nth-child(2) { animation-delay: 1.6s; }
	.evo-hero-card:nth-child(3) { animation-delay: 3.2s; }
	.evo-hero-card span { font-size: 0.74rem; }
	.evo-hero-card strong { font-size: 0.88rem; }
}

.evo-trust-bar {
	background: var(--evo-white);
	border-radius: 22px;
	box-shadow: 0 30px 70px rgba(6,27,46,0.20);
	padding: 30px 24px; margin-top: 0;
	position: relative; z-index: 5;
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.evo-trust-bar__item {
	display: flex; align-items: flex-start; gap: 14px;
	font-size: 0.88rem; padding: 4px 24px;
	border-right: 1px solid #EDF1F6;
}
.evo-trust-bar__item:last-child { border-right: 0; }
.evo-trust-bar__item strong { display: block; color: var(--evo-text); font-size: 0.96rem; margin-bottom: 4px; font-weight: 700; }
.evo-trust-bar__item span   { color: var(--evo-text-muted); line-height: 1.4; }
.evo-trust-bar__icon {
	color: var(--evo-blue-deep); flex-shrink: 0;
	width: 46px; height: 46px; border-radius: 12px;
	background: linear-gradient(135deg, rgba(0,212,255,0.10), rgba(11,45,77,0.06));
	display: flex; align-items: center; justify-content: center;
}

.evo-services-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.evo-articles-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.evo-service-card {
	background: var(--evo-white); border-radius: 20px;
	box-shadow: 0 10px 30px rgba(6,27,46,0.07);
	display: flex; flex-direction: column;
	transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
	text-decoration: none; color: var(--evo-text);
	position: relative; overflow: hidden;
	border: 1px solid var(--evo-border-dark);
}
.evo-service-card::before {
	content: ""; position: absolute; top: 0; left: 0; z-index: 3;
	width: 100%; height: 4px;
	background: linear-gradient(90deg, var(--evo-orange), var(--evo-cyan));
	transform: scaleX(0); transform-origin: left;
	transition: transform .4s;
}
.evo-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 54px rgba(6,27,46,0.16), 0 0 0 1px rgba(0,212,255,0.22), 0 14px 44px rgba(0,212,255,0.13);
	color: var(--evo-text);
	border-color: rgba(0,212,255,0.32);
}
.evo-service-card:hover::before { transform: scaleX(1); }

/* Média (image ou illustration) en haut */
.evo-service-card__media {
	position: relative; width: 100%; aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, var(--evo-blue-deep), var(--evo-blue-night));
}
.evo-service-card__photo {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .4s;
	filter: saturate(1.05) brightness(1.02);
}
.evo-service-card:hover .evo-service-card__photo { transform: scale(1.06); filter: saturate(1.1) brightness(1.06); }
.evo-service-card__media::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background:
		linear-gradient(180deg, rgba(6,27,46,0.12) 0%, transparent 38%, rgba(6,27,46,0.42) 100%),
		linear-gradient(135deg, rgba(0,90,150,0.14), transparent 62%);
	transition: opacity .4s; opacity: 1;
}
.evo-service-card:hover .evo-service-card__media::after { opacity: 0.72; }
/* Fallback illustration centrée + glow */
.evo-service-card__illu {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
}
.evo-service-card__illu::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(circle at 50% 45%, rgba(0,212,255,0.22), transparent 60%);
	pointer-events: none;
}
.evo-service-card__illu svg {
	width: 56%; height: 56%; position: relative; z-index: 1;
	transition: transform .5s cubic-bezier(.2,.8,.2,1);
	filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}
.evo-service-card:hover .evo-service-card__illu svg { transform: scale(1.08) translateY(-2px); }
/* Badge catégorie */
.evo-service-card__badge {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	background: rgba(6,27,46,0.6);
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(0,212,255,0.35);
	color: var(--evo-white);
	font-size: 0.72rem; font-weight: 600; letter-spacing: 0.4px;
	padding: 5px 12px; border-radius: 999px;
}
/* Corps */
.evo-service-card__body {
	padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1;
}
.evo-service-card__body h3 { font-size: 1.16rem; margin-bottom: 8px; line-height: 1.3; color: var(--evo-text); }
.evo-service-card__body p  { color: var(--evo-text-muted); font-size: 0.92rem; margin: 0 0 18px; line-height: 1.5; }
.evo-service-card__cta {
	margin-top: auto; align-self: flex-start;
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--evo-blue-deep); font-weight: 700; font-size: 0.92rem;
	transition: gap .25s, color .25s;
}
.evo-service-card__cta svg { transition: transform .25s; }
.evo-service-card:hover .evo-service-card__cta { color: var(--evo-orange); gap: 12px; }
.evo-service-card:hover .evo-service-card__cta svg { transform: translateX(3px); }

/* ============================================================
 * SECTION LOCATIONS COURTE DURÉE / AIRBNB (premium) — .evo-str
 * ============================================================ */
.evo-str { background: var(--evo-gray-light); }
.evo-str__card {
	position: relative;
	background:
		radial-gradient(120% 90% at 78% 8%, rgba(0,212,255,0.10), transparent 55%),
		linear-gradient(135deg, var(--evo-blue-night) 0%, #082238 55%, var(--evo-blue-deep) 100%);
	border-radius: var(--evo-radius-lg);
	border: 1px solid rgba(255,255,255,0.07);
	padding: 52px;
	color: var(--evo-white);
	overflow: hidden;
	box-shadow: 0 40px 90px rgba(6,27,46,0.30);
}
/* halo lumineux animé derrière la carte */
.evo-str__glow {
	position: absolute; z-index: 0; pointer-events: none;
	width: 560px; height: 560px; top: -180px; right: -120px;
	background: radial-gradient(circle, rgba(0,212,255,0.30), transparent 65%);
	filter: blur(20px);
	animation: evo-str-glow 9s ease-in-out infinite;
}
@keyframes evo-str-glow {
	0%, 100% { opacity: .55; transform: scale(1) translateY(0); }
	50%      { opacity: .9;  transform: scale(1.12) translateY(18px); }
}
/* particules lumineuses discrètes */
.evo-str__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.evo-str__particles i {
	position: absolute; width: 6px; height: 6px; border-radius: 50%;
	background: var(--evo-cyan); opacity: .35;
	box-shadow: 0 0 10px rgba(0,212,255,0.8);
	animation: evo-str-particle 7s ease-in-out infinite;
}
.evo-str__particles i:nth-child(1) { left: 12%; top: 22%; animation-delay: 0s;   }
.evo-str__particles i:nth-child(2) { left: 30%; top: 70%; animation-delay: 1.4s; width: 4px; height: 4px; }
.evo-str__particles i:nth-child(3) { left: 54%; top: 16%; animation-delay: .7s;  width: 5px; height: 5px; }
.evo-str__particles i:nth-child(4) { left: 72%; top: 60%; animation-delay: 2.1s; }
.evo-str__particles i:nth-child(5) { left: 88%; top: 34%; animation-delay: 1s;   width: 4px; height: 4px; }
.evo-str__particles i:nth-child(6) { left: 44%; top: 88%; animation-delay: 2.6s; width: 5px; height: 5px; }
@keyframes evo-str-particle {
	0%, 100% { transform: translateY(0); opacity: .2; }
	50%      { transform: translateY(-18px); opacity: .55; }
}

.evo-str__top {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 0.95fr 1.15fr; gap: 48px; align-items: stretch;
}

/* Image */
.evo-str__media { position: relative; }
.evo-str__media-glow {
	position: absolute; z-index: 0; pointer-events: none;
	inset: -10% -8%;
	background: radial-gradient(58% 58% at 50% 45%, rgba(0,212,255,0.30), transparent 70%);
	filter: blur(30px); opacity: .65;
	animation: evo-str-mediaglow 8s ease-in-out infinite;
}
@keyframes evo-str-mediaglow {
	0%, 100% { opacity: .5;  transform: scale(1); }
	50%      { opacity: .85; transform: scale(1.06); }
}
.evo-str__media-frame {
	position: relative; z-index: 1; height: 100%; min-height: 360px;
	border-radius: var(--evo-radius); overflow: hidden;
	border: 1px solid rgba(255,255,255,0.12);
	background: linear-gradient(160deg, #0c2b47, #061b2e);
	box-shadow: 0 26px 60px rgba(0,0,0,0.40), var(--evo-shadow-glow);
}
.evo-str__media-frame > img,
.evo-str__media-frame > svg {
	position: absolute; inset: 0;
	display: block; width: 100%; height: 100%;
	object-fit: cover;
}
.evo-float { animation: evo-str-float 6s ease-in-out infinite; }
@keyframes evo-str-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-9px); }
}
.evo-str__badge {
	position: absolute; top: 18px; left: 18px;
	display: inline-flex; flex-direction: column; align-items: flex-start;
	gap: 2px; padding: 14px 18px;
	background: rgba(6,27,46,0.55); backdrop-filter: blur(10px);
	border: 1px solid rgba(0,212,255,0.35);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.evo-str__badge svg { color: var(--evo-cyan); margin-bottom: 2px; }
.evo-str__badge-val { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--evo-white); }
.evo-str__badge-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.72); }

/* Contenu */
.evo-str__content { position: relative; z-index: 1; display: flex; flex-direction: column; }
.evo-str__eyebrow {
	display: inline-flex; align-self: flex-start; align-items: center;
	padding: 7px 16px; border-radius: 999px;
	font-size: 0.74rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
	color: var(--evo-cyan);
	background: rgba(0,212,255,0.10);
	border: 1px solid rgba(0,212,255,0.30);
	margin-bottom: 18px;
}
.evo-str__title { color: var(--evo-white); font-size: clamp(1.7rem, 2.6vw, 2.5rem); line-height: 1.12; margin: 0 0 14px; }
.evo-str__title em { color: var(--evo-orange); font-style: normal; }
.evo-str__intro { color: rgba(255,255,255,0.78); font-size: 1.02rem; line-height: 1.6; margin: 0 0 26px; max-width: 640px; }

.evo-str__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: auto; }
.evo-str__service {
	position: relative; padding: 22px 20px 24px;
	border-radius: var(--evo-radius);
	background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.08);
	overflow: hidden;
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.evo-str__service::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(80% 70% at 50% 0%, rgba(0,212,255,0.14), transparent 60%);
	opacity: 0; transition: opacity .3s ease;
}
.evo-str__service:hover {
	transform: translateY(-6px);
	border-color: rgba(0,212,255,0.35);
	background: linear-gradient(160deg, rgba(0,212,255,0.08), rgba(255,255,255,0.02));
	box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 24px rgba(0,212,255,0.18);
}
.evo-str__service:hover::before { opacity: 1; }
.evo-str__service-ic {
	display: inline-flex; align-items: center; justify-content: center;
	width: 50px; height: 50px; margin-bottom: 14px;
	border-radius: 14px; color: var(--evo-cyan);
	background: rgba(0,212,255,0.10); border: 1px solid rgba(0,212,255,0.22);
	position: relative; z-index: 1;
	transition: transform .35s ease, box-shadow .35s ease;
}
.evo-str__service-ic svg { width: 26px; height: 26px; }
.evo-str__service:hover .evo-str__service-ic { transform: translateY(-2px) scale(1.06); animation: evo-str-icpulse 1.6s ease-out infinite; }
@keyframes evo-str-icpulse {
	0%   { box-shadow: 0 0 0 0 rgba(0,212,255,0.45); }
	70%  { box-shadow: 0 0 0 12px rgba(0,212,255,0); }
	100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
}
.evo-str__service-title { display: block; position: relative; z-index: 1; font-size: 1rem; color: var(--evo-white); margin-bottom: 6px; }
.evo-str__service-text { display: block; position: relative; z-index: 1; font-size: 0.86rem; line-height: 1.5; color: rgba(255,255,255,0.66); }
.evo-str__service-bar { display: block; height: 3px; width: 34px; border-radius: 3px; margin-top: 14px; background: linear-gradient(90deg, var(--evo-cyan), transparent); transition: width .3s ease; position: relative; z-index: 1; }
.evo-str__service:hover .evo-str__service-bar { width: 60px; }
/* Entrée échelonnée des cartes (opacity uniquement → pas de conflit avec le hover) */
.evo-str__card.is-visible .evo-str__service { animation: evo-str-fadein .55s ease both; animation-delay: var(--evo-d, 0ms); }
@keyframes evo-str-fadein { from { opacity: 0; } to { opacity: 1; } }

/* Bas : stats + engagements */
.evo-str__bottom {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px;
	margin-top: 34px; padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.evo-str__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: stretch; }
.evo-str__stat {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column; gap: 9px;
	padding: 18px 16px 16px;
	border-radius: 16px;
	background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
	border: 1px solid rgba(255,255,255,0.08);
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.evo-str__stat::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(70% 60% at 50% 0%, rgba(0,212,255,0.13), transparent 65%);
	opacity: 0; transition: opacity .3s ease;
}
.evo-str__stat:hover {
	transform: translateY(-5px);
	border-color: rgba(0,212,255,0.32);
	background: linear-gradient(160deg, rgba(0,212,255,0.07), rgba(255,255,255,0.015));
	box-shadow: 0 16px 36px rgba(0,0,0,0.32), 0 0 22px rgba(0,212,255,0.16);
}
.evo-str__stat:hover::before { opacity: 1; }
.evo-str__stat-ic {
	position: relative; z-index: 1;
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 12px;
	color: var(--evo-orange);
	background: rgba(255,122,26,0.12);
	border: 1px solid rgba(255,122,26,0.22);
	transition: transform .35s ease, box-shadow .35s ease;
}
.evo-str__stat-ic svg { width: 22px; height: 22px; }
.evo-str__stat:hover .evo-str__stat-ic { transform: translateY(-2px) scale(1.08); box-shadow: 0 6px 16px rgba(255,122,26,0.3); }
.evo-str__stat-val {
	position: relative; z-index: 1; margin-top: 2px;
	font-size: 1.5rem; font-weight: 800; line-height: 1.04;
	letter-spacing: -0.5px; color: var(--evo-white);
}
.evo-str__stat-lbl {
	position: relative; z-index: 1;
	font-size: 0.7rem; font-weight: 600; letter-spacing: .7px; text-transform: uppercase;
	color: rgba(255,255,255,0.52);
}
/* Valeur longue (ex. localité) : plus compacte, pas de césure cassée */
.evo-str__stat--wide .evo-str__stat-val {
	font-size: 1.02rem; line-height: 1.22; letter-spacing: 0;
	word-break: keep-all; hyphens: none;
}

.evo-str__commit {
	padding: 20px 22px; border-radius: var(--evo-radius);
	background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.evo-str__commit-title { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--evo-cyan); margin-bottom: 14px; text-align: center; }
.evo-str__commit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.evo-str__commit-item {
	display: flex; align-items: center; gap: 9px;
	font-size: 0.82rem; color: rgba(255,255,255,0.85);
	padding: 9px 11px; border-radius: 12px;
	background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
	transition: background .25s ease, border-color .25s ease;
}
.evo-str__commit-item:hover { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.25); }
.evo-str__commit-ic { display: inline-flex; color: var(--evo-cyan); flex-shrink: 0; }
.evo-str__commit-ic svg { width: 18px; height: 18px; }

/* Actions */
.evo-str__actions {
	position: relative; z-index: 1;
	display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
	margin-top: 32px;
}
.evo-str__cta { font-size: 1rem; padding: 16px 28px; }
.evo-btn--whatsapp.evo-str__cta { box-shadow: 0 10px 28px rgba(37,211,102,0.32); }
.evo-btn--whatsapp.evo-str__cta:hover { box-shadow: 0 14px 34px rgba(37,211,102,0.5); }
.evo-str__trust {
	display: flex; align-items: center; gap: 10px;
	margin: 0; flex: 1 1 240px; min-width: 220px;
	font-size: 0.86rem; line-height: 1.45; color: rgba(255,255,255,0.7);
}
.evo-str__trust svg { color: var(--evo-cyan); flex-shrink: 0; }
.evo-str__seo-link { position: relative; z-index: 1; margin: 20px 0 0; }
.evo-str__seo-link a {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 0.88rem; font-weight: 600; color: var(--evo-cyan);
	transition: gap .25s ease, color .25s ease;
}
.evo-str__seo-link a:hover { gap: 12px; color: var(--evo-white); }

/* Responsive (desktop-first) */
@media (max-width: 1024px) {
	.evo-str__card { padding: 40px; }
	.evo-str__top { grid-template-columns: 1fr; gap: 36px; }
	.evo-str__media-frame img, .evo-str__media-frame svg { min-height: 300px; }
	.evo-str__bottom { grid-template-columns: 1fr; gap: 24px; }
	.evo-str__stats { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
@media (max-width: 768px) {
	.evo-str__card { padding: 26px; border-radius: var(--evo-radius); }
	.evo-str__cards { grid-template-columns: 1fr; }
	.evo-str__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.evo-str__commit-list { grid-template-columns: 1fr; }
	.evo-str__actions { flex-direction: column; align-items: stretch; }
	.evo-str__cta { width: 100%; justify-content: center; }
	.evo-str__trust { justify-content: center; text-align: center; }
	.evo-str__badge-val { font-size: 1.3rem; }
	.evo-float { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
	.evo-str__glow, .evo-str__particles i, .evo-float, .evo-str__media-glow { animation: none; }
	.evo-str__card.is-visible .evo-str__service { animation: none; }
	.evo-str__service:hover .evo-str__service-ic { animation: none; }
}

/* ============================================================
 * Comparatif avant / après — .evo-ba (code court [evo_before_after])
 * ============================================================ */
.evo-ba { margin: 0; }
.evo-ba__stage {
	position: relative; width: 100%; aspect-ratio: 16 / 10;
	border-radius: var(--evo-radius); overflow: hidden;
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: var(--evo-shadow-card); user-select: none;
}
.evo-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.evo-ba__before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; will-change: width; }
.evo-ba__before-wrap .evo-ba__img--before { width: 100vw; max-width: none; }
.evo-ba__tag {
	position: absolute; bottom: 14px; z-index: 3;
	padding: 5px 12px; border-radius: 999px; font-size: 0.72rem; font-weight: 700;
	letter-spacing: .5px; text-transform: uppercase; color: var(--evo-white);
	background: rgba(6,27,46,0.7); backdrop-filter: blur(6px);
}
.evo-ba__tag--before { left: 14px; }
.evo-ba__tag--after  { right: 14px; background: rgba(255,122,26,0.85); }
.evo-ba__handle {
	position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
	width: 2px; margin-left: -1px; background: var(--evo-cyan);
	box-shadow: 0 0 14px rgba(0,212,255,0.7); pointer-events: none;
}
.evo-ba__handle::after {
	content: ""; position: absolute; top: 50%; left: 50%;
	width: 38px; height: 38px; transform: translate(-50%,-50%);
	border-radius: 50%; background: var(--evo-cyan);
	box-shadow: 0 0 0 4px rgba(0,212,255,0.25), 0 6px 16px rgba(0,0,0,0.3);
}
.evo-ba__range {
	position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
	margin: 0; opacity: 0; cursor: ew-resize;
}
.evo-ba__caption {
	margin-top: 14px; font-size: 0.92rem; color: var(--evo-text-muted);
	display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: baseline;
}
.evo-ba__caption strong { color: var(--evo-text); }
.evo-on-dark .evo-ba__caption strong { color: var(--evo-white); }
.evo-ba__city {
	font-size: 0.74rem; font-weight: 700; color: var(--evo-cyan);
	text-transform: uppercase; letter-spacing: .5px;
}
.evo-ba__desc { flex: 1 1 100%; }

.evo-steps {
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
	position: relative;
}
.evo-steps::before {
	content: ""; position: absolute; top: 22px; left: 10%; right: 10%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--evo-blue-deep) 20%, var(--evo-blue-deep) 80%, transparent);
	z-index: 0;
}
.evo-step { text-align: center; position: relative; z-index: 1; }
.evo-step__num {
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--evo-blue-night); color: var(--evo-white);
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 1.1rem;
	margin: 0 auto 22px; position: relative;
	box-shadow: 0 8px 18px rgba(11,45,77,0.25);
}
.evo-step__num::before {
	content: ""; position: absolute; inset: -4px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--evo-orange), var(--evo-cyan));
	z-index: -1; opacity: 0; transition: opacity .3s;
}
.evo-step:hover .evo-step__num::before { opacity: 1; }
.evo-step__icon { color: var(--evo-orange); margin-bottom: 14px; display: flex; justify-content: center; }
.evo-step strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.evo-step span   { color: var(--evo-text-muted); font-size: 0.88rem; }

/* ============================================================
 * SECTION AVIS « Ils nous font confiance » (premium) — .evo-testi
 * ============================================================ */
.evo-testi-section { background: var(--evo-gray-light); }
.evo-testi {
	position: relative; overflow: hidden;
	border-radius: var(--evo-radius-lg);
	padding: 56px 52px;
	color: var(--evo-white);
	background:
		radial-gradient(120% 80% at 50% -10%, rgba(0,212,255,0.10), transparent 55%),
		linear-gradient(135deg, var(--evo-blue-night) 0%, #082238 60%, var(--evo-blue-deep) 100%);
	border: 1px solid rgba(0,212,255,0.18);
	box-shadow: 0 40px 90px rgba(6,27,46,0.30), inset 0 0 0 1px rgba(255,255,255,0.02);
}
.evo-testi__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.evo-testi__particles i {
	position: absolute; width: 5px; height: 5px; border-radius: 50%;
	background: var(--evo-cyan); opacity: .3; box-shadow: 0 0 10px rgba(0,212,255,0.8);
	animation: evo-str-particle 7s ease-in-out infinite;
}
.evo-testi__particles i:nth-child(1){left:8%;top:18%;animation-delay:0s;}
.evo-testi__particles i:nth-child(2){left:24%;top:62%;animation-delay:1.3s;width:4px;height:4px;}
.evo-testi__particles i:nth-child(3){left:40%;top:12%;animation-delay:.6s;}
.evo-testi__particles i:nth-child(4){left:58%;top:70%;animation-delay:2s;width:4px;height:4px;}
.evo-testi__particles i:nth-child(5){left:74%;top:22%;animation-delay:1s;}
.evo-testi__particles i:nth-child(6){left:88%;top:54%;animation-delay:2.5s;width:4px;height:4px;}
.evo-testi__particles i:nth-child(7){left:50%;top:88%;animation-delay:1.8s;}

.evo-testi__head { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto 40px; }
.evo-testi__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 18px; margin-bottom: 18px;
	border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
	color: var(--evo-cyan); background: rgba(0,212,255,0.10); border: 1px solid rgba(0,212,255,0.30);
}
.evo-testi__title { color: var(--evo-white); font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.1; margin: 0 0 14px; }
.evo-testi__title em { color: var(--evo-orange); font-style: normal; }
.evo-testi__intro { color: rgba(255,255,255,0.74); font-size: 1.05rem; line-height: 1.6; margin: 0; }

.evo-testi__grid {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: repeat(3, 1fr) 0.92fr; gap: 20px; align-items: stretch;
}

/* Carte avis */
.evo-testi__card {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column;
	padding: 26px 24px;
	border-radius: var(--evo-radius);
	background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.09);
	backdrop-filter: blur(6px);
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
	animation: evo-str-fadein .6s ease both; animation-delay: var(--evo-d, 0ms);
}
.evo-testi__card::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(80% 60% at 50% 0%, rgba(0,212,255,0.12), transparent 60%);
	opacity: 0; transition: opacity .3s ease;
}
.evo-testi__card:hover {
	transform: translateY(-6px);
	border-color: rgba(0,212,255,0.34);
	background: linear-gradient(160deg, rgba(0,212,255,0.08), rgba(255,255,255,0.02));
	box-shadow: 0 20px 44px rgba(0,0,0,0.36), 0 0 26px rgba(0,212,255,0.16);
}
.evo-testi__card:hover::before { opacity: 1; }
.evo-testi__quote {
	position: relative; z-index: 1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3rem; line-height: .6; color: var(--evo-cyan); opacity: .9;
	margin-bottom: 6px; height: 26px;
}
.evo-testi__stars { position: relative; z-index: 1; display: inline-flex; gap: 3px; margin-bottom: 14px; }
.evo-testi__stars span { display: inline-flex; color: rgba(255,255,255,0.18); }
.evo-testi__stars span.is-on { color: #FFB400; }
.evo-testi__stars svg, .evo-testi__gstars svg { width: 16px; height: 16px; }
.evo-testi__text { position: relative; z-index: 1; font-size: 0.96rem; line-height: 1.55; color: rgba(255,255,255,0.92); margin: 0 0 22px; flex: 1; }
.evo-testi__author { position: relative; z-index: 1; display: flex; align-items: center; gap: 13px; }
.evo-testi__avatar {
	width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; overflow: hidden;
	display: inline-flex; align-items: center; justify-content: center;
	border: 2px solid rgba(0,212,255,0.4); box-shadow: 0 0 14px rgba(0,212,255,0.3);
	background: linear-gradient(135deg, var(--evo-orange), #FFB07A);
}
.evo-testi__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.evo-testi__avatar-i { color: #fff; font-weight: 700; font-size: 1.05rem; }
.evo-testi__who strong { display: block; font-size: 0.98rem; color: var(--evo-white); }
.evo-testi__role { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 1px; }

/* Carte Google mise en avant */
.evo-testi__google {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
	padding: 28px 22px;
	border-radius: var(--evo-radius);
	background: radial-gradient(90% 70% at 50% 20%, rgba(0,212,255,0.12), rgba(255,255,255,0.02));
	border: 1.5px solid rgba(0,212,255,0.45);
	box-shadow: 0 0 0 1px rgba(0,212,255,0.12), 0 18px 50px rgba(0,0,0,0.35), var(--evo-shadow-glow);
}
.evo-testi__g { margin-bottom: 8px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }
.evo-testi__score { font-size: 3.4rem; font-weight: 800; line-height: 1; color: var(--evo-white); letter-spacing: -1px; }
.evo-testi__gstars { display: inline-flex; gap: 3px; color: #FFB400; margin: 10px 0 6px; }
.evo-testi__gstars span { display: inline-flex; }
.evo-testi__glabel { font-size: 1rem; font-weight: 700; color: var(--evo-white); }
.evo-testi__gcount { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.evo-testi__verified {
	display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
	padding: 8px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
	color: #34d27b; background: rgba(52,210,123,0.10); border: 1px solid rgba(52,210,123,0.32);
}
.evo-testi__verified svg { width: 16px; height: 16px; }
.evo-testi__gbtn {
	display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
	font-size: 0.85rem; font-weight: 600; color: var(--evo-cyan);
	transition: gap .25s ease, color .25s ease;
}
.evo-testi__gbtn:hover { gap: 12px; color: var(--evo-white); }

/* Statistiques bas de section */
.evo-testi__stats {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 16px; margin-top: 40px; padding-top: 34px;
	border-top: 1px solid rgba(255,255,255,0.10);
}
.evo-testi__stat { display: flex; align-items: center; justify-content: center; gap: 14px; position: relative; }
.evo-testi__stat + .evo-testi__stat::before {
	content: ""; position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
	width: 1px; height: 42px; background: rgba(255,255,255,0.12);
}
.evo-testi__stat-ic {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
	color: var(--evo-orange); border: 1px solid rgba(255,122,26,0.35);
	background: rgba(255,122,26,0.08);
	transition: transform .35s ease, box-shadow .35s ease;
}
.evo-testi__stat-ic svg { width: 24px; height: 24px; }
.evo-testi__stat:hover .evo-testi__stat-ic { transform: scale(1.08); box-shadow: 0 0 16px rgba(255,122,26,0.3); }
.evo-testi__stat-txt { display: flex; flex-direction: column; line-height: 1.1; }
.evo-testi__stat-val { font-size: 1.5rem; font-weight: 800; color: var(--evo-white); letter-spacing: -.5px; }
.evo-testi__stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

@media (prefers-reduced-motion: reduce) {
	.evo-testi__particles i, .evo-testi__card { animation: none; }
}

/* ============================================================
 * ZONES D'INTERVENTION — réseau premium .evo-znet
 * ============================================================ */
.evo-znet {
	position: relative; overflow: hidden;
	border-radius: var(--evo-radius-lg);
	padding: 52px;
	color: var(--evo-white);
	display: grid; grid-template-columns: 0.95fr 1.25fr; gap: 40px; align-items: center;
	background:
		radial-gradient(120% 90% at 80% 20%, rgba(0,212,255,0.10), transparent 55%),
		linear-gradient(135deg, var(--evo-blue-night) 0%, #082238 60%, var(--evo-blue-deep) 100%);
	border: 1px solid rgba(0,212,255,0.16);
	box-shadow: 0 40px 90px rgba(6,27,46,0.30);
}
.evo-znet__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.evo-znet__particles i {
	position: absolute; width: 5px; height: 5px; border-radius: 50%;
	background: var(--evo-cyan); opacity: .3; box-shadow: 0 0 10px rgba(0,212,255,0.8);
	animation: evo-str-particle 7s ease-in-out infinite;
}
.evo-znet__particles i:nth-child(1){left:10%;top:20%;animation-delay:0s;}
.evo-znet__particles i:nth-child(2){left:30%;top:75%;animation-delay:1.4s;width:4px;height:4px;}
.evo-znet__particles i:nth-child(3){left:64%;top:14%;animation-delay:.7s;}
.evo-znet__particles i:nth-child(4){left:84%;top:60%;animation-delay:2s;width:4px;height:4px;}
.evo-znet__particles i:nth-child(5){left:50%;top:90%;animation-delay:2.6s;}

.evo-znet__intro { position: relative; z-index: 2; }
.evo-znet__title { color: var(--evo-white); font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1.12; margin: 0 0 14px; }
.evo-znet__title em { color: var(--evo-orange); font-style: normal; }
.evo-znet__lead { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.6; margin: 0 0 24px; }

/* Carte réseau */
.evo-znet__map { position: relative; z-index: 1; width: 100%; aspect-ratio: 1 / 0.82; min-height: 360px; }
.evo-znet__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.evo-znet__line {
	stroke: rgba(0,212,255,0.22); stroke-width: 1;
	stroke-dasharray: 3 6; stroke-linecap: round;
	animation: evo-znet-flow 2.6s linear infinite;
	transition: stroke .3s ease, stroke-width .3s ease, opacity .3s ease;
}
@keyframes evo-znet-flow { to { stroke-dashoffset: -18; } }
.evo-znet__line.is-active { stroke: var(--evo-cyan); stroke-width: 1.6; animation-duration: 1s; filter: drop-shadow(0 0 3px rgba(0,212,255,0.7)); }
.evo-znet__map.is-pulsing .evo-znet__line { stroke: rgba(0,212,255,0.4); }

/* Hub central */
.evo-znet__hub {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
	z-index: 3; width: 26px; height: 26px; display: block;
}
.evo-znet__hub-core {
	position: absolute; inset: 0; border-radius: 50%;
	background: radial-gradient(circle, #FFB07A, var(--evo-orange) 60%);
	box-shadow: 0 0 0 4px rgba(255,122,26,0.25), 0 0 22px rgba(255,122,26,0.7);
	z-index: 2;
}
.evo-znet__hub-ring {
	position: absolute; left: 50%; top: 50%; width: 26px; height: 26px;
	transform: translate(-50%,-50%); border-radius: 50%;
	border: 2px solid rgba(255,122,26,0.5);
	animation: evo-znet-pulse 2.6s ease-out infinite;
}
.evo-znet__hub-ring--2 { animation-delay: 1.3s; }
@keyframes evo-znet-pulse {
	0%   { width: 26px; height: 26px; opacity: .8; }
	100% { width: 90px; height: 90px; opacity: 0; }
}
.evo-znet__hub-label {
	position: absolute; left: 50%; top: calc(100% + 8px); transform: translateX(-50%);
	white-space: nowrap; font-size: 0.82rem; font-weight: 800; color: var(--evo-orange);
	text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.evo-znet__map.is-pulsing .evo-znet__hub-core { box-shadow: 0 0 0 6px rgba(255,122,26,0.3), 0 0 34px rgba(255,122,26,0.9); }

/* Capsules villes (glassmorphism, compactes) */
.evo-znet__city {
	position: absolute; transform: translate(-50%,-50%); z-index: 4;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; white-space: nowrap;
	font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
	background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.10); border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.25);
	text-decoration: none; cursor: pointer;
	transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease;
	animation: evo-znet-float 5s ease-in-out infinite; animation-delay: var(--evo-d, 0ms);
}
.evo-znet__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--evo-cyan); box-shadow: 0 0 7px rgba(0,212,255,0.8); flex-shrink: 0; transition: transform .28s ease; }
@keyframes evo-znet-float { 0%,100% { margin-top: 0; } 50% { margin-top: -5px; } }
.evo-znet__city:hover, .evo-znet__city.is-active {
	transform: translate(-50%,-50%) scale(1.06); z-index: 6;
	background: rgba(0,212,255,0.13); border-color: rgba(0,212,255,0.5);
	color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,0.32), 0 0 18px rgba(0,212,255,0.3);
}
.evo-znet__city:hover .evo-znet__dot { transform: scale(1.4); }
/* Infobulle premium au survol */
.evo-znet__tip {
	position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translateX(-50%) translateY(4px);
	white-space: normal; width: max-content; max-width: 220px; text-align: center;
	padding: 9px 13px; border-radius: 12px; font-size: 0.74rem; font-weight: 500; line-height: 1.35;
	color: #eaf6fb; background: rgba(8,34,56,0.96); border: 1px solid rgba(0,212,255,0.35);
	box-shadow: 0 12px 30px rgba(0,0,0,0.4); backdrop-filter: blur(8px);
	opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 7;
}
.evo-znet__tip::after {
	content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
	border: 6px solid transparent; border-top-color: rgba(8,34,56,0.96);
}
.evo-znet__city:hover .evo-znet__tip, .evo-znet__city:focus .evo-znet__tip {
	opacity: 1; transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.evo-znet__particles i, .evo-znet__line, .evo-znet__hub-ring, .evo-znet__city { animation: none; }
}

/* ============================================================
 * BANDE CTA PREMIUM (site-wide) — .evo-ctaband
 * ============================================================ */
.evo-ctaband { padding: 0 0 0; margin-top: 10px; }
.evo-ctaband__inner {
	position: relative; overflow: hidden;
	display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center;
	padding: 30px 40px; border-radius: var(--evo-radius-lg);
	background: linear-gradient(120deg, var(--evo-orange) 0%, #FF9540 55%, var(--evo-orange-hover) 100%);
	box-shadow: 0 24px 60px rgba(255,122,26,0.4);
	color: var(--evo-white);
}
.evo-ctaband__glow {
	position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(60% 120% at 88% 50%, rgba(255,255,255,0.22), transparent 60%);
}
.evo-ctaband__icon {
	position: relative; z-index: 1; flex-shrink: 0;
	width: 66px; height: 66px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	color: #fff; background: rgba(255,255,255,0.16);
	border: 1.5px solid rgba(255,255,255,0.7);
	box-shadow: 0 0 26px rgba(255,255,255,0.35);
}
.evo-ctaband__txt { position: relative; z-index: 1; }
.evo-ctaband__title { color: var(--evo-white); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.15; margin: 0 0 4px; }
.evo-ctaband__sub { color: rgba(255,255,255,0.92); margin: 0; font-size: 1rem; }
.evo-ctaband__btn {
	position: relative; z-index: 1; flex-shrink: 0;
	background: var(--evo-white); color: var(--evo-blue-night); font-weight: 700;
	padding: 16px 30px; border-radius: 999px;
	box-shadow: 0 10px 26px rgba(0,0,0,0.18); transition: transform .25s ease, box-shadow .25s ease;
}
.evo-ctaband__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.28); color: var(--evo-blue-night); }

/* ============================================================
 * FOOTER PREMIUM — .evo-footer
 * ============================================================ */
.evo-logo__img { height: var(--evo-logo-h, 46px); width: auto; display: block; }
.evo-logo__img--footer { height: calc(var(--evo-logo-h, 46px) + 6px); }
@media (max-width: 768px) { .evo-logo__img { height: var(--evo-logo-h-m, 38px); } }
.evo-footer {
	background:
		radial-gradient(80% 120% at 50% -10%, rgba(0,212,255,0.06), transparent 55%),
		linear-gradient(180deg, var(--evo-blue-deep), var(--evo-blue-night));
	color: rgba(255,255,255,0.7);
	padding: 70px 0 0; position: relative; margin-top: 60px;
}
.evo-footer__line {
	position: absolute; top: 0; left: 0; right: 0; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,212,255,0.6), transparent);
}
.evo-footer__grid {
	display: grid; grid-template-columns: 1.5fr 1.1fr 1fr 1.15fr 1fr;
	gap: 36px; padding-bottom: 44px;
}
.evo-footer__logo { margin-bottom: 18px; }
.evo-footer__desc { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.62); margin: 0 0 18px; max-width: 320px; }
.evo-footer__badges { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.evo-footer__badges span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; color: rgba(255,255,255,0.72); }
.evo-footer__badges svg { color: var(--evo-cyan); flex-shrink: 0; }
.evo-footer__title {
	color: var(--evo-white); font-size: 0.78rem; font-weight: 700;
	letter-spacing: 1.4px; text-transform: uppercase; margin: 0 0 18px;
	position: relative; padding-bottom: 10px;
}
.evo-footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--evo-orange); border-radius: 2px; }
.evo-footer ul { list-style: none; padding: 0; margin: 0; }
.evo-footer__contact li { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.evo-footer__ci {
	width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--evo-cyan); background: rgba(0,212,255,0.10); border: 1px solid rgba(0,212,255,0.2);
}
.evo-footer__contact a { color: rgba(255,255,255,0.85); transition: color .2s; }
.evo-footer__contact a:hover { color: var(--evo-cyan); }
.evo-footer__qbox {
	margin-top: 20px; padding: 16px 18px; border-radius: var(--evo-radius);
	background: rgba(255,255,255,0.04); border: 1px solid rgba(0,212,255,0.18);
}
.evo-footer__qbox strong { display: block; color: var(--evo-white); font-size: 0.95rem; }
.evo-footer__qbox span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.evo-footer__wa {
	display: inline-flex; align-items: center; gap: 8px; width: 100%; justify-content: center;
	padding: 11px 14px; border-radius: 10px; font-size: 0.85rem; font-weight: 600;
	color: var(--evo-cyan); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.3);
	transition: background .25s, color .25s, transform .25s;
}
.evo-footer__wa:hover { background: var(--evo-cyan); color: var(--evo-blue-night); transform: translateY(-2px); }
.evo-footer__links li { margin-bottom: 12px; }
.evo-footer__links a {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 0.88rem; color: rgba(255,255,255,0.68); transition: color .2s, gap .2s;
}
.evo-footer__links a svg { color: var(--evo-cyan); opacity: .7; transition: transform .2s; }
.evo-footer__links a:hover { color: var(--evo-white); gap: 11px; }
.evo-footer__links a:hover svg { transform: translateX(2px); }
.evo-footer__links--svc a svg { color: var(--evo-orange); }
.evo-footer__social { display: flex; gap: 12px; }
.evo-footer__social a {
	width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255,255,255,0.05); border: 1px solid rgba(0,212,255,0.18);
	display: flex; align-items: center; justify-content: center;
	color: var(--evo-cyan); transition: background .25s, transform .25s, color .25s;
}
.evo-footer__social a:hover { background: var(--evo-cyan); color: var(--evo-blue-night); transform: translateY(-3px); }
.evo-footer__trust {
	display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
	padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.evo-footer__trust span { display: inline-flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.evo-footer__trust svg {
	color: var(--evo-cyan); padding: 8px; width: 36px; height: 36px; box-sizing: content-box;
	border-radius: 50%; background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
}
.evo-footer__bottom {
	display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
	padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.evo-footer__copy { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.evo-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.evo-footer__legal a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color .2s; }
.evo-footer__legal a:hover { color: var(--evo-cyan); }
.evo-footer__top {
	width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--evo-cyan); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.3);
	transform: rotate(-90deg); transition: background .25s, transform .25s, color .25s;
}
.evo-footer__top:hover { background: var(--evo-cyan); color: var(--evo-blue-night); transform: rotate(-90deg) translateX(3px); box-shadow: 0 0 22px rgba(0,212,255,0.6); }

/* Fond premium : dégradé animé + particules + séparation lumineuse */
.evo-footer {
	background:
		radial-gradient(70% 100% at 50% -10%, rgba(0,212,255,0.07), transparent 55%),
		linear-gradient(180deg, var(--evo-blue-deep), var(--evo-blue-night));
	background-size: 100% 100%, 100% 200%;
	animation: evo-foot-grad 16s ease-in-out infinite alternate;
}
@keyframes evo-foot-grad { from { background-position: 50% 0%, 0% 0%; } to { background-position: 50% 0%, 0% 60%; } }
.evo-footer__line {
	height: 1px; background: linear-gradient(90deg, transparent, rgba(0,212,255,0.7), transparent);
	box-shadow: 0 0 14px rgba(0,212,255,0.4); animation: evo-foot-line 5s ease-in-out infinite;
}
@keyframes evo-foot-line { 0%,100% { opacity: .6; } 50% { opacity: 1; } }
.evo-footer__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.evo-footer__particles i {
	position: absolute; width: 4px; height: 4px; border-radius: 50%;
	background: var(--evo-cyan); opacity: .25; box-shadow: 0 0 8px rgba(0,212,255,0.8);
	animation: evo-str-particle 8s ease-in-out infinite;
}
.evo-footer__particles i:nth-child(1){left:12%;top:24%;animation-delay:0s;}
.evo-footer__particles i:nth-child(2){left:34%;top:68%;animation-delay:1.5s;}
.evo-footer__particles i:nth-child(3){left:56%;top:18%;animation-delay:.8s;}
.evo-footer__particles i:nth-child(4){left:72%;top:74%;animation-delay:2.2s;}
.evo-footer__particles i:nth-child(5){left:86%;top:38%;animation-delay:1.1s;}
.evo-footer__particles i:nth-child(6){left:46%;top:90%;animation-delay:2.8s;}
.evo-footer .evo-container { position: relative; z-index: 1; }

/* Hover premium des liens : translation + soulignement animé + glow */
.evo-footer__links a { position: relative; }
.evo-footer__links a::after {
	content: ""; position: absolute; left: 20px; right: 100%; bottom: -2px; height: 1px;
	background: var(--evo-cyan); box-shadow: 0 0 6px rgba(0,212,255,0.8); transition: right .3s ease;
}
.evo-footer__links a:hover { text-shadow: 0 0 12px rgba(0,212,255,0.4); }
.evo-footer__links a:hover::after { right: 0; }
.evo-footer__legal a { position: relative; }
.evo-footer__legal a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1px;
	background: var(--evo-cyan); transition: right .3s ease;
}
.evo-footer__legal a:hover::after { right: 0; }

/* Pulse doux des icônes de contact */
.evo-footer__ci { animation: evo-foot-pulse 4s ease-in-out infinite; }
.evo-footer__contact li:nth-child(2) .evo-footer__ci { animation-delay: 1.3s; }
.evo-footer__contact li:nth-child(3) .evo-footer__ci { animation-delay: 2.6s; }
@keyframes evo-foot-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); } 50% { box-shadow: 0 0 0 4px rgba(0,212,255,0.10); } }

/* Note Google compacte */
.evo-footer__google {
	display: inline-flex; align-items: center; gap: 11px; margin-top: 18px;
	padding: 10px 16px; border-radius: 14px;
	background: rgba(255,255,255,0.04); border: 1px solid rgba(0,212,255,0.2);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.evo-footer__google:hover { transform: translateY(-2px); border-color: rgba(0,212,255,0.5); box-shadow: 0 10px 26px rgba(0,0,0,0.3), 0 0 18px rgba(0,212,255,0.2); }
.evo-footer__google-g { display: inline-flex; }
.evo-footer__google-txt { display: flex; flex-direction: column; line-height: 1.2; }
.evo-footer__google-stars { color: #FFB400; font-size: 0.78rem; letter-spacing: 1px; }
.evo-footer__google-meta { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.evo-footer__google-meta strong { color: var(--evo-white); }
.evo-footer__google-cta { margin-left: 4px; font-size: 0.8rem; font-weight: 600; color: var(--evo-cyan); }

/* Bande zones d'intervention */
.evo-footer__zones {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px 4px;
	padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08);
	font-size: 0.86rem; color: rgba(255,255,255,0.6);
}
.evo-footer__zones-lbl { display: inline-flex; align-items: center; gap: 7px; color: var(--evo-white); font-weight: 600; margin-right: 6px; }
.evo-footer__zones-lbl svg { color: var(--evo-cyan); }
.evo-footer__zones a { color: rgba(255,255,255,0.72); transition: color .2s; }
.evo-footer__zones a:hover { color: var(--evo-cyan); }
.evo-footer__zsep { color: rgba(255,255,255,0.25); margin: 0 6px; }

@media (prefers-reduced-motion: reduce) {
	.evo-footer, .evo-footer__line, .evo-footer__particles i, .evo-footer__ci { animation: none; }
}

.evo-whatsapp-float {
	position: fixed; right: 20px; bottom: 20px;
	width: 60px; height: 60px; border-radius: 50%;
	background: #25D366; color: var(--evo-white);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 28px rgba(37,211,102,0.45);
	z-index: 99; transition: transform .25s;
}
.evo-whatsapp-float::before {
	content: ""; position: absolute; inset: -4px;
	border-radius: 50%; border: 2px solid #25D366;
	opacity: 0.5; animation: evo-ring 2s ease-out infinite;
}
@keyframes evo-ring {
	0%   { transform: scale(1);    opacity: 0.6; }
	100% { transform: scale(1.5); opacity: 0;   }
}
.evo-whatsapp-float:hover { transform: scale(1.1); color: var(--evo-white); }

.evo-mobile-bar { display: none; }

.evo-page-hero {
	background: linear-gradient(180deg, var(--evo-blue-night), var(--evo-blue-deep));
	color: var(--evo-white); padding: 80px 0 60px;
	position: relative; overflow: hidden;
}
.evo-page-hero::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(0,212,255,0.12), transparent 50%);
	pointer-events: none;
}
.evo-page-hero > * { position: relative; z-index: 1; }
.evo-page-hero h1,
.evo-page-hero h2,
.evo-page-hero h3,
.evo-page-hero p { color: var(--evo-white); }
.evo-page-hero p { color: rgba(255,255,255,0.78); }
.evo-breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 18px; }
.evo-breadcrumb a { color: rgba(255,255,255,0.8); }
.evo-breadcrumb a:hover { color: var(--evo-orange); }

.evo-article-card {
	background: var(--evo-white); border-radius: var(--evo-radius);
	overflow: hidden; box-shadow: var(--evo-shadow-card);
	display: flex; flex-direction: column;
	transition: transform .3s, box-shadow .3s;
	border: 1px solid var(--evo-border-dark);
}
.evo-article-card:hover { transform: translateY(-6px); box-shadow: var(--evo-shadow-card-hover); }
.evo-article-card__img {
	aspect-ratio: 16/10; overflow: hidden;
	background: linear-gradient(135deg, var(--evo-blue-deep), var(--evo-blue-night));
	display: block; position: relative;
}
.evo-article-card__img::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.2), transparent 60%);
}
.evo-article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.evo-article-card:hover .evo-article-card__img img { transform: scale(1.05); }
.evo-article-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.evo-article-card__cat {
	display: inline-block; background: var(--evo-orange); color: var(--evo-white);
	font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
	padding: 4px 10px; border-radius: 4px; letter-spacing: 0.5px;
	margin-bottom: 12px; align-self: flex-start;
}
.evo-article-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.evo-article-card h3 a { color: var(--evo-text); }
.evo-article-card h3 a:hover { color: var(--evo-orange); }
.evo-article-card__meta { font-size: 0.8rem; color: var(--evo-text-muted); margin-top: auto; padding-top: 12px; }

.evo-form { background: var(--evo-white); border-radius: var(--evo-radius); padding: 36px; box-shadow: var(--evo-shadow-card); border: 1px solid var(--evo-border-dark); }
.evo-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.evo-form__field { display: flex; flex-direction: column; }
.evo-form__field label { font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--evo-text); }
.evo-form__field label .req { color: var(--evo-orange); }
.evo-form__field input,
.evo-form__field select,
.evo-form__field textarea {
	width: 100%; padding: 13px 15px;
	border: 1.5px solid #DCE3EC; border-radius: var(--evo-radius-sm);
	font-family: inherit; font-size: 0.95rem;
	transition: border-color .2s, box-shadow .2s;
	background: #fff; color: var(--evo-text);
}
.evo-form__field input:focus,
.evo-form__field select:focus,
.evo-form__field textarea:focus {
	outline: none; border-color: var(--evo-orange);
	box-shadow: 0 0 0 4px rgba(255,122,26,0.12);
}
.evo-form__field textarea { min-height: 130px; resize: vertical; }
.evo-form__rgpd { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--evo-text-muted); margin: 18px 0 22px; }
.evo-form__rgpd input { margin-top: 4px; }
.evo-form__message { padding: 14px 16px; border-radius: var(--evo-radius-sm); margin-bottom: 16px; display: none; font-size: 0.92rem; }
.evo-form__message--success { background: #E6F7EC; color: #1B7F3A; border: 1px solid #B8E5C6; display: block; }
.evo-form__message--error   { background: #FBE7E7; color: #B23535; border: 1px solid #F2C2C2; display: block; }
.evo-form__honeypot { position: absolute; left: -9999px; opacity: 0; }

.evo-faq__item {
	background: var(--evo-white); border: 1px solid #E5EAF2;
	border-radius: var(--evo-radius-sm); margin-bottom: 12px;
	overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.evo-faq__item.is-open { border-color: var(--evo-orange); box-shadow: 0 6px 14px rgba(255,122,26,0.08); }
.evo-faq__q {
	width: 100%; text-align: left; background: transparent;
	border: 0; padding: 18px 22px;
	font-size: 1rem; font-weight: 600;
	color: var(--evo-text); cursor: pointer;
	display: flex; justify-content: space-between; align-items: center;
	font-family: inherit;
}
.evo-faq__q::after {
	content: "+"; color: var(--evo-orange);
	font-size: 1.6rem; font-weight: 300; line-height: 1;
	transition: transform .3s;
}
.evo-faq__item.is-open .evo-faq__q::after { content: "−"; }
.evo-faq__a { padding: 0 22px 20px; color: var(--evo-text-muted); display: none; line-height: 1.7; }
.evo-faq__item.is-open .evo-faq__a { display: block; animation: evo-fade-down .3s ease; }

@keyframes evo-fade-down {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ANIMATIONS scroll - VRAIES cette fois */
.evo-anim {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.evo-anim.is-visible { opacity: 1; transform: translateY(0); }
.evo-anim--delay-1 { transition-delay: .08s; }
.evo-anim--delay-2 { transition-delay: .16s; }
.evo-anim--delay-3 { transition-delay: .24s; }
.evo-anim--delay-4 { transition-delay: .32s; }
.evo-anim--delay-5 { transition-delay: .4s; }

.evo-article-content { font-size: 1.05rem; line-height: 1.8; color: var(--evo-text); }
.evo-article-content h2 { margin-top: 1.8em; padding-bottom: 8px; border-bottom: 2px solid var(--evo-orange); display: inline-block; }
.evo-article-content h3 { margin-top: 1.6em; color: var(--evo-blue-deep); }
.evo-article-content ul, .evo-article-content ol { padding-left: 1.6em; margin-bottom: 1.4em; }
.evo-article-content li { margin-bottom: 8px; }
.evo-article-content blockquote {
	border-left: 4px solid var(--evo-orange);
	padding: 14px 20px; margin: 1.6em 0;
	background: var(--evo-gray-light);
	border-radius: 0 var(--evo-radius-sm) var(--evo-radius-sm) 0;
	font-style: italic; color: var(--evo-text-muted);
}
.evo-article-content a { color: var(--evo-orange); text-decoration: underline; text-underline-offset: 3px; }
.evo-article-content strong { color: var(--evo-text); font-weight: 700; }

@media (max-width: 1100px) {
	.evo-trust-bar { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
	.evo-trust-bar__item:nth-child(2n) { border-right: 0; }
	.evo-trust-bar__item { border-bottom: 1px solid #EDF1F6; padding-bottom: 16px; }
	.evo-trust-bar__item:nth-last-child(-n+1) { border-bottom: 0; }
	.evo-services-grid { grid-template-columns: repeat(2, 1fr); }
	.evo-articles-grid { grid-template-columns: repeat(2, 1fr); }
	.evo-znet { grid-template-columns: 1fr; gap: 28px; }
	.evo-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.evo-steps::before { display: none; }
	.evo-testi__grid { grid-template-columns: repeat(2, 1fr); }
	.evo-footer__grid { grid-template-columns: repeat(3, 1fr); }
	.evo-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
	.evo-nav { display: none; }
	.evo-burger { display: flex; }
	.evo-nav-mobile { display: flex; }
}
@media (max-width: 768px) {
	.evo-header__cta .evo-btn--phone span,
	.evo-header__cta .evo-btn--primary { display: none; }
	.evo-services-grid, .evo-articles-grid, .evo-trust-bar,
	.evo-steps, .evo-footer__grid { grid-template-columns: 1fr; }
	.evo-testi__grid { grid-template-columns: 1fr; }
	.evo-testi { padding: 30px 22px; }
	.evo-testi__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
	.evo-testi__stat + .evo-testi__stat::before { display: none; }
	.evo-trust-bar__item { border-right: 0; border-bottom: 1px solid #EDF1F6; padding: 14px 12px; }
	.evo-trust-bar__item:last-child { border-bottom: 0; }
	.evo-form__row { grid-template-columns: 1fr; }
	.evo-ctaband__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 16px; padding: 28px 24px; }
	.evo-ctaband__btn { width: 100%; justify-content: center; }
	.evo-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.evo-footer__brand { grid-column: 1 / -1; }
	.evo-footer__bottom { flex-direction: column; text-align: center; gap: 14px; }
	.evo-footer__legal { justify-content: center; }
	.evo-trust-bar { margin-top: 0; padding: 16px; }
	.evo-znet { padding: 28px; }
	/* Réseau → liste de capsules propre sur mobile (zéro chevauchement) */
	.evo-znet__map { aspect-ratio: auto; min-height: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
	.evo-znet__lines, .evo-znet__hub { display: none; }
	.evo-znet__city {
		position: static; transform: none; animation: none;
	}
	.evo-znet__city:hover, .evo-znet__city.is-active { transform: scale(1.04); }
	.evo-znet__tip { display: none; }
	.evo-form { padding: 24px; }
	.evo-mobile-bar {
		display: flex; position: fixed; left: 0; right: 0; bottom: 0;
		background: var(--evo-white);
		box-shadow: 0 -4px 20px rgba(0,0,0,0.12); z-index: 95;
	}
	.evo-mobile-bar a {
		flex: 1; padding: 16px 0; text-align: center;
		font-size: 0.82rem; color: var(--evo-text);
		border-right: 1px solid #E5EAF2; font-weight: 600;
	}
	.evo-mobile-bar a:last-child { border-right: 0; }
	.evo-whatsapp-float { bottom: 78px; }
	body { padding-bottom: 60px; }
	.evo-service-card__body { padding: 20px; }
	.evo-service-card__body h3 { font-size: 1.1rem; }
	.evo-page-hero { padding: 60px 0 40px; }
	.evo-page-hero h1 { font-size: 1.9rem; }
	:root { --evo-header-height: 68px; }
	.evo-logo__mark { font-size: 1.18rem; }
	.evo-logo__sub { font-size: 0.55rem; letter-spacing: 1px; }
	.evo-header__cta { gap: 8px; }
	.evo-header__cta .evo-btn--phone { padding: 11px; border-radius: 10px; }
	.evo-header__inner { gap: 12px; }
	.evo-cities { padding: 9px 0; }
	.evo-cities__list li { padding: 0 18px; }
	.evo-cities__list li a { font-size: 0.8rem; }
	.evo-cities::before, .evo-cities::after { width: 50px; }
	.evo-hero__agent { width: 80px; opacity: 0.16 !important; left: -1%; }
}

@media (prefers-reduced-motion: reduce) {
	*,*::before,*::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
	.evo-anim { opacity: 1; transform: none; }
	.evo-hero__badge, .evo-hero__title, .evo-hero__lead, .evo-hero__cta { animation: none !important; opacity: 1 !important; transform: none !important; }
	.evo-hero__visual-glow, .evo-hero-card { animation: none !important; }
	.evo-cities__track { animation: none !important; justify-content: center; flex-wrap: wrap; }
	.evo-hero__particles { display: none !important; }
	.evo-hero__agent { animation: none !important; }
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px;
	overflow: hidden; word-wrap: normal !important;
}
:focus-visible { outline: 2px solid var(--evo-orange); outline-offset: 2px; border-radius: 4px; }

/* =====================================================================
   ZONES D'INTERVENTION — pages villes (single-evo_zone.php) — v1.9.0
   Ajout autonome, n'altère aucune règle existante. Préfixe .evo-zone-*.
   ===================================================================== */

/* Hero local : grille 2 colonnes en desktop, empilée en mobile */
.evo-zone-hero__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr;
	gap: 48px;
	align-items: center;
}
.evo-zone-hero__badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(0,212,255,0.12);
	color: var(--evo-cyan);
	padding: 7px 16px; border-radius: 999px;
	font-size: 0.82rem; font-weight: 600; letter-spacing: 0.3px;
	margin-bottom: 18px;
	border: 1px solid rgba(0,212,255,0.22);
}
.evo-zone-hero__badge strong {
	color: #fff; font-weight: 700;
	padding-left: 8px; margin-left: 4px;
	border-left: 1px solid rgba(255,255,255,0.25);
}
.evo-zone-hero__lead {
	max-width: 560px; font-size: 1.08rem; line-height: 1.65;
	color: rgba(255,255,255,0.84) !important;
}
.evo-zone-hero__cta {
	display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}

/* Carte d'infos pratiques (glassmorphism, comme les cartes flottantes du hero) */
.evo-zone-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(0,212,255,0.2);
	border-radius: var(--evo-radius-lg);
	padding: 26px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: var(--evo-shadow-glow);
}
.evo-zone-card__row {
	display: flex; align-items: center; gap: 12px;
	color: rgba(255,255,255,0.9);
	font-size: 0.96rem;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.evo-zone-card__row:last-of-type { border-bottom: none; }
.evo-zone-card__row strong { color: #fff; }
.evo-zone-card__muted { color: rgba(255,255,255,0.6); }
.evo-zone-card__icon {
	flex: 0 0 auto;
	width: 38px; height: 38px; border-radius: 11px;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(0,212,255,0.12); color: var(--evo-cyan);
}
.evo-zone-card__cta {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 18px; width: 100%; justify-content: center;
	background: var(--evo-orange); color: #fff;
	padding: 12px 18px; border-radius: 999px;
	font-weight: 700; text-decoration: none;
	transition: background .2s, transform .2s;
	box-shadow: var(--evo-shadow-cta);
}
.evo-zone-card__cta:hover {
	background: var(--evo-orange-hover); transform: translateY(-2px); color: #fff;
}

/* Pourquoi Evo Clean à {ville} — 4 colonnes sur fond sombre */
.evo-zone-why {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.evo-zone-why__item {
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--evo-border);
	border-radius: var(--evo-radius);
	padding: 26px 22px;
	text-align: left;
}
.evo-zone-why__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; border-radius: 14px;
	background: rgba(255,122,26,0.12); color: var(--evo-orange);
	margin-bottom: 14px;
}
.evo-zone-why__item strong {
	display: block; color: #fff; font-size: 1.04rem; margin-bottom: 6px;
}
.evo-zone-why__txt { color: rgba(255,255,255,0.66); font-size: 0.9rem; line-height: 1.5; }

/* Autres villes — chips de maillage interne */
.evo-zone-others {
	border-top: 1px solid var(--evo-border-dark);
	padding-top: 36px; text-align: center;
}
.evo-zone-others__title {
	font-size: 1.15rem; color: var(--evo-text-muted); font-weight: 600;
	margin-bottom: 22px;
}
.evo-zone-others__list {
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.evo-zone-chip {
	display: inline-flex; align-items: center; gap: 7px;
	background: var(--evo-white);
	border: 1px solid var(--evo-border-dark);
	color: var(--evo-text);
	padding: 9px 16px; border-radius: 999px;
	font-size: 0.92rem; font-weight: 600; text-decoration: none;
	box-shadow: var(--evo-shadow-card);
	transition: transform .2s, border-color .2s, color .2s, box-shadow .2s;
}
.evo-zone-chip svg { color: var(--evo-cyan); transition: color .2s; }
.evo-zone-chip:hover {
	transform: translateY(-2px);
	border-color: var(--evo-orange);
	color: var(--evo-orange);
	box-shadow: var(--evo-shadow-card-hover);
}
.evo-zone-chip:hover svg { color: var(--evo-orange); }

/* Responsive (desktop-first, comme le reste du site) */
@media (max-width: 1024px) {
	.evo-zone-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.evo-zone-card { max-width: 460px; }
	.evo-zone-why { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.evo-zone-hero__cta { gap: 10px; }
	.evo-zone-hero__cta .evo-btn--primary { width: 100%; justify-content: center; }
	.evo-zone-why { grid-template-columns: 1fr; }
	.evo-zone-card { padding: 22px; }
}

/* ============================================================
 * PAGE SERVICES PREMIUM — .evo-svc-*  (body.evo-svc-page)
 * ============================================================ */
body.evo-svc-page { background: var(--evo-blue-deep); color: rgba(255,255,255,0.88); }
body.evo-svc-page .evo-section { background: transparent; padding: 56px 0; }
body.evo-svc-page .evo-section--light { background: transparent; }
body.evo-svc-page .evo-breadcrumb a, body.evo-svc-page .evo-breadcrumb { color: rgba(255,255,255,0.55); }
body.evo-svc-page .evo-breadcrumb a:hover { color: var(--evo-cyan); }

.evo-svc-crumb-wrap { padding: 26px 0 0 !important; }
.evo-svc-icon-svg { display: inline-flex; }
.evo-svc-icon-svg svg { width: 26px; height: 26px; }

/* Hero */
.evo-svc-hero { padding-top: 30px !important; }
.evo-svc-hero__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.evo-svc-hero__title { color: var(--evo-white); font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1.05; margin: 0 0 18px; font-weight: 800; letter-spacing: -.5px; }
.evo-svc-hero__title .evo-accent { color: var(--evo-orange); }
.evo-svc-hero__lead { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.6; margin: 0 0 24px; max-width: 540px; }
.evo-svc-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.evo-svc-hero__cta .evo-btn { padding: 13px 22px; }
.evo-svc-hero__wa { background: #25D366; color: #fff; }
.evo-svc-hero__wa:hover { background: #1ebd5b; color: #fff; transform: translateY(-2px); }
.evo-svc-hero__badges { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, auto); gap: 22px; }
.evo-svc-hero__badges li { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; }
.evo-svc-hero__badges svg { color: var(--evo-cyan); flex-shrink: 0; }
.evo-svc-hero__badges strong { display: block; color: var(--evo-white); font-weight: 600; }
.evo-svc-hero__badges em { display: block; color: rgba(255,255,255,0.5); font-style: normal; font-size: 0.76rem; margin-top: 1px; }

.evo-svc-hero__media { position: relative; }
.evo-svc-hero__img {
	position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--evo-radius-lg);
	background: linear-gradient(135deg, #0a2942, #061B2E) center/cover;
	overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.evo-svc-hero__glow1 { position: absolute; left: -10%; bottom: -10%; width: 60%; height: 60%; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,26,0.45), transparent 60%); filter: blur(20px); }
.evo-svc-hero__glow2 { position: absolute; right: -8%; top: 35%; width: 26%; height: 26%; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,255,0.55), transparent 60%); filter: blur(14px); animation: evo-foot-line 4s ease-in-out infinite; }
.evo-svc-hero__cards { position: absolute; right: -10px; top: 12%; display: flex; flex-direction: column; gap: 12px; }
.evo-svc-hero__chip {
	display: inline-flex; align-items: center; gap: 11px;
	padding: 12px 16px; border-radius: 14px;
	background: rgba(10,41,66,0.92); backdrop-filter: blur(10px);
	border: 1px solid rgba(0,212,255,0.25);
	box-shadow: 0 10px 28px rgba(0,0,0,0.4);
	min-width: 240px;
}
.evo-svc-hero__chip-ic {
	width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	color: var(--evo-orange); background: rgba(255,122,26,0.12);
}
.evo-svc-hero__chip:first-child .evo-svc-hero__chip-ic { color: var(--evo-cyan); background: rgba(0,212,255,0.12); }
.evo-svc-hero__chip strong { display: block; color: var(--evo-white); font-size: 0.88rem; font-weight: 700; }
.evo-svc-hero__chip em { display: block; color: rgba(255,255,255,0.55); font-size: 0.74rem; font-style: normal; margin-top: 2px; }

/* Filtres */
.evo-svc-filters { padding: 10px 0 6px; }
.evo-svc-filters__bar {
	display: flex; flex-wrap: wrap; gap: 8px; padding: 8px;
	background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
}
.evo-svc-filter {
	font-size: 0.86rem; font-weight: 600; padding: 10px 18px; border-radius: 12px;
	background: transparent; color: rgba(255,255,255,0.7); border: 0; cursor: pointer;
	transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.evo-svc-filter:hover { background: rgba(255,122,26,0.10); color: #fff; box-shadow: 0 0 14px rgba(255,122,26,0.18); }
.evo-svc-filter.is-active {
	background: linear-gradient(120deg, var(--evo-orange), #FF9540);
	color: #fff; box-shadow: 0 10px 22px rgba(255,122,26,0.34);
}

/* Cartes services */
.evo-svc-cards-wrap { padding: 22px 0 50px; }
.evo-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.evo-svc-card {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column;
	padding: 22px 22px 18px; border-radius: 18px; text-decoration: none;
	background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(0,212,255,0.20);
	box-shadow: 0 12px 28px rgba(0,0,0,0.25);
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
	animation: evo-str-fadein .55s ease both; animation-delay: var(--evo-d, 0ms);
}
.evo-svc-card::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(70% 50% at 50% 0%, rgba(0,212,255,0.10), transparent 60%);
	opacity: 0; transition: opacity .3s ease;
}
.evo-svc-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0,212,255,0.55);
	box-shadow: 0 20px 44px rgba(0,0,0,0.4), 0 0 26px rgba(0,212,255,0.20);
}
.evo-svc-card:hover::before { opacity: 1; }
.evo-svc-card.is-hidden { display: none; }
.evo-svc-card__ic {
	position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 13px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--evo-cyan); background: rgba(0,212,255,0.12);
	border: 1px solid rgba(0,212,255,0.30); margin-bottom: 14px;
}
.evo-svc-card__t { position: relative; z-index: 1; color: var(--evo-white); font-size: 1.05rem; line-height: 1.2; margin: 0 0 12px; }
.evo-svc-card__list { position: relative; z-index: 1; list-style: none; padding: 0; margin: 0 0 16px; }
.evo-svc-card__list li { position: relative; padding-left: 16px; font-size: 0.86rem; color: rgba(255,255,255,0.72); line-height: 1.55; margin-bottom: 4px; }
.evo-svc-card__list li::before { content: "•"; position: absolute; left: 0; top: 0; color: var(--evo-cyan); font-weight: 700; }
.evo-svc-card__more {
	position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px;
	margin-top: auto; padding-top: 6px;
	color: var(--evo-orange); font-size: 0.86rem; font-weight: 700; transition: gap .25s ease;
}
.evo-svc-card:hover .evo-svc-card__more { gap: 10px; }

/* Pourquoi + stats */
.evo-svc-why { padding: 60px 0; background: linear-gradient(180deg, rgba(0,212,255,0.04), transparent 30%) !important; }
.evo-svc-why__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.evo-svc-why h2 { color: var(--evo-white); font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.05; margin: 0 0 22px; }
.evo-svc-why__list { list-style: none; padding: 0; margin: 0; }
.evo-svc-why__list li { display: flex; align-items: center; gap: 11px; padding: 8px 0; font-size: 0.96rem; color: rgba(255,255,255,0.85); }
.evo-svc-why__list svg { color: var(--evo-orange); flex-shrink: 0; }
.evo-svc-why__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.evo-svc-stat {
	padding: 28px 16px; border-radius: 18px; text-align: center;
	background: rgba(255,255,255,0.03); border: 1px solid rgba(0,212,255,0.18);
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.evo-svc-stat:hover { transform: translateY(-3px); border-color: rgba(0,212,255,0.45); box-shadow: 0 18px 36px rgba(0,0,0,0.3), 0 0 22px rgba(0,212,255,0.15); }
.evo-svc-stat__ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; color: var(--evo-cyan); background: rgba(0,212,255,0.10); border: 1px solid rgba(0,212,255,0.28); margin-bottom: 14px; }
.evo-svc-stat__v { display: block; font-size: 2rem; font-weight: 800; color: var(--evo-white); letter-spacing: -1px; }
.evo-svc-stat__l { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.3; }

/* Zones + Google */
.evo-svc-zones-wrap { padding: 50px 0; }
.evo-svc-zones__grid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 22px; align-items: stretch; }
.evo-svc-zones__col, .evo-svc-zones__google {
	padding: 28px 30px; border-radius: 18px;
	background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
	border: 1px solid rgba(0,212,255,0.15);
}
.evo-svc-zones__map {
	padding: 18px; border-radius: 18px;
	background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
	border: 1px solid rgba(0,212,255,0.15);
	display: flex; align-items: center; justify-content: center;
}
.evo-svc-zones__net { width: 100%; aspect-ratio: 1/1; max-width: 380px; max-height: 380px; }
.evo-svc-zones__col h2, .evo-svc-zones__google h3 { color: var(--evo-white); font-size: 1.6rem; margin: 0 0 8px; }
.evo-svc-zones__col h2 .evo-accent { color: var(--evo-orange); }
.evo-svc-zones__lead { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin: 0 0 18px; }
.evo-svc-zones__list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.evo-svc-zones__list a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.78); transition: color .2s; }
.evo-svc-zones__list svg { color: var(--evo-orange); }
.evo-svc-zones__list a:hover { color: var(--evo-cyan); }
.evo-svc-zones__btn { font-size: 0.9rem; }
.evo-svc-zones__google { display: flex; flex-direction: column; }
.evo-svc-zones__rate { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.evo-svc-zones__rate-v { display: block; font-size: 2.2rem; font-weight: 800; color: var(--evo-white); line-height: 1; }
.evo-svc-zones__rate-s { display: block; color: #FFB400; font-size: 1.05rem; letter-spacing: 2px; margin-top: 2px; }
.evo-svc-zones__rate-c { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0 0 16px; }
.evo-svc-zones__review { padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); flex: 1; }
.evo-svc-zones__review-head { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.evo-svc-zones__review-stars { color: #FFB400; font-size: 0.85rem; letter-spacing: 1.5px; }
.evo-svc-zones__review strong { color: var(--evo-white); font-size: 0.9rem; }
.evo-svc-zones__review em { color: rgba(255,255,255,0.55); font-style: normal; font-size: 0.8rem; }
.evo-svc-zones__review p { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.55; margin: 0; }

/* Comment ça marche */
.evo-svc-how { padding: 56px 0 70px; }
.evo-svc-how__head { text-align: center; margin-bottom: 50px; }
.evo-svc-how h2 { color: var(--evo-white); font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin: 0; }
.evo-svc-how h2 .evo-accent { color: var(--evo-orange); }
.evo-svc-how__steps { position: relative; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.evo-svc-how__steps::before {
	content: ""; position: absolute; left: 8%; right: 8%; top: 30px; height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0,212,255,0.4), transparent);
	box-shadow: 0 0 10px rgba(0,212,255,0.3); pointer-events: none;
}
.evo-svc-step { position: relative; text-align: center; padding: 0 8px; animation: evo-str-fadein .55s ease both; animation-delay: var(--evo-d, 0ms); }
.evo-svc-step__ic {
	position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
	width: 62px; height: 62px; border-radius: 50%;
	color: var(--evo-cyan); background: var(--evo-blue-deep);
	border: 2px solid rgba(0,212,255,0.5); box-shadow: 0 0 22px rgba(0,212,255,0.25);
	margin-bottom: 16px;
}
.evo-svc-step__num {
	position: absolute; right: -6px; bottom: -6px;
	width: 24px; height: 24px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 0.78rem; font-weight: 800; color: #fff;
	background: var(--evo-orange); box-shadow: 0 4px 12px rgba(255,122,26,0.5);
}
.evo-svc-step__t { color: var(--evo-white); font-size: 1rem; line-height: 1.25; margin: 0 0 6px; }
.evo-svc-step__d { color: rgba(255,255,255,0.6); font-size: 0.84rem; line-height: 1.5; margin: 0; }

/* Responsive */
@media (max-width: 1100px) {
	.evo-svc-grid { grid-template-columns: repeat(2, 1fr); }
	.evo-svc-hero__cards { display: none; }
}
@media (max-width: 980px) {
	.evo-svc-hero__grid, .evo-svc-why__grid { grid-template-columns: 1fr; gap: 30px; }
	.evo-svc-zones__grid { grid-template-columns: 1fr; gap: 22px; }
	.evo-svc-zones__map { padding: 30px; }
	.evo-svc-zones__net { max-width: 460px; max-height: 460px; }
	.evo-svc-why__stats { grid-template-columns: 1fr 1fr; }
	.evo-svc-how__steps { grid-template-columns: repeat(2, 1fr); gap: 32px 14px; }
	.evo-svc-how__steps::before { display: none; }
	.evo-svc-hero__badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.evo-svc-grid { grid-template-columns: 1fr; }
	.evo-svc-how__steps { grid-template-columns: 1fr; }
	.evo-svc-zones__list { grid-template-columns: 1fr; }
	.evo-svc-hero__badges { grid-template-columns: 1fr; }
}

/* ============================================================
   SIMOHWEB - CORRECTIONS CRITIQUES v1.1
   ============================================================ */

/* Le header fixe fait 84px - le hero doit commencer en dessous */
.evo-hero {
    padding-top: var(--evo-header-height);
}

/* Hero inner : layout flex correct */
.evo-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 80px;
    position: relative;
    z-index: 2;
}

/* Hero content visible */
.evo-hero__content {
    position: relative;
    z-index: 3;
}

/* Hero visual cote droit */
.evo-hero__visual {
    position: relative;
    z-index: 2;
}

/* Hero SVG agent positionne */
.evo-hero > svg,
.evo-hero__agent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.25;
    pointer-events: none;
}

/* Sur mobile : hero colonne unique */
@media (max-width: 768px) {
    .evo-hero__inner {
        grid-template-columns: 1fr;
        padding: 40px 0 60px;
    }
    .evo-hero__visual {
        display: none;
    }
}

/* Sections de contenu des pages internes */
.evo-section {
    padding: 80px 0;
    position: relative;
}

.evo-section--light {
    background: var(--evo-gray-light);
}

/* Fix: les sections hero des pages internes (services etc.) */
.evo-hero[style*="min-height:55vh"],
.evo-hero[style*="min-height:50vh"],
.evo-hero[style*="min-height:60vh"] {
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding-top: var(--evo-header-height);
    padding-bottom: 0;
}

.evo-hero[style*="min-height:55vh"] .evo-container--wide > div,
.evo-hero[style*="min-height:50vh"] .evo-container--wide > div,
.evo-hero[style*="min-height:60vh"] .evo-container--wide > div {
    padding-top: calc(var(--evo-header-height) + 40px);
    padding-bottom: 60px;
    width: 100%;
}

/* Grille de services */
.evo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

/* Service card - visible partout */
.evo-service-card {
    background: var(--evo-white);
    border-radius: var(--evo-radius);
    overflow: hidden;
    box-shadow: var(--evo-shadow-card);
    border: 1px solid var(--evo-border-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.evo-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--evo-shadow-card-hover);
}

.evo-service-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.evo-service-card__body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--evo-text);
}

.evo-service-card__body p {
    color: var(--evo-text-muted);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.evo-service-card__cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--evo-orange);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* CTA Band */
.evo-ctaband {
    background: linear-gradient(135deg, var(--evo-orange) 0%, var(--evo-orange-hover) 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.evo-ctaband__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.evo-ctaband__icon {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.evo-ctaband__txt {
    flex: 1;
    min-width: 200px;
}

.evo-ctaband__title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--evo-white);
    margin: 0 0 8px;
}

.evo-ctaband__sub {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 15px;
}

.evo-ctaband__btn {
    background: var(--evo-white);
    color: var(--evo-orange);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.evo-ctaband__btn:hover {
    background: var(--evo-blue-night);
    color: var(--evo-white);
    transform: translateY(-2px);
}

/* FAQ items */
.evo-faq__item {
    border: 1px solid var(--evo-border-dark);
    border-radius: var(--evo-radius-sm);
    overflow: hidden;
    margin-bottom: 10px;
}

.evo-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: var(--evo-white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--evo-text);
    text-align: left;
    font-family: var(--evo-font-base);
}

.evo-faq__q::after {
    content: '+';
    font-size: 22px;
    color: var(--evo-orange);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.evo-faq__item.is-open .evo-faq__q::after {
    transform: rotate(45deg);
}

.evo-faq__a {
    display: none;
    padding: 16px 22px 20px;
    color: var(--evo-text-muted);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid var(--evo-border-dark);
    background: var(--evo-gray-light);
}

.evo-faq__item.is-open .evo-faq__a {
    display: block;
}

/* Grille 2 colonnes utilitaire */
div[style*="grid-template-columns:1fr 1fr"],
div[style*="grid-template-columns: 1fr 1fr"] {
    display: grid;
}

@media (max-width: 768px) {
    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:repeat(2,1fr)"] {
        grid-template-columns: 1fr !important;
    }
}