/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1f44;
    --primary-light: #1a3a6b;
    --accent: #1565c0;
    --accent-light: #1e88e5;
    --gold: #f9a825;
    --orange: #ff6d00;
    --green: #00c853;
    --teal: #00bfa5;
    --purple: #7c4dff;
    --red: #ff1744;
    --pink: #f50057;
    --cyan: #00e5ff;
    --bg-light: #e8f0fe;
    --bg-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-gray: #555;
    --text-light: #888;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 14px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    font-style: italic;
}

.logo-icon-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #1a1a1a;
}

.logo-blue {
    color: #1268dc;
    letter-spacing: 1px;
}

.logo-slogan {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.horaires {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.phone-btn:hover {
    background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
}

.navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li a {
    display: block;
    padding: 14px 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.15);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 60%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 25%, #1565c0 50%, #7c4dff 75%, #00bfa5 100%);
    background-size: 200% 200%;
    animation: heroGradient 8s ease infinite;
    margin-top: 115px;
    overflow: hidden;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}


.hero h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 strong {
    color: var(--gold);
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(249, 168, 37, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-urgence {
    display: inline-block;
    background: linear-gradient(135deg, #ff1744, #ff6d00);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    animation: urgencePulse 2s ease-in-out infinite;
}

@keyframes urgencePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 23, 68, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 23, 68, 0.7), 0 0 50px rgba(255, 109, 0, 0.3); }
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.hero-badge {
    display: inline;
    color: #ffffff;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    background: none;
    border: none;
    border-radius: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-badge:nth-child(1) {
    color: #ffd54f;
}

.hero-badge:nth-child(2) {
    color: #b9f6ca;
}

.hero-badge:nth-child(3) {
    color: #b3e5fc;
}

.hero-sap-badge {
    display: block;
    background: none;
    color: #b9f6ca;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 24px;
    border: none;
    border-radius: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-sap-badge strong {
    color: #ffd54f;
    font-weight: 800;
}

/* Bandeau Service à la Personne */
.sap-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #43a047;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.sap-banner-icon {
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sap-banner-icon svg {
    color: #a5d6a7;
}

.sap-banner-text {
    font-size: 15px;
    line-height: 1.5;
}

.sap-banner-text strong {
    color: #ffeb3b;
    font-size: 16px;
}

/* Carte SAP dans Pourquoi Nous */
.pourquoi-card-sap {
    border-top-color: var(--accent) !important;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-pulse {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 109, 0, 0.7), 0 0 60px rgba(255, 109, 0, 0.3); }
}

.section-cta-banner {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
}

.section-cta-banner a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
}

.section-cta-banner a:hover {
    text-decoration: underline;
}

.section-cta-box {
    margin-top: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(10, 31, 68, 0.25);
}

.section-cta-box p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 24px;
}

.section-cta-box .btn {
    font-size: 18px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #f0b429 100%);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    color: var(--white);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    margin: 16px 0 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES ===== */
.services {
    background: linear-gradient(180deg, #f0f4ff 0%, #e8f5e9 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) { border-top-color: var(--accent); }
.service-card:nth-child(2) { border-top-color: var(--green); }
.service-card:nth-child(3) { border-top-color: var(--red); }
.service-card:nth-child(4) { border-top-color: var(--orange); }
.service-card:nth-child(5) { border-top-color: var(--purple); }
.service-card:nth-child(6) { border-top-color: var(--teal); }
.service-card:nth-child(7) { border-top-color: var(--pink); }
.service-card:nth-child(8) { border-top-color: var(--cyan); }

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

/* Cartes service cliquables (avec page dédiée) */
a.service-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.service-card--link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-width: 4px;
}
.service-card-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.3px;
    transition: gap 0.2s;
}
a.service-card--link:hover .service-card-more {
    color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:nth-child(1) .service-icon { background: #e3f2fd; color: var(--accent); }
.service-card:nth-child(2) .service-icon { background: #e8f5e9; color: var(--green); }
.service-card:nth-child(3) .service-icon { background: #fce4ec; color: var(--red); }
.service-card:nth-child(4) .service-icon { background: #fff3e0; color: var(--orange); }
.service-card:nth-child(5) .service-icon { background: #ede7f6; color: var(--purple); }
.service-card:nth-child(6) .service-icon { background: #e0f2f1; color: var(--teal); }
.service-card:nth-child(7) .service-icon { background: #fce4ec; color: var(--pink); }
.service-card:nth-child(8) .service-icon { background: #e0f7fa; color: var(--cyan); }

.service-card:nth-child(1):hover .service-icon { background: var(--accent); color: white; }
.service-card:nth-child(2):hover .service-icon { background: var(--green); color: white; }
.service-card:nth-child(3):hover .service-icon { background: var(--red); color: white; }
.service-card:nth-child(4):hover .service-icon { background: var(--orange); color: white; }
.service-card:nth-child(5):hover .service-icon { background: var(--purple); color: white; }
.service-card:nth-child(6):hover .service-icon { background: var(--teal); color: white; }
.service-card:nth-child(7):hover .service-icon { background: var(--pink); color: white; }
.service-card:nth-child(8):hover .service-icon { background: var(--cyan); color: white; }

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== SECTEURS ===== */
.secteurs {
    background: var(--white);
    position: relative;
}

.secteurs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--teal), var(--green), var(--gold), var(--orange), var(--red), var(--pink), var(--purple));
}

.secteurs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.secteur-card {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0fe 100%);
    padding: 24px 16px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: inherit;
}

.secteur-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.15);
}

.secteur-card.secteur-principal {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.secteur-card.secteur-principal .secteur-icon {
    color: var(--gold);
}

.secteur-card.secteur-principal h3 {
    color: var(--white);
}

.secteur-card.secteur-principal p {
    color: rgba(255, 255, 255, 0.8);
}

.secteur-icon {
    color: var(--accent);
    margin-bottom: 12px;
}

.secteur-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.secteur-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.secteurs-note {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text-gray);
    border-left: 4px solid var(--accent);
}

.secteurs-note a {
    color: var(--accent);
    font-weight: 700;
}

.secteurs-note a:hover {
    text-decoration: underline;
}

/* ===== POURQUOI ===== */
.pourquoi {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 30%, #7c4dff 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pourquoi::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -200px;
    right: -100px;
}

.pourquoi::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.05);
    bottom: -100px;
    left: -50px;
}

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

.pourquoi .section-title {
    color: var(--white);
}

.pourquoi .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--orange));
}

