/* ============================================================
   Cihan Toprakci — feuille de style partagée (site.css)
   Design system extrait de la page d'accueil + classes des
   pages internes. Chargée par toutes les pages sauf la home
   et le devis (qui gardent leur style inline validé).
   Servie via /files/site.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* -------- Tokens -------- */
:root{
  --ink:#0E1726; --ink2:#5a6478; --gold:#C8922A; --goldb:#ECB845;
  --navy:#0E1726; --line:#e8ebf0; --soft:#F5F7FA; --err:#c93030;
  --wrap:1180px;
}

/* -------- Reset / base -------- */
*{margin:0; padding:0; box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:90px; -webkit-text-size-adjust:100%; text-size-adjust:100%;}
body{font-family:'Inter',sans-serif; color:var(--ink); background:#fff; -webkit-font-smoothing:antialiased; overflow-x:hidden; line-height:1.6;}
h1,h2,h3,h4{font-family:'Space Grotesk',sans-serif; letter-spacing:-0.02em; line-height:1.08; overflow-wrap:break-word;}
a{text-decoration:none; color:inherit;}
img{max-width:100%; height:auto;}
::selection{background:rgba(236,184,69,0.3);}

/* -------- Utilities -------- */
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 2rem;}
.section{padding:5.5rem 0;}
.section.tight{padding:4rem 0;}
.section.soft{background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.eyebrow{display:inline-flex; align-items:center; gap:0.7rem; font-size:0.74rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold);}
.center{text-align:center;}
.lead{color:var(--ink2); font-size:1.08rem; line-height:1.65;}
em.hl,.hl{font-style:normal; color:var(--gold);}

/* section heading block */
.s-head{max-width:680px; margin:0 0 3rem;}
.s-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.s-head h2{font-size:clamp(1.9rem,3vw,2.6rem); font-weight:700; line-height:1.1; margin:0.9rem 0 0;}
.s-head h2 em{font-style:normal; color:var(--gold);}
.s-head p{color:var(--ink2); font-size:1.05rem; line-height:1.62; margin-top:1.1rem;}

