@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@600;700;800&display=swap');
/* ═══════════════════════════════════════════════════════
   SERIN ÉLEC — Shared Styles for Sub-Pages
   ═══════════════════════════════════════════════════════ */

:root {
    --red: #2563EB;
    --orange: #2563EB;
    --yellow: #4F86F7;
    --gold: #F2612A;
    --white: #1B1B2F;
    --off-white: #2D2926;
    --gray-light: #5C5650;
    --gray: #8A8480;
    --bg-dark: #F5F0EB;
    --bg-card: #FFFFFF;
    --bg-elevated: #EDE8E1;
    --border: rgba(0,0,0,0.08);
    --brand-gradient: linear-gradient(160deg, #173FB0 0%, #2563EB 40%, #4F86F7 100%);
    --brand-gradient-h: linear-gradient(90deg, #173FB0 0%, #2563EB 40%, #4F86F7 100%);
    --glow-red: rgba(37,99,235, 0.4);
    --glow-orange: rgba(37,99,235, 0.3);
    --glow-yellow: rgba(79, 134, 247, 0.25);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: rgba(37,99,235, 0.3); color: #fff; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
    padding: 0.8rem 3rem;
    background: rgba(245,240,235,0.95);
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-icon { width: 44px; height: 44px; transition: transform 0.4s; }
.logo-icon img { width:100%; height:100%; object-fit:contain; }
.logo:hover .logo-icon { transform: rotate(10deg) scale(1.08); }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 1.3rem; font-weight: 800; letter-spacing: 2px; background: var(--brand-gradient-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-sub { font-size: 0.5rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-menu { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-menu a { color: #6B6560; text-decoration: none; font-size: 0.75rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: color 0.3s; }
.nav-menu a:hover { color: #2563EB; }
.nav-menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--brand-gradient-h); border-radius: 1px; transition: width 0.4s cubic-bezier(.4,0,.2,1); }
.nav-menu a:hover::after { width: 100%; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 0.6rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.25s ease;
    border: 1px solid var(--border);
    z-index: 6000;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { padding: 0; }
.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.72rem !important;
    font-weight: 500;
    letter-spacing: 0.5px !important;
    color: var(--off-white) !important;
    text-transform: none !important;
    white-space: nowrap;
    transition: all 0.2s;
}
.dropdown-menu li a::after { display: none !important; }
.dropdown-menu li a:hover {
    background: rgba(37,99,235,0.06);
    color: var(--orange) !important;
    padding-left: 1.5rem;
}

.nav-cta { padding: 0.6rem 1.4rem; background: var(--brand-gradient); color: var(--bg-dark); font-weight: 700; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border-radius: 6px; border: none; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--glow-orange); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.menu-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--off-white); border-radius: 2px; transition: all 0.35s; }
.menu-toggle span:nth-child(1){top:0} .menu-toggle span:nth-child(2){top:50%;transform:translateY(-50%)} .menu-toggle span:nth-child(3){bottom:0}
.menu-toggle.active span:nth-child(1){top:50%;transform:translateY(-50%) rotate(45deg)} .menu-toggle.active span:nth-child(2){opacity:0} .menu-toggle.active span:nth-child(3){bottom:50%;transform:translateY(50%) rotate(-45deg)}
.mobile-overlay { position:fixed; inset:0; background:rgba(245,240,235,0.98); backdrop-filter:blur(30px); z-index:4999; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:all .4s; }
.mobile-overlay.open{opacity:1;visibility:visible}
.mobile-nav{text-align:center;display:flex;flex-direction:column;gap:2rem}
.mobile-nav a{color:var(--off-white);text-decoration:none;font-size:1.6rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;opacity:0;transform:translateY(20px);transition:all .4s ease}
.mobile-overlay.open .mobile-nav a{opacity:1;transform:translateY(0)}

/* PAGE HERO BANNER */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 10rem 3rem 5rem;
    color: #f0ebe3;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 40%, rgba(37,99,235,0.12) 0%, transparent 70%);
}
.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative; z-index: 2;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: #f0ebe3;
}
.page-hero h1 .accent {
    background: var(--brand-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #9a958c;
    max-width: 600px;
    line-height: 1.7;
}

/* BREADCRUMBS */
.breadcrumbs {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: #8a8480;
}
.breadcrumbs a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs span { color: #6a655e; }

/* CONTENT SECTIONS */
.page-section {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.page-section.wide {
    max-width: 1200px;
}
.page-section.bg-white {
    background: var(--bg-card);
    max-width: 100%;
}
.page-section.bg-white .section-inner {
    max-width: 900px;
    margin: 0 auto;
}
.page-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--white);
    line-height: 1.2;
}
.page-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 0.8rem;
    color: var(--off-white);
}
.page-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 1rem;
}
.page-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.page-section ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
}
.page-section ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* CTA BOX */
.cta-box {
    background: var(--brand-gradient);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    color: var(--bg-dark);
}
.cta-box h2 {
    color: var(--bg-dark);
    margin-bottom: 0.8rem;
}
.cta-box p {
    color: rgba(45,41,38,0.7);
    margin-bottom: 1.5rem;
}
.cta-box .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--bg-dark);
    color: var(--orange);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.cta-box .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* FAQ */