.pourquoi .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pourquoi-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.pourquoi-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.pourquoi-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
    margin-bottom: 12px;
}

.pourquoi-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pourquoi-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ===== AVIS ===== */
.avis {
    background: linear-gradient(180deg, #fff8e1 0%, #fff3e0 50%, #fce4ec 100%);
    overflow: hidden;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Google Rating Badge */
.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: var(--white);
    padding: 24px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #e8e8e8;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.google-rating-info {
    text-align: center;
}

.google-rating-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.google-rating-score span {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 600;
}

.google-rating-stars {
    color: #FBBC05;
    font-size: 22px;
    letter-spacing: 2px;
    margin: 4px 0;
}

.google-rating-count {
    font-size: 14px;
    color: var(--text-gray);
}

.google-rating-count strong {
    color: var(--text-dark);
}

.avis-carousel-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.avis-carousel {
    overflow: hidden;
    margin: 0 60px;
}

.avis-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.avis-carousel-track > .avis-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 28px 30px;
    margin: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.avis-carousel-track > .avis-card::before {
    content: none !important;
    display: none !important;
}

.avis-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.avis-prev {
    left: 0;
}

.avis-next {
    right: 0;
}

.avis-carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.avis-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.avis-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.avis-dot.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(249, 168, 37, 0.4);
}

.avis-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.avis-header .avis-stars {
    margin-bottom: 0;
}

.avis-source {
    font-size: 12px;
    color: var(--text-gray);
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.avis-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
    position: relative;
}

.avis-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    font-family: Georgia, serif;
    color: rgba(249, 168, 37, 0.15);
    line-height: 1;
}

.avis-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.avis-stars {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-shadow: 0 1px 3px rgba(249, 168, 37, 0.3);
}

.avis-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avis-card:nth-child(1) .avis-avatar { background: linear-gradient(135deg, var(--accent), var(--purple)); }
.avis-card:nth-child(2) .avis-avatar { background: linear-gradient(135deg, var(--teal), var(--green)); }
.avis-card:nth-child(3) .avis-avatar { background: linear-gradient(135deg, var(--orange), var(--pink)); }

.avis-avatar {
    width: 48px;
    height: 48px;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.avis-author strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
}

.avis-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== À PROPOS ===== */
.apropos {
    background: var(--white);
}

.apropos-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.apropos-text p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.apropos-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--bg-light);
}

.stat {
    text-align: center;
}

.stat:nth-child(1) .stat-number { color: var(--accent); }
.stat:nth-child(2) .stat-number { color: var(--green); }
.stat:nth-child(3) .stat-number { color: var(--orange); }
.stat:nth-child(4) .stat-number { color: var(--purple); }

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
}

.apropos-placeholder {
    background: linear-gradient(135deg, #e3f2fd 0%, #ede7f6 50%, #e0f2f1 100%);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    color: var(--accent);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px dashed rgba(21, 101, 192, 0.2);
}

.apropos-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

/* ===== FAQ ===== */
.faq {
    background: linear-gradient(180deg, #ede7f6 0%, #e3f2fd 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border-left: 4px solid var(--purple);
    transition: var(--transition);
}

.faq-item:nth-child(2) { border-left-color: var(--accent); }
.faq-item:nth-child(3) { border-left-color: var(--teal); }
.faq-item:nth-child(4) { border-left-color: var(--green); }
.faq-item:nth-child(5) { border-left-color: var(--orange); }
.faq-item:nth-child(6) { border-left-color: var(--pink); }

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--purple);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--purple);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-answer a:hover {
    background: var(--accent);
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--teal), var(--green), var(--gold), var(--orange), var(--red), var(--pink), var(--purple));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item:nth-child(1) .contact-icon { background: linear-gradient(135deg, var(--green), var(--teal)); }
.contact-item:nth-child(2) .contact-icon { background: linear-gradient(135deg, var(--accent), var(--purple)); }
.contact-item:nth-child(3) .contact-icon { background: linear-gradient(135deg, var(--orange), var(--red)); }
.contact-item:nth-child(4) .contact-icon { background: linear-gradient(135deg, var(--gold), var(--orange)); }

.contact-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--accent);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
    color: var(--purple);
}

.contact-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Form box */
.contact-form-box {
    background: linear-gradient(135deg, #f5f7ff 0%, #ede7f6 100%);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(124, 77, 255, 0.1);
}
.cfb-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}
.cfb-sub {
    color: #6b7280;
    font-size: 0.93rem;
    margin-bottom: 20px;
}
.cfb-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cfb-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.cfb-btn svg { flex-shrink: 0; }
.cfb-btn span { display: flex; flex-direction: column; }
.cfb-btn strong { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; }
.cfb-btn small { font-size: 0.82rem; margin-top: 2px; opacity: 0.85; }
.cfb-btn-call { background: var(--primary); color: #fff; }
.cfb-btn-email { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.cfb-divider {
    text-align: center;
    color: #9ca3af;
    font-size: 0.88rem;
    margin: 22px 0 18px;
    position: relative;
}
.cfb-divider::before, .cfb-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e5e7eb;
}
.cfb-divider::before { left: 0; }
.cfb-divider::after { right: 0; }
.cfb-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 4px;
}
.cfb-submit:hover { opacity: 0.9; }

