/* ==========================================================================
   L.R.A — Dératisation · Désinsectisation · Désinfection — Vallauris (06)
   Design system & global styles
   ========================================================================== */

:root {
  /* Brand colors — Bleu foncé + Orange (nuances affinées) */
  --brand: #1a62c4;          /* bleu principal (interactif) */
  --brand-dark: #134e9e;
  --brand-darker: #0e3c7a;
  --green: var(--brand);     /* alias conservés pour compatibilité */
  --green-dark: var(--brand-dark);
  --green-darker: var(--brand-darker);
  --navy: #0b2545;           /* bleu foncé profond (fonds/headers) */
  --navy-light: #16396d;
  --accent: #ff6a28;         /* orange — CTA / urgence */
  --accent-dark: #e85618;
  --spark: #ff9d57;          /* orange clair — accents/highlights */
  --teal: #1a62c4;

  /* Neutrals */
  --ink: #16242f;
  --body: #41525d;
  --muted: #7b8a94;
  --line: #e4ebe8;
  --bg: #ffffff;
  --bg-soft: #f2f6fc;
  --bg-mint: #e7f0fb;

  /* UI */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(13,34,51,.06);
  --shadow: 0 14px 40px rgba(13,34,51,.10);
  --shadow-lg: 0 28px 70px rgba(13,34,51,.16);
  --container: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --head: 'Poppins', var(--font);
  --t: .25s cubic-bezier(.4,0,.2,1);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--head); color: var(--ink); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: 1.28rem; }
p { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--mint { background: var(--bg-mint); }
.section--navy { background: var(--navy); color: #cdd9e1; }
.section--navy h2,.section--navy h3 { color: #fff; }
.narrow { max-width: 820px; margin-inline: auto; }

/* Eyebrow + headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--green-dark);
  background: var(--bg-mint); padding: 7px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section--navy .eyebrow { background: rgba(255,255,255,.08); color: var(--spark); }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--head); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: var(--t); white-space: nowrap; text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(255,107,44,.34); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,107,44,.42); }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(22,163,74,.3); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn--outline-white { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }
.btn--lg { padding: 18px 36px; font-size: 1.08rem; }

/* ===== Header ===== */
.topbar {
  background: var(--navy); color: #b9c8d2; font-size: .86rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 18px; }
.topbar a { color: #d6e2ea; transition: var(--t); }
.topbar a:hover { color: var(--spark); }
.topbar__left { display: flex; gap: 22px; }
.topbar__left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__badges { display: flex; gap: 16px; }
.topbar__badges span { display: inline-flex; align-items: center; gap: 6px; color: var(--spark); font-weight: 600; }
.topbar svg { width: 15px; height: 15px; flex: none; }

.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: var(--t);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--head); font-weight: 800; color: var(--navy); font-size: 1.28rem; letter-spacing: -.01em; }
.logo img { width: 46px; height: 46px; flex: none; }
.logo > span { display: block; white-space: nowrap; line-height: 1.1; }
.logo small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .12em; color: var(--green-dark); text-transform: uppercase; white-space: nowrap; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu > li > a {
  display: flex; align-items: center; gap: 5px; padding: 10px 14px; border-radius: 10px;
  font-family: var(--head); font-weight: 500; font-size: .96rem; color: var(--navy); transition: var(--t);
}
.nav__menu > li > a:hover { background: var(--bg-mint); color: var(--green-dark); }
.nav__menu > li > a[aria-current="page"] { color: var(--green-dark); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.has-drop { position: relative; }
.has-drop > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .6; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 268px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--t);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; gap: 11px; align-items: center; padding: 11px 12px; border-radius: 9px; font-size: .92rem; color: var(--navy); transition: var(--t); }
.drop a:hover { background: var(--bg-soft); color: var(--green-dark); }
.drop a span.ic { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-mint); display: grid; place-items: center; flex: none; }
.drop a span.ic svg { width: 17px; height: 17px; color: var(--green-dark); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: var(--t); }

/* ===== Hero ===== */
.hero { position: relative; background: linear-gradient(145deg,#0b2545 0%,#123f80 55%,#15498f 100%); color: #e6eefa; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 26px 26px; opacity: .6;
}
.hero::after { content:""; position:absolute; right:-180px; top:-120px; width:520px; height:520px; background: radial-gradient(circle,rgba(255,107,44,.4),transparent 70%); filter: blur(20px); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-top: 70px; padding-bottom: 70px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .hl { color: var(--spark); }
.hero__lead { font-size: 1.16rem; color: #c5d4cf; max-width: 540px; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: .94rem; color: #d6e2dd; }
.hero__trust svg { width: 20px; height: 20px; color: var(--spark); flex: none; }
.hero__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 30px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg); }
.hero__visual { position: relative; }

/* badge floating */
.float-badge { position: absolute; background: #fff; color: var(--navy); border-radius: 14px; padding: 13px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px; font-size: .9rem; font-weight: 600; }
.float-badge svg { width: 30px; height: 30px; }
.float-badge small { display:block; font-weight: 500; color: var(--muted); font-size: .76rem; }

/* trust strip */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 26px; padding-bottom: 26px; }
.trustbar div { display: flex; align-items: center; gap: 12px; }
.trustbar svg { width: 30px; height: 30px; color: var(--green); flex: none; }
.trustbar strong { display: block; font-family: var(--head); color: var(--ink); font-size: 1.02rem; }
.trustbar small { color: var(--muted); font-size: .82rem; }

/* ===== Cards / grids ===== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: var(--t); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__ic { width: 58px; height: 58px; border-radius: 14px; background: var(--bg-mint); display: grid; place-items: center; margin-bottom: 20px; transition: var(--t); }
.card__ic svg { width: 30px; height: 30px; color: var(--green-dark); }
.card:hover .card__ic { background: var(--green); }
.card:hover .card__ic svg { color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; margin-bottom: 16px; }
.card__link { font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; }
.card__link svg { width: 16px; height: 16px; transition: var(--t); }
.card:hover .card__link svg { transform: translateX(4px); }
.card--pest .tag { position: absolute; top: 18px; right: 18px; font-size: .72rem; font-weight: 700; font-family: var(--head); padding: 5px 11px; border-radius: 100px; background: var(--bg-mint); color: var(--green-darker); }
.card--pest .tag.urgent { background: #ffe9df; color: var(--accent-dark); }

/* feature list */
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.checklist li svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 2px; }
.checklist li b { color: var(--ink); font-family: var(--head); }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--media-right { direction: rtl; } .split--media-right > * { direction: ltr; }
.media-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--bg-mint); }