.faq-list { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:0.8rem; }
.faq-item { background:var(--bg-card); border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:all 0.4s; }
.faq-item:hover { border-color:rgba(37,99,235,0.15); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:1.3rem 1.8rem; cursor:pointer; gap:1rem; font-weight:600; font-size:0.95rem; color:var(--white); transition:color 0.3s; }
.faq-q:hover { color:var(--orange); }
.faq-chevron { width:20px; height:20px; flex-shrink:0; transition:transform 0.4s; stroke:var(--gray); stroke-width:2.5; fill:none; }
.faq-item.open .faq-chevron { transform:rotate(180deg); stroke:var(--orange); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.5s; }
.faq-item.open .faq-a { max-height:300px; }
.faq-a-inner { padding:0 1.8rem 1.5rem; font-size:0.9rem; color:var(--gray-light); line-height:1.8; }

/* SERVICES GRID (for cross-links) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    text-decoration: none;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37,99,235,0.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.service-card .sc-icon {
    font-size: 2rem;
}
.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.6;
}

/* BLOG CARDS */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.blog-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-card-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: rgba(37,99,235,0.1);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}
.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.blog-card p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.6;
}
.blog-card-date {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.8rem;
}

/* CITY LINKS */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.city-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--off-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}
.city-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateX(4px);
}
.city-link::before {
    content: '📍';
    font-size: 0.8rem;
}

/* FOOTER */
footer {
    background: #1a1a2e;
    color: #8a8480;
    padding: 4rem 3rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.footer-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--brand-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-nav a {
    color: #8a8480;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-services a {
    color: #6a655e;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}
.footer-services a:hover { color: var(--orange); }
.footer-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.footer-cities a {
    color: #5a5550;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s;
}
.footer-cities a:hover { color: var(--orange); }
.footer-copy {
    font-size: 0.75rem;
    color: #5a5550;
    margin-bottom: 0.8rem;
}
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.footer-legal a {
    color: #5a5550;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s;
}
.footer-legal a:hover { color: var(--orange); }

/* FAB */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 4000;
}
.fab {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.fab:hover { transform: scale(1.1); }
.fab-phone { background: var(--brand-gradient); }
.fab-phone svg { width: 22px; height: 22px; stroke: var(--bg-dark); fill: none; stroke-width: 2; }
.fab-whatsapp { background: #25D366; }
.fab-whatsapp svg { width: 24px; height: 24px; fill: #fff; }
.fab-devis { background: #fff; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.fab-devis:hover { background: var(--orange); border-color: var(--orange); box-shadow: 0 6px 30px rgba(37,99,235,0.4); }
.fab-devis:hover svg { stroke: white; }
.fab-devis svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 2; transition: stroke 0.3s; }

/* ARTICLE CONTENT */
.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-light);
}
.article-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin: 2.5rem 0 1rem;
}
.article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--off-white);
    margin: 2rem 0 0.8rem;
}
.article-content p {
    margin-bottom: 1.2rem;
}
.article-content strong {
    color: var(--off-white);
}
.article-content a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(37,99,235,0.3);
    transition: border-color 0.3s;
}
.article-content a:hover {
    border-color: var(--orange);
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--gray);
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* TABLE */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}
.price-table th {
    background: var(--brand-gradient);
    color: var(--bg-dark);
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--gray-light);
}
.price-table tr:nth-child(even) td {
    background: var(--bg-elevated);
}
.price-table tr:hover td {
    background: rgba(37,99,235,0.04);
}

/* TABLET */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .city-grid { grid-template-columns: repeat(3, 1fr); }
    .page-section { padding: 4rem 2rem; }
    .page-hero { padding: 9rem 2rem 4rem; }
}