/* Form (legacy kept for inputs) */
.contact-form {
    background: linear-gradient(135deg, #f5f7ff 0%, #ede7f6 100%);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(124, 77, 255, 0.1);
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 8px;
    border: none;
    font-size: 16px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
}

.contact-form .btn:hover {
    box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0a1f44 0%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--accent), var(--purple));
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-blue {
    color: #5ba3f5;
}

.footer-logo .logo-slogan {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col p {
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin-top: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.footer-cities {
    text-align: center;
    padding: 20px 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
}

.footer-cities a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-cities a:hover {
    color: var(--cyan);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.1), transparent);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(124, 77, 255, 0.5);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
    transition: var(--transition);
    z-index: 1001;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 200, 83, 0.5);
}

.chatbot-toggle.shifted {
    bottom: 100px;
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.chatbot-toggle.active .chatbot-badge {
    display: none;
}

.chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-height: 520px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chatbot.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-info strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.chatbot-status {
    font-size: 12px;
    color: var(--green);
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 20px;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: var(--transition);
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 350px;
    min-height: 300px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: messageIn 0.3s ease;
}

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

.chat-message.bot {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-message.user {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    color: var(--white);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chat-message p {
    margin: 0;
}

.chat-message a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.chat-message.user a {
    color: var(--gold);
}

.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}

.suggestion-btn {
    background: var(--white);
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.suggestion-btn:hover {
    background: var(--accent);
    color: var(--white);
}

/* ── Boutons flow chatbot conversion ── */
.cbot-btns {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 6px 4px 4px;
}

.cbot-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--accent);
    background: #fff;
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.84rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.3;
    box-sizing: border-box;
}

.cbot-btn:hover {
    background: var(--accent);
    color: #fff;
}

.cbot-btn--call {
    background: linear-gradient(90deg, #00c853, #00bfa5);
    color: #fff !important;
    border-color: transparent;
    font-size: 0.88rem;
    text-align: center;
    font-weight: 700;
}

.cbot-btn--call:hover {
    box-shadow: 0 4px 14px rgba(0, 200, 83, 0.45);
    background: linear-gradient(90deg, #00b248, #00a896);
}

.cbot-btn--form {
    background: #f5f7fa;
    color: #666;
    border-color: #ddd;
    font-size: 0.81rem;
    text-align: center;
}

.cbot-btn--form:hover {
    background: #eee;
    color: #444;
    border-color: #bbb;
}

.chatbot-input {
    display: flex;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    gap: 8px;
    background: var(--white);
}

.chatbot-input input {
    flex: 1;
    border: 1.5px solid #ddd;
    border-radius: 24px;
    padding: 10px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--accent);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chatbot-input button:hover {
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
}

.chatbot-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-start;
}

.chatbot-typing span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    animation: typing 1.2s ease-in-out infinite;
}

.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-4px); }
}

/* ===== RESPONSIVE ===== */

/* Tablette paysage — mise en page grilles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .secteurs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pourquoi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .apropos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero h1 {
        font-size: 24px;
        padding: 0 20px;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }
}

/* Tablette large (≤ 1180px) — nav légèrement compactée */
@media (max-width: 1180px) {
    .nav-links li a {
        padding: 14px 9px;
        font-size: 12px;
        letter-spacing: 0.2px;
    }
    .horaires { display: none; }
}

/* Tablette standard (≤ 1024px) — nav plus compacte */
@media (max-width: 1024px) {
    .nav-links li a {
        padding: 13px 6px;
        font-size: 11px;
        letter-spacing: 0;
    }
}