/* steps */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.step { position: relative; padding-top: 14px; }
.step__n { width: 50px; height: 50px; border-radius: 14px; background: var(--navy); color: #fff; font-family: var(--head); font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; text-align: center; }
.stat strong { display: block; font-family: var(--head); font-size: clamp(2.1rem,4vw,3rem); color: #fff; font-weight: 800; }
.stat span { color: #9fb4c0; font-size: .95rem; }
.section--navy .stat strong { background: linear-gradient(90deg,var(--spark),#ff6b2c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* testimonials */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote .stars { color: #ffb02e; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 1rem; color: var(--ink); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 700; }
.quote .who b { display: block; color: var(--ink); font-family: var(--head); font-size: .95rem; }
.quote .who small { color: var(--muted); }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; font-family: var(--head); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .pm { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--bg-mint); position: relative; transition: var(--t); }
.faq__q .pm::before,.faq__q .pm::after { content: ""; position: absolute; background: var(--green-dark); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__q .pm::before { width: 12px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 12px; transition: var(--t); }
.faq__item.open .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__item.open .pm { background: var(--green); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 24px 22px; margin: 0; font-size: .98rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg,var(--green-dark),var(--navy)); color: #fff; border-radius: 26px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0); background-size: 22px 22px; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero__cta { justify-content: center; }

/* Page hero (interior) */
.page-hero { background: linear-gradient(145deg,#0b2545,#123f80 60%,#15498f); color: #dbe6f6; padding: 56px 0; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0); background-size: 24px 24px; opacity:.5; }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero p { color: #c4d3ce; max-width: 640px; margin-top: 16px; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .86rem; color: #8fb0a4; margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--spark); }
.breadcrumb span { color: var(--spark); }
.page-hero .hero__cta { margin-top: 26px; margin-bottom: 0; }

/* prose */
.prose h2 { margin: 40px 0 16px; } .prose h3 { margin: 28px 0 12px; }
.prose p,.prose li { font-size: 1.02rem; }
.prose ul { margin: 0 0 18px; } .prose ul li { display: flex; gap: 10px; margin-bottom: 10px; }
.prose ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; margin-top: 9px; }

/* price cards */
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; transition: var(--t); }
.price:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.price.featured { border: 2px solid var(--green); position: relative; }
.price.featured::before { content: "Le + demandé"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-family: var(--head); font-weight: 600; font-size: .76rem; padding: 5px 16px; border-radius: 100px; }
.price h3 { margin-bottom: 6px; }
.price .amt { font-family: var(--head); font-weight: 800; font-size: 2.4rem; color: var(--ink); margin: 10px 0; }
.price .amt small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price ul { text-align: left; margin: 20px 0; }
.price ul li { display: flex; gap: 10px; margin-bottom: 11px; font-size: .92rem; }
.price ul li svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 3px; }

/* zones list */
.zones { display: grid; grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 12px; }
.zones a { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-family: var(--head); font-weight: 500; font-size: .94rem; color: var(--navy); transition: var(--t); }
.zones a:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.zones a svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 16px; transition: var(--t); }
.info-card:hover { box-shadow: var(--shadow-sm); }
.info-card .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--bg-mint); display: grid; place-items: center; flex: none; }
.info-card .ic svg { width: 24px; height: 24px; color: var(--green-dark); }
.info-card b { font-family: var(--head); color: var(--ink); display: block; margin-bottom: 2px; }
.info-card a,.info-card span { color: var(--body); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form h3 { margin-bottom: 6px; }
.form .grid-2 { gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--head); font-weight: 500; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field input,.field select,.field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font); font-size: .96rem; color: var(--ink); background: #fcfdfc; transition: var(--t);
}
.field input:focus,.field select:focus,.field textarea:focus { outline: 0; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(22,163,74,.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form small.note { display: block; color: var(--muted); font-size: .82rem; margin-top: 12px; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: #a8bcc7; padding-top: 70px; }
.footer a { color: #c2d2db; transition: var(--t); }
.footer a:hover { color: var(--spark); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer__about p { font-size: .92rem; color: #93a8b4; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; font-size: .93rem; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .93rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--spark); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.socials a:hover { background: var(--green); }
.socials svg { width: 19px; height: 19px; color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: .85rem; color: #7e93a0; flex-wrap: wrap; gap: 12px; }
.footer__bottom a { color: #7e93a0; }

/* sticky mobile call bar */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: #fff; border-top: 1px solid var(--line); padding: 10px 14px; box-shadow: 0 -6px 20px rgba(0,0,0,.08); gap: 10px; }
.callbar .btn { flex: 1; padding: 13px; font-size: .95rem; }

/* badges row */
.badges-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.cert-badge { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: #fff; border: 1px solid var(--line); border-radius: 100px; font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--navy); }
.cert-badge svg { width: 22px; height: 22px; color: var(--green); }

/* blog */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post__img { height: 170px; background: linear-gradient(135deg,var(--navy),var(--brand)); position: relative; display: grid; place-items: center; }
.post__img svg { width: 52px; height: 52px; color: #fff; opacity: .92; }
.post__cat { position: absolute; top: 14px; left: 14px; background: var(--accent); color: #fff; font-family: var(--head); font-weight: 600; font-size: .72rem; padding: 5px 11px; border-radius: 100px; }
.post__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post__body .post__meta { font-size: .8rem; color: var(--muted); margin-bottom: 8px; font-family: var(--head); }
.post__body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.post__body p { font-size: .93rem; margin-bottom: 16px; flex: 1; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: #bcd0ec; font-size: .9rem; margin-top: 16px; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 16px; height: 16px; }
.tip-box { background: var(--bg-mint); border-left: 4px solid var(--brand); border-radius: 10px; padding: 16px 22px; margin: 24px 0; }
.tip-box strong { color: var(--brand-darker); font-family: var(--head); }
.cta-inline { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 30px; margin: 32px 0; text-align: center; }
.cta-inline h3 { color: #fff; margin-bottom: 10px; }
.cta-inline p { color: #bcd0ec; margin-bottom: 20px; }
@media (max-width: 980px) { .posts { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }

/* toutes les communes */
.villes-all { display: flex; flex-wrap: wrap; gap: 8px; }
.villes-all a { font-size: .85rem; padding: 7px 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; color: var(--navy); transition: var(--t); }
.villes-all a:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--bg-mint); transform: translateY(-1px); }

/* gallery / réalisations */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.real-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--t); }
.real-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.real-card__media { position: relative; overflow: hidden; }
.real-card__media img { width: 100%; height: 230px; object-fit: cover; display: block; background: var(--bg-mint); transition: transform .5s ease; }
.real-card:hover .real-card__media img { transform: scale(1.05); }
.real-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,35,66,.4), transparent 32%, transparent 70%, rgba(10,35,66,.12)); pointer-events: none; z-index: 1; }
.real-card__media .pin { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; background: rgba(10,35,66,.82); color: #fff; font-family: var(--head); font-weight: 600; font-size: .78rem; padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(2px); }
.real-card__media .pin svg { width: 14px; height: 14px; color: var(--spark); }
.real-card__media .done { position: absolute; top: 14px; right: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #fff; font-family: var(--head); font-weight: 600; font-size: .74rem; padding: 6px 12px; border-radius: 100px; box-shadow: 0 6px 16px rgba(255,107,44,.45); }
.real-card__media .done svg { width: 14px; height: 14px; }
.real-card__body { padding: 20px 22px 24px; }
.real-card__cat { display: inline-flex; align-items: center; gap: 6px; font-family: var(--head); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--brand-dark); background: var(--bg-mint); padding: 5px 11px; border-radius: 100px; margin-bottom: 12px; }
.real-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.real-card p { font-size: .92rem; margin-bottom: 14px; }
.real-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }
.real-card .meta .stars { color: #ffb02e; letter-spacing: 1px; }
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .gallery { grid-template-columns: 1fr; } }

/* utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--media-right { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .nav__menu { display: none; }
  .nav__cta .btn:not(.btn--primary) { display: none; }
  .burger { display: flex; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .steps,.stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 24px; }
  .callbar { display: flex; }
  body { padding-bottom: 70px; }
  /* mobile menu */
  .nav__menu.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 78px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 14px; box-shadow: var(--shadow);
  }
  .nav__menu.open > li > a { padding: 14px; border-radius: 10px; }
  .nav__menu.open .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 4px 20px; }
  .has-drop > a::after { margin-left: auto; }
}
