/* =============================================
 DUALIS ENR – Feuille de style principale
 ============================================= */

/* === VARIABLES ================================ */
:root {
 --blue: #2B8BE8;
 --blue-light: #4A9FEB;
 --blue-dark: #1E6EC4;
 --orange: #F28B2E;
 --orange-light:#F49A43;
 --green: #2a9d5c;
 --white: #ffffff;
 --bg: #0B1220;
 --bg2: #0F1829;
 --bg3: #162238;
 --text: #F6F3EE;
 --text-muted: #8898b8;
 --border: rgba(255,255,255,0.07);
 --radius: 14px;
 --radius-sm: 8px;
 --shadow: 0 8px 40px rgba(0,0,0,0.45);
 --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
 --transition: 0.3s cubic-bezier(.4,0,.2,1);
 --nav-h: 72px;
 --max-w: 1200px;
 --font-head: 'Fraunces', Georgia, serif;
 --font-body: 'Manrope', system-ui, sans-serif;
}

/* === RESET & BASE ============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Reset explicite pour éliminer toute marge/padding résiduelle au-dessus de la navbar */
html, body { margin: 0; padding: 0; border: 0; }

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; }

body {
 font-family: var(--font-body);
 background: var(--bg);
 color: var(--text);
 line-height: 1.65;
}

/* overflow-x: clip au lieu de hidden : clip ne crée PAS de formatting context / containing block, donc position:fixed reste relative au viewport sur Safari iOS */
html, body { overflow-x: clip; }

/* Safari iOS gère la safe-area via theme-color meta — rien à faire ici */

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

h1,h2,h3,h4 {
 font-family: var(--font-head);
 line-height: 1.15;
 font-weight: 700;
 color: var(--title-color);
}
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.section-title { color: var(--title-color); }

h3 { font-size: 1.2rem; }

section {
 padding: 80px 24px;
 max-width: var(--max-w);
 margin: 0 auto;
}