/* Petite tablette (≤ 900px) — nav très compacte */
@media (max-width: 900px) {
    .nav-links li a {
        padding: 12px 4px;
        font-size: 10px;
        letter-spacing: 0;
    }
    .header-top .phone-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Petits écrans partagés tablette/mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    .header-top-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 16px;
        gap: 0;
    }

    .header-info {
        gap: 12px;
        width: auto;
        justify-content: flex-start;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-name {
        font-size: 16px;
    }

    .hero {
        min-height: 70vh;
        margin-top: 110px;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 20px;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

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

    .service-card {
        padding: 24px 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 13px;
    }

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

    .pourquoi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pourquoi-card {
        padding: 24px;
    }

    .pourquoi-number {
        font-size: 36px;
    }

    .pourquoi-card h3 {
        font-size: 18px;
    }

    .avis-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .avis-carousel {
        margin: 0 50px;
    }

    .avis-card {
        padding: 24px;
    }

    .apropos-content {
        grid-template-columns: 1fr;
    }

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

    .apropos-placeholder {
        min-height: 250px;
        padding: 40px 24px;
    }

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

    .contact-form-box {
        padding: 28px 20px;
    }
    .contact-form {
        padding: 28px 20px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4::after {
        margin: 8px auto 0;
    }

    .footer-logo .logo {
        justify-content: center;
    }

    .hero-buttons {
        display: block;
        text-align: center;
    }

    .hero-buttons .btn {
        font-size: 13px;
        padding: 12px 20px;
        letter-spacing: 0;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .phone-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 14px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 80px;
        left: 16px;
        right: auto;
    }

    .chatbot-toggle {
        width: 54px;
        height: 54px;
        bottom: 80px;
        right: 16px;
    }

    .chatbot-toggle.shifted {
        bottom: 80px;
    }

    .chatbot {
        bottom: 148px;
        right: 10px;
        left: 10px;
        width: auto;
        max-height: 70vh;
    }

    .chatbot-messages {
        max-height: 50vh;
        min-height: 200px;
    }
}

/* ===== HAMBURGER — Téléphone uniquement (≤ 767px) ===== */
@media (max-width: 767px) {
    /* Espace à droite pour le bouton hamburger */
    .header-top-inner {
        position: relative;
        padding-right: 56px;
    }

    /* Sur mobile la navbar est masquée (height:0), le header ne fait que ~51px */
    .hero { margin-top: 52px; align-items: flex-start; }
    .hero-content { padding-top: 15px; }
    .hero-buttons .btn { width: 100%; justify-content: center; letter-spacing: 0; font-size: 13px; box-sizing: border-box; text-transform: none; white-space: nowrap; }

    /* Masquer le bouton téléphone — barre sticky en bas suffit */
    .header-top .phone-btn {
        display: none;
    }

    /* Bouton hamburger */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        right: 10px;
        top: 6px;
        z-index: 1100;
        padding: 10px 9px;
        background: var(--accent);
        border-radius: 8px;
        border: none;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .mobile-toggle span {
        display: block;
        width: 20px;
        height: 2.5px;
        background: var(--white);
        margin: 2.5px 0;
        border-radius: 2px;
        transition: var(--transition);
    }

    /* Collapse de la navbar */
    .navbar {
        padding: 0;
        background: none;
        height: 0;
        overflow: visible;
    }

    .navbar-inner {
        display: block;
        padding: 0;
    }

    /* Menu overlay plein écran */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
        flex-direction: column;
        z-index: 1050;
        padding-top: 70px;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: 16px 28px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }
}

/* Smartphone */
@media (max-width: 480px) {
    .header-top-inner {
        padding: 8px 12px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .logo-name {
        font-size: 14px;
    }

    .logo-slogan {
        font-size: 10px;
    }

    .phone-btn {
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .phone-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero {
        min-height: 60vh;
        margin-top: 52px;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 22px;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero-content {
        padding: 25px 12px 20px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .container {
        padding: 0 14px;
    }

    .avis-carousel-btn {
        width: 32px;
        height: 32px;
    }

    .avis-carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .avis-carousel {
        margin: 0 40px;
    }

    .avis-carousel-track > .avis-card {
        padding: 20px 16px;
    }

    .avis-carousel-track .avis-card {
        padding: 20px 16px;
    }

    .avis-dots {
        gap: 8px;
    }

    .avis-dot {
        width: 10px;
        height: 10px;
    }

    .google-rating-badge {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .google-rating-score {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .secteurs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .secteur-card {
        padding: 16px 12px;
    }

    .pourquoi-card {
        padding: 20px 16px;
    }

    .avis-card {
        padding: 20px 16px;
    }

    .apropos-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .contact-form-box {
        padding: 20px 14px;
    }
    .cfb-btn { padding: 14px 16px; gap: 12px; }
    .cfb-btn strong { font-size: 0.93rem; }
    .cfb-btn small { font-size: 0.78rem; }
    .contact-form {
        padding: 20px 14px;
    }

    .contact-form .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-col ul li {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px 0;
        font-size: 12px;
    }

    .secteurs-note {
        font-size: 13px;
        padding: 14px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 80px;
        left: 14px;
        right: auto;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 14px;
    }

    .chatbot-toggle.shifted {
        bottom: 80px;
    }

    .chatbot {
        bottom: 144px;
        right: 6px;
        left: 6px;
        width: auto;
        max-height: 75vh;
        border-radius: 12px;
    }

    .chatbot-messages {
        max-height: 55vh;
        min-height: 180px;
        padding: 14px;
    }

    .chatbot-header {
        padding: 12px 14px;
    }

    .chatbot-avatar {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .suggestion-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .chatbot-input {
        padding: 10px 12px;
    }

    .chatbot-input input {
        padding: 8px 14px;
        font-size: 16px;
    }

    .chatbot-input button {
        width: 36px;
        height: 36px;
    }

    .hero-urgence {
        font-size: 13px;
        padding: 8px 16px;
    }

    .section-cta-banner {
        font-size: 14px;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .section-cta-banner a {
        font-size: 16px;
    }

    .sap-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }

    .sap-banner-text {
        font-size: 14px;
    }

    .sap-banner-text strong {
        font-size: 15px;
    }

    .hero-trust-badges {
        gap: 6px 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 0;
    }

    .hero-sap-badge {
        font-size: 13px;
        padding: 0;
    }

    .section-cta-box {
        padding: 24px 16px;
        margin-top: 30px;
    }

    .section-cta-box p {
        font-size: 16px;
    }

    .section-cta-box .btn {
        font-size: 15px;
        padding: 14px 24px;
    }
}

/* Fix responsive: sections avec inline styles */
@media (max-width: 768px) {
    .intervention-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .intervention-step {
        padding: 20px 15px !important;
    }

    .intervention-rapide .btn,
    section .btn.btn-pulse {
        font-size: 0.95rem !important;
        padding: 14px 28px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    section[style] h2 {
        font-size: 1.4rem !important;
    }

    section[style] p {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .intervention-grid {
        gap: 15px !important;
        margin-top: 25px !important;
    }

    .intervention-step {
        padding: 15px 10px !important;
    }

    .intervention-step h3 {
        font-size: 16px !important;
    }

    .intervention-step p {
        font-size: 14px !important;
    }

    .hero .btn.btn-pulse {
        font-size: 0.85rem !important;
        padding: 12px 20px !important;
    }

    .intervention-rapide .btn,
    section .btn.btn-pulse {
        font-size: 0.78rem !important;
        padding: 12px 16px !important;
        letter-spacing: 0 !important;
    }

    section[style] h2 {
        font-size: 1.2rem !important;
    }

    section[style] p {
        font-size: 0.85rem !important;
    }
}

/* iPhone SE et très petits écrans */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 20px;
    }

    .logo-name {
        font-size: 13px;
        letter-spacing: 0;
    }

    .logo-slogan {
        font-size: 9px;
    }

    .phone-btn span {
        display: none;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        letter-spacing: 0;
        padding: 13px 12px;
        box-sizing: border-box;
        text-transform: none;
        white-space: nowrap;
    }

    .pourquoi-number {
        font-size: 32px;
    }

    .pourquoi-card h3 {
        font-size: 16px;
    }

    .stat-number {
        font-size: 22px;
    }
}

/* Fix pour les écrans tactiles - désactiver les effets hover */
@media (hover: none) {
    .service-card:hover,
    .secteur-card:hover,
    .pourquoi-card:hover,
    .avis-card:hover {
        transform: none;
    }

    .phone-btn:hover {
        transform: none;
        box-shadow: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .btn-outline:hover {
        transform: none;
    }
}

/* Fix pour l'encoche et barre de navigation iPhone (safe areas) */
@supports (padding: max(0px)) {
    .header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .footer-bottom {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 10px));
    }
}

@media (max-width: 768px) {
    @supports (padding: max(0px)) {
        .back-to-top {
            bottom: max(80px, calc(env(safe-area-inset-bottom) + 80px));
        }
        .chatbot-toggle {
            bottom: max(80px, calc(env(safe-area-inset-bottom) + 80px));
        }
    }
}

/* Orientation paysage sur mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }
}

/* ============================================
   PAGES VILLES — UPGRADE VISUEL 2026
   ============================================ */

/* H2 avec bordure colorée à gauche */
.landing-content h2 {
    position: relative;
    padding-left: 18px;
}

.landing-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.1em;
    bottom: 0.1em;
    width: 4px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--teal) 100%);
    border-radius: 2px;
}

/* H3 style carte visuel */
.landing-content h3 {
    background: linear-gradient(90deg, var(--bg-light) 0%, rgba(232,240,254,0) 100%);
    border-left: 4px solid var(--accent);
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 28px;
    color: var(--primary);
}

/* Puces ul/li améliorées */
.landing-content > ul > li,
.landing-content > p + ul > li {
    padding-left: 4px;
    margin-bottom: 10px;
}

/* ---- Stats band ---- */
.city-stats-band {
    display: flex;
    justify-content: stretch;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    margin: 32px 0;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(10,31,68,0.2);
}

.city-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.city-stat:last-child {
    border-right: none;
}

.city-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.city-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    display: block;
}

/* ---- Avantages grid ---- */
.city-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0 28px;
}

.city-advantage-card {
    background: #fff;
    border: 1px solid #dde6ff;
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(10,31,68,0.07);
    transition: var(--transition);
}

.city-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(10,31,68,0.13);
    border-color: var(--accent);
}

.city-advantage-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.city-advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
    background: none;
    border-left: none;
    padding: 0;
    border-radius: 0;
}

