:root{
  /* Style épuré, chaleureux (beige/taupe + vert) */
  --bg:#fbfaf7;
  --bg2:#f2eee7;
  --surface:#ffffff;
  --surface2:#f8f6f2;
  --text:#161616;
  --muted:rgba(22,22,22,.68);
  --muted2:rgba(22,22,22,.50);
  /* Bordures un peu plus visibles */
  --line:rgba(22,22,22,.16);
  --line2:rgba(22,22,22,.22);
  --primary:#2f6f4e;   /* CTA vert */
  --primary2:#7a6a53;  /* taupe */
  --ok:#2f6f4e;
  --warn:#b7791f;
  --bad:#c2413b;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --shadow2:0 6px 18px rgba(0,0,0,.06);
  --radius:16px;
  --radius2:14px;
  --container:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}
.muted{color:var(--muted)}

/* Lisibilité (public senior) */
body{font-size:17px}
p{max-width:70ch}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0
}
.skip-link{
  position:absolute; left:12px; top:12px;
  background:rgba(255,255,255,.95); color:var(--text); padding:10px 12px;
  border-radius:10px; transform:translateY(-120%); transition:transform .2s ease;
  z-index:9999; text-decoration:none; font-weight:600;
}
.skip-link:focus{transform:translateY(0)}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,250,247,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:grid;
  grid-template-columns: 200px minmax(0, 1fr) auto;
  align-items:center;
  gap:20px;
  padding:10px 0;
}
.brand{
  width:200px;
  min-width:0;
}
.brand-link{
  display:flex;
  align-items:center;
  text-decoration:none;
  justify-content:flex-start;
}
.brand-mark{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  background:transparent;
  border:none;
  box-shadow:none;
  width:auto;
}
.brand-logo{
  object-fit:contain;
  border-radius:0;
  display:block;
}
.brand-logo-header{
  width:180px;
  height:auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.08));
}
.brand-logo-footer{
  width:180px;
  height:80px;
}
.brand-text{display:none}
.brand-name{display:block; font-weight:800; letter-spacing:-.02em}
.brand-sub{display:block; font-size:12px; color:var(--muted2)}

.nav{
  position:relative;
  justify-self:center;
  width:100%;
}
.nav-menu{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
}
.nav-menu a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  padding:10px 8px;
  border-radius:12px;
  transition: background .15s ease, color .15s ease;
  white-space:nowrap;
}
.nav-menu a.active{
  background:rgba(47,111,78,.10);
  border:1px solid var(--line);
}
.nav-menu a:hover{background:rgba(31,36,33,.05); color:var(--text)}
.nav-menu .nav-cta{background:rgba(47,111,78,.10); color:var(--text); border:1px solid var(--line)}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.65);
  color:var(--text);
}
.nav-toggle-lines{
  width:18px; height:2px; background:var(--text);
  display:block; margin:0 auto; position:relative; border-radius:999px;
}
.nav-toggle-lines::before,.nav-toggle-lines::after{
  content:""; position:absolute; left:0; right:0; height:2px; background:var(--text); border-radius:999px;
}
.nav-toggle-lines::before{top:-6px}
.nav-toggle-lines::after{top:6px}

.header-cta{
  display:flex;
  gap:8px;
  justify-self:end;
  align-items:center;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 18px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{background:rgba(255,255,255,.92)}
.btn:active{transform: translateY(1px)}
.btn-primary{
  border-color: rgba(47,111,78,.35);
  background: linear-gradient(135deg, rgba(47,111,78,.95), rgba(122,106,83,.85));
  color:#fff;
}
.btn-primary:hover{background: linear-gradient(135deg, rgba(47,111,78,1), rgba(122,106,83,.92))}
.btn-ghost{background:transparent}
.btn-block{width:100%}

.hero{padding:72px 0 40px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.94);
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  margin-bottom:14px;
}
.badge .dot{width:8px; height:8px; border-radius:999px; background:var(--ok); box-shadow:0 0 0 5px rgba(47,111,78,.12)}
h1{
  margin:0 0 12px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height:1.05;
  letter-spacing:-.03em;
}
.grad{
  color:var(--text);
}
.lead{
  margin:0 0 18px;
  font-size: clamp(16px, 1.4vw, 18px);
  color:var(--muted);
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 18px}
.trust-row{display:grid; grid-template-columns:repeat(3,1fr); gap:10px}
.trust-item{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.92);
  border-radius:var(--radius2);
  padding:14px;
}
.trust-title{font-weight:800}
.trust-text{color:var(--muted2); font-size:13px}