/* === GRADIENTS & UTILS ======================== */
.grad-blue {
 background: linear-gradient(135deg, var(--blue-light), #9CCBF5);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.grad-orange {
 background: linear-gradient(135deg, var(--orange), #F9C48A);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.section-label {
 font-size: 0.78rem;
 font-weight: 700;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--blue-light);
 margin-bottom: 12px;
}

/* === REVEAL ANIMATION ========================= */
.reveal {
 opacity: 0;
 transform: translateY(24px);
 transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
 opacity: 1;
 transform: none;
}

@media (prefers-reduced-motion: reduce) {
 .reveal { opacity: 1; transform: none; }
}

/* === BUTTONS ================================== */
.btn {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 13px 26px;
 border-radius: 40px;
 font-size: 0.92rem;
 font-weight: 700;
 cursor: pointer;
 border: none;
 letter-spacing: 0.01em;
 transition: var(--transition);
 font-family: var(--font-body);
 white-space: nowrap;
 min-width: fit-content;
}

.btn-blue {
 background: linear-gradient(135deg, #4A9FEB, #1E6EC4);
 color: #fff;
 box-shadow: 0 4px 20px rgba(43,139,232,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-blue:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,139,232,0.45); }

.btn-orange {
 background: linear-gradient(135deg, #F28B2E, #D56B10);
 color: #fff;
 box-shadow: 0 4px 20px rgba(242,139,46,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-orange:hover { background: #D56B10; transform: translateY(-2px); }

.btn-ghost {
 background: rgba(255,255,255,0.04);
 color: rgba(255,255,255,0.8);
 border: 1.5px solid rgba(255,255,255,0.14);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.btn-ghost:hover { border-color: var(--blue-light); color: var(--blue-light); }

.btn-green {
 background: linear-gradient(135deg, #2a9d5c, #1e7a44);
 color: #fff;
 box-shadow: 0 4px 20px rgba(42,157,92,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-green:hover { filter: brightness(1.1); }

/* === TAGS ==================================== */
.tag {
 display: inline-block;
 padding: 4px 12px;
 border-radius: 20px;
 font-size: 0.78rem;
 font-weight: 600;
 letter-spacing: 0.03em;
}
.tag-blue { background: rgba(43,139,232,0.18); color: #9CCBF5; border: 1px solid rgba(43,139,232,0.3); }
.tag-orange{ background: rgba(242,139,46,0.18); color: #F9C48A; border: 1px solid rgba(242,139,46,0.3); }

/* =============================================
 NAVIGATION
 ============================================= */
nav[role="navigation"] {
 position: fixed;
 top: 0; left: 0; right: 0;
 height: var(--nav-h);
 margin: 0;
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0 40px;
 background: #0B1220;
 border-bottom: 1px solid var(--border);
 z-index: 1000;
 gap: 20px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 44px; width: auto; display: block; object-fit: contain; }

/* Hamburger masqué sur desktop par défaut */
.hamburger {
 display: none;
 position: relative;
}

.nav-links {
 display: flex;
 align-items: center;
 gap: 2px;
 list-style: none;
 flex-wrap: nowrap;
}

.nav-links a {
 padding: 5px 10px;
 border-radius: 20px;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--text-muted);
 transition: var(--transition);
 white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-right {
 display: flex;
 align-items: center;
 gap: 10px;
 flex-shrink: 0;
}

.hamburger::before, .hamburger::after, .hamburger span {
 content: '';
 display: block;
 width: 18px;
 height: 2px;
 background: var(--text);
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 border-radius: 2px;
 transition: var(--transition);
}
.hamburger::before { top: 11px; }
.hamburger span { top: 17px; }
.hamburger::after { top: 23px; }

/* === Mobile Menu ============================== */
.mobile-menu {
 display: none;
 position: fixed;
 inset: calc(var(--nav-h) + env(safe-area-inset-top, 0px)) 0 0 0;
 background: rgba(11,15,26,0.97);
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 flex-direction: column;
 align-items: center;
 justify-content: flex-start;
 gap: 20px;
 padding: 30px 20px calc(40px + env(safe-area-inset-bottom, 0px));
 z-index: 999;
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
}
.mobile-menu a {
 font-size: 1.3rem;
 font-weight: 600;
 font-family: var(--font-head);
 color: var(--text);
 padding: 10px 32px;
 border-radius: 8px;
 transition: var(--transition);
 flex-shrink: 0;
}
.mobile-menu a:hover { color: var(--blue-light); }
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; }

/* =============================================
 HERO
 ============================================= */
#hero {
 position: relative;
 min-height: 100vh;
 min-height: 100svh;
 display: flex;
 align-items: center;
 padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 60px) 24px 80px;
 max-width: 100%;
 overflow: hidden;
 background: var(--bg);
}

.hero-bg {
 position: absolute;
 inset: 0;
 background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(43,139,232,0.12) 0%, transparent 70%),
 radial-gradient(ellipse 50% 50% at 20% 80%, rgba(242,139,46,0.08) 0%, transparent 60%);
}

.hero-grid {
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
 linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
 background-size: 60px 60px;
 mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
}

.hero-orb {
 position: absolute;
 border-radius: 50%;
 filter: blur(80px);
 pointer-events: none;
}
.orb1 {
 width: 500px; height: 500px;
 background: radial-gradient(circle, rgba(43,139,232,0.18), transparent 70%);
 top: -100px; right: -100px;
}

.hero-content {
 position: relative;
 z-index: 2;
 max-width: var(--max-w);
 margin: 0 auto;
 width: 100%;
}
@media (max-width: 600px) {
 .hero-content { text-align: center; }


 .hero-stats > div { text-align: center; }
}

.hero-badge {
 display: inline-block;
 padding: 6px 18px;
 border-radius: 30px;
 background: rgba(43,139,232,0.15);
 border: 1px solid rgba(43,139,232,0.3);
 font-size: 0.82rem;
 font-weight: 600;
 color: #9CCBF5;
 letter-spacing: 0.04em;
 margin-bottom: 24px;
}

.hero-title {
 font-size: clamp(2.4rem, 6vw, 4.2rem);
 font-family: var(--font-head);
 font-weight: 800;
 line-height: 1.1;
 margin-bottom: 24px;
 letter-spacing: -0.01em;
 max-width: 720px;
}

.hero-sub {
 font-size: 1.1rem;
 color: var(--text-muted);
 max-width: 560px;
 margin-bottom: 40px;
 line-height: 1.75;
}

.hero-actions {
 display: flex;
 gap: 14px;
 flex-wrap: wrap;
 margin-bottom: 56px;
}

.hero-stats > div { text-align: center; }

.stat-num {
 font-size: 2rem;
 font-weight: 800;
 font-family: var(--font-head);
 line-height: 1;
}
.stat-label {
 font-size: 0.8rem;
 color: var(--text-muted);
 margin-top: 6px;
 font-weight: 500;
}

/* =============================================
 SERVICES
 ============================================= */
#services { max-width: var(--max-w); margin: 0 auto; padding: 100px 24px; }

.services-header {
 text-align: center;
 margin-bottom: 64px;
}
.services-header .grad-bar { margin: 16px auto 24px; }
.services-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
 gap: 28px;
}

.service-card {
 background: var(--bg2);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 overflow: hidden;
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.service-card:hover {
 border-color: rgba(43,139,232,0.3);
 transform: translateY(-4px);
 box-shadow: var(--shadow-card);
}

.card-img-wrap {
 position: relative;
 height: 220px;
 overflow: hidden;
}
.card-img-wrap img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.6s ease;
}
.service-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-img-fade {
 position: absolute;
 inset: 0;
 background: linear-gradient(to bottom, transparent 40%, var(--bg2) 100%);
}

.card-body {
 padding: 24px;
 flex: 1;
 display: flex;
 flex-direction: column;
 gap: 10px;
}

.card-icon { font-size: 1.8rem; line-height: 1; }

.card-title {
 font-size: 1.05rem;
 font-weight: 700;
 font-family: var(--font-head);
 color: var(--title-color);
 line-height: 1.3;
 margin: 0;
}

.card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.card-cta {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 font-size: 0.88rem;
 font-weight: 700;
 padding: 12px 20px;
 border-top: 1px solid var(--border);
 margin-top: auto;
 transition: var(--transition);
 color: var(--text-muted);
}
.card-cta.blue { color: var(--blue-light); }
.card-cta.orange{ color: var(--orange); }
.card-cta:hover { padding-left: 24px; }
.card-cta .arrow { font-size: 1rem; }

/* === Carousel ================================= */
.carousel {
 position: relative;
 height: 220px;
 overflow: hidden;
}
.carousel-track {
 display: flex;
 height: 100%;
 transition: transform 0.5s ease;
}
.carousel-slide {
 min-width: 100%;
 height: 100%;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 background: rgba(0,0,0,0.5);
 color: var(--white);
 border: none;
 border-radius: 50%;
 width: 36px; height: 36px;
 font-size: 1.4rem;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: var(--transition);
 z-index: 5;
}
.carousel-btn:hover { background: var(--blue-light); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
 position: absolute;
 bottom: 10px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 gap: 6px;
}
.carousel-dots span {
 width: 8px; height: 8px;
 border-radius: 50%;
 background: rgba(255,255,255,0.35);
 cursor: pointer;
 transition: var(--transition);
}
.carousel-dots span.active { background: var(--white); }

/* =============================================
 AIDES & CEE
 ============================================= */
#cee { background: var(--bg2); max-width: 100%; padding: 80px 24px; }
#cee > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.cee-wrapper {
 max-width: var(--max-w);
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1fr 380px;
 gap: 60px;
 align-items: start;
}
@media (max-width: 900px) {
 .cee-wrapper {
 grid-template-columns: 1fr;
 gap: 40px;
 }

}

.cee-visual {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 background: linear-gradient(160deg, rgba(43,139,232,0.12), rgba(10,15,30,0.7), rgba(242,139,46,0.08));
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 24px;
 padding: 28px 28px;
 backdrop-filter: blur(10px);
 box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.cee-num {
 font-size: clamp(3.2rem, 8vw, 5.5rem);
 font-weight: 500;
 font-family: var(--font-head);
 letter-spacing: 0.01em;
 line-height: 0.9;
 display: block;
 margin-bottom: 4px;
 background: linear-gradient(160deg,
 #ffffff 0%,
 #e8f4ff 20%,
 #c8e0ff 40%,
 #ffffff 55%,
 #ffe4b0 75%,
 #ffb347 90%,
 #F28B2E 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 filter:
 drop-shadow(0 0 30px rgba(255,255,255,0.15))
 drop-shadow(0 4px 24px rgba(242,139,46,0.3));
 animation: countUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.cee-big-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

.cee-badge {
 display: inline-block;
 padding: 6px 18px;
 border-radius: 30px;
 background: rgba(42,157,92,0.15);
 border: 1px solid rgba(42,157,92,0.3);
 color: #5dcc8a;
 font-size: 0.82rem;
 font-weight: 600;
 margin-bottom: 20px;
}

.cee-divider {
 border: none;
 border-top: 1px solid var(--border);
 margin: 16px 0;
 width: 100%;
}

.cee-cards {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
 gap: 20px;
}

.cee-card {
 background: var(--bg3);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 28px;
 transition: var(--transition);
}
.cee-card:hover {
 border-color: rgba(43,139,232,0.3);
 transform: translateY(-3px);
}
.cee-card-title {
 font-size: 1rem;
 font-weight: 700;
 font-family: var(--font-head);
 margin-bottom: 8px;
 color: var(--title-color);
}
.cee-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 font-size: 0.9rem;
 color: var(--text-muted);
}
.checklist li::before {
 content: '✓';
 color: var(--green);
 font-weight: 700;
 flex-shrink: 0;
 margin-top: 1px;
}

/* =============================================
 DIAGNOSTIC GRATUIT
 ============================================= */
.diag-wrapper {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: start;
}

.diag-points { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }

.diag-point {
 display: flex;
 gap: 16px;
 align-items: flex-start;
}
.diag-point-icon {
 width: 48px; height: 48px;
 border-radius: 14px;
 background: rgba(43,139,232,0.12);
 border: 1px solid rgba(43,139,232,0.22);
 display: flex; align-items: center; justify-content: center;
 font-size: 1.4rem;
 flex-shrink: 0;
}
.diag-point-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; color: var(--title-color); letter-spacing: 0.01em; }
.diag-point-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

.diag-card {
 background: linear-gradient(135deg, rgba(43,139,232,0.15), rgba(43,139,232,0.1));
 border: 1px solid rgba(43,139,232,0.25);
 border-radius: var(--radius);
 padding: 36px;
 text-align: center;
}
.diag-card-icon { font-size: 3rem; margin-bottom: 16px; }
.diag-card-title {
 font-size: 1.3rem;
 font-weight: 800;
 font-family: var(--font-head);
 margin-bottom: 8px;
}
.diag-card-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

.diag-free {
 display: inline-block;
 padding: 6px 20px;
 border-radius: 30px;
 background: rgba(42,157,92,0.15);
 border: 1px solid rgba(42,157,92,0.3);
 color: #5dcc8a;
 font-size: 0.88rem;
 font-weight: 700;
 margin-top: 12px;
}
.diag-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }

/* =============================================
 FAQ
 ============================================= */
#faq { background: var(--bg3); max-width: 100%; padding: 80px 24px; }

.faq-wrapper {
 max-width: var(--max-w);
 margin: 0 auto;
 display: grid;
 grid-template-columns: 280px 1fr;
 gap: 48px;
 align-items: start;
}

.faq-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-sticky h2 { margin-bottom: 12px; }
.faq-sticky p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }

.faq-count {
 font-size: clamp(5rem, 14vw, 9rem);
 font-weight: 900;
 font-family: var(--font-head);
 line-height: 1;
 background: linear-gradient(135deg,
 rgba(160,175,200,0.95) 0%,
 rgba(210,220,235,1) 30%,
 var(--blue-light) 70%,
 #9CCBF5 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 filter: drop-shadow(0 4px 20px rgba(43,139,232,0.4));
}
.faq-count-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.faq-topics { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; }

.faq-topic {
 padding: 8px 14px;
 border-radius: 8px;
 font-size: 0.85rem;
 font-weight: 600;
 cursor: pointer;
 border: none;
 background: none;
 color: var(--text-muted);
 text-align: left;
 transition: var(--transition);
}
.faq-topic:hover, .faq-topic.active { background: rgba(43,139,232,0.15); color: var(--blue-light); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
 background: var(--bg2);
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 overflow: hidden;
 transition: var(--transition);
}
.faq-item:hover { border-color: rgba(43,139,232,0.25); }

.faq-question {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 padding: 18px 20px;
 cursor: pointer;
}
.faq-q-left { display: flex; align-items: center; gap: 12px; }
.faq-cat {
 font-size: 0.72rem;
 font-weight: 700;
 padding: 3px 10px;
 border-radius: 12px;
 letter-spacing: 0.05em;
 text-transform: uppercase;
 flex-shrink: 0;
}
.cat-zone { background: rgba(43,139,232,0.18); color: #9CCBF5; }
.cat-prix { background: rgba(242,139,46,0.18); color: #F9C48A; }
.cat-loi { background: rgba(42,157,92,0.18); color: #5dcc8a; }
.cat-urgence { background: rgba(220,38,38,0.18); color: #f87171; }
.cat-entretien{ background: rgba(139,92,246,0.18); color: #c4b5fd; }
.cat-aides { background: rgba(234,179,8,0.18); color: #fde047; }

.faq-q-text { font-size: 0.92rem; font-weight: 600; color: var(--title-color); line-height: 1.4; }

.faq-chevron {
 font-size: 1rem;
 color: var(--text-muted);
 transition: transform 0.3s ease;
 flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue-light); }

.faq-answer {
 display: none;
 padding: 0 20px 18px;
 font-size: 0.88rem;
 color: var(--text-muted);
 line-height: 1.75;
 border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
 ZONES
 ============================================= */
.zones-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 32px;
}

.zone-chip {
 padding: 8px 18px;
 border-radius: 30px;
 font-size: 0.85rem;
 font-weight: 600;
 background: var(--bg2);
 border: 1px solid var(--border);
 color: var(--text-muted);
 transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease,
 transform 0.4s ease, box-shadow 0.4s ease;
}
.zone-chip:hover,
.zone-chip.pulse {
 border-color: var(--blue-light);
 color: var(--white);
 background: rgba(43,139,232,0.15);
 transform: scale(1.06);
 box-shadow: 0 0 16px rgba(43,139,232,0.35);
}
.zone-chip.pulse-orange {
 border-color: var(--orange);
 color: var(--white);
 background: rgba(242,139,46,0.12);
 transform: scale(1.06);
 box-shadow: 0 0 16px rgba(242,139,46,0.3);
}

/* =============================================
 POURQUOI NOUS
 ============================================= */
#why { background: var(--bg); }

.why-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
 gap: 24px;
 margin-top: 48px;
}

.why-card {
 background: var(--bg2);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 28px;
 transition: var(--transition);
}
.why-card:hover { border-color: rgba(43,139,232,0.3); transform: translateY(-3px); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-title { font-size: 1rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 8px; color: var(--title-color); }
.why-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
 ALERTES / APER
 ============================================= */
.aper-alert {
 background: rgba(242,139,46,0.1);
 border: 1px solid rgba(242,139,46,0.25);
 border-radius: var(--radius-sm);
 padding: 16px 20px;
 margin: 16px 0;
}
.aper-alert-title { font-weight: 700; color: var(--orange-light); margin-bottom: 4px; font-size: 0.9rem; }
.aper-alert-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.aper-link { color: var(--blue-light); text-decoration: underline; }

/* =============================================
 CONTACT
 ============================================= */
#contact { max-width: var(--max-w); margin: 0 auto; }

.contact-wrapper {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: start;
}

.contact-item {
 display: flex;
 gap: 16px;
 align-items: flex-start;
 margin-bottom: 20px;
}
.contact-icon {
 width: 44px; height: 44px;
 border-radius: 12px;
 background: rgba(43,139,232,0.12);
 border: 1px solid rgba(43,139,232,0.2);
 display: flex; align-items: center; justify-content: center;
 font-size: 1.2rem;
 flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-value { font-size: 0.95rem; color: var(--white); font-weight: 500; line-height: 1.5; }
.contact-item-value a { color: var(--blue-light); }
.contact-item-value a:hover { text-decoration: underline; }

.contact-form {
 background: var(--bg2);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 36px;
}
.form-title {
 font-size: 1.15rem;
 font-weight: 800;
 font-family: var(--font-head);
 margin-bottom: 24px;
 color: var(--white);
}

.form-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
}

.form-group {
 display: flex;
 flex-direction: column;
 gap: 6px;
 margin-bottom: 16px;
}
.form-group label {
 font-size: 0.82rem;
 font-weight: 600;
 color: var(--text-muted);
 letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
 background: var(--bg3);
 border: 1.5px solid var(--border);
 border-radius: var(--radius-sm);
 padding: 12px 14px;
 color: var(--white);
 font-family: var(--font-body);
 font-size: 0.92rem;
 transition: var(--transition);
 outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 border-color: var(--blue-light);
 background: rgba(43,139,232,0.05);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }

#form-success {
 display: none;
 background: rgba(42,157,92,0.15);
 border: 1px solid rgba(42,157,92,0.3);
 border-radius: var(--radius-sm);
 padding: 20px;
 text-align: center;
 color: #5dcc8a;
 font-weight: 600;
 font-size: 0.95rem;
 margin-top: 16px;
}

/* =============================================
 FOOTER
 ============================================= */
footer {
 background: var(--bg2);
 border-top: 1px solid var(--border);
 padding: 48px 24px 32px;
 text-align: center;
}

.footer-brand {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 margin-bottom: 24px;
 font-size: 0.88rem;
 color: var(--text-muted);
}
.footer-brand img { height: 32px; }

.footer-links {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 justify-content: center;
 margin-bottom: 24px;
}
.footer-links a {
 padding: 6px 14px;
 border-radius: 20px;
 font-size: 0.85rem;
 color: var(--text-muted);
 transition: var(--transition);
}
.footer-links a:hover { color: var(--blue-light); }

.footer-copy { font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; }

/* =============================================
 RESPONSIVE
 ============================================= */
@media (max-width: 900px) {
 nav[role="navigation"] { padding: 0 20px; }
 .nav-links { display: none !important; }
 .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s ease;
 }
 .hamburger:hover { background: rgba(255,255,255,0.1); }

 /* ── Boutons navbar réduits sur mobile ── */
 .nav-right .btn-ghost { display: none !important; }
 .nav-right .btn-blue { display: none !important; }
 .nav-right .btn-orange {
  padding: 7px 14px !important;
  font-size: .78rem !important;
 }
 /* ── Hamburger visible avec les 3 barres ── */
 .hamburger {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
 }

 .diag-wrapper { grid-template-columns: 1fr; }
 .contact-wrapper { grid-template-columns: 1fr; }
 .faq-wrapper { grid-template-columns: 1fr; }
 .faq-sticky { position: static; }
 .services-grid { grid-template-columns: 1fr; }
 .cee-cards { grid-template-columns: 1fr; }
 .hero-stats { gap: 20px; }

 section { padding: 70px 20px; }
 #hero { padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 60px) 20px 60px; min-height: unset; }
 .hero-stats-full {
 display: flex !important;
 flex-direction: row !important;
 flex-wrap: wrap;
 gap: 32px;
 padding-top: 28px;
 margin-top: 32px;
 border-top: 1px solid var(--border);
 width: 100%;
 animation: lineReveal 0.8s ease 1.75s both;
}
 .hero-stats-full > div { padding: 0 8px; }
}

@media (max-width: 600px) {
 .hero-title { font-size: clamp(2rem, 7vw, 2.6rem); }
 .hero-actions {
 flex-direction: column;
 align-items: center;
 width: 100%;
 }
 .hero-actions .btn {
 width: 100%;
 max-width: 320px;
 justify-content: center;
 text-align: center;
 }
 .form-row { grid-template-columns: 1fr; }
 .cee-big { padding: 24px 32px; }
 .contact-form { padding: 24px; }
}

@keyframes countUp {
 from { opacity: 0; transform: scale(0.5); }
 to { opacity: 1; transform: scale(1); }
}
@keyframes floatOrb {
 0%, 100% { transform: translateY(0) scale(1); }
 50% { transform: translateY(-20px) scale(1.05); }
}
.orb1 { animation: floatOrb 8s ease-in-out infinite; }
.orb2 { animation: floatOrb 10s ease-in-out infinite reverse; }

/* Date */

#avis {
 background:
 radial-gradient(ellipse 80% 50% at 50% 0%, rgba(43,139,232,0.06) 0%, transparent 70%),
 radial-gradient(ellipse 60% 40% at 80% 100%, rgba(242,139,46,0.04) 0%, transparent 60%),
 var(--bg2) !important;
}

.avis-score-badge {
 background: rgba(255,255,255,0.06) !important;
 border: 1px solid rgba(255,255,255,0.18) !important;
 backdrop-filter: blur(20px) !important;
 -webkit-backdrop-filter: blur(20px) !important;
 box-shadow: 0 2px 0 rgba(255,255,255,0.1) inset, 0 8px 24px rgba(0,0,0,0.2) !important;
 border-radius: 40px !important;
 transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.avis-score-badge:hover {
 transform: scale(1.04) !important;
 box-shadow: 0 2px 0 rgba(255,255,255,0.14) inset, 0 12px 32px rgba(251,191,36,0.15) !important;
}
.avis-score-num { color: #F9C48A !important; text-shadow: 0 0 12px rgba(251,191,36,0.4) !important; }
.avis-score-stars {
 text-shadow: 0 0 8px rgba(251,191,36,0.5) !important;
 filter: drop-shadow(0 0 4px rgba(251,191,36,0.4)) !important;
}

/* =============================================
 AVIS LIQUID GLASS
 ============================================= */
#avis {
 background: transparent;
 max-width: 100%;
 padding: 80px 0 80px;
 overflow: visible;
}
.avis-header { text-align: center; margin-bottom: 40px; padding: 0 24px; }

.avis-score-badge {
 display: inline-flex; align-items: center; gap: 10px;
 background: rgba(255,255,255,0.05);
 border: 1px solid rgba(255,255,255,0.15);
 border-radius: 40px; padding: 9px 22px;
 backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
 box-shadow: 0 2px 0 rgba(255,255,255,0.08) inset, 0 6px 20px rgba(0,0,0,0.2);
 font-size: 0.88rem; color: var(--white); font-weight: 600;
}
.avis-score-stars { color:#F9C48A; filter:drop-shadow(0 0 5px rgba(251,191,36,0.5)); }
.avis-score-num { color:#F9C48A; font-size:1.1rem; font-weight:900; }
.avis-score-sep { color:rgba(255,255,255,0.2); }
.avis-score-count { color:var(--text-muted); font-size:0.8rem; }
.avis-google-logo {
 width:20px; height:20px; background:white; border-radius:5px;
 display:flex; align-items:center; justify-content:center;
 font-size:12px; font-weight:900; color:#4285f4;
}

.reviews-carousel {
 position: relative;
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 12px 60px 24px;
 max-width: var(--max-w);
 margin: 0 auto;
 overflow: visible;
}

.reviews-track-clip {
 flex: 1;
 overflow: hidden;
}

.reviews-track-wrap {
 flex: 1;
 overflow: visible;
 padding: 12px 0;
}
.reviews-track {
 display: flex;
 gap: 20px;
 transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
 will-change: transform;
}

.rev-card {
 flex: 0 0 calc(33.333% - 14px);
 min-width: calc(33.333% - 14px);
}
.rev-card-inner {
 background: rgba(255,255,255,0.042);
 border: 1px solid rgba(255,255,255,0.14);
 border-radius: 22px;
 padding: 24px;
 backdrop-filter: blur(32px) saturate(180%);
 -webkit-backdrop-filter: blur(32px) saturate(180%);
 box-shadow:
 0 1.5px 0 rgba(255,255,255,0.12) inset,
 0 -1px 0 rgba(0,0,0,0.2) inset,
 0 8px 32px rgba(0,0,0,0.3),
 0 1px 0 rgba(255,255,255,0.05);
 position: relative;
 overflow: hidden;
 transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
 box-shadow 0.4s ease, border-color 0.4s ease;
 height: 100%;
}

.rev-card-inner::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0; height: 55%;
 background: linear-gradient(180deg,
 rgba(255,255,255,0.08) 0%,
 rgba(255,255,255,0.02) 50%,
 transparent 100%);
 border-radius: 22px 22px 0 0;
 pointer-events: none;
}

.rev-card-inner::after {
 content: '';
 position: absolute;
 top: 12%; left: 0;
 width: 1px; height: 55%;
 background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
 pointer-events: none;
}

.rev-header {
 display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.rev-avatar {
 width: 42px; height: 42px; border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 font-size: 1rem; font-weight: 800; color: white; flex-shrink: 0;
 box-shadow: 0 0 0 2px rgba(255,255,255,0.15), 0 4px 12px rgba(0,0,0,0.3);
}
.rev-name {
 font-size: 0.9rem; font-weight: 700;
 font-family: var(--font-head); color: rgba(255,255,255,0.95);
}
.rev-meta { font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-top: 2px; }
.rev-g-logo {
 margin-left: auto; width: 22px; height: 22px;
 background: white; border-radius: 5px;
 display: flex; align-items: center; justify-content: center;
 font-size: 12px; font-weight: 900; color: #4285f4; flex-shrink: 0;
}

/* Étoiles */
.rev-stars {
 color: #F9C48A; font-size: 1.05rem; letter-spacing: 2px;
 margin-bottom: 10px;
 text-shadow: 0 0 8px rgba(251,191,36,0.4);
}

/* Texte */
.rev-text {
 font-size: 0.85rem; color: rgba(255,255,255,0.7);
 line-height: 1.65; margin: 0 0 12px;
 display: -webkit-box; -webkit-line-clamp: 4;
 -webkit-box-orient: vertical; overflow: hidden;
}
.rev-date { font-size: 0.72rem; color: rgba(255,255,255,0.28); }

.rev-btn {
 width: 44px; height: 44px; border-radius: 50%;
 border: 1px solid rgba(255,255,255,0.16);
 background: rgba(255,255,255,0.06);
 backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
 color: rgba(255,255,255,0.8); font-size: 1.1rem;
 cursor: pointer; flex-shrink: 0;
 box-shadow: 0 2px 0 rgba(255,255,255,0.08) inset, 0 4px 16px rgba(0,0,0,0.3);
 transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
 display: flex; align-items: center; justify-content: center;
}
.rev-btn:hover {
 background: rgba(43,139,232,0.3);
 border-color: rgba(79,195,247,0.4);
 transform: scale(1.12);
 color: white;
 box-shadow: 0 2px 0 rgba(255,255,255,0.1) inset, 0 6px 20px rgba(43,139,232,0.25);
}

/* Dots */
.rev-dots {
 display: flex; justify-content: center; gap: 7px;
 margin-top: 24px;
}
.rev-dot {
 width: 7px; height: 7px; border-radius: 50%;
 background: rgba(255,255,255,0.15);
 transition: all 0.3s ease; cursor: pointer;
 border: 1px solid rgba(255,255,255,0.1);
}
.rev-dot.active {
 background: var(--blue-light);
 width: 22px; border-radius: 4px;
 box-shadow: 0 0 8px rgba(43,139,232,0.5);
}

@media (max-width: 900px) {
 .reviews-carousel { padding: 16px 48px; }
 .rev-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
}
@media (max-width: 600px) {
 .reviews-carousel { padding: 12px 40px; gap: 10px; }
 .rev-card { flex: 0 0 100%; min-width: 100%; }
}

@property --border-angle {
 syntax: '<angle>';
 initial-value: 0deg;
 inherits: false;
}
@keyframes borderRotate {
 to { --border-angle: 360deg; }
}
.rev-card-inner {
 animation: borderRotate 4s linear infinite;
 border: 2px solid transparent !important;
 background:
 linear-gradient(rgba(14,20,32,0.90), rgba(14,20,32,0.90)) padding-box,
 conic-gradient(
 from var(--border-angle),
 #F28B2E 0%,
 #F9C48A 15%,
 #9CCBF5 35%,
 #4A9FEB 50%,
 #9CCBF5 65%,
 #F9C48A 82%,
 #F28B2E 100%
 ) border-box !important;

 box-shadow:
 0 0 12px rgba(79,195,247,0.18),
 0 0 24px rgba(242,139,46,0.12),
 0 8px 32px rgba(0,0,0,0.4) !important;
}
.rev-card-inner:hover {
 transform: translateY(-8px) scale(1.02) !important;
 animation-duration: 1.6s !important;
 box-shadow:
 0 0 20px rgba(79,195,247,0.35),
 0 0 40px rgba(242,139,46,0.2),
 0 20px 50px rgba(0,0,0,0.5) !important;
}
.rev-card-inner::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0; height: 50%;
 background: linear-gradient(180deg,
 rgba(255,255,255,0.07) 0%,
 rgba(255,255,255,0.02) 50%,
 transparent 100%);
 border-radius: 22px 22px 0 0;
 pointer-events: none;
 z-index: 1;
}
.rev-card-inner > * { position: relative; z-index: 2; }

.htech-dash {
  background: linear-gradient(160deg, rgba(16,22,36,0.98), rgba(11,15,26,0.98));
  border: 1px solid rgba(79,195,247,0.15);
  border-radius: 14px;
  padding: 13px 15px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  font-family: 'Courier New', monospace;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.htech-header {
 display: flex; justify-content: space-between; align-items: center;
 margin-bottom: 10px; padding-bottom: 8px;
 border-bottom: 1px solid rgba(79,195,247,0.1);
}
.htech-status {
 display: flex; align-items: center; gap: 6px;
 font-size: 0.65rem; font-weight: 700; color: #2ecc71;
 letter-spacing: 0.12em; text-transform: uppercase;
}
.htech-dot {
 width: 6px; height: 6px; border-radius: 50%; background: #2ecc71;
 animation: htechPulse 1.8s ease-in-out infinite;
}
@keyframes htechPulse {
 0%,100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
 50% { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}
.htech-time { font-size: 0.68rem; color: rgba(79,195,247,0.5); letter-spacing: 0.08em; }
.htech-graph-wrap { position: relative; margin-bottom: 12px; }
.htech-graph-label {
 font-size: 0.62rem; color: rgba(46,204,113,0.6);
 letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
 font-family: 'Courier New', monospace;
}
.htech-graph {
 width: 100%; height: 48px; display: block;
 border-radius: 6px; overflow: hidden;
 background: rgba(46,204,113,0.03);
 border: 1px solid rgba(46,204,113,0.08);
}
.htech-kw-val {
 position: absolute; top: 14px; right: 8px;
 font-size: 1.3rem; font-weight: 900; color: #2ecc71;
 font-family: var(--font-head); letter-spacing: -0.02em;
 text-shadow: 0 0 16px rgba(46,204,113,0.4);
}
.htech-unit { font-size: 0.6em; color: rgba(46,204,113,0.6); font-weight: 400; }
.htech-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; width: 100%; box-sizing: border-box; }
.htech-metric {
 background: rgba(255,255,255,0.02);
 border: 1px solid rgba(255,255,255,0.05);
 border-radius: 10px; padding: 8px 9px;
 display: flex; gap: 7px; align-items: flex-start;
 transition: border-color 0.3s ease;
}
.htech-metric:hover { border-color: rgba(79,195,247,0.2); }
.htech-metric-icon { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.htech-metric-body { flex: 1; min-width: 0; }
.htech-metric-label {
 font-size: 0.57rem; color: var(--text-muted);
 text-transform: uppercase; letter-spacing: 0.07em;
 white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
 font-family: var(--font-body);
}

.htech-metric-val span { font-size: 0.55em; font-weight: 400; opacity: 0.6; font-family: var(--font-body); }
.htech-metric[data-color="#F9C48A"]
.htech-metric[data-color="#9CCBF5"]
.htech-metric[data-color="#2ecc71"]
.htech-metric[data-color="#F28B2E"]
.htech-spark {
 width: 36px !important; height: 28px !important;
 min-width: 36px !important; max-width: 36px !important;
 flex-shrink: 0; position: relative; align-self: center;
 overflow: hidden !important; display: block;
 border-radius: 3px;
}
.htech-spark svg { width: 36px !important; height: 28px !important; display: block; }

.hero-anim-full {
 display: block;
 margin-top: 24px; padding-top: 24px;
 border-top: 1px solid var(--border);
 width: 100%; max-width: 600px;
}

.faq-topic {
 padding: 8px 14px;
 border-radius: 10px;
 font-size: 0.85rem;
 font-weight: 600;
 cursor: pointer;
 background: rgba(255,255,255,0.03);
 border: 1px solid rgba(255,255,255,0.06);
 color: var(--text-muted);
 text-align: left;
 transition: all 0.25s ease;
 position: relative;
 padding-left: 28px;
}
.faq-topic::before {
 content: '';
 position: absolute;
 left: 10px; top: 50%;
 transform: translateY(-50%);
 width: 7px; height: 7px;
 border-radius: 50%;
 background: currentColor;
 opacity: 0.5;
}

.tp-prix { color: #F9C48A; border-color: rgba(242,139,46,0.25); }
.tp-prix::before { background: #F9C48A; opacity: 1; }
.tp-prix:hover, .tp-prix.active {
 background: rgba(242,139,46,0.12) !important;
 border-color: rgba(242,139,46,0.45) !important;
 color: #F9C48A !important;
}

.tp-urgence { color: #f87171; border-color: rgba(220,38,38,0.25); }
.tp-urgence::before { background: #f87171; opacity: 1; }
.tp-urgence:hover, .tp-urgence.active {
 background: rgba(220,38,38,0.12) !important;
 border-color: rgba(220,38,38,0.45) !important;
 color: #f87171 !important;
}

.tp-aides { color: #fde047; border-color: rgba(234,179,8,0.25); }
.tp-aides::before { background: #fde047; opacity: 1; }
.tp-aides:hover, .tp-aides.active {
 background: rgba(234,179,8,0.12) !important;
 border-color: rgba(234,179,8,0.45) !important;
 color: #fde047 !important;
}

.tp-entretien { color: #c4b5fd; border-color: rgba(139,92,246,0.25); }
.tp-entretien::before { background: #c4b5fd; opacity: 1; }
.tp-entretien:hover, .tp-entretien.active {
 background: rgba(139,92,246,0.12) !important;
 border-color: rgba(139,92,246,0.45) !important;
 color: #c4b5fd !important;
}

.tp-loi { color: #5dcc8a; border-color: rgba(42,157,92,0.25); }
.tp-loi::before { background: #5dcc8a; opacity: 1; }
.tp-loi:hover, .tp-loi.active {
 background: rgba(42,157,92,0.12) !important;
 border-color: rgba(42,157,92,0.45) !important;
 color: #5dcc8a !important;
}

.tp-zone { color: #9CCBF5; border-color: rgba(43,139,232,0.25); }
.tp-zone::before { background: #9CCBF5; opacity: 1; }
.tp-zone:hover, .tp-zone.active {
 background: rgba(43,139,232,0.12) !important;
 border-color: rgba(43,139,232,0.45) !important;
 color: #9CCBF5 !important;
}

select,
select option {
 background-color: var(--bg3) !important;
 color: var(--white) !important;
}
select option:hover,
select option:focus,
select option:checked {
 background-color: var(--blue-light) !important;
 color: white !important;
}
select:focus {
 outline: none;
 border-color: var(--blue-light) !important;
 box-shadow: 0 0 0 3px rgba(43,139,232,0.2) !important;
}

select {
 appearance: none;
 -webkit-appearance: none;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237abfff' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
 background-repeat: no-repeat !important;
 background-position: right 14px center !important;
 padding-right: 38px !important;
 cursor: pointer;
}

/* =============================================
 WIZARD FORMULAIRE INTELLIGENT
 ============================================= */
#wizard-container {
 margin: 8px 0 16px;
 animation: fadeIn 0.4s ease;
}
.wizard-progress {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 20px;
}
.wiz-bar {
 flex: 1;
 height: 4px;
 background: rgba(255,255,255,0.08);
 border-radius: 2px;
 overflow: hidden;
}
.wiz-fill {
 height: 100%;
 background: linear-gradient(90deg, var(--blue-light), #9CCBF5);
 border-radius: 2px;
 transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
 width: 0%;
}
.wiz-step-label {
 font-size: 0.72rem;
 color: rgba(255,255,255,0.4);
 white-space: nowrap;
 font-family: monospace;
}

.wiz-field { margin-bottom: 18px; }
.wiz-field-label {
 font-size: 0.82rem;
 font-weight: 600;
 color: rgba(255,255,255,0.7);
 margin-bottom: 10px;
}

.wiz-cards {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
 gap: 8px;
}
.wiz-card {
 background: rgba(255,255,255,0.03);
 border: 1.5px solid rgba(255,255,255,0.08);
 border-radius: 12px;
 padding: 12px 10px;
 cursor: pointer;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 6px;
 transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
 text-align: center;
}
.wiz-card:hover {
 border-color: rgba(79,195,247,0.35);
 background: rgba(43,139,232,0.1);
 transform: translateY(-2px);
}
.wiz-card.selected {
 border-color: var(--blue-light);
 background: rgba(43,139,232,0.18);
 box-shadow: 0 0 0 1px var(--blue-light), 0 4px 16px rgba(43,139,232,0.2);
}
.wiz-card-icon { font-size: 1.4rem; line-height: 1; }
.wiz-card-text { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.3; }
.wiz-card.selected .wiz-card-text { color: #9CCBF5; }

/* Slider */
.wiz-slider-wrap { display: flex; align-items: center; gap: 14px; }
.wiz-slider {
 flex: 1;
 -webkit-appearance: none;
 appearance: none;
 height: 4px;
 border-radius: 2px;
 background: rgba(255,255,255,0.1);
 outline: none;
 cursor: pointer;
}
.wiz-slider::-webkit-slider-thumb {
 -webkit-appearance: none;
 width: 18px; height: 18px;
 border-radius: 50%;
 background: var(--blue-light);
 cursor: pointer;
 box-shadow: 0 0 0 3px rgba(43,139,232,0.25);
 transition: transform 0.2s ease;
}
.wiz-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.wiz-slider-val {
 min-width: 80px;
 text-align: right;
 font-size: 0.9rem;
 font-weight: 700;
 color: #9CCBF5;
 font-family: monospace;
}

/* Stepper */
.wiz-stepper { display: flex; align-items: center; gap: 16px; }
.wiz-step-btn {
 width: 36px; height: 36px;
 border-radius: 50%;
 background: rgba(43,139,232,0.15);
 border: 1px solid rgba(43,139,232,0.3);
 color: var(--blue-light);
 font-size: 1.2rem;
 cursor: pointer;
 transition: all 0.2s ease;
 display: flex; align-items: center; justify-content: center;
}
.wiz-step-btn:hover {
 background: var(--blue-light);
 color: white;
 transform: scale(1.1);
}
.wiz-step-val {
 font-size: 1.6rem;
 font-weight: 900;
 color: var(--white);
 min-width: 40px;
 text-align: center;
 font-family: var(--font-head);
}

.wizard-nav {
 display: flex;
 justify-content: flex-end;
 gap: 10px;
 margin-top: 16px;
 padding-top: 16px;
 border-top: 1px solid rgba(255,255,255,0.06);
}
.wiz-next,
button#wiz-next {
 background: linear-gradient(135deg, #4A9FEB, #1580d0) !important;
 border: none !important;
 color: #fff !important;
 padding: 12px 26px !important;
 font-size: 0.95rem !important;
 font-weight: 700 !important;
 border-radius: 30px !important;
 box-shadow: 0 4px 20px rgba(43,139,232,0.45) !important;
 letter-spacing: 0.01em !important;
 cursor: pointer !important;
}
.wiz-next:hover,
button#wiz-next:hover {
 background: linear-gradient(135deg, #2280d8, #4A9FEB) !important;
 box-shadow: 0 8px 28px rgba(43,139,232,0.6) !important;
 transform: translateY(-2px) scale(1.03) !important;
}
.wiz-back,
button#wiz-back {
 background: rgba(255,255,255,0.05) !important;
 border: 1px solid rgba(255,255,255,0.14) !important;
 color: rgba(255,255,255,0.65) !important;
 padding: 12px 20px !important;
 border-radius: 30px !important;
 cursor: pointer !important;
}
.wiz-back:hover,
button#wiz-back:hover {
 background: rgba(255,255,255,0.1) !important;
 color: #fff !important;
 transform: translateY(-2px) !important;
}

.wiz-summary {
 background: rgba(43,139,232,0.08);
 border: 1px solid rgba(43,139,232,0.25);
 border-radius: 16px;
 padding: 18px 20px;
 margin-bottom: 16px;
 animation: fadeIn 0.45s ease;
}
.wiz-summary-title {
 font-weight: 700; color: #5dcc8a;
 margin-bottom: 10px; font-size: 0.95rem;
}
.wiz-sum-project {
 font-size: 0.82rem; color: rgba(255,255,255,0.5);
 margin-bottom: 12px; padding-bottom: 10px;
 border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wiz-sum-project strong { color: #9CCBF5; }
.wiz-sum-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 7px;
 margin-bottom: 12px;
}
.wiz-sum-row {
 display: flex; flex-direction: column; gap: 1px;
 background: rgba(255,255,255,0.03);
 border-radius: 8px; padding: 7px 10px;
}
.wiz-sum-key {
 font-size: 0.65rem; color: rgba(255,255,255,0.35);
 text-transform: uppercase; letter-spacing: 0.07em;
 font-family: monospace;
}
.wiz-sum-val {
 font-size: 0.85rem; font-weight: 700;
 color: rgba(255,255,255,0.88);
}
.wiz-sum-note {
 font-size: 0.78rem; color: rgba(255,255,255,0.4);
 font-style: italic;
}
@media (max-width: 480px) {
 .wiz-sum-grid { grid-template-columns: 1fr; }
}

.wiz-confirm {
 background: linear-gradient(135deg, #2a9d5c, #1e7a44) !important;
 border-color: transparent !important;
 padding: 12px 28px !important;
 font-size: 0.95rem !important;
 font-weight: 700 !important;
 white-space: nowrap !important;
 min-width: 140px !important;
 box-shadow: 0 4px 20px rgba(42,157,92,0.35) !important;
 animation: pulseGreen 2s ease-in-out infinite;
}
.wiz-confirm:hover {
 transform: translateY(-2px) scale(1.03) !important;
 box-shadow: 0 8px 30px rgba(42,157,92,0.5) !important;
}
@keyframes pulseGreen {
 0%,100% { box-shadow: 0 4px 20px rgba(42,157,92,0.35); }
 50% { box-shadow: 0 4px 30px rgba(42,157,92,0.6); }
}

.full-width { width: 100%; justify-content: center; }

.btn-primary {
 background: linear-gradient(135deg, #4A9FEB, #F28B2E);
 color: #fff;
 font-size: 1rem;
 padding: 15px 32px;
 box-shadow: 0 6px 24px rgba(43,139,232,0.3), 0 6px 24px rgba(242,139,46,0.15);
 animation: shimmerBtn 3s ease-in-out infinite;
}
.btn-primary:hover {
 box-shadow: 0 10px 36px rgba(43,139,232,0.45), 0 10px 36px rgba(242,139,46,0.25);
 transform: translateY(-2px) scale(1.02);
}
@keyframes shimmerBtn {
 0%,100% { box-shadow: 0 6px 24px rgba(43,139,232,0.3), 0 6px 24px rgba(242,139,46,0.15); }
 50% { box-shadow: 0 8px 32px rgba(43,139,232,0.5), 0 8px 32px rgba(242,139,46,0.3); }
}
.full-width { width: 100%; justify-content: center; }

/* =============================================
 SCROLLBAR
 ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(43,139,232,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-light); }

/* =============================================
 SELECTION
 ============================================= */
::selection { background: rgba(43,139,232,0.35); color: var(--white); }

/* =============================================
   SECTION RÉGLEMENTATION
   ============================================= */

@media (max-width: 1100px) {  }
@media (max-width: 600px)  { .loi-grid { grid-template-columns: 1fr; } }

.loi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.loi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
}
.loi-urgent::before   { background: linear-gradient(90deg, #ef4444, #f87171); }
.loi-warning::before  { background: linear-gradient(90deg, #F28B2E, #F9C48A); }
.loi-info::before     { background: linear-gradient(90deg, #4A9FEB, #9CCBF5); }
.loi-green::before    { background: linear-gradient(90deg, #2a9d5c, #2ecc71); }
.loi-upcoming::before { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }

.loi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }

.loi-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.loi-badge { font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em; }
.loi-badge-red    { background: rgba(239,68,68,0.15);  color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.loi-badge-orange { background: rgba(242,139,46,0.15); color: #F9C48A; border: 1px solid rgba(242,139,46,0.3); }
.loi-badge-blue   { background: rgba(43,139,232,0.15); color: #9CCBF5; border: 1px solid rgba(43,139,232,0.3); }
.loi-badge-green  { background: rgba(42,157,92,0.15);  color: #5dcc8a; border: 1px solid rgba(42,157,92,0.3); }
.loi-badge-purple { background: rgba(139,92,246,0.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.3); }
.loi-date { font-size: 0.68rem; color: var(--text-muted); }
.loi-icon { font-size: 1.8rem; line-height: 1; }
.loi-title { font-size: 1rem; font-weight: 700; font-family: var(--font-head); color: var(--title-color); line-height: 1.3; margin: 0; }
.loi-desc { font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.65; flex: 1; margin: 0; }
.loi-sanction { font-size: 0.75rem; font-weight: 700; color: #f87171; background: rgba(239,68,68,0.1); border-radius: 8px; padding: 6px 10px; }
.loi-requirement { font-size: 0.75rem; font-weight: 700; color: #F9C48A; background: rgba(251,191,36,0.08); border-radius: 8px; padding: 6px 10px; }
.loi-solution { display: flex; flex-direction: column; gap: 3px; padding: 10px 12px; background: rgba(42,157,92,0.08); border: 1px solid rgba(42,157,92,0.2); border-radius: 10px; font-size: 0.78rem; margin-top: auto; }
.loi-solution-label { font-weight: 700; color: #5dcc8a; }
.loi-solution span:last-child { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .htech-metrics { grid-template-columns: 1fr !important; }
  .htech-metric-icon { font-size: 0.9rem; }
  .htech-metric-label { font-size: 0.55rem; }
  .htech-metric-val { font-size: 0.85rem; }
  .htech-dash { padding: 10px 12px; }
  .hero-anim-full {
    max-width: calc(100vw - 48px) !important;
    width: calc(100vw - 48px) !important;
    overflow: hidden;
  }
  .htech-spark { display: none !important; }
  .htech-metric {
    width: 100% !important;
    max-width: 100% !important;
  }
  .htech-metrics {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* === COMPARATEUR ÉNERGÉTIQUE === */
.comp-meteo-bar {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 12px 18px;
  margin-bottom: 24px; font-size: 0.85rem;
}
.comp-meteo-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); }
.comp-meteo-item strong { color: var(--white); }

/* Layout 2 maisons + VS */
.comp-houses {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 20px;
  align-items: start;
  width: 100%;
}

/* Carte maison */
.comp-house {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
.comp-house-a { border-color: rgba(46,204,113,0.3); background: rgba(46,204,113,0.04); }
.comp-house-b { border-color: rgba(242,139,46,0.3); background: rgba(242,139,46,0.04); }

.comp-house-header {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comp-house-icon { font-size: 1.4rem; line-height: 1; }
.comp-house-title { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.comp-house-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.comp-badge-rge {
  display: inline-block; margin-top: 4px;
  background: rgba(42,157,92,0.15); border: 1px solid rgba(42,157,92,0.3);
  color: #5dcc8a; font-size: 0.7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 12px; width: fit-content;
}
.comp-badge-co2 {
  display: inline-block; margin-top: 4px;
  background: rgba(242,139,46,0.15); border: 1px solid rgba(242,139,46,0.3);
  color: #F9C48A; font-size: 0.7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 12px; width: fit-content;
}

/* Grille métriques */
.comp-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
}
.comp-metric {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 9px 11px;
  box-sizing: border-box;
  min-width: 0;
}
.comp-metric-label { font-size: 0.62rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.comp-metric-val { font-size: 1rem; font-weight: 800; font-family: var(--font-head); line-height: 1.2; }
.comp-metric-val.green { color: #2ecc71; }
.comp-metric-val.orange { color: #F28B2E; }
.comp-metric-val.big { font-size: 1.3rem; }
.comp-metric-sub { font-size: 0.62rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* Graphique */
.comp-graph-wrap { margin-bottom: 12px; }
.comp-graph-label { font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.comp-graph { width: 100%; height: 80px; display: block; background: rgba(0,0,0,0.25); border-radius: 8px; overflow: hidden; }
.comp-graph-legend { display: flex; gap: 12px; margin-top: 5px; flex-wrap: wrap; }
.comp-legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.comp-legend-item span { width: 10px; height: 2px; border-radius: 1px; display: inline-block; }

/* VS central */
.comp-vs {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 16px 0;
  min-width: 0;
}
.comp-vs-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.comp-savings-label { font-size: 0.65rem; color: rgba(255,255,255,0.35); text-align: center; }
.comp-savings-val {
  font-size: 1.6rem; font-weight: 900; font-family: var(--font-head);
  color: #F9C48A; text-shadow: 0 0 20px rgba(251,191,36,0.35);
  text-align: center; line-height: 1;
}
.comp-savings-sub { font-size: 0.9rem; font-weight: 700; color: #F9C48A; text-align: center; }
.comp-savings-year { font-size: 0.65rem; color: rgba(255,255,255,0.3); text-align: center; }

/* Responsive */
@media (max-width: 820px) {
  .comp-houses { grid-template-columns: 1fr; }
  .comp-vs { flex-direction: row; padding: 8px 0; justify-content: center; gap: 12px; }
}
@media (max-width: 420px) {
  .comp-house { padding: 14px; }
  .comp-metric-val.big { font-size: 1.1rem; }
}


/* VS central */
.comp-vs {
  display: flex; flex-direction: row;
  align-items: center; justify-content: space-around;
  gap: 12px; padding: 16px; flex-wrap: wrap;
  background: rgba(255,255,255,0.02);
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 900px) {
  .comp-vs {
    flex-direction: column;
    padding: 20px 0;
    background: none; border: none;
  }
}
.comp-vs-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.comp-savings-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.comp-savings-val {
  font-size: 1.8rem; font-weight: 900; font-family: var(--font-head);
  color: #F9C48A; text-shadow: 0 0 20px rgba(251,191,36,0.4);
}
.comp-savings-sub { font-size: 1rem; font-weight: 700; color: #F9C48A; }
.comp-savings-year { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

 font-weight: 900; font-family: var(--font-head);
  color: #F9C48A; text-shadow: 0 0 20px rgba(251,191,36,0.4);
}
.comp-savings-sub { font-size: 1rem; font-weight: 700; color: #F9C48A; }
.comp-savings-year { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* === Graphique annuel === */
.annual-section{background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.07);border-radius:16px;padding:18px 20px;margin-top:28px;}
.annual-header{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:8px;flex-wrap:wrap;}
.annual-badges{display:flex;gap:8px;flex-wrap:wrap;}
.ann-badge{font-size:.75rem;padding:4px 10px;border-radius:20px;font-weight:600;white-space:nowrap;}
.ann-badge.green{background:rgba(46,204,113,.12);color:#5dcc8a;border:1px solid rgba(46,204,113,.25);}
.ann-badge.orange{background:rgba(242,139,46,.12);color:#F9C48A;border:1px solid rgba(242,139,46,.25);}
.ann-badge strong{color:var(--white);}
.annual-savings-bar{display:flex;align-items:center;gap:8px;flex-wrap:wrap;background:rgba(251,191,36,.07);border:1px solid rgba(251,191,36,.18);border-radius:10px;padding:9px 14px;font-size:.82rem;color:rgba(255,255,255,.55);}


/* === ROI COMPARATEUR === */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.roi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.roi-pac   { border-color: rgba(79,195,247,0.25);  background: rgba(79,195,247,0.04); }
.roi-solar { border-color: rgba(251,191,36,0.25);  background: rgba(251,191,36,0.04); }
.roi-pack  { border-color: rgba(46,204,113,0.3);   background: rgba(46,204,113,0.05);
             box-shadow: 0 0 30px rgba(46,204,113,0.1); }
.roi-badge-best {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,#2a9d5c,#1e7a44);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.roi-card-icon { font-size: 1.8rem; line-height: 1; }
.roi-card-title { font-size: 1rem; font-weight: 700; color: var(--title-color); }
.roi-card-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.roi-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 4px 0; }
.roi-stat { display: flex; justify-content: space-between; align-items: center; }
.roi-stat.highlight { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 6px 8px; }
.roi-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.roi-stat-val   { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.roi-stat-val.green  { color: #2ecc71; }
.roi-stat-val.yellow { color: #F9C48A; }
.roi-big { text-align: center; padding: 10px 0; }
.roi-big-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.07em; }
.roi-big-val { font-size: 2rem; font-weight: 900; font-family: var(--font-head); line-height: 1.1; }
.roi-big-val.green  { color: #2ecc71; text-shadow: 0 0 20px rgba(46,204,113,0.3); }
.roi-big-val.yellow { color: #F9C48A; text-shadow: 0 0 20px rgba(251,191,36,0.3); }
.roi-co2 { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 4px; }

/* Arguments qualitatifs */
.roi-args {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 10px; margin-top: 24px;
}
.roi-arg {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 10px 14px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.roi-arg strong { color: var(--white); }

@media (max-width: 900px) {
  .roi-grid { grid-template-columns: 1fr; }
  .roi-args { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .roi-args { grid-template-columns: 1fr 1fr; }
}


/* ── DROPDOWN SERVICES ── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.has-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-top: 1px; transition: transform .2s; }
.has-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: rgba(11,15,26,0.98); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px; min-width: 220px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, transform .2s; transform: translateX(-50%) translateY(-6px); z-index: 200; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; font-size: .82rem; font-weight: 500; color: var(--text-muted); transition: var(--transition); white-space: nowrap; }
.dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.dropdown-menu a svg { width: 14px; height: 14px; fill: none; stroke: var(--blue-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.dropdown-sep { height: 1px; background: var(--border); margin: 4px 6px; }

/* ── Titres adoucis ── */
h1,h2,h3,h4 { color: #ccd6f0; }
.hero-title { color: #ccd6f0; }
.section-title { color: #ccd6f0; }
.scard h3 { color: #ccd6f0; }
.urgence-content h3 { color: #ccd6f0; }
.av-title { color: #ccd6f0; }
.faq-q { color: #ccd6f0; }
.cta-section h2 { color: #ccd6f0; }
.secteur-name { color: #ccd6f0; }
.card-title { color: #ccd6f0; }
.cee-card-title { color: #ccd6f0; }
.diag-card-title { color: #ccd6f0; }
.diag-point-title { color: #ccd6f0; }
.why-title { color: #ccd6f0; }
.faq-q-text { color: #ccd6f0; }
.loi-title { color: #ccd6f0; }
.roi-card-title { color: #ccd6f0; }
.step-title { color: #ccd6f0; }
.aide-name { color: #ccd6f0; }

/* =============================================
   DESIGN ENHANCEMENT — Premium Visual Upgrade
   ============================================= */

/* --- Better Typography with Google Font upgrade --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
  --font-accent: 'Space Mono', monospace;
}

/* --- Grain Overlay for cinematic depth --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* --- Smooth Page Load Stagger --- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge { animation: fadeSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.2s both; }
.hero-title { animation: fadeSlideUp 0.8s cubic-bezier(.22,1,.36,1) 0.35s both; }
.hero-sub { animation: fadeSlideUp 0.8s cubic-bezier(.22,1,.36,1) 0.5s both; }
.hero-actions { animation: fadeSlideUp 0.8s cubic-bezier(.22,1,.36,1) 0.65s both; }
.hero-anim-full { animation: fadeSlideUp 0.9s cubic-bezier(.22,1,.36,1) 0.8s both; }

/* --- Section Titles: animated gradient underline --- */
.services-header h2,
.faq-sticky h2,
#contact h2,
#why h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.services-header h2::after,
.faq-sticky h2::after,
#contact h2::after,
#why h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--orange));
  transition: width 0.5s cubic-bezier(.22,1,.36,1);
}
.services-header h2:hover::after,
.faq-sticky h2:hover::after,
#contact h2:hover::after,
#why h2:hover::after {
  width: 100%;
}

/* --- Cards: glassmorphism hover glow --- */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(43,139,232,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card > * { position: relative; z-index: 1; }

/* --- Buttons: shimmer effect on hover --- */
@keyframes btnShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
.btn-blue,
.btn-orange,
.btn-green,
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-blue::after,
.btn-orange::after,
.btn-green::after,
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  transition: none;
}
.btn-blue:hover::after,
.btn-orange:hover::after,
.btn-green:hover::after,
.btn-primary:hover::after {
  animation: btnShimmer 0.6s ease forwards;
}

/* --- Nav: smooth shadow on scroll --- */
nav[role="navigation"] {
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
nav[role="navigation"].scrolled {
  background: #0B1220;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border-bottom-color: rgba(43,139,232,0.15);
}

/* --- Hero orbs: enhanced with second orb --- */
.orb1 { transition: opacity 0.6s ease; }

/* --- FAQ items: smooth accordion --- */
.faq-answer {
  display: grid !important;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(.22,1,.36,1), padding 0.4s ease;
  padding: 0 20px;
  overflow: hidden;
}
.faq-answer > * {
  overflow: hidden;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 20px 18px;
  border-top: 1px solid var(--border);
}

/* --- Zone chips: staggered entrance --- */
.zone-chip {
  animation: fadeSlideUp 0.5s cubic-bezier(.22,1,.36,1) both;
}
.zone-chip:nth-child(1) { animation-delay: 0.05s; }
.zone-chip:nth-child(2) { animation-delay: 0.1s; }
.zone-chip:nth-child(3) { animation-delay: 0.15s; }
.zone-chip:nth-child(4) { animation-delay: 0.2s; }
.zone-chip:nth-child(5) { animation-delay: 0.25s; }
.zone-chip:nth-child(6) { animation-delay: 0.3s; }
.zone-chip:nth-child(7) { animation-delay: 0.35s; }
.zone-chip:nth-child(8) { animation-delay: 0.4s; }
.zone-chip:nth-child(9) { animation-delay: 0.45s; }
.zone-chip:nth-child(10) { animation-delay: 0.5s; }

/* --- Why cards: counter badge --- */
.why-card {
  counter-increment: why-counter;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: counter(why-counter, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(43,139,232,0.2);
  letter-spacing: 0.05em;
}
#why { counter-reset: why-counter; }

/* --- Contact form: focus glow --- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(43,139,232,0.15), 0 4px 16px rgba(43,139,232,0.1);
  border-color: var(--blue-light);
}

/* --- Smooth image zoom on service cards --- */
.card-img-wrap img {
  transition: transform 0.8s cubic-bezier(.22,1,.36,1), filter 0.4s ease;
}
.service-card:hover .card-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* --- CTA section label: monospace accent --- */
.section-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

/* --- Footer: subtle top gradient line --- */
footer {
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), var(--orange), transparent);
}

/* --- Stat numbers: tabular for alignment --- */
.stat-num, .cee-num {
  font-variant-numeric: tabular-nums;
}

/* --- Smooth scroll indicator pulse --- */
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* --- Card tags: subtle hover lift --- */
.tag {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* --- Review cards: tilt on hover --- */
.rev-card-inner {
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.5s ease !important;
}

/* --- Hero grid: subtle animation --- */
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.hero-grid {
  animation: gridDrift 20s linear infinite;
}

/* --- CEE visual: breathing glow --- */
@keyframes ceeGlow {
  0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05), 0 0 40px rgba(43,139,232,0.05); }
  50% { box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05), 0 0 60px rgba(43,139,232,0.12); }
}
.cee-visual {
  animation: ceeGlow 5s ease-in-out infinite;
}

/* --- Diagnostic card: hover lift --- */
.diag-card {
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease;
}
.diag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(43,139,232,0.2);
}

/* --- Loi cards: hover accent border --- */
.loi-card {
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.loi-card:hover {
  border-color: rgba(255,255,255,0.12);
}

/* --- Enhanced scrollbar --- */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(43,139,232,0.5), rgba(242,139,46,0.3));
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-light), var(--orange));
}

/* === CHARTER TYPOGRAPHY (Dualis ENR design system) === */
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
h1, .hero-title, .h1, .display-1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
h2, .display-2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
h3, .heading-1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h4, h5, h6, .heading-2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.section-label, .caption, small.caption, .eyebrow {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
p, li, dd, dt, label, input, textarea, select, button, td, th {
  font-family: 'Manrope', system-ui, sans-serif;
}
strong, b { font-weight: 600; }
.body-lg { font-size: 18px; line-height: 28px; }
.body-md { font-size: 15px; line-height: 24px; }
/* === /CHARTER TYPOGRAPHY === */