.city-advantage-card p {
    font-size: 0.87rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ---- SAP highlight ---- */
.city-sap-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.city-sap-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
}

.city-sap-text {
    font-size: 0.97rem;
    color: #1b5e20;
    line-height: 1.6;
}

.city-sap-text strong {
    color: #1b5e20;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
}

/* ---- Responsive city visual blocks ---- */
@media (max-width: 768px) {
    .city-stats-band {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .city-stat {
        border-right: 1px solid rgba(255,255,255,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .city-stat:nth-child(2),
    .city-stat:nth-child(4) {
        border-right: none;
    }

    .city-stat:nth-child(3),
    .city-stat:nth-child(4) {
        border-bottom: none;
    }

    .city-advantages {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .city-sap-highlight {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .city-stat-number {
        font-size: 1.6rem;
    }

    .city-sap-highlight {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .landing-content h2 {
        padding-left: 14px;
    }

    .landing-content h3 {
        padding: 8px 12px;
        font-size: 1rem;
    }
}


/* ============================================================
   VILLE CARDS — Design premium
   ============================================================ */

.ville-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.ville-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Barre couleur en haut — Var */
.ville-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 0;
}

/* Barre couleur en haut — Alpes-Maritimes */
.ville-card.am::before {
    background: linear-gradient(90deg, var(--purple) 0%, #4a4a9a 100%);
}

.ville-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(10, 31, 68, 0.14);
}

/* HEADER */
.ville-card-header {
    padding: 22px 22px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.ville-card-header h3 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.ville-dept-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    margin-top: 2px;
}

.ville-card.am .ville-dept-badge {
    background: linear-gradient(135deg, var(--purple), #4a4a9a);
}

/* BODY */
.ville-card-body {
    padding: 4px 22px 16px;
    flex: 1;
    color: #555;
    line-height: 1.75;
    font-size: 0.9rem;
}

.ville-card-body a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(21,101,192,0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}

.ville-card-body a:hover {
    text-decoration-color: var(--accent);
}

/* FOOTER */
.ville-card-footer {
    padding: 12px 22px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid #f0f4f8;
}

.ville-card-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.87rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
    flex: 1;
}

.ville-card-link:hover {
    gap: 8px;
}

.ville-card-tel {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.83rem;
    background: linear-gradient(90deg, #00c853, #00bfa5);
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ville-card-tel:hover {
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.45);
    transform: translateY(-1px);
}

/* Tablette : 2 colonnes */
@media (max-width: 1024px) {
    .ville-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Mobile : 1 colonne, footer empilé, padding réduit */
@media (max-width: 580px) {
    .ville-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }
    .ville-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(10, 31, 68, 0.07);
    }
    .ville-card-header {
        padding: 14px 14px 8px;
    }
    .ville-card-header h3 {
        font-size: 0.95rem;
    }
    .ville-dept-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    .ville-card-body {
        padding: 4px 14px 10px;
        font-size: 0.86rem;
        line-height: 1.65;
    }
    .ville-card-footer {
        padding: 10px 14px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .ville-card-link {
        justify-content: center;
        flex: unset;
        font-size: 0.84rem;
        padding: 6px 0;
    }
    .ville-card-tel {
        text-align: center;
        font-size: 0.84rem;
        padding: 9px 14px;
    }
}

/* ============================================================
   CONVERSION UPGRADE — Machine à appels entrants
   ============================================================ */

/* ===== MOBILE STICKY CALL BUTTON ===== */
.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 14px 16px;
    background: linear-gradient(90deg, #00c853 0%, #00bfa5 100%);
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    text-decoration: none;
    gap: 10px;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.mobile-sticky-call svg {
    animation: stickyPhoneShake 3s ease-in-out infinite;
    flex-shrink: 0;
}

/* Masquer la barre d'appel quand le chatbot est ouvert */
body:has(.chatbot.active) .mobile-sticky-call {
    display: none !important;
}

@keyframes stickyPhoneShake {
    0%, 80%, 100% { transform: rotate(0deg) scale(1); }
    82% { transform: rotate(-18deg) scale(1.1); }
    84% { transform: rotate(18deg) scale(1.1); }
    86% { transform: rotate(-12deg); }
    88% { transform: rotate(12deg); }
    90% { transform: rotate(0deg) scale(1); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--primary);
    padding: 0;
    flex-wrap: nowrap;
    overflow: hidden;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 16px;
    border-right: 1px solid rgba(255,255,255,0.12);
    text-align: left;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.trust-item-text strong {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 19px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}

.trust-item-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== ZONE CARDS (Secteurs section redesign) ===== */
.zones-intro-text {
    max-width: 700px;
    margin: 0 auto 36px;
    text-align: center;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 1rem;
}

.zones-dept-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.zones-dept-badge {
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.zones-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 860px;
    margin: 0 auto 32px;
}

.zone-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    background: #f5f8ff;
    margin-bottom: 8px;
    transition: all 0.25s ease;
    border: 1px solid #e3ecff;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

.zone-link-item:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateX(4px);
}

.zone-link-item::before {
    content: '📍';
    font-size: 14px;
    flex-shrink: 0;
}

.zone-link-item:hover::before {
    content: '→';
}

.zones-more-row {
    display: none;
}
.zones-more-row.visible {
    display: block;
}

.zones-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px auto 0;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 11px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.zones-toggle-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21,101,192,0.25);
}
.zones-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}
.zones-toggle-btn.open .toggle-icon {
    transform: rotate(180deg);
}

.zones-note {
    background: #f0f7ff;
    border: 1px solid #c5d8f8;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 28px;
}

.zones-note strong {
    color: var(--primary);
}

.zones-note a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.zones-note a:hover {
    text-decoration: underline;
}

/* ===== IMPROVED INTERVENTION STEPS ===== */
.intervention-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    position: relative;
}

.intervention-steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 14px);
    right: calc(16.66% + 14px);
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    z-index: 0;
}

.intervention-step-v2 {
    background: white;
    border-radius: 18px;
    padding: 36px 24px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #e8f0fe;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.intervention-step-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(21,101,192,0.15);
}

.step-num-circle {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(21,101,192,0.35);
    border: 4px solid white;
    outline: 3px solid rgba(21,101,192,0.2);
}

.intervention-step-v2 h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.intervention-step-v2 p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
}