.hero-card{
  border-radius:var(--radius);
  border:1px solid var(--line2);
  background: rgba(255,255,255,.96);
  box-shadow: none;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hero-card-top{padding:18px}
.hero-illus{
  border-radius:16px;
  border:1px solid var(--line2);
  background: radial-gradient(520px 240px at 20% 20%, rgba(47,111,78,.12), transparent 58%),
              radial-gradient(480px 220px at 80% 30%, rgba(122,106,83,.14), transparent 60%),
              rgba(255,255,255,.92);
  min-height:260px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero-illus picture{display:block; width:100%}
.hero-illus img{
  display:block;
  width:100%;
  height:100%;
  max-height:360px;
  object-fit:cover;
  object-position:50% 35%;
  opacity:.96;
}
.hero-card-bottom{
  border-top:1px solid var(--line);
  padding:14px 18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.mini-label{color:var(--muted2); font-size:12px}
.mini-value a{text-decoration:none; font-weight:800}

.section{padding:74px 0}
.section.alt{
  background: rgba(255,255,255,.0);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:22px; margin-bottom:26px}
.section-head h1,.section-head h2{margin:0; font-size: clamp(26px, 2.5vw, 34px); letter-spacing:-.02em}
.section-head p{margin:0; max-width:64ch}

.grid.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.96);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover{transform:none; box-shadow:none}
.card-icon{font-size:20px; width:40px; height:40px; display:grid; place-items:center; border-radius:14px;
  background:rgba(47,111,78,.10); border:1px solid rgba(47,111,78,.18); margin-bottom:10px}
.card h3{margin:0 0 6px; letter-spacing:-.01em}
.card p{margin:0 0 8px; color:var(--muted)}
.card .benefit{margin:0; color:var(--text)}

/* Illustrations de page */
.page-illus{
  margin: 12px 0 18px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.88);
  border-radius: var(--radius);
  overflow:hidden;
}
.page-illus img{
  display:block;
  width:100%;
  height:auto;
}

.page-illus-prestations{
  max-height: 420px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)),
    rgba(255,255,255,.88);
}

.page-illus-prestations img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

/* Prestations (liste simple, lisible, non “tuiles”) */
.services-list{
  max-width: 920px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.96);
  border-radius:var(--radius);
  overflow:hidden;
}

/* Accès rapide Prestations */
.quick-issue{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.92);
  border-radius:var(--radius);
  padding:14px 16px;
  margin: 10px 0 16px;
  box-shadow: var(--shadow2);
}
.quick-issue-title{font-weight:900; margin-bottom:10px}
.quick-issue-actions{display:flex; flex-wrap:wrap; gap:10px}
.chip{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(47,111,78,.06);
  text-decoration:none;
  font-weight:700;
}
.chip:hover{background:rgba(47,111,78,.10)}

