/* =============================================
   FRANCE WEB SERVICES — DESIGN SYSTEM v2
   Palette : Bleu marine + Cuivre/Bronze + Crème
============================================= */
:root {
    --navy: #0D1B2A;
    --navy-dark: #07111C;
    --navy-light: #162436;
    --copper: #B87333;
    --copper-light: #D4925A;
    --copper-pale: #FDF6EE;
    --cream: #F5F3EF;
    --cream-dark: #ECEAE5;
    --charcoal: #1A1E24;
    --charcoal-mid: #252B33;
    --text-dark: #1E2430;
    --text-mid: #52586A;
    --text-light: #878E9E;
    --white: #FFFFFF;
    --border: rgba(0,0,0,0.09);
    --border-light: rgba(0,0,0,0.05);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);

    /* Aliases compat (ancien code utilise --burgundy et --gold) */
    --burgundy: #0D1B2A;
    --burgundy-dark: #07111C;
    --burgundy-light: #1C2F45;
    --gold: #B87333;
    --gold-light: #D4925A;
    --gold-pale: #FDF6EE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 68px;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184,115,51,0.18);
    display: flex; align-items: center;
    padding: 0 5%;
    gap: 32px;
}
.navbar.scrolled { box-shadow: 0 2px 25px rgba(0,0,0,0.5); }
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.nav-brand-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(184,115,51,0.35);
    color: var(--copper); font-size: 1.2em;
}
.nav-brand-name {
    font-size: 1.1em; font-weight: 600;
    color: #EEE9E0; letter-spacing: 0.2px;
}
.nav-brand-name span { color: var(--copper); }
.nav-links {
    display: flex; align-items: center; gap: 6px;
    list-style: none; margin: 0; flex: 1;
}
.nav-links a {
    color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 0.9em; font-weight: 500; transition: color 0.25s;
    padding: 6px 12px; border-radius: 6px; display: block;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 2px; left: 12px; right: 12px;
    height: 2px; background: var(--copper);
    transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--copper-light); }
.nav-links a.active { color: var(--copper); font-weight: 600; }
.nav-cta {
    background: var(--navy-light) !important;
    border: 1px solid rgba(184,115,51,0.4) !important;
    color: var(--copper) !important;
    padding: 8px 18px !important; border-radius: 8px !important;
    font-weight: 600 !important; transition: all 0.25s !important;
}
.nav-cta:hover {
    background: var(--copper) !important;
    color: var(--navy) !important;
    border-color: var(--copper) !important;
}
.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none; background: #1A2535;
    border: 1px solid rgba(184,115,51,0.2);
    box-shadow: 0 16px 45px rgba(0,0,0,0.5);
    border-radius: 12px; padding: 8px;
    position: absolute; top: 100%; left: 0;
    min-width: 230px; z-index: 200;
    /* Pont invisible : empêche le sous-menu de disparaître au passage */
    margin-top: 0;
    padding-top: 16px;
}
/* Pont transparent qui relie la navbar au sous-menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px;
    background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    background: #1A2535; border-left: none !important;
    border-top: none !important;
    padding: 10px 14px; color: rgba(255,255,255,0.7) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; margin-bottom: 2px;
    font-size: 0.9em;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
    background: rgba(184,115,51,0.1);
    color: var(--copper-light) !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-caret { font-size: 0.7em; margin-left: 4px; }

/* Mobile */
.nav-burger {
    display: none; background: none; border: none;
    font-size: 1.3em; cursor: pointer; color: rgba(255,255,255,0.7);
    margin-left: auto;
}
.mobile-menu {
    display: none; position: fixed; top: 68px; right: 0; bottom: 0;
    width: 280px; background: #0F1C2A;
    border-left: 1px solid rgba(184,115,51,0.2);
    z-index: 999; box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    overflow-y: auto; transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
    display: block;
    padding: 14px 25px; color: rgba(255,255,255,0.7); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95em;
}
.mobile-menu a:hover { color: var(--copper); background: rgba(184,115,51,0.07); }
.mobile-menu a.sub { padding-left: 42px; font-size: 0.88em; color: rgba(255,255,255,0.5); }
.mobile-menu a.sub:hover { color: var(--copper); }

@media(max-width:900px) {
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .mobile-menu { display: block; }
}

