/* ===========================================================
   JULIEN TRAVAUX DÉCO — Vos travaux au juste prix, sans mauvaise surprise
   Variante ÉCO — thème clair, accent orange chaleureux, arrondis
   =========================================================== */

:root {
  --bg: #f6f8fb;
  --white: #ffffff;
  --ink: #1a2330;
  --muted: #5a6573;
  --line: #e3e8ef;
  --orange: #F57C00;
  --orange-dark: #e06d00;
  --orange-soft: #fff1e2;
  --teal: #009688;
  --teal-soft: #e0f3f1;
  --green: #2e9e5b;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 8px 24px rgba(26, 35, 48, 0.08);
  --shadow-lg: 0 18px 40px rgba(26, 35, 48, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--ink);
  line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.3px; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--orange); background: var(--orange-soft);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s; font-family: var(--sans);
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 18px rgba(245,124,0,0.3); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(245,124,0,0.4); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.28); }
.btn--block { width: 100%; justify-content: center; }

.tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700;
  padding: 6px 12px; border-radius: 100px; background: var(--teal-soft); color: var(--teal);
}
.tag--orange { background: var(--orange-soft); color: var(--orange); }
.tag--green { background: #e4f5ea; color: var(--green); }

/* ===================== HEADER ===================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-size: 1.3rem; font-weight: 800; }
.brand__name b { color: var(--orange); }
.brand__sub { display: block; font-size: 0.62rem; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; }

.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav__links a { font-size: 0.95rem; font-weight: 600; color: var(--muted); padding: 6px 0; transition: color 0.2s; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a.active { color: var(--orange); }
.nav__cta { margin-left: 6px; }

.nav__toggle { display: none; background: none; border: 2px solid var(--line); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; color: var(--ink); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  position: relative; margin: 0 auto; transition: 0.3s;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { background: linear-gradient(135deg, #fff7ef 0%, #f6f8fb 60%); padding: 70px 0 80px; position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 8px 0 18px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.12rem; color: var(--muted); margin-bottom: 26px; max-width: 520px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; position: relative;
}
.hero__card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row span { color: var(--muted); font-size: 0.92rem; }
.price-row b { color: var(--orange); font-weight: 800; }
.hero__pill { position: absolute; top: -16px; right: -8px; background: var(--green); color: #fff; font-weight: 700; font-size: 0.82rem; padding: 8px 16px; border-radius: 100px; box-shadow: var(--shadow); transform: rotate(4deg); }

/* ===================== REASSURANCE ===================== */
.reassure { padding: 0 0 0; margin-top: -40px; position: relative; z-index: 3; }
.reassure__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reassure__item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; display: flex; gap: 14px; align-items: center; }
.reassure__item .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; flex: none; }
.reassure__item svg { width: 26px; height: 26px; }
.reassure__item h3 { font-size: 0.98rem; margin-bottom: 2px; }
.reassure__item p { font-size: 0.82rem; color: var(--muted); }