/* Mettre en évidence la cible après clic */
.service-row:target{
  outline: 3px solid rgba(47,111,78,.22);
  outline-offset: -3px;
  background: rgba(47,111,78,.04);
}
.is-focus{
  animation: focusRing 1.6s ease-out 1;
}
@keyframes focusRing{
  0%{box-shadow: inset 0 0 0 999px rgba(47,111,78,.06), 0 0 0 0 rgba(47,111,78,.0)}
  30%{box-shadow: inset 0 0 0 999px rgba(47,111,78,.06), 0 0 0 10px rgba(47,111,78,.10)}
  100%{box-shadow: inset 0 0 0 999px rgba(47,111,78,.0), 0 0 0 0 rgba(47,111,78,.0)}
}
.service-row{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap:18px;
  padding:18px 18px;
  border-top:1px solid var(--line);
}
.service-row:first-child{border-top:none}
.service-name{
  font-weight:900;
  letter-spacing:-.01em;
  font-size:18px;
}
.service-desc{margin-top:4px}
.service-right{
  color:var(--muted);
  background:rgba(47,111,78,.06);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  align-self:start;
}
.service-price{font-size:15px}
.service-link{
  display:inline-block;
  margin-top:6px;
  text-decoration:none;
  font-weight:700;
  border-bottom:1px solid rgba(47,111,78,.28);
}
.service-link:hover{border-bottom-color: rgba(47,111,78,.55)}

/* Prestations en tableau (vue d'ensemble) */
.services-table-wrap{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.96);
  border-radius:var(--radius);
  overflow:auto;
  box-shadow: var(--shadow2);
}
.services-table{
  width:100%;
  border-collapse:collapse;
  min-width: 820px;
}
.services-table th,.services-table td{
  text-align:left;
  vertical-align:top;
  padding:14px 14px;
  border-bottom:1px solid var(--line);
}
.services-table th{
  font-size:13px;
  color:var(--muted2);
  letter-spacing:.02em;
  text-transform:uppercase;
  background: rgba(122,106,83,.06);
}
.services-table tbody tr:nth-child(2n){
  background: rgba(47,111,78,.03);
}
.services-table tbody tr:target{
  /* fallback si certains navigateurs n'appliquent pas bien aux cellules */
  background: rgba(47,111,78,.10);
}
.services-table tbody tr:target td{
  background: rgba(47,111,78,.12) !important;
  border-top: 3px solid rgba(47,111,78,.55) !important;
  border-bottom: 3px solid rgba(47,111,78,.55) !important;
}
.services-table tbody tr:target td:first-child{
  border-left: 3px solid rgba(47,111,78,.55) !important;
}
.services-table tbody tr:target td:last-child{
  border-right: 3px solid rgba(47,111,78,.55) !important;
}
.services-table tbody tr.selected td{
  background: rgba(47,111,78,.12) !important;
  border-top: 3px solid rgba(47,111,78,.70) !important;
  border-bottom: 3px solid rgba(47,111,78,.70) !important;
}
.services-table tbody tr.selected td:first-child{border-left: 3px solid rgba(47,111,78,.70) !important}
.services-table tbody tr.selected td:last-child{border-right: 3px solid rgba(47,111,78,.70) !important}
.services-table tbody tr{
  scroll-margin-top: 96px;
}
.services-table tbody tr.is-focus td{
  background: rgba(47,111,78,.14) !important;
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.price-card{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.96);
  border-radius:var(--radius);
  padding:18px;
}
.price-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.price-card h3{margin:0; font-size:16px}
.price{font-weight:900; background:rgba(17,17,17,.04); border:1px solid var(--line); padding:8px 10px; border-radius:12px}
.price{font-weight:900; background:rgba(47,111,78,.06); border:1px solid rgba(47,111,78,.14); padding:8px 10px; border-radius:12px}
.note{
  margin-top:16px;
  padding:16px 18px;
  border-radius:var(--radius);
  border:1px solid var(--line2);
  background:rgba(122,106,83,.06);
}