/* =============================================
   HERO
============================================= */
.hero {
    position: relative; height: 100vh; min-height: 580px;
    margin-top: 68px; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.16) saturate(0.5);
}
.hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.55), rgba(184,115,51,0.07));
}
.hero-dots {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: radial-gradient(circle, #B87333 1px, transparent 1px);
    background-size: 40px 40px;
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
    width: 100%; display: grid; grid-template-columns: 1fr 400px;
    gap: 55px; align-items: center;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(184,115,51,0.15); border: 1px solid rgba(184,115,51,0.28);
    border-radius: 50px; padding: 6px 16px;
    font-size: 0.82em; color: var(--copper); font-weight: 600;
    margin-bottom: 22px; letter-spacing: 0.5px;
}
.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5em; color: white; line-height: 1.08; margin-bottom: 20px;
}
.hero-title em { color: var(--copper); font-style: italic; }
.hero-desc {
    font-size: 1em; color: rgba(255,255,255,0.62);
    line-height: 1.85; margin-bottom: 32px; font-weight: 300; max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-tags { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tag {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.8em; color: rgba(255,255,255,0.4);
}

/* Price card */
.price-card {
    background: rgba(26,36,53,0.9);
    border: 1px solid rgba(184,115,51,0.25);
    border-radius: 20px; padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.price-card-title {
    font-size: 0.75em; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--copper);
    margin-bottom: 16px; text-align: center;
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9em;
}
.price-row:last-child { border-bottom: none; }
.price-row-name { color: rgba(255,255,255,0.72); }
.price-row-val { color: var(--copper); font-weight: 700; }
.price-row.feat { background: rgba(184,115,51,0.07); border-radius: 8px; padding: 10px 8px; }
.price-row.feat .price-row-name { color: white; }
.price-row.feat .price-row-val { color: var(--copper-light); }
.price-card-cta {
    display: block; text-align: center; margin-top: 18px;
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    color: var(--navy); font-weight: 700; font-size: 0.9em;
    padding: 12px; border-radius: 10px; text-decoration: none;
    transition: opacity 0.2s;
}
.price-card-cta:hover { opacity: 0.88; }

/* =============================================
   STATS BAND
============================================= */
.stats-band {
    background: #0F1C2A;
    border-top: 1px solid rgba(184,115,51,0.12);
    border-bottom: 1px solid rgba(184,115,51,0.12);
    padding: 28px 5%;
}
.stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 20px; text-align: center;
}
.stat-item {}
.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4em; color: var(--copper);
}
.stat-label { font-size: 0.82em; color: var(--text-light); margin-top: 4px; }

/* =============================================
   SECTIONS
============================================= */
.section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.divider { height: 1px; background: var(--border); margin: 0; }

.tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(184,115,51,0.1); border: 1px solid rgba(184,115,51,0.22);
    color: var(--copper); font-size: 0.8em; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    border-radius: 50px; padding: 5px 14px; margin-bottom: 18px;
}
.heading-xl {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5em; color: var(--text-dark);
    line-height: 1.15; margin-bottom: 16px;
}
.heading-xl em { color: var(--copper); font-style: italic; }
.lead {
    font-size: 1.05em; color: var(--text-mid);
    max-width: 640px; line-height: 1.8; margin-bottom: 40px; font-weight: 300;
}