/* MOBILE */
@media (max-width: 768px) {
    /* Nav */
    nav { padding: 0.8rem 1.2rem; }
    .nav-menu { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .mobile-nav a { font-size: 1.4rem; }

    /* Hero */
    .page-hero { padding: 7rem 1.2rem 2.5rem; }
    .page-hero h1 { font-size: 1.8rem; line-height: 1.15; }
    .page-hero p { font-size: 0.95rem; }
    .breadcrumbs { font-size: 0.7rem; margin-bottom: 1rem; flex-wrap: wrap; }

    /* Content */
    .page-section { padding: 2.5rem 1.2rem; }
    .page-section h2 { font-size: 1.5rem; }
    .page-section h3 { font-size: 1.05rem; }
    .page-section p { font-size: 0.92rem; }
    .page-section ul li { font-size: 0.88rem; padding-left: 1.3rem; }

    /* Tables - scrollable on mobile */
    .price-table { font-size: 0.82rem; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
    .price-table th { padding: 0.7rem 0.8rem; font-size: 0.7rem; }
    .price-table td { padding: 0.7rem 0.8rem; font-size: 0.82rem; }

    /* Grids */
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.4rem; }
    .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
    .blog-card-img { height: 150px; }
    .city-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .city-link { padding: 0.6rem 0.8rem; font-size: 0.8rem; }

    /* CTA */
    .cta-box { padding: 2rem 1.2rem; border-radius: 14px; margin: 2rem 0; }
    .cta-box h2 { font-size: 1.4rem; }
    .cta-box p { font-size: 0.9rem; }
    .cta-box .btn-cta { padding: 0.85rem 1.8rem; font-size: 0.9rem; width: 100%; justify-content: center; }

    /* FAQ */
    .faq-q { padding: 1rem 1.2rem; font-size: 0.88rem; }
    .faq-a-inner { padding: 0 1.2rem 1.2rem; font-size: 0.85rem; }

    /* Article */
    .article-meta { flex-direction: row; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
    .article-content { font-size: 0.95rem; line-height: 1.8; }
    .article-content h2 { font-size: 1.35rem; }
    .article-content h3 { font-size: 1.05rem; }

    /* FAB - repositioned */
    .fab-container { bottom: 16px; right: 16px; gap: 8px; }
    .fab { width: 46px; height: 46px; }
    .fab-phone svg { width: 20px; height: 20px; }
    .fab-whatsapp svg { width: 20px; height: 20px; }

    /* Footer */
    footer { padding: 2.5rem 1.2rem 1.5rem; }
    .footer-inner { text-align: center; }
    .footer-nav { gap: 0.8rem; }
    .footer-nav a { font-size: 0.75rem; }
    .footer-services { gap: 0.5rem; }
    .footer-services a { font-size: 0.7rem; }
    .footer-cities { gap: 0.4rem; }
    .footer-cities a { font-size: 0.65rem; }
    .footer-copy { font-size: 0.7rem; }
    .footer-legal { flex-direction: column; align-items: center; gap: 0.4rem; }
    .footer-legal a { font-size: 0.65rem; }
}

/* SMALL MOBILE */
@media (max-width: 380px) {
    .page-hero { padding: 6.5rem 1rem 2rem; }
    .page-hero h1 { font-size: 1.55rem; }
    .page-section { padding: 2rem 1rem; }
    .city-grid { grid-template-columns: 1fr; }
    .cta-box .btn-cta { font-size: 0.85rem; padding: 0.8rem 1.4rem; }
}


/* ===== SERIN — DARK ELECTRIC OVERRIDE (sous-pages, raccord home) ===== */
:root{
  --white:#FFFFFF; --off-white:#EAF0FB; --gray-light:#AEB9D0; --gray:#7E8AA6;
  --bg-dark:#0B0F1A; --bg-card:#141C2F; --bg-elevated:#111829; --border:rgba(255,255,255,0.08);
  --gold:#FFD400;
}
body{font-family:'Plus Jakarta Sans',sans-serif;background:linear-gradient(180deg,#0B0F1A 0%,#0E1830 42%,#0F1A33 56%,#0C1322 78%,#0B0F1A 100%) fixed;color:#AEB9D0}
.page-hero h1,.page-section h2,.page-section h3,.faq-q,.service-card h3,.article-content h2,.article-content h3,.cta-box h2,.blog-card h3,.city-link,.logo-name,.footer-logo span,.price-table th{font-family:'Bricolage Grotesque','Plus Jakarta Sans',sans-serif}
/* NAV */
nav{background:rgba(11,15,26,0.85);border-bottom:1px solid rgba(255,255,255,0.08);box-shadow:0 2px 20px rgba(0,0,0,0.45)}
.nav-menu a{color:#AEB9D0}.nav-menu a:hover{color:#FFD400}
.logo-sub{color:#FFD400}
.nav-cta{background:#FFD400;color:#0B0F1A;box-shadow:0 0 22px rgba(255,212,0,0.45)}
.nav-cta:hover{box-shadow:0 0 38px rgba(255,212,0,0.65)}
.dropdown-menu{background:#141C2F;border:1px solid rgba(255,255,255,0.1);box-shadow:0 16px 50px rgba(0,0,0,0.55)}
.dropdown-menu li a:hover{background:rgba(255,212,0,0.08)!important;color:#FFD400!important}
.menu-toggle span{background:#EAF0FB}
.mobile-overlay{background:rgba(8,11,20,0.98)}
.mobile-nav a{color:#EAF0FB}
/* HERO */
.page-hero{background:radial-gradient(900px 480px at 82% -10%,rgba(59,130,246,0.30),transparent 60%)}
.page-hero h1 .accent{background:none;-webkit-text-fill-color:#FFD400;color:#FFD400;text-shadow:0 0 22px rgba(255,212,0,0.45)}
.page-hero p{color:#AEB9D0}
.breadcrumbs{color:#7E8AA6}.breadcrumbs a{color:#AEB9D0}.breadcrumbs a:hover{color:#FFD400}.breadcrumbs span{color:#5d6a86}
/* CONTENT */
.page-section h2{color:#fff}.page-section h3{color:#fff}
.page-section ul li::before{color:#FFD400}
.page-section.bg-white{background:transparent}
/* CTA */
.cta-box{background:linear-gradient(120deg,#16277a,#3B82F6);color:#fff;border:1px solid rgba(122,162,255,0.3);box-shadow:0 0 28px rgba(59,130,246,0.5)}
.cta-box h2{color:#fff}.cta-box p{color:#cfe0ff}
.cta-box .btn-cta{background:#FFD400;color:#0B0F1A;box-shadow:0 0 22px rgba(255,212,0,0.4)}
/* FAQ */
.faq-item{background:#141C2F;border:1px solid rgba(255,255,255,0.08)}
.faq-q{color:#fff}.faq-q:hover{color:#FFD400}.faq-chevron{stroke:#7E8AA6}.faq-item.open .faq-chevron{stroke:#FFD400}
.faq-a-inner{color:#AEB9D0}
/* CARDS */
.service-card{background:#141C2F;border:1px solid rgba(255,255,255,0.08)}
.service-card:hover{border-color:rgba(255,212,0,0.4);box-shadow:0 0 26px rgba(59,130,246,0.35)}
.service-card h3{color:#fff}
.city-link{background:#141C2F;border:1px solid rgba(255,255,255,0.08);color:#EAF0FB}
.city-link:hover{border-color:#FFD400;color:#FFD400;box-shadow:0 0 18px rgba(255,212,0,0.3)}
.blog-card{background:#141C2F;border:1px solid rgba(255,255,255,0.08)}
.blog-card h3{color:#fff}.blog-card-tag{background:rgba(255,212,0,0.12);color:#FFD400}
/* ARTICLE */
.article-content h2,.article-content h3{color:#fff}.article-content strong{color:#FFD400}
.article-content a{color:#7AA2FF;border-bottom-color:rgba(122,162,255,0.4)}
/* TABLE */
.price-table th{color:#0B0F1A}.price-table td{color:#AEB9D0;border-bottom-color:rgba(255,255,255,0.08)}
.price-table tr:nth-child(even) td{background:#111829}
.price-table tr:hover td{background:rgba(59,130,246,0.08)}
/* FOOTER */
footer{background:#070A12;color:#8b97b5;border-top:1px solid rgba(255,255,255,0.08)}
.footer-nav a,.footer-services a,.footer-cities a,.footer-legal a,.footer-copy{color:#8b97b5}
.footer-nav a:hover,.footer-services a:hover,.footer-cities a:hover,.footer-legal a:hover{color:#FFD400}
/* FAB */
.fab-phone{background:#FFD400;box-shadow:0 0 22px rgba(255,212,0,0.45)}.fab-phone svg{stroke:#0B0F1A}
.fab-devis{background:#141C2F;border:1px solid rgba(255,255,255,0.1)}.fab-devis svg{stroke:#FFD400}
.fab-devis:hover{background:#FFD400}.fab-devis:hover svg{stroke:#0B0F1A}
::selection{background:rgba(255,212,0,0.3);color:#fff}

/* ===== ANIMATIONS SOUS-PAGES ===== */
@keyframes upInS{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
.page-hero .breadcrumbs{animation:upInS .6s .05s both ease-out}
.page-hero h1{animation:upInS .85s .15s both cubic-bezier(.16,1,.3,1)}
.page-hero h1 .accent,.page-hero p{animation:upInS .85s .32s both cubic-bezier(.16,1,.3,1)}
.page-section h2{transition:color .3s}
@media (prefers-reduced-motion: reduce){.page-hero .breadcrumbs,.page-hero h1,.page-hero h1 .accent,.page-hero p{animation:none!important}}

/* ===== HEADER / FOOTER UNIFIES (comme la home) ===== */
.wrap{max-width:1180px;margin:0 auto;padding:0 24px}
.topbar{background:#070A12;color:#9aa6c4;font-size:.78rem;border-bottom:1px solid rgba(255,255,255,.08)}
.topbar .wrap{display:flex;justify-content:center;align-items:center;min-height:38px;gap:2.5rem;flex-wrap:wrap}
.topbar strong{color:#FFD400}.topbar .dot{display:inline-block;width:7px;height:7px;border-radius:50%;background:#FFD400;box-shadow:0 0 14px rgba(255,212,0,.5);margin-right:.55rem;animation:pulse2 1.8s infinite}
@keyframes pulse2{0%,100%{opacity:1}50%{opacity:.35}}
.topbar .tb-r{display:flex;gap:1.4rem;align-items:center}.topbar a{color:#fff;font-weight:700;text-decoration:none}
.hdr{position:sticky;top:0;z-index:5000;background:rgba(11,15,26,.88);backdrop-filter:blur(12px);border-bottom:1px solid rgba(255,255,255,.08)}
.hdr .wrap{display:flex;align-items:center;justify-content:space-between;height:74px;gap:1rem;max-width:none;padding:0 2.6rem;position:relative}
.hdr .brand{display:flex;align-items:center;gap:.7rem;text-decoration:none}.hdr .brand img{width:42px;height:46px}
.hdr .brand .bt b{font-family:'Bricolage Grotesque',sans-serif;font-size:1.2rem;letter-spacing:.05em;color:#fff;display:block;line-height:1}
.hdr .brand .bt small{font-family:'JetBrains Mono',monospace;font-size:.55rem;letter-spacing:.2em;color:#FFD400;text-transform:uppercase}
.hdr .nav{position:absolute;left:50%;top:auto;right:auto;transform:translateX(-50%);display:flex;gap:1.7rem;align-items:center;padding:0;background:none;border:0;box-shadow:none}
.hdr .nav a{font-size:.9rem;font-weight:600;color:#A9B4CE;text-decoration:none}.hdr .nav a:hover{color:#FFD400}
.hdr-cta{display:flex;align-items:center;gap:.7rem}
.btn{display:inline-flex;align-items:center;gap:.55rem;font-weight:800;font-size:.92rem;padding:.9rem 1.4rem;border-radius:11px;border:1.5px solid transparent;transition:.2s;cursor:pointer;white-space:nowrap;text-decoration:none}
.btn svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:2.4;stroke-linecap:round}
.btn-pri{background:#FFD400;color:#0B0F1A;box-shadow:0 0 22px rgba(255,212,0,.45)}.btn-pri:hover{box-shadow:0 0 38px rgba(255,212,0,.65);transform:translateY(-2px)}
.btn-out{background:rgba(255,255,255,.02);color:#fff;border-color:#2B3858}.btn-out:hover{border-color:#60A5FA;color:#fff;box-shadow:0 0 28px rgba(59,130,246,.5)}
.burger{display:none;width:46px;height:46px;border:1px solid #2B3858;border-radius:11px;background:#111829;cursor:pointer;flex-direction:column;gap:4px;align-items:center;justify-content:center}
.burger span{width:18px;height:2px;background:#FFD400;border-radius:2px}
.mnav{position:fixed;inset:0 0 0 auto;width:min(86vw,340px);background:#111829;z-index:6000;transform:translateX(100%);transition:.3s;padding:1.5rem;box-shadow:-20px 0 60px rgba(0,0,0,.5);display:flex;flex-direction:column;gap:.2rem;border:0;border-left:1px solid #2B3858}
.mnav.open{transform:none}.mnav a{padding:.9rem .4rem;border-bottom:1px solid #1E2840;font-weight:700;color:#fff;font-size:1.05rem;text-decoration:none}
.mnav .x{align-self:flex-end;font-size:1.7rem;color:#FFD400;cursor:pointer;border:0;background:0}
.scrim{position:fixed;inset:0;background:rgba(4,7,14,.6);z-index:5500;opacity:0;visibility:hidden;transition:.3s}.scrim.open{opacity:1;visibility:visible}
.page-hero{padding:3.5rem 1.5rem 4.5rem}
footer{background:#070A12;color:#8b97b5;padding:3.6rem 0 1.8rem;border-top:1px solid rgba(255,255,255,.08)}
footer a{color:#aab6d4;text-decoration:none}footer a:hover{color:#FFD400}
.fcols{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.1fr;gap:2rem;padding-bottom:2.4rem;border-bottom:1px solid rgba(255,255,255,.08)}
.fcols h4{color:#fff;font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;margin-bottom:1rem;font-family:'JetBrains Mono',monospace;font-weight:700}
.fcols ul{list-style:none;display:grid;gap:.5rem;font-size:.85rem;padding:0;margin:0}.fcols ul li{padding:0}.fcols ul li::before{display:none}
.fbrand{display:flex;align-items:center;gap:.7rem;margin-bottom:.9rem}.fbrand img{width:40px;height:44px}
.fbrand b{font-family:'Bricolage Grotesque',sans-serif;color:#fff;font-size:1.12rem;letter-spacing:.05em}
.fbot{display:flex;justify-content:space-between;gap:1rem;padding-top:1.4rem;flex-wrap:wrap;font-size:.78rem;color:#73809A}.fbot a{color:#aab6d4;text-decoration:underline}
.rev2{opacity:0;transform:translateY(22px);transition:.65s cubic-bezier(.16,1,.3,1)}.rev2.rin{opacity:1;transform:none}
@media(max-width:920px){.hdr .nav{display:none}.hdr-cta .btn-out{display:none}.burger{display:flex}.fcols{grid-template-columns:1fr 1fr}.hdr .wrap{padding:0 1.2rem}}
@media(max-width:560px){.fcols{grid-template-columns:1fr}.topbar .wrap{gap:1rem}}
@media(prefers-reduced-motion:reduce){.rev2{opacity:1!important;transform:none!important}.topbar .dot{animation:none}}

.sc-icon svg{width:30px;height:30px;stroke:#FFD400;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.city-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.6rem}

.blog-card-img{transition:transform .5s ease}.blog-card{overflow:hidden}.blog-card:hover .blog-card-img{transform:scale(1.06)}

.brand img,.fbrand img,.logo-icon img,.footer-logo img{object-fit:contain!important}

/* ===== BORDURE ELECTRIQUE (hover) ===== */
@property --eb{syntax:'<angle>';initial-value:0deg;inherits:false}
@keyframes ebspin{to{--eb:360deg}}
.svc-card,.service-card,.gal figure,.cta,.ba,.hero-fig,.points,.blog-card{position:relative}
.svc-card::after,.service-card::after,.gal figure::after,.cta::after,.ba::after,.hero-fig::after,.points::after,.blog-card::after{content:'';position:absolute;inset:0;border-radius:inherit;padding:2px;background:conic-gradient(from var(--eb),transparent 0deg,#FFD400 38deg,#60A5FA 90deg,transparent 150deg,transparent 360deg);-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);mask-composite:exclude;opacity:0;transition:opacity .35s ease;pointer-events:none;z-index:3}
.svc-card:hover::after,.service-card:hover::after,.gal figure:hover::after,.cta:hover::after,.ba:hover::after,.hero-fig:hover::after,.points:hover::after,.blog-card:hover::after{opacity:1;animation:ebspin 1.6s linear infinite}
@media(prefers-reduced-motion:reduce){.svc-card::after,.service-card::after,.gal figure::after,.cta::after,.ba::after,.hero-fig::after,.points::after,.blog-card::after{display:none}}

/*MOBILEFIX1*/@media(max-width:920px){.hdr .wrap{padding:0 1.1rem;gap:.6rem}.hdr-cta{display:none}.brand .bt b,.brand .bt small{white-space:nowrap}.brand img{flex:0 0 auto}}@media(max-width:760px){.topbar .tb-r{display:none}.topbar .wrap{justify-content:center;text-align:center;gap:.5rem}.topbar{font-size:.74rem}}