/* ===================== SECTION HEADINGS ===================== */
.sec-head { max-width: 660px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.sec-head p { color: var(--muted); }

/* ===================== SERVICE CARDS ===================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 26px; transition: transform 0.25s var(--ease), box-shadow 0.25s; border: 1px solid var(--line); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.card__price { font-size: 0.85rem; font-weight: 700; color: var(--teal); margin-bottom: 16px; }
.card__link { color: var(--orange); font-weight: 700; font-size: 0.9rem; display: inline-flex; gap: 6px; align-items: center; }
.card__link svg { width: 16px; transition: transform 0.2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ===================== WHY / SPLIT ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split__visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split ul { list-style: none; margin-top: 20px; }
.split li { display: flex; gap: 14px; padding: 12px 0; align-items: flex-start; }
.split li .chk { width: 28px; height: 28px; border-radius: 50%; background: #e4f5ea; color: var(--green); display: flex; align-items: center; justify-content: center; flex: none; }
.split li .chk svg { width: 16px; }
.split li b { display: block; }
.split li span { color: var(--muted); font-size: 0.92rem; }

/* ===================== COMPARATIF ===================== */
.compare { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line); }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--orange-soft); color: var(--ink); font-size: 0.95rem; }
.compare thead th:last-child { color: var(--orange); }
.compare td { color: var(--muted); font-size: 0.92rem; }
.compare td:first-child { color: var(--ink); font-weight: 600; }
.compare .yes { color: var(--green); font-weight: 700; }
.compare .no { color: #c0392b; }
.compare tr:last-child td { border-bottom: none; }

/* ===================== PROCESS ===================== */
.process { background: linear-gradient(135deg, #fff7ef, #f6f8fb); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 22px; position: relative; }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ===================== STATS ===================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 18px; text-align: center; }
.stat__num { font-size: 2.6rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat__label { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }

/* ===================== TESTIMONIALS ===================== */
.testi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 26px; }
.quote__stars { color: #ffb300; letter-spacing: 2px; margin-bottom: 12px; font-size: 1.1rem; }
.quote p { margin-bottom: 18px; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 800; flex: none; }
.quote__who b { font-size: 0.92rem; }
.quote__who span { display: block; color: var(--muted); font-size: 0.8rem; }

/* ===================== CTA BANNER ===================== */
.cta-banner { background: linear-gradient(120deg, var(--orange), #ff9f40); color: #fff; border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-banner h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p { max-width: 540px; margin: 0 auto 26px; opacity: 0.95; }
.cta-banner .hero__cta { justify-content: center; margin-bottom: 0; }

/* ===================== PAGE HEADER ===================== */
.page-head { background: linear-gradient(135deg, #fff7ef, #f6f8fb); padding: 56px 0; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 6px 0 14px; }
.page-head p { color: var(--muted); max-width: 600px; }

/* ===================== SERVICES DETAIL ===================== */
.svc-list { display: grid; gap: 28px; }
.svc { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 0; overflow: hidden; display: grid; grid-template-columns: 0.8fr 1.2fr; border: 1px solid var(--line); }
.svc__visual { background: linear-gradient(135deg, #ffe4c4, #ffd0a0); display: flex; align-items: center; justify-content: center; min-height: 220px; }
.svc__visual svg { width: 90px; height: 90px; color: var(--orange-dark); }
.svc__body { padding: 32px 34px; }
.svc__body .tag { margin-bottom: 12px; }
.svc__body h2 { font-size: 1.5rem; margin-bottom: 10px; }
.svc__body p { color: var(--muted); margin-bottom: 16px; }
.svc__price { display: inline-block; background: var(--teal-soft); color: var(--teal); font-weight: 800; padding: 8px 16px; border-radius: 100px; margin-bottom: 18px; }
.incl { list-style: none; margin-bottom: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.incl li { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 0.9rem; }
.incl li svg { width: 18px; color: var(--green); flex: none; }

/* ===================== GALLERY ===================== */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter { background: #fff; border: 2px solid var(--line); border-radius: 100px; color: var(--muted); padding: 9px 20px; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: var(--sans); }
.filter:hover { border-color: var(--orange); color: var(--orange); }
.filter.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s; border: 1px solid var(--line); }
.project:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project__media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.project__ba { position: absolute; inset: 0; }
.project__ba .after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); border-left: 3px solid #fff; }
.project__tag { position: absolute; top: 12px; left: 12px; z-index: 3; background: #fff; color: var(--orange); font-size: 0.74rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; box-shadow: var(--shadow); }
.project__lbl { position: absolute; bottom: 10px; z-index: 3; font-size: 0.7rem; font-weight: 700; color: #fff; background: rgba(26,35,48,0.6); padding: 3px 10px; border-radius: 100px; }
.project__lbl.l { left: 10px; } .project__lbl.r { right: 10px; }
.project__body { padding: 20px 22px; }
.project__body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.project__meta { color: var(--muted); font-size: 0.85rem; }

/* ===================== SIMULATEUR ===================== */
.sim-wrap { max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 36px; border: 1px solid var(--line); }
.sim-note { background: var(--teal-soft); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.9rem; color: var(--teal); margin-bottom: 28px; display: flex; gap: 10px; align-items: center; font-weight: 600; }
.sim-note svg { width: 22px; flex: none; }
.progress { height: 8px; background: var(--line); border-radius: 100px; margin-bottom: 8px; overflow: hidden; }
.progress__bar { height: 100%; background: var(--orange); border-radius: 100px; width: 20%; transition: width 0.4s var(--ease); }
.progress__txt { font-size: 0.82rem; color: var(--muted); font-weight: 700; margin-bottom: 30px; }
.sim-step { display: none; animation: fade 0.4s var(--ease); }
.sim-step.active { display: block; }
.sim-step h2 { font-size: 1.5rem; margin-bottom: 6px; }
.sim-step > p { color: var(--muted); margin-bottom: 24px; }
.opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; }
.opt label { display: flex; align-items: center; gap: 12px; padding: 18px; border: 2px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; height: 100%; }
.opt label .oic { width: 40px; height: 40px; border-radius: 10px; background: var(--bg); color: var(--orange); display: flex; align-items: center; justify-content: center; flex: none; }
.opt label svg { width: 22px; }
.opt input:checked + label { border-color: var(--orange); background: var(--orange-soft); }
.opt label b { display: block; }
.opt label span { color: var(--muted); font-size: 0.82rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; background: var(--bg); border: 2px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); padding: 13px 15px; font-family: var(--sans); font-size: 0.95rem; transition: border-color 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.sim-nav { display: flex; justify-content: space-between; margin-top: 30px; gap: 14px; }
.sim-done { text-align: center; padding: 24px 0; }
.sim-done .check { width: 72px; height: 72px; border-radius: 50%; background: #e4f5ea; color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.sim-done .check svg { width: 40px; }
.sim-done h2 { font-size: 1.7rem; margin-bottom: 12px; }
.sim-done p { color: var(--muted); max-width: 440px; margin: 0 auto 6px; }
@keyframes fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ===================== A PROPOS ===================== */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 26px; border: 1px solid var(--line); }
.value .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value .ic svg { width: 28px; }
.value h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 0.92rem; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; padding: 32px 22px; border: 1px solid var(--line); }
.member__avatar { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--orange), #ff9f40); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; }
.member h3 { font-size: 1.2rem; margin-bottom: 2px; }
.member__role { color: var(--orange); font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; }
.member p { color: var(--muted); font-size: 0.88rem; }

.badges { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.badge { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px 30px; min-width: 150px; border: 1px solid var(--line); }
.badge .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; }
.badge .ic svg { width: 28px; }
.badge b { font-size: 1rem; }
.badge span { color: var(--muted); font-size: 0.78rem; text-align: center; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.contact-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; border: 1px solid var(--line); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line); }
.info-item .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; flex: none; }
.info-item .ic svg { width: 24px; }
.info-item b { display: block; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--muted); font-size: 0.9rem; }
.map-fake { aspect-ratio: 16/7; border-radius: var(--radius-lg); position: relative; overflow: hidden; margin-top: 30px; box-shadow: var(--shadow); background: linear-gradient(135deg, #ffe9d2, #ffd9b3); }
.map-fake__pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); color: var(--orange-dark); width: 42px; }
.map-fake__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,124,0,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(245,124,0,0.12) 1px, transparent 1px); background-size: 42px 42px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.consent input { margin-top: 4px; flex: none; width: 18px; height: 18px; accent-color: var(--orange); }
.consent label { font-size: 0.85rem; color: var(--muted); }

.form-msg { display: none; padding: 16px 20px; border-radius: var(--radius-sm); background: #e4f5ea; color: var(--green); font-weight: 600; margin-top: 20px; }
.form-msg.show { display: block; animation: fade 0.4s var(--ease); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--ink); color: #c9d2dd; padding: 60px 0 26px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col p { color: #aeb8c4; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-brand .brand__name, .footer-brand .brand__sub { color: #fff; }
.footer-brand p { max-width: 280px; margin-top: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { color: #8b96a4; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--orange); }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .reassure__grid, .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .cards, .gallery, .testi, .values, .team { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .hero__inner, .svc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reassure { margin-top: 20px; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav__links {
    position: fixed; top: 72px; right: 0; left: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; box-shadow: var(--shadow); padding: 10px 22px; transform: translateY(-130%);
    transition: transform 0.3s var(--ease); max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links .nav__cta { margin: 12px 0; }
  .nav__links .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: flex; align-items: center; justify-content: center; }
  .reassure__grid, .stats, .steps, .cards, .gallery, .testi, .values, .team, .opts, .incl { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 22px; }
  .sim-wrap { padding: 24px; }
}

/* ============================================================
   CRO ADD-ONS — Julien Travaux Déco (éco)
   Barre mobile, modale rappel, barre de confiance, FAQ, dispo
   ============================================================ */

[hidden] { display: none !important; }

/* ---------- Indicateur disponibilité (hero) ---------- */
.avail {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  background: #e4f5ea; color: var(--green); font-weight: 700; font-size: 0.82rem;
  padding: 7px 14px; border-radius: 100px;
}
.avail__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 0 rgba(46,158,91,0.5); animation: availPulse 2.2s var(--ease) infinite; }
.avail b { font-weight: 800; }
@keyframes availPulse { 0% { box-shadow: 0 0 0 0 rgba(46,158,91,0.45); } 70% { box-shadow: 0 0 0 8px rgba(46,158,91,0); } 100% { box-shadow: 0 0 0 0 rgba(46,158,91,0); } }
@media (prefers-reduced-motion: reduce) { .avail__dot { animation: none; } }

/* ---------- Barre de confiance ---------- */
.trustbar { margin-top: 26px; }
.trustbar__row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trustbar__item {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 100px; box-shadow: var(--shadow); padding: 10px 16px; font-size: 0.85rem; color: var(--ink); font-weight: 600;
}
.trustbar__item svg { width: 17px; height: 17px; color: var(--orange); flex: none; }
.trustbar__item .trustbar__stars { color: #ffb300; letter-spacing: 1px; }
.trustbar__item--rating { background: var(--orange-soft); border-color: transparent; }
.trustbar__item--green { background: #e4f5ea; color: var(--green); border-color: transparent; }
.trustbar__item--green svg { color: var(--green); }
.trustbar__item--teal { background: var(--teal-soft); color: var(--teal); border-color: transparent; }
.trustbar__item--teal svg { color: var(--teal); }

/* ---------- FAQ accordéon ---------- */
.faq { max-width: 800px; margin: 36px auto 0; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq__q {
  width: 100%; background: transparent; border: 0; cursor: pointer; color: var(--ink);
  font-weight: 700; font-size: 1.02rem; text-align: left; padding: 20px 52px 20px 22px; position: relative; line-height: 1.4;
}
.faq__q::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 1.5rem; font-weight: 700; transition: transform 0.3s var(--ease); }
.faq__q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.faq__a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---------- Réassurance formulaire ---------- */
.form-trust { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0 6px; }
.form-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.form-trust svg { width: 16px; height: 16px; color: var(--green); flex: none; }

/* ---------- Bouton flottant rappel ---------- */
.callback-fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 95; display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; border: 0; border-radius: 100px; padding: 13px 20px; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: 0.9rem; box-shadow: 0 10px 24px rgba(245,124,0,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.callback-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(245,124,0,0.5); }
.callback-fab svg { width: 18px; height: 18px; flex: none; }

/* ---------- Modale rappel ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(26,35,48,0.55); backdrop-filter: blur(3px); }
.modal__dialog {
  position: relative; max-width: 460px; width: calc(100% - 36px); margin: 8vh auto 0;
  background: #fff; border-radius: var(--radius-lg); padding: 34px 30px 28px; box-shadow: var(--shadow-lg);
  animation: fade 0.35s var(--ease);
}
@media (prefers-reduced-motion: reduce) { .modal__dialog { animation: none; } }
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg); border: 0; color: var(--muted); cursor: pointer; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal__close:hover { background: var(--orange-soft); color: var(--orange); }
.modal h2 { font-size: 1.5rem; margin: 12px 0 6px; }
.modal__intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.modal .field { margin-bottom: 14px; }
.modal .consent { margin-bottom: 16px; }
.modal__success { text-align: center; padding: 14px 0; }
.modal__success-icon { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: #e4f5ea;
  color: var(--green); display: flex; align-items: center; justify-content: center; }
.modal__success-icon svg { width: 34px; height: 34px; }

/* ---------- Barre d'action mobile ---------- */
.mobile-bar { display: none; }
@media (max-width: 767px) {
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: flex;
    background: #fff; box-shadow: 0 -4px 18px rgba(26,35,48,0.12); border-top: 1px solid var(--line);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
  }
  .mobile-bar .btn { flex: 1; padding: 13px 8px; font-size: 0.88rem; }
  .mobile-bar .btn svg { width: 17px; height: 17px; flex: none; }
  .mobile-bar .btn--call { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 6px 14px rgba(46,158,91,0.3); }
  body.has-mobile-bar { padding-bottom: 74px; }
  .callback-fab { display: none; }
}
@media print { .mobile-bar, .callback-fab { display: none !important; } }


/* ---------- Visual proof before / after ---------- */
.visual-proof { background: var(--bg-2, #f6f8fb); border-top: 1px solid var(--line-soft, rgba(0,0,0,.08)); border-bottom: 1px solid var(--line-soft, rgba(0,0,0,.08)); }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.proof-card { background: var(--surface, #fff); border: 1px solid var(--line-soft, rgba(0,0,0,.08)); border-radius: var(--radius-lg, 8px); overflow: hidden; }
.proof-compare { position: relative; display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 16 / 9; background: #111; }
.proof-compare::after { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-1px); background: rgba(255,255,255,.9); box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.proof-compare img { width: 100%; height: 100%; object-fit: cover; min-width: 0; }
.proof-card__body { padding: 20px 22px 24px; }
.proof-card__body h3 { margin-bottom: 6px; }
.proof-card__body p { font-size: .9rem; margin: 0; }
.conversion-mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(11,16,24,.96); border-top: 1px solid rgba(255,255,255,.12); }
.conversion-mobilebar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: var(--radius, 6px); font-weight: 700; font-size: .94rem; text-decoration: none; }
.conversion-mobilebar__call { background: var(--accent, #00897B); color: #fff; }
.conversion-mobilebar__contact { border: 1px solid rgba(255,255,255,.22); color: #fff; }
@media (max-width: 767px) {
  .proof-grid { grid-template-columns: 1fr; }
  .conversion-mobilebar { display: flex; }
  body.has-conversion-mobilebar { padding-bottom: 76px; }
}


/* ---------- Mobile responsive hardening ---------- */
.visual-proof { overflow: hidden; }
.proof-card { min-width: 0; }
.proof-card__body h3,
.proof-card__body p { overflow-wrap: anywhere; }
.conversion-mobilebar { box-sizing: border-box; }
.conversion-mobilebar a {
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .proof-grid { grid-template-columns: minmax(0, 1fr); }
  .proof-compare { aspect-ratio: 4 / 3; }
  .proof-card__body { padding: 16px 18px 20px; }
  .proof-card__body h3 { font-size: 1.05rem; line-height: 1.25; }
  .proof-card__body p { font-size: .88rem; line-height: 1.45; }
  .mobile-bar {
    box-sizing: border-box;
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .mobile-bar a,
  .mobile-bar .btn {
    min-width: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 390px) {
  .conversion-mobilebar {
    gap: 8px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .conversion-mobilebar a,
  .mobile-bar a,
  .mobile-bar .btn {
    font-size: .86rem !important;
    min-height: 46px;
  }
}


/* ---------- Image story and persona explainers ---------- */
.image-story { background: var(--bg, var(--bg-2, #f7f8f9)); border-top: 1px solid var(--line-soft, rgba(0,0,0,.08)); }
.image-story__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.image-story__card { min-width: 0; margin: 0; overflow: hidden; border-radius: var(--radius-lg, 8px); border: 1px solid var(--line-soft, rgba(0,0,0,.08)); background: var(--surface, #fff); box-shadow: var(--shadow, 0 14px 34px rgba(15,23,42,.08)); }
.image-story__card img { display: block; width: 100%; aspect-ratio: 16 / 10; height: auto; object-fit: cover; background: #111; }
.image-story__card figcaption { display: flex; flex-direction: column; gap: 2px; padding: 14px 16px 16px; }
.image-story__card figcaption strong { font-size: 1rem; line-height: 1.2; }
.image-story__card figcaption span { color: var(--muted, #667085); font-size: .9rem; }
.persona-explain { background: var(--surface, #fff); border-top: 1px solid var(--line-soft, rgba(0,0,0,.08)); }
.persona-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.persona-card { min-width: 0; display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center; padding: 18px; border-radius: var(--radius-lg, 8px); border: 1px solid var(--line-soft, rgba(0,0,0,.08)); background: var(--bg, var(--bg-2, #f7f8f9)); }
.persona-card img { width: 92px; height: 92px; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow, 0 14px 34px rgba(15,23,42,.08)); }
.persona-card span { display: block; color: var(--accent, #00897B); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.persona-card h3 { margin: 0 0 6px; font-size: 1.04rem; line-height: 1.2; overflow-wrap: anywhere; }
.persona-card p { margin: 0; color: var(--muted, #667085); font-size: .92rem; line-height: 1.45; overflow-wrap: anywhere; }
.persona-note { max-width: 780px; margin: 20px auto 0; text-align: center; color: var(--muted, #667085); font-size: .95rem; }
@media (max-width: 900px) {
  .image-story__grid,
  .persona-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 520px) {
  .persona-card { grid-template-columns: 72px 1fr; gap: 12px; padding: 14px; }
  .persona-card img { width: 72px; height: 72px; border-radius: 14px; }
  .image-story__card figcaption { padding: 12px 14px 14px; }
}


/* ---------- Above-fold image placement ---------- */
.hero-proof-strip {
  background: var(--surface, #fff);
  border-top: 1px solid var(--line-soft, rgba(0,0,0,.08));
  border-bottom: 1px solid var(--line-soft, rgba(0,0,0,.08));
  padding: 18px 0;
}
.hero-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-proof-strip__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--line-soft, rgba(0,0,0,.08));
  background: #111;
  box-shadow: var(--shadow, 0 14px 34px rgba(15,23,42,.08));
}
.hero-proof-strip__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}
.hero-proof-strip__item figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.image-story { scroll-margin-top: 88px; }
@media (max-width: 767px) {
  .hero-proof-strip { padding: 12px 0; }
  .hero-proof-strip__grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .hero-proof-strip__item:not(:first-child) { display: none; }
}


/* ---------- Always show generated visual sections ---------- */
.hero-proof-strip .reveal,
.image-story .reveal,
.visual-proof .reveal,
.persona-explain .reveal {
  opacity: 1;
  transform: none;
}