/* Services aperçu */
.svc-apercu {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px;
}
.svc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px; padding: 24px 20px;
    transition: all 0.3s ease;
}
.svc-card:hover {
    border-color: rgba(184,115,51,0.4);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.svc-emoji { font-size: 2em; display: block; margin-bottom: 12px; }
.svc-name {
    font-weight: 700; font-size: 1em; color: var(--text-dark); margin-bottom: 8px;
}
.svc-desc { font-size: 0.87em; color: var(--text-mid); line-height: 1.65; }
.svc-link {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 14px; font-size: 0.85em; color: var(--copper);
    text-decoration: none; font-weight: 600;
    transition: gap 0.2s;
}
.svc-link:hover { gap: 9px; }

/* Why section */
.why-grid {
    display: grid; grid-template-columns: 1fr 420px;
    gap: 60px; align-items: center; margin-top: 48px;
}
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feat { display: flex; gap: 18px; align-items: flex-start; }
.why-feat-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(184,115,51,0.1); border: 1px solid rgba(184,115,51,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2em; flex-shrink: 0;
}
.why-feat-title { font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.why-feat-text { font-size: 0.9em; color: var(--text-mid); line-height: 1.7; }
.why-img {
    border-radius: 20px; overflow: hidden;
    aspect-ratio: 3/4; position: relative;
    box-shadow: var(--shadow-lg);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-badge {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    background: rgba(13,27,42,0.92);
    border: 1px solid rgba(184,115,51,0.3);
    border-radius: 12px; padding: 14px 16px;
    font-size: 0.85em; color: rgba(255,255,255,0.85);
    font-weight: 500; backdrop-filter: blur(8px);
}

/* Avis */
.avis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.avis-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 16px; padding: 24px;
}
.avis-stars { color: #F59E0B; font-size: 1.1em; margin-bottom: 12px; }
.avis-text { font-size: 0.9em; color: var(--text-mid); line-height: 1.7; font-style: italic; }
.avis-author { font-weight: 700; color: var(--text-dark); margin-top: 16px; }
.avis-role { font-size: 0.82em; color: var(--text-light); }

/* Zones */
.zones-grid {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.zone-pill {
    padding: 8px 18px; border-radius: 50px;
    background: var(--white); border: 1.5px solid var(--border);
    font-size: 0.84em; color: var(--text-mid); font-weight: 500;
    transition: all 0.25s;
}
.zone-pill.main {
    background: rgba(13,27,42,0.12);
    border-color: rgba(13,27,42,0.3);
    color: var(--navy); font-weight: 700;
}
.zone-pill:hover { border-color: var(--copper); color: var(--copper); }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 60px 5%;
    text-align: center;
    color: white;
    width: 100%;
    box-sizing: border-box;
}
.cta-band h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2em;
    margin-bottom: 12px;
    color: white;
    text-align: center;
}
.cta-band h2 em { color: var(--copper); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; text-align: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 10px; font-weight: 600;
    font-size: 0.95em; text-decoration: none; transition: all 0.25s;
    cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(184,115,51,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,115,51,0.45);
}
.btn-outline {
    background: transparent; color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper); }
.btn-lg { padding: 16px 34px; font-size: 1.05em; border-radius: 12px; }

/* Page hero (pages secondaires) */
.page-hero {
    position: relative; height: 320px; margin-top: 68px;
    display: flex; align-items: center; overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.15) saturate(0.4);
}
.page-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.6), rgba(184,115,51,0.06));
}
.page-hero-dots {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: radial-gradient(circle,#B87333 1px,transparent 1px);
    background-size: 40px 40px;
}
.page-hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 5%; width: 100%;
}
.page-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8em; color: white; line-height: 1.1; margin-bottom: 12px;
}
.page-hero-title em { color: var(--copper); font-style: italic; }
.page-hero-sub { font-size: 1em; color: rgba(255,255,255,0.6); font-weight: 300; }

/* Breadcrumb */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82em; color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb i { font-size: 0.7em; }

/* Footer */
footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(184,115,51,0.15);
    padding: 56px 5% 24px;
    color: rgba(255,255,255,0.55);
}
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-brand { }
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; text-decoration: none;
}
.footer-logo-icon {
    width: 34px; height: 34px; border-radius: 9px;
    background: rgba(184,115,51,0.15);
    border: 1px solid rgba(184,115,51,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--copper); font-size: 1em;
}
.footer-logo-name { font-weight: 600; color: #E0DAD0; font-size: 1em; }
.footer-logo-name span { color: var(--copper); }
.footer-desc { font-size: 0.88em; line-height: 1.75; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 0.86em; }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--copper); }
.footer-col h4 {
    font-size: 0.78em; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--copper);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    font-size: 0.88em; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--copper); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 20px; font-size: 0.82em;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--copper); }

/* Floating elements */
.float-phone {
    position: fixed; right: 20px; bottom: 90px; z-index: 997;
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border: 2px solid rgba(184,115,51,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--copper); font-size: 1.2em;
    text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: transform 0.2s;
}
.float-phone:hover { transform: scale(1.1); }

/* Back to top */
.wc-back-top {
    position: fixed; right: 20px; bottom: 150px; z-index: 996;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(13,27,42,0.9);
    border: 1.5px solid rgba(184,115,51,0.35);
    color: var(--copper); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(10px); pointer-events: none;
    transition: all 0.3s ease; box-shadow: var(--shadow);
}
.wc-back-top__ring { display:none; }
.wc-back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wc-back-top:hover { border-color: rgba(184,115,51,0.7); transform: translateY(-2px); }