.section.highlight{
  padding:64px 0;
  background: radial-gradient(780px 320px at 12% 10%, rgba(47,111,78,.10), transparent 60%),
              radial-gradient(820px 340px at 88% 20%, rgba(122,106,83,.12), transparent 62%),
              rgba(255,255,255,.0);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.highlight-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.highlight-copy h1,.highlight-copy h2{margin:0 0 10px; font-size: clamp(28px, 3vw, 38px); letter-spacing:-.02em}
.lead.small{font-size:16px}
.checklist{list-style:none; padding:0; margin:14px 0 18px; display:grid; gap:10px}
.checklist li{
  padding-left:28px;
  position:relative;
  color:var(--text);
}
.checklist li::before{
  content:"";
  position:absolute; left:0; top:6px;
  width:16px; height:16px;
  border-radius:5px;
  background:rgba(47,111,78,.10);
  border:1px solid var(--line);
  box-shadow:none;
}
.highlight-box{
  border-radius:var(--radius);
  border:1px solid var(--line2);
  background: rgba(255,255,255,.96);
  box-shadow: none;
  padding:18px;
}
.big-price{
  font-size:34px;
  font-weight:950;
  letter-spacing:-.03em;
  margin-bottom:6px;
}
.divider{height:1px; background:rgba(255,255,255,.12); margin:14px 0}
.btn-invert{
  border-color: rgba(47,111,78,.35);
  background: linear-gradient(135deg, rgba(47,111,78,.95), rgba(122,106,83,.85));
  color:#fff;
}
.btn-ghost-invert{
  background:transparent;
  border-color: rgba(31,36,33,.18);
}
.btn-ghost-invert:hover{background:rgba(255,255,255,.55)}
.highlight-actions{display:flex; gap:10px; flex-wrap:wrap}

.subscription-intro{
  margin-bottom:18px;
}
.subscription-note{
  border-radius:var(--radius);
  border:1px solid var(--line2);
  background:rgba(255,255,255,.96);
  padding:18px;
  max-width:760px;
}
.subscription-columns{
  display:flex;
  gap:18px;
  align-items:stretch;
  overflow-x:auto;
  padding-bottom:4px;
}
.subscription-column{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.96);
  border-radius:var(--radius);
  padding:22px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1 1 0;
  min-width:280px;
}
.subscription-column-head h2{
  margin:0 0 6px;
  font-size:28px;
  letter-spacing:-.02em;
}
.subscription-tagline{
  margin:0;
  color:var(--text);
  font-weight:700;
}
.subscription-list-title{
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--muted2);
}
.subscription-list{
  margin:0;
}
.subscription-column .btn{
  margin-top:auto;
}

.contact-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:14px;
  align-items:start;
}
.contact-card,.form-card{
  border-radius:var(--radius);
  border:1px solid var(--line2);
  background:rgba(255,255,255,.92);
  padding:18px;
  box-shadow: var(--shadow2);
}
.contact-list{display:grid; gap:12px}
.contact-item{
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(22,22,22,.16);
  background:rgba(255,255,255,.78);
}
.contact-label{color:var(--muted2); font-size:12px}
.contact-value a{text-decoration:none; font-weight:900}
.reassure{margin-top:14px}
.reassure h3{margin:0 0 6px}
.pill-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.pill{
  font-size:12px; font-weight:700;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(47,111,78,.06);
}

.contact-form{display:grid; gap:12px}
.form-row label{display:block; font-weight:800; margin-bottom:6px}
input,select,textarea{
  width:100%;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line2);
  color:var(--text);
  padding:12px 12px;
  border-radius:14px;
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color:rgba(17,17,17,.28); box-shadow:0 0 0 4px rgba(17,17,17,.08)}
textarea{resize:vertical; min-height:120px}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.check{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:14px}
.check input{width:auto; margin-top:4px}
.hp{position:absolute; left:-9999px; width:1px; height:1px; opacity:0}
.form-note{margin:0}
.form-status{min-height:22px; font-weight:700}
.form-status.loading{color:var(--warn)}
.form-status.success{color:var(--ok)}
.form-status.error{color:var(--bad)}

.site-footer{
  border-top:1px solid var(--line);
  padding:28px 0 18px;
  background:rgba(255,255,255,.0);
}