.intervention-step-v2 p a {
    color: var(--accent);
    font-weight: 700;
}

/* ===== BIG CALL CTA (section centrale) ===== */
.big-cta-band {
    background: linear-gradient(135deg, #0a1f44 0%, #1565c0 100%);
    padding: 64px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.big-cta-band::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.big-cta-band::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.big-cta-band .container {
    position: relative;
    z-index: 1;
}

.big-cta-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.big-cta-title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.big-cta-title span {
    color: var(--gold);
}

.big-cta-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-call-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #00c853, #00bfa5);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 800;
    padding: 22px 52px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,200,83,0.45);
    animation: bigCallPulse 2.5s ease-in-out infinite;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call-big:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 16px 50px rgba(0,200,83,0.65);
    animation: none;
}

.btn-call-big svg {
    animation: stickyPhoneShake 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bigCallPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(0,200,83,0.45); }
    50% { box-shadow: 0 8px 55px rgba(0,200,83,0.75), 0 0 80px rgba(0,191,165,0.25); }
}

.cta-sub-reassurance {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cta-sub-reassurance span::before {
    content: '✓ ';
    color: var(--green);
}

/* ===== IMPROVED SECTION TITLES ===== */
.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* ===== PHONE BTN IMPROVEMENTS ===== */
.phone-btn-urgency {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}
.phone-btn-urgency .phone-small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .trust-bar { flex-wrap: wrap; }
    .trust-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .trust-item:nth-child(2n) { border-right: none; }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }
    .intervention-steps-grid::before { display: none; }
}

@media (max-width: 768px) {
    .mobile-sticky-call { display: flex; }
    body:has(.mobile-sticky-call) { padding-bottom: 68px; }
    
    .trust-bar { gap: 0; }
    .trust-item { flex: 0 0 50%; padding: 14px 12px; gap: 10px; }
    .trust-item-icon { width: 36px; height: 36px; font-size: 16px; }
    .trust-item-text strong { font-size: 16px; }

    .zones-cols { grid-template-columns: 1fr; gap: 24px; }
    
    .intervention-steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .intervention-steps-grid::before { display: none; }
    
    .big-cta-title { font-size: 1.5rem; }
    .btn-call-big { font-size: 18px; padding: 18px 36px; }
    .big-cta-band { padding: 48px 16px; }
}

@media (max-width: 480px) {
    .trust-item { flex: 0 0 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); justify-content: flex-start; padding: 14px 24px; }
    .trust-item:last-child { border-bottom: none; }
    .trust-item-text strong { font-size: 18px; }
    .trust-item-text span { font-size: 11px; }

    .zones-cols { grid-template-columns: 1fr; }

    .big-cta-title { font-size: 1.3rem; }
    .btn-call-big { font-size: 14px; padding: 14px 20px; width: 100%; justify-content: center; letter-spacing: 0; }
    
    .phone-btn { font-size: 14px; padding: 9px 14px; }
}