/* -------- Buttons -------- */
.btn{display:inline-flex; align-items:center; gap:0.55rem; font-family:'Space Grotesk'; font-weight:600; border-radius:11px; transition:transform .18s, box-shadow .18s; cursor:pointer; border:none;}
.btn svg{transition:transform .2s;} .btn:hover svg{transform:translateX(4px);}
.btn-navy{background:var(--navy); color:#fff; font-size:0.96rem; padding:0.9rem 1.5rem;}
.btn-navy:hover{transform:translateY(-2px); box-shadow:0 14px 30px rgba(14,23,38,0.25);}
.btn-gold{background:var(--goldb); color:var(--navy); font-size:0.96rem; padding:0.9rem 1.5rem;}
.btn-gold:hover{transform:translateY(-2px); box-shadow:0 14px 30px rgba(236,184,69,0.45);}
.btn-line{font-family:'Space Grotesk'; font-weight:600; font-size:0.94rem; color:var(--ink); border-bottom:2px solid var(--gold); padding-bottom:2px; display:inline-flex; align-items:center; gap:0.5rem;}
.btn-line svg{transition:transform .25s;} .btn-line:hover svg{transform:translateX(4px);}
.btn-outline{display:inline-flex; align-items:center; gap:0.5rem; font-family:'Space Grotesk'; font-weight:600; font-size:0.95rem; color:var(--ink); padding:0.9rem 1.35rem; border-radius:11px; border:1.5px solid var(--line); background:#fff; cursor:pointer; transition:border-color .2s, background .2s, transform .18s;}
.btn-outline:hover{border-color:var(--gold); background:#fffdf6; transform:translateY(-2px);}
.btn-outline svg{width:17px; height:17px; color:var(--gold);}

/* -------- Nav (verre dépoli, comme la home) -------- */
nav{position:sticky; top:0; z-index:30; background:rgba(255,255,255,0.62); backdrop-filter:blur(18px) saturate(150%); -webkit-backdrop-filter:blur(18px) saturate(150%); border-bottom:1px solid rgba(255,255,255,0.55); box-shadow:0 6px 26px rgba(14,23,38,0.07); transition:background .3s, box-shadow .3s;}
nav.scrolled{background:rgba(255,255,255,0.92); box-shadow:0 10px 32px rgba(14,23,38,0.12);}
.nav-in{display:flex; align-items:center; justify-content:space-between; height:75px;}
.nav-logo img{height:62px; display:block;}
.nav-logo .lg-mark{display:none;}
.nav-mid{display:flex; gap:2rem;}
.nav-mid a{font-weight:500; font-size:0.94rem; color:var(--ink); position:relative; padding:0.2rem 0;}
.nav-mid a::after{content:""; position:absolute; left:0; bottom:-3px; width:0; height:2px; background:var(--gold); transition:width .25s;}
.nav-mid a:hover::after,.nav-mid a.is-active::after{width:100%;}
.nav-mid a.is-active{color:var(--gold);}
.nav-right{display:flex; align-items:center; gap:1.2rem;}
.lang{display:inline-flex; align-items:center; gap:0.4rem; font-size:0.84rem; color:var(--ink2);}
.lang a{color:var(--ink2); transition:color .2s; padding:0.1rem 0.15rem;}
.lang a:hover{color:var(--ink);}
.lang a[aria-current="true"]{color:var(--ink); font-weight:700;}
.nav-home{display:inline-flex; align-items:center; gap:0.45rem; font-size:0.9rem; font-weight:500; color:var(--ink2); transition:color .2s;}
.nav-home:hover{color:var(--ink);} .nav-home svg{width:16px; height:16px;}

/* Bouton menu mobile (hamburger) — créé par site.js, masqué en desktop */
.nav-toggle{display:none; flex-direction:column; justify-content:center; gap:5px; width:44px; height:44px; padding:0; border:none; background:transparent; cursor:pointer; -webkit-appearance:none; appearance:none;}
.nav-toggle span{display:block; width:24px; height:2px; margin:0 auto; border-radius:2px; background:var(--ink); transition:transform .28s ease, opacity .2s ease;}
.nav-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.is-open span:nth-child(2){opacity:0;}
.nav-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* -------- Sous-hero des pages internes -------- */
.subhero{position:relative; overflow:hidden; padding:2.6rem 0 3rem; margin-top:-75px; padding-top:calc(75px + 2.6rem);
  background:
    radial-gradient(900px 380px at 82% -10%, rgba(236,184,69,0.16), transparent 60%),
    radial-gradient(720px 400px at -5% 0%, rgba(47,125,246,0.07), transparent 55%),
    var(--soft);
  border-bottom:1px solid var(--line);}
.subhero .wrap{position:relative; z-index:1;}
.subhero .eyebrow{margin-bottom:1rem;}
.subhero h1{font-size:clamp(2rem,4vw,3rem); font-weight:700; line-height:1.07; margin:0 0 1rem; max-width:20ch;}
.subhero h1 em{font-style:normal; color:var(--gold);}
.subhero.wide h1{max-width:24ch;}
.subhero-lede{color:#36425c; font-size:1.1rem; line-height:1.65; max-width:54ch; margin-bottom:1.8rem;}
.subhero-cta{display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap;}
.subhero-media{position:absolute; right:-2%; top:50%; transform:translateY(-50%); width:40%; max-width:520px; z-index:0; opacity:.92;}
.subhero.has-media h1,.subhero.has-media .subhero-lede{max-width:34ch;}

/* fil d'ariane */
.breadcrumb{display:flex; flex-wrap:wrap; align-items:center; gap:0.4rem; font-size:0.82rem; color:var(--ink2); margin-bottom:1.4rem;}
.breadcrumb a{color:var(--ink2); transition:color .2s;}
.breadcrumb a:hover{color:var(--gold);}
.breadcrumb .sep{opacity:.5;}
.breadcrumb [aria-current]{color:var(--ink); font-weight:500;}

/* -------- Prose (texte long : à propos, légal, articles) -------- */
.prose{max-width:720px; color:#37425a; font-size:1.05rem; line-height:1.75;}
.prose.wide{max-width:820px;}
.prose > * + *{margin-top:1.15rem;}
.prose h2{font-size:1.7rem; color:var(--ink); margin-top:2.6rem; margin-bottom:0.2rem;}
.prose h3{font-size:1.25rem; color:var(--ink); margin-top:2rem; margin-bottom:0.1rem;}
.prose p.lead{font-size:1.18rem; color:var(--ink); font-weight:500; line-height:1.6;}
.prose strong{color:var(--ink); font-weight:600;}
.prose a{color:var(--gold); border-bottom:1px solid rgba(200,146,42,0.35); transition:border-color .2s;}
.prose a:hover{border-color:var(--gold);}
.prose ul,.prose ol{padding-left:1.3rem;}
.prose li{margin-top:0.5rem;}
.prose ul li::marker{color:var(--gold);}
.prose blockquote{border-left:3px solid var(--goldb); padding:0.3rem 0 0.3rem 1.4rem; margin:1.8rem 0; font-style:italic; color:var(--ink); font-size:1.15rem;}
.prose .check{list-style:none; padding-left:0;}
.prose .check li{position:relative; padding-left:2rem;}
.prose .check li::before{content:""; position:absolute; left:0; top:0.45em; width:14px; height:14px;
  background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8922A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");}

/* -------- Feature row (image / texte alternés) -------- */
.feature-row{display:grid; grid-template-columns:1.02fr 0.98fr; gap:clamp(2rem,5vw,4.4rem); align-items:center; margin:0 auto;}
.feature-row + .feature-row{margin-top:5rem;}
.feature-row.flip .fr-media{order:2;}
.fr-media{position:relative;}
.fr-media img{width:100%; border-radius:16px; display:block; border:1px solid var(--line); box-shadow:0 34px 64px -30px rgba(14,23,38,0.5); transition:transform .55s cubic-bezier(.2,.65,.2,1), box-shadow .55s;}
.fr-media img:hover{transform:translateY(-8px) rotate(-1deg); box-shadow:0 50px 90px -34px rgba(14,23,38,0.58);}
.fr-txt .eyebrow{margin-bottom:1rem;}
.fr-txt h2,.fr-txt h3{font-size:clamp(1.5rem,2.4vw,2.1rem); font-weight:700; line-height:1.12; margin-bottom:0.9rem;}
.fr-txt h2 em,.fr-txt h3 em{font-style:normal; color:var(--gold);}
.fr-txt p{color:#45516b; font-size:1.04rem; line-height:1.68; margin-bottom:1.1rem; max-width:46ch;}
@media (prefers-reduced-motion:reduce){ .fr-media img{transition:none;} .fr-media img:hover{transform:none;} }

/* -------- Liste de bénéfices (puces dorées, PAS 3 cartes jumelles) -------- */
.bullets{list-style:none; display:grid; gap:1.1rem;}
.bullets.two{grid-template-columns:1fr 1fr; gap:1.1rem 2.4rem;}
.bullets li{display:flex; gap:0.85rem; align-items:flex-start;}
.bullets li svg{width:22px; height:22px; color:var(--gold); flex:0 0 auto; margin-top:2px;}
.bullets li b{font-family:'Space Grotesk'; font-weight:600; display:block; margin-bottom:0.15rem; color:var(--ink);}
.bullets li span{color:var(--ink2); font-size:0.96rem; line-height:1.55;}

/* -------- Pages service : "pour qui / pas pour qui" -------- */
.who{display:grid; grid-template-columns:1fr 1fr; gap:1.4rem;}
.who-card{background:#fff; border:1px solid var(--line); border-radius:16px; padding:1.7rem;}
.who-card h3{font-size:1.2rem; margin-bottom:1.1rem; display:flex; align-items:center; gap:0.6rem;}
.who-card h3 .ico{width:30px; height:30px; border-radius:9px; display:flex; align-items:center; justify-content:center; flex:0 0 auto;}
.who-card.yes h3 .ico{background:rgba(236,184,69,0.16); color:var(--gold);}
.who-card.no h3 .ico{background:#eef1f6; color:var(--ink2);}
.who-card ul{list-style:none; display:flex; flex-direction:column; gap:0.75rem;}
.who-card li{display:flex; gap:0.6rem; align-items:flex-start; color:#45516b; font-size:0.97rem; line-height:1.5;}
.who-card li svg{width:18px; height:18px; flex:0 0 auto; margin-top:2px;}
.who-card.yes li svg{color:var(--gold);} .who-card.no li svg{color:#b6bdc9;}
.who-card a{color:var(--gold);}

/* -------- Pages service : étapes "comment ça se passe" -------- */
.steps{display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:1.2rem; counter-reset:st;}
.step-c{position:relative; background:#fff; border:1px solid var(--line); border-radius:16px; padding:1.5rem 1.4rem;}
.step-c::before{counter-increment:st; content:"0" counter(st); font-family:'Space Grotesk'; font-weight:700; font-size:1.6rem; color:var(--goldb); display:block; margin-bottom:0.7rem;}
.step-c b{font-family:'Space Grotesk'; font-size:1.05rem; display:block; margin-bottom:0.35rem;}
.step-c p{color:var(--ink2); font-size:0.9rem; line-height:1.55;}

/* -------- Pages service : encadré prix -------- */
.price-box{background:#fff; border:1px solid var(--line); border-radius:20px; padding:2.2rem; box-shadow:0 24px 56px -34px rgba(14,23,38,0.4); display:grid; grid-template-columns:1.2fr 0.8fr; gap:2.4rem; align-items:center;}
.price-box h3{font-size:1.5rem; margin-bottom:0.8rem;}
.price-box p{color:#45516b; line-height:1.7; margin-bottom:1rem;}

/* -------- Mini-liste "inclus" (puces dorées en ligne) -------- */
.mini-inc{list-style:none; display:flex; flex-direction:column; gap:0.55rem; margin:1.2rem 0 1.5rem;}
.mini-inc li{display:flex; align-items:center; gap:0.6rem; font-size:0.95rem; color:#45516b;}
.mini-inc li svg{width:17px; height:17px; color:var(--gold); flex:0 0 auto;}

/* -------- Cartes (réutilisé de la home) -------- */
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem;}
.cards.two{grid-template-columns:repeat(2,1fr);}
.card{position:relative; background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:0 18px 42px -22px rgba(14,23,38,0.22); display:flex; flex-direction:column; transition:transform .45s cubic-bezier(.2,.6,.2,1), box-shadow .45s, border-color .45s;}
.card::before{content:""; position:absolute; top:0; left:0; right:0; height:3px; z-index:3; background:linear-gradient(90deg,var(--goldb),var(--gold)); transform:scaleX(0); transform-origin:left; transition:transform .5s cubic-bezier(.2,.6,.2,1);}
.card:hover{transform:translateY(-9px); box-shadow:0 38px 66px -26px rgba(14,23,38,0.38); border-color:transparent;}
.card:hover::before{transform:scaleX(1);}
.card .ci{position:relative; height:190px; overflow:hidden;}
.card .ci .img{position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .7s cubic-bezier(.2,.6,.2,1);}
.card:hover .ci .img{transform:scale(1.08);}
.card .cb{padding:1.6rem 1.6rem 1.7rem; display:flex; flex-direction:column; flex:1;}
.card h3{font-size:1.32rem; font-weight:700; line-height:1.12; letter-spacing:-0.01em; margin-bottom:0.6rem; color:var(--ink);}
.card p{color:var(--ink2); font-size:0.96rem; line-height:1.6; margin-bottom:1.4rem; flex:1;}
.card .cl{display:inline-flex; align-items:center; gap:0.5rem; font-family:'Space Grotesk'; font-weight:600; font-size:0.93rem; color:var(--ink); align-self:flex-start; transition:color .25s;}
.card .cl .u{position:relative; padding-bottom:3px;}
.card .cl .u::after{content:""; position:absolute; left:0; bottom:0; width:100%; height:2px; background:var(--goldb);}
.card .cl svg{color:var(--gold); transition:transform .25s;}
.card:hover .cl{color:var(--gold);} .card:hover .cl svg{transform:translateX(5px);}
.card.cta{overflow:hidden; border-color:transparent; background:linear-gradient(152deg,#14223a 0%,#0b1320 62%);}
.card.cta::before{display:none;}
.card.cta::after{content:""; position:absolute; inset:0; pointer-events:none; opacity:.85; transition:opacity .5s;
  background:radial-gradient(440px 300px at 112% -12%, rgba(236,184,69,0.26), transparent 62%), radial-gradient(360px 320px at -10% 115%, rgba(47,125,246,0.15), transparent 60%);}
.card.cta:hover::after{opacity:1;}
.card.cta .cb{position:relative; z-index:1; justify-content:center; padding:2rem 1.8rem;}
.card.cta h3{color:#fff;} .card.cta h3 em{font-style:normal; color:var(--goldb);}
.card.cta p{color:#b3bccb;}
.card.cta .b{display:inline-flex; align-items:center; gap:0.55rem; align-self:flex-start; font-family:'Space Grotesk'; font-weight:600; font-size:0.93rem; color:var(--navy); background:var(--goldb); padding:0.75rem 1.3rem; border-radius:10px;}
.card.cta .b svg{transition:transform .25s;} .card.cta:hover .b svg{transform:translateX(4px);}

/* -------- Bandeau CTA pleine largeur (sombre) -------- */
.cta-band{position:relative; overflow:hidden; background:linear-gradient(152deg,#14223a 0%,#0b1320 64%); color:#fff;}
.cta-band::after{content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(620px 360px at 100% -10%, rgba(236,184,69,0.20), transparent 60%), radial-gradient(520px 420px at -6% 120%, rgba(47,125,246,0.14), transparent 60%);}
.cta-band .wrap{position:relative; z-index:1; padding:4rem 2rem; text-align:center; display:flex; flex-direction:column; align-items:center; gap:1.3rem;}
.cta-band h2{font-size:clamp(1.8rem,3vw,2.5rem); font-weight:700; line-height:1.1; max-width:20ch;}
.cta-band h2 em{font-style:normal; color:var(--goldb);}
.cta-band p{color:#aeb8c9; font-size:1.05rem; line-height:1.6; max-width:50ch;}
.cta-band .subhero-cta,.cta-band .row{display:flex; gap:1.2rem; align-items:center; flex-wrap:wrap; justify-content:center;}
.cta-band .btn-line{color:#fff; border-color:var(--goldb);}

/* -------- Comparatif ✓/✗ (réutilisé de la home : front-cmp) -------- */
.front-cmp{display:grid; grid-template-columns:1fr 1fr; gap:1rem;}
.cc{position:relative; background:#fff; border:1px solid var(--line); border-radius:14px; padding:1.15rem 1.25rem;}
.cc span{display:block; font-size:0.78rem; color:var(--ink2); margin-bottom:0.3rem;}
.cc b{font-family:'Space Grotesk'; font-size:1.4rem; display:block; line-height:1.12;}
.cc.old b{color:var(--ink2);}
.cc.new{border-color:var(--goldb); background:linear-gradient(180deg,#fffdf6,#fff); box-shadow:0 14px 34px -20px rgba(200,146,42,0.5);}
.cc.new b{color:var(--gold);}
.cc.new .tag{display:block; margin-top:0.4rem; font-size:0.74rem; color:var(--gold); font-weight:600;}
.cc .mk{position:absolute; top:-10px; right:13px; width:24px; height:24px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 5px 12px rgba(14,23,38,0.16);}
.cc.old .mk{background:#eef1f6; color:var(--ink2);} .cc.new .mk{background:var(--goldb); color:var(--navy);}
.cc .mk svg{width:13px; height:13px;}

/* -------- Drapeaux FR / CH (réutilisé de la home) -------- */
.flagchip{width:42px; height:29px; border-radius:5px; overflow:hidden; display:inline-flex; box-shadow:0 4px 12px rgba(14,23,38,0.12); flex:0 0 auto;}
.flagchip.fr i{flex:1;} .flagchip.fr .b{background:#0055A4;} .flagchip.fr .w{background:#fff;} .flagchip.fr .r{background:#EF4135;}
.flagchip.ch{background:#D52B1E; position:relative;}
.flagchip.ch::before{content:""; position:absolute; left:50%; top:50%; width:16px; height:4.5px; background:#fff; transform:translate(-50%,-50%);}
.flagchip.ch::after{content:""; position:absolute; left:50%; top:50%; width:4.5px; height:16px; background:#fff; transform:translate(-50%,-50%);}

/* -------- Tags / chips d'affichage (réutilisé de la home) -------- */
.chips{display:flex; flex-wrap:wrap; gap:0.55rem;}
.chips span{font-size:0.8rem; font-weight:500; color:#34405a; background:#fff; border:1px solid var(--line); border-radius:30px; padding:0.42rem 0.95rem;}

/* -------- Mockup navigateur (réutilisé de la home : shot) -------- */
.shot{position:relative; display:block; border-radius:13px; overflow:hidden; background:#fff; border:1px solid var(--line); box-shadow:0 34px 64px -26px rgba(14,23,38,0.42); transition:transform .55s cubic-bezier(.2,.6,.2,1), box-shadow .55s;}
.shot:hover{transform:translateY(-7px); box-shadow:0 44px 76px -28px rgba(14,23,38,0.5);}
.shot-bar{display:flex; align-items:center; gap:7px; padding:0.72rem 0.95rem; background:#eef1f6; border-bottom:1px solid var(--line);}
.shot-bar i{width:11px; height:11px; border-radius:50%; background:#d2d8e2;}
.shot-bar .url{margin-left:0.7rem; font-size:0.74rem; color:var(--ink2); background:#fff; border:1px solid var(--line); border-radius:7px; padding:0.28rem 0.75rem; display:inline-flex; align-items:center; gap:0.45rem;}
.shot-bar .url svg{width:11px; height:11px; color:#9aa4b4;}
.shot-img{aspect-ratio:16/10.4; background-size:cover; background-position:top center; transition:background-position 4s ease;}
.shot:hover .shot-img{background-position:bottom center;}

/* -------- Témoignage (réutilisé de la home : ptestimo) -------- */
.ptestimo{position:relative; background:#fff; border:1px solid var(--line); border-radius:14px; padding:2.7rem 1.8rem 1.5rem; max-width:46ch; box-shadow:0 16px 38px -24px rgba(14,23,38,0.26);}
.ptestimo::before{content:"\201C"; position:absolute; top:0.95rem; left:1.25rem; font-family:Georgia,serif; font-weight:700; font-size:3rem; line-height:1; color:var(--goldb);}
.ptestimo p{font-style:italic; font-size:1.04rem; line-height:1.56; color:var(--ink); margin:0 0 0.75rem;}
.ptestimo cite{font-style:normal; font-size:0.85rem; color:var(--ink2); font-weight:600;}

/* -------- FAQ (réutilisé de la home : qa) -------- */
.faq-list{max-width:760px;}
.qa{border-top:1px solid var(--line);} .qa:last-child{border-bottom:1px solid var(--line);}
.qa .q{display:flex; justify-content:space-between; align-items:center; gap:1.5rem; padding:1.4rem 0.2rem; cursor:pointer; font-family:'Space Grotesk'; font-weight:600; font-size:1.06rem; color:var(--ink); list-style:none;}
.qa .q::-webkit-details-marker{display:none;}
.qa .ic{flex:0 0 auto; width:26px; height:26px; position:relative;}
.qa .ic::before,.qa .ic::after{content:""; position:absolute; left:50%; top:50%; width:13px; height:2px; background:var(--gold); border-radius:2px; transform:translate(-50%,-50%); transition:transform .3s;}
.qa .ic::after{transform:translate(-50%,-50%) rotate(90deg);}
.qa[open] .ic::after{transform:translate(-50%,-50%) rotate(0);}
.qa .a{color:var(--ink2); line-height:1.68; font-size:0.98rem; max-width:64ch; padding:0 0.2rem 1.5rem;}
.qa[open] .q{color:var(--gold);}
.qa[open] .a{animation:faqIn .4s ease;}
@keyframes faqIn{from{opacity:0; transform:translateY(-7px);} to{opacity:1; transform:none;}}

/* -------- Section "liens connexes" -------- */
.related{background:var(--soft); border-top:1px solid var(--line);}

/* -------- Carte Leaflet (pages locales / contact) -------- */
.mapwrap{position:relative; min-height:420px; border-radius:18px; overflow:hidden; border:1px solid var(--line); background:#eef1f6;}
.mapwrap .lmap{position:absolute; inset:0; z-index:0;}
.map-badge{position:absolute; z-index:500; top:1rem; left:1rem; display:inline-flex; align-items:center; gap:0.5rem; font-family:'Space Grotesk'; font-weight:600; font-size:0.74rem; color:var(--ink); background:rgba(255,255,255,0.92); backdrop-filter:blur(4px); padding:0.45rem 0.8rem; border-radius:30px; box-shadow:0 6px 18px -8px rgba(14,23,38,0.3);}
.map-badge svg{width:14px; height:14px; color:var(--gold);}
.mk-wrap .mk-dot{position:absolute; left:0; top:0; width:16px; height:16px; border-radius:50%; background:var(--goldb); border:3px solid #fff; box-shadow:0 0 0 4px rgba(236,184,69,0.3), 0 2px 6px rgba(14,23,38,0.35);}
.mk-wrap .mk-lab{position:absolute; left:23px; top:-3px; font-family:'Space Grotesk'; font-weight:700; font-size:12px; color:var(--ink); background:#fff; padding:2px 8px; border-radius:20px; box-shadow:0 3px 10px -2px rgba(14,23,38,0.25); white-space:nowrap;}
.mk-city .mk-cdot{position:absolute; left:0; top:0; width:11px; height:11px; border-radius:50%; background:#5a6478; border:2px solid #fff; box-shadow:0 2px 5px rgba(14,23,38,0.3);}
.mk-city .mk-clab{position:absolute; left:17px; top:-5px; font-weight:600; font-size:11px; color:var(--ink); background:rgba(255,255,255,0.92); padding:1px 6px; border-radius:14px; white-space:nowrap; box-shadow:0 2px 6px -2px rgba(14,23,38,0.25);}
.mk-city.mk-left .mk-clab{left:auto; right:17px;}

/* -------- Reveal au scroll (animé par site.js) -------- */
.reveal{opacity:0; transform:translateY(26px); transition:opacity .85s cubic-bezier(.2,.65,.2,1), transform .85s cubic-bezier(.2,.65,.2,1);}
.reveal.in{opacity:1; transform:none;}
.reveal.d1{transition-delay:.09s;} .reveal.d2{transition-delay:.18s;} .reveal.d3{transition-delay:.27s;} .reveal.d4{transition-delay:.36s;}
.reveal-l,.reveal-r{opacity:0; transition:opacity .9s cubic-bezier(.2,.65,.2,1), transform .9s cubic-bezier(.2,.65,.2,1);}
.reveal-l,.reveal-r{transform:translateY(26px);}
.reveal-l.in,.reveal-r.in{opacity:1; transform:none;}
@media (prefers-reduced-motion:reduce){ .reveal,.reveal-l,.reveal-r{opacity:1 !important; transform:none !important; transition:none !important;} }

/* -------- Métadonnées (articles / légal) -------- */
.post-meta{display:flex; flex-wrap:wrap; align-items:center; gap:0.7rem; font-size:0.85rem; color:var(--ink2); margin-top:1rem;}
.post-meta .dot{opacity:.5;}

/* -------- Footer (réutilisé de la home) -------- */
footer{position:relative; background:radial-gradient(760px 320px at 88% 0%, rgba(236,184,69,0.06), transparent 60%), #0E1726; color:#aeb8c9; padding:4.2rem 0 2rem;}
footer::before{content:""; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(236,184,69,0.45), transparent);}
.foot-top{display:grid; grid-template-columns:1.6fr 1fr 1fr 1.1fr; gap:2.4rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,0.09);}
.foot-brand img{height:92px; max-width:100%; margin-bottom:1rem; margin-left:-22px;}
.foot-brand p{font-size:0.92rem; max-width:30ch; color:#8b96a8;}
.foot-soc{display:flex; gap:0.7rem; margin-top:1.4rem;}
.foot-soc a{width:42px; height:42px; border-radius:11px; background:rgba(236,184,69,0.10); border:1px solid rgba(236,184,69,0.30); color:var(--goldb); display:flex; align-items:center; justify-content:center; transition:background .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;}
.foot-soc a svg{width:19px; height:19px;}
.foot-soc a:hover{transform:translateY(-3px);}
.foot-soc a[aria-label="Instagram"]:hover{background:linear-gradient(45deg,#FEDA75,#FA7E1E,#D62976,#962FBF,#4F5BD5); color:#fff; border-color:transparent;}
.foot-soc a[aria-label="LinkedIn"]:hover{background:#0A66C2; color:#fff; border-color:#0A66C2;}
.foot-soc a[aria-label="GitHub"]:hover{background:#fff; color:#0E1726; border-color:#fff;}
.foot-col h4{color:#fff; font-family:'Space Grotesk'; font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:1.1rem;}
.foot-col a{display:block; font-size:0.92rem; color:#9aa4b4; padding:0.36rem 0; transition:color .2s, padding-left .2s;}
.foot-col a:hover{color:var(--goldb); padding-left:4px;}
.foot-col.contact a{display:flex; align-items:center; gap:0.6rem;}
.foot-col.contact a svg{width:16px; height:16px; color:var(--gold); flex:0 0 auto; transition:color .2s;}
.foot-col.contact a:hover svg{color:var(--goldb);}
.foot-region{display:inline-flex; align-items:center; gap:0.55rem; margin-top:1.2rem; font-size:0.82rem; color:#cdd5e1;}
.foot-region .ff{display:inline-flex; gap:4px;}
.foot-region .fc{height:12px; border-radius:2px; overflow:hidden; display:inline-flex; box-shadow:0 1px 2px rgba(0,0,0,0.35);}
.foot-region .fc.fr{width:18px;} .foot-region .fc.fr i{flex:1;} .foot-region .fc.fr .b{background:#0055A4;} .foot-region .fc.fr .w{background:#fff;} .foot-region .fc.fr .r{background:#EF4135;}
.foot-region .fc.ch{width:12px; background:#D52B1E; position:relative;}
.foot-region .fc.ch::before{content:""; position:absolute; left:50%; top:50%; width:6.5px; height:2px; background:#fff; transform:translate(-50%,-50%);}
.foot-region .fc.ch::after{content:""; position:absolute; left:50%; top:50%; width:2px; height:6.5px; background:#fff; transform:translate(-50%,-50%);}
.foot-bot{display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:1rem; padding-top:1.8rem; font-size:0.82rem; color:#7c879b;}
.foot-bot .fb-l{justify-self:start;} .foot-bot .fb-c{justify-self:center; text-align:center;} .foot-bot .fb-r{justify-self:end;}
.foot-bot a{color:#9aa4b4; transition:color .2s;} .foot-bot a:hover{color:var(--goldb);}

/* -------- Responsive -------- */
@media (max-width:980px){
  .feature-row{grid-template-columns:1fr; gap:2.4rem;}
  .feature-row .fr-media{order:-1 !important; max-width:520px; margin-inline:auto;}
  .fr-txt p{max-width:none;}
  .cards{grid-template-columns:repeat(2,1fr);}
  .front-cmp{grid-template-columns:1fr;}
  .who,.price-box{grid-template-columns:1fr;}
  .subhero-media{display:none;}
  .subhero.has-media h1,.subhero.has-media .subhero-lede{max-width:none;}
  .foot-top{grid-template-columns:1fr 1fr; gap:2rem;}
}
@media (max-width:768px){
  .section{padding:4.2rem 0;}
  .section.tight{padding:3.2rem 0;}
  .feature-row + .feature-row{margin-top:3.4rem;}
  .steps{grid-template-columns:1fr 1fr;}
  .s-head{margin-bottom:2.2rem;}
}
@media (max-width:900px){
  /* Nav : le menu devient un panneau déroulant piloté par le hamburger */
  .nav-toggle{display:flex;}
  .nav-right{margin-left:auto;}
  .nav-mid{
    position:absolute; left:0; right:0; top:100%;
    flex-direction:column; gap:0;
    background:#fff; border-bottom:1px solid var(--line);
    box-shadow:0 22px 40px -22px rgba(14,23,38,0.35);
    padding:0.3rem 0;
    max-height:0; overflow:hidden; opacity:0; visibility:hidden;
    transition:max-height .32s ease, opacity .25s ease, visibility .32s;
  }
  .nav-mid.open{max-height:75vh; opacity:1; visibility:visible;}
  .nav-mid a{font-size:1rem; padding:0.95rem 1.6rem; width:100%;}
  .nav-mid a::after{display:none;}
  .nav-mid a:hover,.nav-mid a.is-active{background:var(--soft);}
  .bullets.two{grid-template-columns:1fr;}
}
@media (max-width:560px){
  .wrap{padding:0 1.3rem;}
  .nav-logo .lg-full{display:none;} .nav-logo .lg-mark{display:block; height:40px;}
  .nav-in{height:64px;} .lang{display:none;}
  .nav-right .btn-gold{padding:0.58rem 0.9rem; font-size:0.82rem;}
  .section{padding:3.4rem 0;}
  .subhero{padding-top:calc(64px + 2rem); padding-bottom:2.2rem;}
  .cards{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .mapwrap{min-height:320px;}
  .price-box{padding:1.7rem;}
  .who-card{padding:1.4rem;}
  .foot-brand img{margin-left:0;}
  .foot-top{grid-template-columns:1fr; gap:1.9rem;}
  .foot-bot{grid-template-columns:1fr; justify-items:center; gap:0.6rem;} .foot-bot .fb-l,.foot-bot .fb-c,.foot-bot .fb-r{justify-self:center; text-align:center;}
}
@media (max-width:380px){
  .wrap{padding:0 1rem;}
  .section{padding:2.9rem 0;}
  .card .cb{padding:1.3rem 1.3rem 1.4rem;}
  .nav-right .btn-gold{padding:0.5rem 0.75rem; font-size:0.78rem;}
}
