/* =============================================================
   style.css — So'Phone31
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #111827; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
address { font-style: normal; }

:root {
    --blue: #1a56db;
    --blue-dark: #1e3a8a;
    --blue-deeper: #0f172a;
    --grad: linear-gradient(135deg, #1e3a8a 0%, #1a56db 60%, #2563eb 100%);
    --accent: #f59e0b;
    --text: #111827;
    --muted: #4b5563;
    --light: #9ca3af;
    --bg: #f8f9fb;
    --white: #fff;
    --sh1: 0 1px 3px rgba(0,0,0,.08);
    --sh2: 0 4px 12px rgba(0,0,0,.08);
    --sh3: 0 10px 30px rgba(0,0,0,.1);
    --r: 12px;
    --rl: 20px;
}

/* ── TYPOGRAPHIE ── */
h1 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--muted); }

/* ── UTILITAIRES ── */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section     { padding: 80px 0; }
.js-hidden  { display: none !important; }

/* ── BOUTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px; font-size: .95rem;
    font-weight: 600; text-decoration: none; border: none; cursor: pointer;
    transition: all .2s ease; font-family: inherit;
}
.btn-white   { background: var(--white); color: var(--blue-dark); }
.btn-white:hover  { background: #f0f4ff; transform: translateY(-1px); box-shadow: var(--sh2); }
.btn-ghost   { background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover  { background: rgba(255,255,255,.22); transform: translateY(-1px); }
.btn-blue    { background: var(--blue); color: var(--white); }
.btn-blue:hover   { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.35); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── EN-TÊTES DE SECTION ── */
.sec-hd            { text-align: center; margin-bottom: 52px; }
.sec-hd h2         { color: var(--text); margin-bottom: 14px; }
.sec-hd p          { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── ANIMATION FADE ── */
.fade    { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade.in { opacity: 1; transform: none; }

/* ── NAVBAR ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0; transition: all .3s ease;
}
.nav.scrolled {
    background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
    box-shadow: var(--sh1); padding: 11px 0;
}
.nav-inner  { display: flex; justify-content: space-between; align-items: center; }
.logo       { display: flex; align-items: center; font-size: 1.25rem; font-weight: 800; color: var(--white); text-decoration: none; transition: color .3s; }
.nav.scrolled .logo { color: var(--blue-dark); }
.logo-img   { display: block; height: 38px; width: auto; filter: brightness(0) invert(1); transition: filter .3s ease; }
.nav.scrolled .logo-img { filter: none; }
.nav-tel    { display: flex; align-items: center; gap: 7px; color: var(--white); text-decoration: none; font-weight: 600; font-size: .9rem; transition: color .3s; }
.nav.scrolled .nav-tel  { color: var(--blue); }
.nav-links  { display: flex; align-items: center; gap: 28px; }
.nav-link   { color: rgba(255,255,255,.82); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; letter-spacing: .01em; }
.nav-link:hover { color: var(--white); }
.nav.scrolled .nav-link        { color: var(--muted); }
.nav.scrolled .nav-link:hover  { color: var(--blue); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--white); padding: 4px; line-height: 0; }
.nav.scrolled .nav-burger { color: var(--text); }
.nav-mobile {
    display: none; flex-direction: column;
    background: var(--white); padding: 10px 24px 20px;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.nav-mobile.open    { display: flex; }
.nav-mobile-link    { color: var(--text); text-decoration: none; font-size: .97rem; font-weight: 500; padding: 13px 0; border-bottom: 1px solid #f3f4f6; transition: color .2s; }
.nav-mobile-link:hover { color: var(--blue); }
.nav-mobile-tel     { display: flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; font-size: .97rem; text-decoration: none; margin-top: 16px; }

/* ── HERO ── */
#hero {
    background: var(--grad); min-height: 100vh;
    display: flex; align-items: center; padding: 100px 0 80px;
    position: relative; overflow: hidden;
}
#hero::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid          { display: grid; grid-template-columns: 60% 40%; gap: 48px; align-items: center; }
.hero-grid h1       { color: var(--white); margin-bottom: 22px; }
.hero-grid h1 span  { color: #93c5fd; }
.hero-sub           { color: rgba(255,255,255,.82); font-size: 1.08rem; margin-bottom: 34px; max-width: 490px; }
.hero-ctas          { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-badges        { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-badge         { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 500; }
.hero-badge svg     { color: #93c5fd; flex-shrink: 0; }
.hero-card {
    background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18); border-radius: var(--rl);
    padding: 40px 32px; text-align: center;
}
.hero-card-icon {
    width: 110px; height: 110px; margin: 0 auto 20px;
    background: rgba(255,255,255,.14); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hero-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.hero-card p  { color: rgba(255,255,255,.75); font-size: .88rem; }
.hero-img-wrap { border-radius: var(--rl); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.hero-img      { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ── PROBLÈME ── */
#probleme { background: var(--bg); }
.prob-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-bottom: 40px; }
.prob-card {
    background: var(--white); border-radius: var(--r); padding: 26px;
    box-shadow: var(--sh1); transition: all .22s ease;
}
.prob-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.icon-box {
    width: 42px; height: 42px; background: #eff6ff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); margin-bottom: 14px; flex-shrink: 0;
}
.prob-card h3 { color: var(--text); margin-bottom: 6px; }
.prob-card p  { font-size: .88rem; }
.trans-box { text-align: center; padding: 28px 32px; background: var(--white); border-radius: var(--rl); box-shadow: var(--sh1); }
.trans-box p { font-size: 1.1rem; font-weight: 600; color: var(--blue-dark); }

/* ── OFFRE ── */
#offre { background: var(--white); }
.offre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.offre-img-wrap { border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh3); position: relative; }
.offre-img      { width: 100%; height: 420px; object-fit: cover; display: block; }
.offre-img-badge {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    background: rgba(15,23,42,.82); backdrop-filter: blur(8px);
    border-radius: var(--r); padding: 14px 18px; color: var(--white);
    display: flex; flex-direction: column; gap: 8px;
}
.offre-badge-row      { display: flex; align-items: center; gap: 8px; font-size: .84rem; }
.offre-badge-row svg  { color: #93c5fd; flex-shrink: 0; }
.offre-content h2     { color: var(--text); margin-bottom: 14px; }
.offre-content > p    { margin-bottom: 28px; font-size: 1.02rem; }
.bullets { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.bullet  { display: flex; align-items: flex-start; gap: 13px; }
.bullet-ic {
    width: 34px; height: 34px; background: #eff6ff; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); flex-shrink: 0; margin-top: 2px;
}
.bullet strong { display: block; color: var(--text); font-size: .93rem; margin-bottom: 1px; }
.bullet span   { color: var(--muted); font-size: .84rem; }
.quote-box { padding: 18px 20px; background: var(--bg); border-radius: var(--r); border-left: 3px solid var(--blue); }
.quote-box p { font-size: .93rem; font-weight: 500; color: var(--text); font-style: italic; }

/* ── SERVICES ── */
#services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 40px; }
.svc-card {
    background: var(--white); border-radius: var(--r); padding: 26px;
    box-shadow: var(--sh1); transition: all .22s ease;
}
.svc-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.svc-icon {
    width: 46px; height: 46px; background: #eff6ff; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); margin-bottom: 14px;
}
.svc-card h3 { color: var(--text); margin-bottom: 4px; }
.svc-sub { font-size: .8rem; color: var(--light); margin-bottom: 12px; font-weight: 500; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag  { background: #eff6ff; color: var(--blue); padding: 3px 9px; border-radius: 20px; font-size: .76rem; font-weight: 500; }
.svc-banner {
    border-radius: var(--rl); overflow: hidden; margin-bottom: 44px;
    height: 240px; position: relative; box-shadow: var(--sh2);
}
.svc-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(30,58,138,.85) 0%, rgba(30,58,138,.3) 100%);
    display: flex; align-items: center; padding: 0 40px;
}
.svc-banner-overlay h2 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 2rem); max-width: 480px; }

/* ── PROCESSUS ── */
#processus { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.steps::before {
    content: ''; position: absolute; top: 27px; left: 64px; right: 64px;
    height: 2px; background: linear-gradient(to right, var(--blue), #93c5fd); z-index: 0;
}
.step     { text-align: center; position: relative; z-index: 1; }
.step-ic  {
    width: 54px; height: 54px; background: var(--blue); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; position: relative;
}
.step-ic svg { color: var(--white); }
.step-num {
    position: absolute; top: -5px; right: -5px;
    width: 20px; height: 20px; background: var(--accent);
    border-radius: 50%; font-size: .62rem; font-weight: 700; color: var(--white);
    display: flex; align-items: center; justify-content: center;
}
.step h3 { color: var(--text); margin-bottom: 7px; }
.step p  { font-size: .86rem; }
.steps-cta      { text-align: center; margin-top: 52px; }
.steps-cta > p  { font-size: 1.08rem; font-weight: 600; color: var(--text); margin-bottom: 22px; }
.cta-row        { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── POURQUOI ── */
#pourquoi { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 36px; }
.why-card {
    background: var(--white); border-radius: var(--r); padding: 26px;
    box-shadow: var(--sh1); transition: all .22s ease;
}
.why-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.why-card h3 { color: var(--text); margin-bottom: 7px; }
.why-card p  { font-size: .88rem; }
.why-sig { text-align: center; padding: 28px 32px; background: var(--white); border-radius: var(--rl); box-shadow: var(--sh1); }
.why-sig p:first-child { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.why-sig p:last-child  { font-size: .88rem; }

/* ── AVIS ── */
#avis { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rev-card {
    background: var(--bg); border-radius: var(--r); padding: 22px;
    box-shadow: var(--sh1); transition: all .22s ease;
}
.rev-card:hover { box-shadow: var(--sh2); transform: translateY(-2px); }
.stars      { display: flex; gap: 3px; margin-bottom: 10px; }
.stars svg  { color: #f59e0b; fill: #f59e0b; }
.rev-title  { font-weight: 600; font-size: .93rem; color: var(--text); margin-bottom: 7px; }
.rev-text   { font-size: .84rem; color: var(--muted); margin-bottom: 14px; }
.rev-author { font-size: .78rem; font-weight: 600; color: var(--blue); }
.score-card {
    background: #eff6ff; display: flex; align-items: center;
    justify-content: center; gap: 14px; border-radius: var(--r); padding: 22px;
}
.score-card--col   { flex-direction: column; align-items: center; gap: 10px; }
.score-card__inner { display: flex; align-items: center; gap: 14px; }
.score-card svg    { color: #f59e0b; fill: #f59e0b; }
.score-card strong { font-size: 1.5rem; color: var(--text); display: block; }
.score-card span   { font-size: .82rem; color: var(--muted); }

/* ── ZONES ── */
#zones { background: var(--bg); }
.zones-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.zones-grid h2      { color: var(--text); margin-bottom: 14px; }
.zones-grid > div > p { margin-bottom: 28px; }
.zone-tags          { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.ztag {
    display: flex; align-items: center; gap: 5px;
    background: var(--white); border: 1px solid #e5e7eb;
    padding: 7px 13px; border-radius: 50px;
    font-size: .84rem; font-weight: 500; color: var(--text);
}
.ztag svg { color: var(--blue); }
.zones-note { padding: 15px 18px; background: var(--white); border-radius: var(--r); border-left: 3px solid var(--blue); }
.zones-note p { font-size: .88rem; }
.zones-map { background: var(--white); border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh2); height: 360px; }
.zones-map iframe { width: 100%; height: 100%; border: none; }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--bg); border-radius: var(--r); padding: 22px 26px; border-left: 3px solid var(--blue); }
.faq-item h3 { color: var(--text); font-size: .97rem; margin-bottom: 8px; }
.faq-item p  { font-size: .88rem; }

/* ── CONTACT ── */
#contact { background: var(--blue-deeper); }
.contact-grid           { display: grid; grid-template-columns: 44% 56%; gap: 60px; align-items: start; }
.contact-grid h2        { color: var(--white); margin-bottom: 14px; }
.contact-grid > div > p { color: rgba(255,255,255,.68); margin-bottom: 28px; }
.impact-txt   { margin-bottom: 32px; }
.impact-txt p { font-size: 1.02rem; font-weight: 600; color: rgba(255,255,255,.88); line-height: 1.7; }
.c-ctas     { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.c-reassure { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.c-ritem     { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.65); font-size: .84rem; }
.c-ritem svg { color: #93c5fd; flex-shrink: 0; }

/* ── FORMULAIRE ── */
.form-card   { background: var(--white); border-radius: var(--rl); padding: 34px; box-shadow: var(--sh3); }
.form-card h3 { color: var(--text); font-size: 1.15rem; margin-bottom: 22px; }
.fg          { margin-bottom: 14px; }
.fg label    { display: block; font-size: .83rem; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid #e5e7eb;
    border-radius: 8px; font-family: inherit; font-size: .9rem; color: var(--text);
    transition: border-color .2s; background: var(--white); outline: none; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); }
.fg textarea  { resize: vertical; min-height: 86px; }
.frow         { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form-submit  {
    width: 100%; padding: 13px; background: var(--blue); color: var(--white);
    border: none; border-radius: 50px; font-size: .97rem; font-weight: 600;
    font-family: inherit; cursor: pointer; transition: all .2s ease; margin-top: 6px;
}
.form-submit:hover    { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.4); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.form-legal   { text-align: center; margin-top: 10px; font-size: .73rem; color: var(--light); }
.form-msg     { margin-top: 12px; padding: 11px 14px; border-radius: 8px; font-size: .85rem; font-weight: 500; display: none; }
.form-msg.success { background: #dcfce7; color: #166534; display: block; }
.form-msg.error   { background: #fee2e2; color: #991b1b; display: block; }

/* ── CHECKBOX CONSENTEMENT ── */
.fg-check  { margin-top: 6px; }
.check-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.check-label input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.check-label span { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.check-link {
    color: var(--blue); text-decoration: underline;
    background: none; border: none; padding: 0; font-size: inherit; cursor: pointer;
}

/* ── RÉSEAUX SOCIAUX ── */
.social-links { display: flex; gap: 9px; flex-wrap: wrap; }
.social-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 50px; font-size: .8rem;
    font-weight: 600; text-decoration: none; transition: all .2s ease; white-space: nowrap;
}
.social-link svg  { flex-shrink: 0; }
.social-link:hover { transform: translateY(-2px); opacity: .88; }
.social-link--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.social-link--ghost:hover { background: rgba(255,255,255,.2); }
.social-link--insta { background: #fce4ec; color: #b5194f; }
.social-link--tiktok { background: #f3f4f6; color: #111827; }
.social-link--snap  { background: #fef9c3; color: #854d0e; }
.hero-social        { margin-top: 22px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-social > span { color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 500; }
.c-social           { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; }
.c-social > p       { color: rgba(255,255,255,.55); font-size: .8rem; margin-bottom: 9px; }
.foot-social        { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.score-social       { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid #e5e7eb; }
.score-social > span { font-size: .78rem; color: var(--muted); }

/* ── MODAL ── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
    background: var(--white); border-radius: var(--rl);
    max-width: 680px; width: 100%; max-height: 85vh;
    display: flex; flex-direction: column; box-shadow: var(--sh3);
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 28px 18px; border-bottom: 1px solid #e5e7eb; flex-shrink: 0;
}
.modal-header h2 { font-size: 1.15rem; color: var(--text); }
.modal-close {
    background: none; border: none; cursor: pointer; color: var(--muted);
    padding: 4px; line-height: 0; border-radius: 6px; transition: background .2s;
}
.modal-close:hover  { background: var(--bg); }
.modal-nav          { display: flex; padding: 0 28px; border-bottom: 1px solid #e5e7eb; flex-shrink: 0; }
.modal-tab {
    padding: 10px 16px; font-size: .85rem; font-weight: 600; color: var(--muted);
    border: none; background: none; cursor: pointer; border-bottom: 2px solid transparent;
    transition: all .2s; margin-bottom: -1px;
}
.modal-tab.active   { color: var(--blue); border-bottom-color: var(--blue); }
.modal-body         { padding: 24px 28px; overflow-y: auto; }
.modal-panel        { display: none; }
.modal-panel.active { display: block; }
.modal-body h3      { font-size: .97rem; color: var(--text); margin: 20px 0 8px; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p       { font-size: .86rem; color: var(--muted); margin-bottom: 8px; line-height: 1.65; }
.modal-body table   { width: 100%; border-collapse: collapse; font-size: .84rem; margin-bottom: 12px; }
.modal-body td      { padding: 7px 10px; border-bottom: 1px solid #f3f4f6; color: var(--muted); }
.modal-body td:first-child { font-weight: 600; color: var(--text); width: 45%; }

/* ── BANDEAU COOKIES ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    background: #0f172a; padding: 18px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner   { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { font-size: .83rem; flex: 1; min-width: 200px; color: rgba(255,255,255,.75); }
.cookie-btns    { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
    padding: 9px 20px; background: var(--blue); color: #fff; border: none;
    border-radius: 50px; font-size: .83rem; font-weight: 600; cursor: pointer; transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--blue-dark); }
.btn-cookie-decline {
    padding: 9px 20px; background: transparent; color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.25); border-radius: 50px;
    font-size: .83rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.btn-cookie-decline:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ── FOOTER ── */
footer          { background: #060d1b; color: rgba(255,255,255,.55); padding: 56px 0 20px; }
.foot-grid      { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; margin-bottom: 44px; }
.foot-logo-img  { display: block; height: 38px; width: auto; margin-bottom: 14px; mix-blend-mode: multiply; filter: brightness(0) invert(1); }
.foot-brand p   { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.75; }
.foot-col h4    { color: var(--white); font-size: .82rem; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.foot-links     { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.foot-links a   { color: rgba(255,255,255,.45); text-decoration: none; font-size: .84rem; transition: color .2s; }
.foot-links a:hover { color: var(--white); }
.foot-citem     { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.5); font-size: .84rem; margin-bottom: 9px; text-decoration: none; transition: color .2s; }
.foot-citem:hover   { color: var(--white); }
.foot-citem svg     { color: #93c5fd; flex-shrink: 0; }
.foot-bottom    { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.foot-bottom p  { font-size: .78rem; color: rgba(255,255,255,.3); }
.foot-legal     { display: flex; gap: 18px; }
.foot-legal a   { color: rgba(255,255,255,.3); text-decoration: none; font-size: .78rem; transition: color .2s; cursor: pointer; }
.foot-legal a:hover { color: var(--white); }
.foot-seo       { text-align: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); }
.foot-seo p     { font-size: .75rem; color: rgba(255,255,255,.38); }

/* ── FLOATING CTA ── */
.float-cta {
    display: none; position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
    z-index: 99; background: var(--blue); color: var(--white);
    padding: 13px 26px; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: .93rem;
    box-shadow: 0 8px 24px rgba(26,86,219,.45);
    align-items: center; gap: 8px; white-space: nowrap;
}

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
    section              { padding: 60px 0; }
    .hero-grid           { grid-template-columns: 1fr; }
    .hero-card           { display: none; }
    .hero-img-wrap       { display: none; }
    .prob-grid           { grid-template-columns: 1fr; }
    .offre-grid          { grid-template-columns: 1fr; }
    .offre-img           { height: 300px; }
    .svc-grid            { grid-template-columns: repeat(2,1fr); }
    .svc-banner          { height: 180px; }
    .svc-banner-overlay  { padding: 0 24px; }
    .steps               { grid-template-columns: repeat(2,1fr); gap: 36px; }
    .steps::before       { display: none; }
    .why-grid            { grid-template-columns: repeat(2,1fr); }
    .reviews-grid        { grid-template-columns: 1fr; }
    .zones-grid          { grid-template-columns: 1fr; }
    .contact-grid        { grid-template-columns: 1fr; }
    .foot-grid           { grid-template-columns: 1fr 1fr; }
    .float-cta           { display: flex; }
    .nav-links           { display: none; }
    .nav-burger          { display: flex; }
    .modal-box           { max-height: 92vh; }
}

/* ── RESPONSIVE 600px ── */
@media (max-width: 600px) {
    .hero-ctas, .c-ctas  { flex-direction: column; }
    .svc-grid            { grid-template-columns: 1fr; }
    .svc-banner          { height: 150px; }
    .steps               { grid-template-columns: 1fr; }
    .why-grid            { grid-template-columns: 1fr; }
    .frow                { grid-template-columns: 1fr; }
    .foot-grid           { grid-template-columns: 1fr; gap: 28px; }
    .foot-bottom         { flex-direction: column; text-align: center; }
    .c-reassure          { grid-template-columns: 1fr; }
    .cookie-inner        { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cookie-btns         { width: 100%; }
    .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
    .modal-header, .modal-body { padding-left: 18px; padding-right: 18px; }
    .modal-nav           { padding: 0 18px; }
}