/* ===== OVERFLOW FIXES tablet/mobile ===== */
.big-cta-band,
.section.pourquoi {
    max-width: 100%;
    overflow-x: hidden;
}

.big-cta-band::before,
.big-cta-band::after {
    pointer-events: none;
}

@media (max-width: 768px) {
    .big-cta-eyebrow {
        font-size: 11px;
        padding: 5px 14px;
        white-space: normal;
        word-break: break-word;
    }
    .cta-sub-reassurance {
        gap: 4px;
        font-size: 12px;
    }
    .cta-sub-reassurance span {
        flex: 0 0 auto;
    }
    .zones-note {
        word-break: break-word;
    }
}

@media (max-width: 900px) {
    .pourquoi-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        overflow: hidden;
    }
}

/* ===== FEATURED IMAGE — blog & service pages ===== */
.featured-img {
    max-width: 900px;
    margin: 48px auto 48px;
    padding: 0 20px;
}
.featured-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    object-fit: cover;
    max-height: 460px;
}
@media (max-width: 768px) {
    .featured-img { margin: 28px auto 28px; padding: 0 12px; }
    .featured-img img { border-radius: 10px; max-height: 220px; }
}

/* ===================================================
   SECTION SECTEURS — ULTRA CONVERSION v2
   =================================================== */

/* MICRO-TRIGGERS BAR */
.ztriggers-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 28px auto 36px;
    max-width: 820px;
}
.ztrigger-item {
    background: linear-gradient(135deg, #f0f6ff, #e4eeff);
    border: 1px solid #c5d8f8;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    transition: all 0.2s ease;
}
.ztrigger-item:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(21,101,192,0.25);
}