/* Bouton d’appel flottant (mobile) */
.fab-call{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:80;
  display:none;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(47,111,78,.35);
  background: linear-gradient(135deg, rgba(47,111,78,.95), rgba(122,106,83,.85));
  color:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow: var(--shadow);
}
.fab-top{
  position:fixed;
  right:16px;
  bottom:88px;
  z-index:79;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:56px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.94);
  color:var(--text);
  text-decoration:none;
  font-weight:900;
  box-shadow: var(--shadow2);
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:opacity .2s ease, transform .2s ease, background .15s ease;
}
.fab-top:hover{background:#fff}
.fab-top.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:14px;
}
.footer-brand{display:flex; gap:10px; align-items:center; margin-bottom:10px}
.footer-title{font-weight:900}
.footer-sub{color:var(--muted2); font-size:13px}
.footer-heading{font-weight:900; margin-bottom:8px}
.footer-list{list-style:none; padding:0; margin:0; display:grid; gap:8px; color:var(--muted)}
.footer-list a{text-decoration:none}
.footer-list a:hover{text-decoration:underline}
.footer-bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.to-top{text-decoration:none; color:var(--muted)}
.to-top:hover{text-decoration:underline}

/* Glossaire (et impression) */
.glossary-actions{display:flex; gap:10px; flex-wrap:wrap; margin: 6px 0 14px}
.glossary{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.92);
  border-radius:var(--radius);
  padding:18px;
}
.glossary-tip{
  padding:14px 16px;
  border-radius:16px;
  border:2px solid rgba(47,111,78,.35);
  background:
    radial-gradient(420px 160px at 10% 20%, rgba(47,111,78,.14), transparent 60%),
    rgba(122,106,83,.06);
  margin-bottom:16px;
}
.glossary-tip-title{
  font-weight:950;
  letter-spacing:-.01em;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}
.glossary-tip-title::before{
  content:"⚠️";
  font-size:18px;
  line-height:1;
}
.glossary-tip-text{color:var(--muted)}
.glossary-table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}
.glossary-table th,.glossary-table td{
  text-align:left;
  vertical-align:top;
  padding:12px 10px;
  border-bottom:1px solid var(--line);
}
.glossary-table th{font-size:13px; color:var(--muted2); letter-spacing:.02em; text-transform:uppercase}
.glossary-footer{margin-top:14px}

.suggest-box{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.suggest-box h3{margin:0 0 6px}

@media print{
  .site-header,.site-footer,.glossary-actions,.suggest-box,.to-top,.fab-top,.fab-call,.nav,.header-cta{display:none !important}
  body{background:#fff}
  .container{width:100%; margin:0}
  .section{padding:0}
  .page-illus{display:none}
  .glossary{border:none; padding:0}
  .glossary-table{font-size:12px}
  .glossary-table th,.glossary-table td{padding:8px 6px}
  .glossary-tip{border:1px solid #000; background:#fff}
}

@media (max-width: 980px){
  .header-inner{grid-template-columns: 1fr auto; grid-auto-rows:auto}
  .header-cta{display:none}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav-menu{
    position:absolute;
    right:0;
    top:56px;
    background:rgba(255,255,255,.95);
    border:1px solid var(--line);
    border-radius:16px;
    padding:10px;
    width:min(320px, calc(100vw - 40px));
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav-menu.open{display:flex}
  .nav-menu a{padding:12px}
  .hero-inner{grid-template-columns:1fr; gap:16px}
  .trust-row{grid-template-columns:1fr; gap:10px}
  .grid.cards{grid-template-columns:1fr; }
  .pricing-grid{grid-template-columns:1fr}
  .highlight-inner{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .services-list{max-width: 100%}
  .service-row{grid-template-columns:1fr}
  .fab-call{display:inline-flex}
  .fab-top{bottom:76px; right:16px}
  .brand{width:auto}
  .brand-logo-header{width:150px; height:auto}
  .brand-logo-footer{width:150px; height:66px}
  .page-illus-prestations{
    max-height: 300px;
    padding: 0;
  }
  .page-illus-prestations img{
    height: 300px;
  }
}