/* Chatbot */
.wc-bot {
    position: fixed; left: 20px; bottom: 20px;
    width: min(360px,calc(100vw - 40px)); z-index: 998;
    font-family: 'DM Sans', sans-serif;
}
.wc-bot__fab {
    position: absolute; left: 0; bottom: 0;
    width: 58px; height: 58px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--copper); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(13,27,42,0.5);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
    overflow: visible;
}
.wc-bot__fab-ring {
    position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid rgba(184,115,51,0.35);
    animation: wcRingPulse 2.8s ease-in-out infinite; pointer-events: none;
}
.wc-bot__fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 38px rgba(13,27,42,0.6);
}
.wc-bot__fab-icon { position: absolute; transition: opacity 0.2s, transform 0.25s; }
.wc-bot__fab-icon--close { opacity: 0; transform: rotate(-45deg) scale(0.7); }
.wc-bot.open .wc-bot__fab-icon--chat { opacity: 0; transform: scale(0.6); }
.wc-bot.open .wc-bot__fab-icon--close { opacity: 1; transform: rotate(0) scale(1); }
.wc-bot__notif {
    position: absolute; top: -3px; right: -3px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--copper); color: var(--navy);
    font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff; transition: opacity 0.2s;
}
.wc-bot.open .wc-bot__notif { opacity: 0; }
.wc-bot__shell {
    background: #131E2B; border: 1px solid rgba(184,115,51,0.2);
    border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    overflow: hidden;
    transform: translateY(14px) scale(0.95); opacity: 0; pointer-events: none;
    transform-origin: bottom left;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    margin-bottom: 72px;
}
.wc-bot.open .wc-bot__shell { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.wc-bot__header {
    display: flex; align-items: center; gap: 12px; padding: 14px 16px;
    background: linear-gradient(100deg, rgba(13,27,42,0.95), rgba(22,36,54,0.9));
    border-bottom: 1px solid rgba(184,115,51,0.15);
}
.wc-bot__avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(184,115,51,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
    border: 1px solid rgba(184,115,51,0.3);
}
.wc-bot__meta { flex: 1; }
.wc-bot__meta strong { display: block; font-size: 0.9rem; color: #fff; }
.wc-bot__meta span { font-size: 0.75rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; }
.wc-bot__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
    animation: wcBlink 2s ease-in-out infinite;
}
.wc-bot__close { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; padding: 4px; border-radius: 6px; transition: color 0.2s; }
.wc-bot__close:hover { color: #fff; }
.wc-bot__body, .bot-body { padding: 14px; max-height: 280px; overflow-y: auto; }
.wc-bot__msg, .msg {
    display: inline-block; clear: both; padding: 10px 13px;
    border-radius: 16px; margin: 5px 0;
    font-size: 0.88rem; line-height: 1.5; max-width: 88%;
}
.wc-bot__msg--bot, .msg.bot {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.88);
    border-radius: 4px 16px 16px 16px;
}
.wc-bot__msg--user, .msg.user {
    background: rgba(184,115,51,0.2); color: rgba(255,255,255,0.9);
    border-radius: 16px 4px 16px 16px; float: right;
}
.wc-bot__chips, .quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 14px 12px; }
.wc-bot__chip, .chip {
    border: 1px solid rgba(184,115,51,0.3);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.85); padding: 6px 11px;
    border-radius: 999px; font-size: 0.8rem; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all 0.18s ease;
}
.wc-bot__chip:hover, .chip:hover {
    border-color: rgba(184,115,51,0.6);
    background: rgba(184,115,51,0.12); color: #fff;
}
.wc-bot__input, .bot-input {
    display: flex; gap: 8px; padding: 12px 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.wc-bot__input input {
    flex: 1; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
    padding: 9px 13px; color: #fff; font-size: 0.88rem; font-family: inherit;
}
.wc-bot__input input::placeholder { color: rgba(255,255,255,0.35); }
.wc-bot__send, .send {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    border: none; color: var(--navy); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.2s;
}
.wc-bot__send:hover, .send:hover { opacity: 0.85; }

/* Animations */
@keyframes wcRingPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.08); }
}
@keyframes wcBlink {
    0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
@keyframes wcWobble {
    0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); }
}
@keyframes wcFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: wcFadeUp 0.5s ease both; }