/* CARTE LEAFLET */
.zmap-wrapper {
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    margin: 0 auto 32px;
    max-width: 900px;
    border: 1px solid #dde8f5;
}
.zmap-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #f6f9ff;
    border-bottom: 1px solid #e0ebf8;
    flex-wrap: wrap;
}
.zmap-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.zmap-badge-83 { background: #e6f4e6; color: #2d6a2d; border: 1px solid #a8d4a8; }
.zmap-badge-06 { background: #e8edf9; color: #2a3a7a; border: 1px solid #b0bce0; }
.zmap-hint { font-size: 12px; color: #888; font-style: italic; margin-left: auto; }
#leaflet-map { height: 420px; width: 100%; }
.zmap-leaflet-pin { background: none !important; border: none !important; }
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    font-family: 'Montserrat', sans-serif;
}
.leaflet-popup-tip-container { display: none; }

/* POPUPS LEAFLET */
.sos-leaflet-popup .leaflet-popup-content-wrapper {
    border-radius: 14px !important;
    padding: 0 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18) !important;
    border: 1px solid #e0e8f5;
    overflow: hidden;
}
.sos-leaflet-popup .leaflet-popup-content {
    margin: 0 !important;
    width: auto !important;
}
.sos-map-popup {
    padding: 16px 18px;
    font-family: 'Montserrat', sans-serif;
    min-width: 200px;
}
.smp-city {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 800;
    color: #0a1f44;
}
.smp-sub {
    margin: 0 0 12px;
    font-size: 12px;
    color: #888;
}
.smp-btn {
    display: block;
    color: white !important;
    text-align: center;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: opacity 0.2s;
}
/* Var (83) → vert */
.smp-btn-83 { background: linear-gradient(135deg, #2e7d32, #43a047); }
/* Alpes-Maritimes (06) → bleu */
.smp-btn-06 { background: linear-gradient(135deg, #1565c0, #1e88e5); }
.smp-btn:hover { opacity: 0.85; }

/* ═══════════════════════════════════════════════
   PAGES VILLES — STRUCTURE V2
   ═══════════════════════════════════════════════ */

/* Réassurance strip */
.city-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    background: #f0f7ff;
    border: 1px solid #d0e4f7;
    border-radius: 14px;
    padding: 20px 24px;
    margin: 32px 0;
}
.city-reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a1f44;
}
.cr-icon { font-size: 1.2rem; }

/* Section générique ville */
.city-section {
    margin: 0 0 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #f0f0f0;
}
.city-section:last-of-type { border-bottom: none; }
.city-section-light {
    background: #f6f9ff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #dde8f5;
    border-bottom: none;
}
.city-section h2 {
    color: var(--primary);
    font-size: 1.55rem;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Grille services */
.city-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.city-service-card {
    background: #fff;
    border: 1px solid #e0ebf5;
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.city-service-card:hover {
    box-shadow: 0 6px 20px rgba(21,101,192,0.12);
    transform: translateY(-3px);
}
.csc-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.city-service-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
}
.city-service-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* CTA milieu de page */
.city-mid-cta {
    background: linear-gradient(135deg, #0a1f44 0%, #1565c0 100%);
    border-radius: 16px;
    padding: 36px 30px;
    text-align: center;
    margin: 0 0 48px;
    color: white;
}
.city-mid-cta-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
}
.city-mid-cta-sub {
    font-size: 0.95rem;
    opacity: 0.88;
    margin: 0 0 20px;
}
.city-mid-cta-btn {
    display: inline-block;
    background: #f9a825;
    color: #0a1f44 !important;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.city-mid-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
/* Force couleur blanche sur textes du CTA milieu (override landing-content p) */
.city-mid-cta-title,
.city-mid-cta-sub {
    color: #ffffff !important;
}
/* Alias city-nearby-card (structure alternative) */
.city-nearby-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: white;
    border: 1px solid #dde8f5;
    border-radius: 12px;
    padding: 14px 12px;
    text-decoration: none !important;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.city-nearby-card:hover {
    box-shadow: 0 4px 14px rgba(21,101,192,0.14);
    transform: translateY(-2px);
}
.city-nearby-card strong {
    font-weight: 700;
    color: #1565c0;
    font-size: 0.9rem;
    display: block;
}
.city-nearby-card span {
    font-size: 0.78rem;
    color: #888;
    display: block;
}

/* Avantages */
.city-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 28px;
}
.city-advantage-card {
    background: #fff;
    border: 1px solid #e0ebf5;
    border-radius: 14px;
    padding: 20px 18px;
}
.city-advantage-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.city-advantage-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px;
}
.city-advantage-card p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.6; }

/* SAP highlight */
.city-sap-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 14px;
    padding: 20px 22px;
    margin-top: 8px;
}
.city-sap-icon { font-size: 2rem; flex-shrink: 0; }
.city-sap-text { font-size: 0.9rem; color: #5d4037; line-height: 1.6; }
.city-sap-text strong { display: block; margin-bottom: 4px; color: #4e342e; font-size: 0.95rem; }

/* Steps */
.city-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.city-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8f0fe;
    border-radius: 12px;
    padding: 18px 20px;
}
.city-step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.city-step-content strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.city-step-content p { margin: 0; font-size: 0.9rem; color: #666; }

/* Grille villes voisines */
.city-nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.city-nearby-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: white;
    border: 1px solid #dde8f5;
    border-radius: 12px;
    padding: 14px 12px;
    text-decoration: none !important;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.city-nearby-link:hover {
    box-shadow: 0 4px 14px rgba(21,101,192,0.14);
    transform: translateY(-2px);
}
.cln-icon { font-size: 1.3rem; }
.cln-name { font-weight: 700; color: #1565c0; font-size: 0.9rem; }
.cln-desc { font-size: 0.78rem; color: #888; }
.city-nearby-footer { font-size: 0.9rem; color: #666; margin-top: 12px; }
.city-nearby-footer a { color: var(--accent); }

/* Stats band */
.city-stats-band {
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #0a1f44, #1565c0);
    border-radius: 14px;
    padding: 24px 16px;
    margin: 0 0 32px;
    flex-wrap: wrap;
}
.city-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 120px;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
    color: white;
}
.city-stat:last-child { border-right: none; }
.city-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}
.city-stat-label { font-size: 0.78rem; opacity: 0.82; text-align: center; margin-top: 4px; }

/* Image hero ville */
.city-img-hero {
    margin: 0 0 32px;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}
.city-img-hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* FAQ */
.faq-section { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.faq-section details {
    background: #fff;
    border: 1px solid #e0ebf5;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
}
.faq-section details[open] { border-color: #1565c0; }
.faq-section summary {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}
.faq-section summary::after { content: '+'; font-size: 1.3rem; color: #1565c0; flex-shrink: 0; margin-top: 2px; }
.faq-section details[open] summary::after { content: '−'; }
.faq-section details p { margin: 12px 0 0; font-size: 0.88rem; color: #555; line-height: 1.7; }

/* Responsive pages villes */
@media (max-width: 900px) {
    .city-services-grid { grid-template-columns: repeat(2, 1fr); }
    .city-nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .city-advantages { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .city-reassurance { gap: 10px 16px; padding: 16px; }
    .city-services-grid { grid-template-columns: 1fr; }
    .city-nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .city-advantages { grid-template-columns: 1fr; }
    .city-section-light { padding: 24px 18px; }
    .city-mid-cta { padding: 28px 20px; }
    .city-mid-cta-title { font-size: 1.15rem; }
    .city-mid-cta-btn { font-size: 0.95rem; padding: 13px 24px; }
    .city-step { flex-direction: column; }
    .city-stats-band { gap: 8px; }
    .city-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px; }
    .city-stat:last-child { border-bottom: none; }
}

/* TRUST BAR */
.ztrust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto 36px;
    max-width: 900px;
}
.ztrust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8faff;
    border: 1px solid #dce8ff;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14px;
    color: #334;
    flex: 1 1 260px;
    min-width: 220px;
}
.ztrust-icon { font-size: 20px; flex-shrink: 0; }

/* CTA BLOCK */
.zcta-block {
    text-align: center;
    margin: 0 auto 44px;
}
.zcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #e65100, #f57c00);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    padding: 20px 36px;
    box-shadow: 0 8px 30px rgba(230,81,0,0.40);
    transition: all 0.3s ease;
    max-width: 580px;
    width: 100%;
}
.zcta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(230,81,0,0.50);
    background: linear-gradient(135deg, #bf360c, #e64a19);
}
.zcta-icon { font-size: 28px; flex-shrink: 0; }
.zcta-text { display: flex; flex-direction: column; align-items: flex-start; }
.zcta-main {
    font-size: 17px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.zcta-sub {
    font-size: 12px;
    opacity: 0.88;
    margin-top: 4px;
    font-weight: 500;
}

/* SEO LIST */
.zseo-section {
    max-width: 900px;
    margin: 0 auto 32px;
}
.zseo-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e3ecff;
}
.zseo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.zseo-col { display: flex; flex-direction: column; gap: 0; }
.zseo-dept-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e3ecff;
}

/* RESPONSIVE CARTE */
@media (max-width: 768px) {
    .ztriggers-bar { gap: 8px; }
    .ztrigger-item { font-size: 12px; padding: 8px 14px; }
    .zmap-hint { display: none; }
    .zmap-legend { gap: 8px; padding: 10px 14px; }
    .ztrust-bar { flex-direction: column; }
    .ztrust-item { flex: none; }
    .zcta-btn { padding: 16px 20px; gap: 12px; }
    .zcta-main { font-size: 15px; }
    .zseo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .zcta-btn { border-radius: 12px; }
    .zcta-main { font-size: 14px; }
    .zcta-icon { font-size: 22px; }
}

/* Override: boutons au-dessus de la barre sticky mobile */
@media (max-width: 768px) {
    .back-to-top { bottom: 80px !important; }
    .chatbot-toggle { bottom: 80px !important; }
    .chatbot-toggle.shifted { bottom: 80px !important; }
}