/* Responsive */
@media(max-width:1000px) {
    .hero-inner { grid-template-columns: 1fr; }
    .price-card { display: none; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .avis-grid { grid-template-columns: 1fr; }
    .svc-apercu { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
    .heading-xl { font-size: 1.9em; }
    .hero-title { font-size: 2.4em; }
    .page-hero-title { font-size: 2em; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 55px 5%; }
}

/* Utility */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }


/* SEO booster pack */


.seo-hero-local{background:linear-gradient(135deg,#07111C,#0D1B2A 60%,#9B1B2F);color:#fff;padding:120px 5% 70px;margin-top:68px}
.seo-hero-local__inner{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1.15fr .85fr;gap:36px;align-items:center}
.seo-hero-local h1{font-family:"DM Serif Display",serif;font-size:3.1rem;line-height:1.08;margin:0 0 16px}
.seo-hero-local p{font-size:1.02rem;line-height:1.8;color:rgba(255,255,255,.78);max-width:760px}
.seo-hero-local__meta{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 24px}
.seo-chip{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:.86rem}
.seo-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:24px;box-shadow:0 20px 50px rgba(0,0,0,.25)}
.seo-card h3{margin:0 0 10px;color:#fff;font-size:1.1rem}.seo-card ul{margin:0;padding-left:18px;color:rgba(255,255,255,.82);line-height:1.8}
.seo-wrap{max-width:1180px;margin:0 auto;padding:0 5%}.seo-section{padding:54px 0}.seo-grid-2{display:grid;grid-template-columns:1.1fr .9fr;gap:28px}
.seo-panel{background:#fff;border:1px solid #e7dfd7;border-radius:18px;padding:28px;box-shadow:0 12px 30px rgba(0,0,0,.06)}
.seo-panel h2,.seo-panel h3{margin-top:0}.seo-panel p,.seo-panel li{line-height:1.8;color:#4f4f4f}
.seo-faq details{border:1px solid #e7dfd7;background:#fff;border-radius:14px;padding:16px 18px;margin-bottom:12px}.seo-faq summary{font-weight:700;cursor:pointer}
.seo-links{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.seo-links a,.blog-grid a{display:block;background:#fff;border:1px solid #e7dfd7;border-radius:16px;padding:18px 16px;text-decoration:none;color:#1a1a1a;transition:.2s}
.seo-links a:hover,.blog-grid a:hover{transform:translateY(-2px);border-color:#b87333}
.cta-band .btn{white-space:nowrap}.money-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.money-box{background:#fff;border:1px solid #e7dfd7;border-radius:18px;padding:24px}.money-box h3{margin-top:0}.money-box ul{padding-left:18px;line-height:1.8}.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.breadcrumb{font-size:.9rem;color:rgba(255,255,255,.8);margin-bottom:14px}.breadcrumb a{color:#fff;text-decoration:none;opacity:.85}.article-content p{margin:0 0 16px;line-height:1.85;color:#444}.article-content h2{margin:28px 0 10px}
@media(max-width:980px){.seo-hero-local__inner,.seo-grid-2,.money-grid,.seo-links,.blog-grid{grid-template-columns:1fr}.seo-hero-local h1{font-size:2.35rem}}


/* =====================================================
   FIX CTA / BOUTONS — ajouté par ChatGPT
   Corrige le bloc "Votre projet dans notre portfolio ?"
   et les boutons WhatsApp sur fond clair ou foncé.
===================================================== */

/* Bouton doré/cuivre utilisé dans les pages mais absent du CSS */
.btn-gold,
.btn-burgundy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    color: var(--navy) !important;
    border: 1.5px solid transparent;
    box-shadow: 0 8px 24px rgba(184,115,51,0.32);
    text-decoration: none !important;
}

.btn-gold:hover,
.btn-burgundy:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184,115,51,0.42);
    color: var(--navy) !important;
}

/* Bouton WhatsApp / outline lisible par défaut sur fond clair */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: var(--navy) !important;
    border: 1.5px solid rgba(13,27,42,0.28);
    text-decoration: none !important;
}

.btn-outline:hover {
    border-color: var(--copper);
    color: var(--copper) !important;
    background: #fffaf4;
}

/* Si le bouton outline est dans une zone sombre, on le rend aussi visible */
.cta-band .btn-outline,
.hero .btn-outline,
.page-hero .btn-outline,
.hero-section .btn-outline {
    background: rgba(255,255,255,0.10);
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.45);
}

.cta-band .btn-outline:hover,
.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.hero-section .btn-outline:hover {
    background: rgba(255,255,255,0.18);
    color: var(--copper-light) !important;
    border-color: var(--copper-light);
}

/* Bloc CTA — centrage et largeur max */
.cta-inner {
    width: min(760px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-inner h2,
.cta-inner p {
    text-align: center;
}

.cta-btns,
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Correction robuste pour le snippet avec .section + .section-inner */
.section > .section-inner[style*="text-align:center"],
.section > .section-inner {
    margin-left: auto;
    margin-right: auto;
}

.section[style*="var(--cream)"] .section-inner {
    width: min(900px, 100%);
}

.section[style*="var(--cream)"] .hero-actions {
    width: 100%;
    text-align: center;
}

@media (max-width: 640px) {
    .cta-btns,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btns .btn,
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}
