/* =========================================================
   RENTIA V2 — MIRROR STRICT DE LA PLAQUETTE
   Header sombre + bandeau 3 verts + 3 colonnes + footer vert
   ========================================================= */

:root{
  /* verts repris du logo / plaquette */
  --green-darkest:#0e5d2c;   /* badge vert sombre (Gestion technique) */
  --green-mid:#2ba03a;       /* badge vert mid (Pilotage, Vision) */
  --green-light:#9fe03f;     /* badge vert pomme (Optimisation) */

  /* fonds & encres */
  --ink:#1f2624;             /* gris très sombre du bandeau header */
  --ink-2:#2c3431;
  --paper:#f4f4f4;           /* fond légèrement gris (zone centrale plaquette) */
  --paper-warm:#fafaf9;
  --white:#ffffff;
  --text:#1a1f1d;
  --text-soft:#4a524e;
  --rule:rgba(0,0,0,.10);

  --maxw:1280px;
  --gutter:clamp(16px,3vw,40px);

  --sans:"Inter",system-ui,-apple-system,Segoe UI,sans-serif;
  --script:"Caveat",cursive;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--sans);
  font-size:15px;
  line-height:1.5;
  color:var(--text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
sup{font-size:.6em;vertical-align:super;}

/* =========================================================
   HEADER sombre — comme bandeau plaquette
   ========================================================= */
.head{
  position:sticky;top:0;z-index:50;
  background:var(--ink);
  color:#fff;
}
.head-inner{
  max-width:var(--maxw);margin:0 auto;
  padding:18px var(--gutter);
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:32px;align-items:center;
}
.brand img{height:52px;width:auto;display:block;}
.head-title{text-align:center;}
.head-title h1{
  font-size:clamp(15px,1.6vw,21px);
  font-weight:800;
  letter-spacing:.04em;
  color:#fff;
  line-height:1.15;
  margin-bottom:4px;
}
.head-title p{
  font-size:clamp(11px,1vw,13.5px);
  font-weight:500;
  color:var(--green-light);
  letter-spacing:.01em;
}
.head-cta{
  display:inline-flex;align-items:center;
  padding:10px 20px;
  background:var(--green-mid);color:#fff;
  font-size:13px;font-weight:600;letter-spacing:.02em;
  border-radius:4px;
  transition:background .2s,transform .2s;
}
.head-cta:hover{background:var(--green-light);color:var(--ink);transform:translateY(-1px);}

.burger{
  display:none;
  background:transparent;border:0;cursor:pointer;
  width:32px;height:32px;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
}
.burger span{display:block;width:22px;height:1.5px;background:#fff;transition:transform .25s;}

/* Bandeau 3 verts (gradient nuances logo) */
.green-bar{display:flex;height:14px;}
.green-bar span{flex:1;height:100%;}
.green-bar .g1{background:var(--green-darkest);}
.green-bar .g2{background:var(--green-mid);}
.green-bar .g3{background:var(--green-light);}

/* =========================================================
   BLOC PRINCIPAL — 3 colonnes
   ========================================================= */
.board{
  background:var(--paper);
  padding:clamp(28px,4vw,52px) var(--gutter) clamp(40px,5vw,72px);
}
.board-grid{
  max-width:var(--maxw);margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.15fr 1fr;
  gap:clamp(20px,2.4vw,40px);
  align-items:start;
}

/* Titres de colonnes — vert sombre, uppercase, bordure basse */
.col-title{
  font-size:clamp(15px,1.3vw,17px);
  font-weight:800;
  color:var(--green-darkest);
  letter-spacing:.02em;
  line-height:1.25;
  padding-bottom:14px;
  margin-bottom:20px;
  border-bottom:1px solid var(--rule);
}

/* =========================================================
   COLONNE 1 — Régie indépendante + interlocuteur + contact
   ========================================================= */
.col-1{
  background:var(--white);
  padding:clamp(20px,2.4vw,28px);
  border-radius:4px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.col-text{
  font-size:14px;
  color:var(--text);
  line-height:1.55;
  margin-bottom:14px;
}
.col-text strong{font-weight:700;color:var(--text);}

.engagements{
  margin:6px 0 18px;
  display:flex;flex-direction:column;gap:8px;
}
.engagements li{
  display:flex;gap:10px;align-items:flex-start;
  font-size:14px;font-weight:600;
  color:var(--text);line-height:1.45;
}
.engagements .arrow{
  color:var(--green-mid);font-size:11px;
  flex-shrink:0;padding-top:3px;
}

/* Bandeaux titres section interlocuteur / échangeons */
.banner{
  padding:11px 16px;
  font-size:13px;font-weight:800;letter-spacing:.03em;
  color:#fff;
  margin:22px 0 16px;
  border-radius:3px;
}
.banner-green{background:var(--green-darkest);}
.banner-grey{background:var(--ink);}

/* Bloc photo Ugo */
.ugo-block{
  display:flex;gap:16px;align-items:center;
  padding:4px 0 18px;
  border-bottom:1px solid var(--rule);
  margin-bottom:6px;
}
.ugo-photo{
  width:76px;height:76px;border-radius:50%;
  overflow:hidden;flex-shrink:0;
  border:3px solid var(--green-darkest);
  background:#fff;
}
.ugo-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.ugo-info p{margin:0;line-height:1.25;}
.ugo-name{
  font-size:20px;font-weight:700;color:var(--text);
}
.ugo-role{
  font-size:14px;font-weight:600;color:var(--green-mid);
  margin-top:2px!important;
}
.ugo-co{
  font-size:14px;font-weight:700;color:var(--text);
  margin-top:2px!important;
}

/* Liste contacts */
.contact-list{display:flex;flex-direction:column;gap:10px;}
.contact-list li{
  display:flex;align-items:center;gap:12px;
  font-size:14px;font-weight:500;color:var(--text);
}
.contact-list .ic{
  display:inline-grid;place-items:center;
  width:26px;height:26px;border-radius:50%;
  background:var(--green-darkest);color:#fff;
  flex-shrink:0;
}
.contact-list .ic svg{width:13px;height:13px;}
.contact-list a{transition:color .2s;}
.contact-list a:hover{color:var(--green-mid);}

/* =========================================================
   COLONNE 2 — Gestion complète (4 services à badge)
   ========================================================= */
.col-2{
  background:var(--white);
  padding:clamp(20px,2.4vw,28px);
  border-radius:4px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.service{margin-bottom:22px;}
.service:last-child{margin-bottom:0;}

/* Badge service — bandeau arrondi-pilule comme plaquette */
.svc-badge{
  display:block;
  padding:11px 22px;
  color:#fff;
  font-size:14px;font-weight:800;letter-spacing:.04em;
  border-radius:999px;
  margin-bottom:10px;
}
.svc-badge.bg-mid{background:var(--green-mid);}
.svc-badge.bg-dark{background:var(--green-darkest);}
.svc-badge.bg-light{background:var(--green-light);color:var(--green-darkest);}

.svc-list{
  padding:6px 6px 6px 22px;
  display:flex;flex-direction:column;gap:6px;
}
.svc-list li{
  position:relative;
  padding:4px 0 4px 18px;
  font-size:14.5px;font-weight:600;color:var(--text);
  line-height:1.45;
}
.svc-list li::before{
  content:"";position:absolute;
  left:0;top:11px;
  width:6px;height:6px;border-radius:50%;
  background:var(--text);
}

/* =========================================================
   COLONNE 3 — Pourquoi RENTIA + signature
   ========================================================= */
.col-3{
  background:var(--white);
  padding:clamp(20px,2.4vw,28px);
  border-radius:4px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  display:flex;flex-direction:column;
}
.why{margin-bottom:18px;}
.why-title{
  font-size:14.5px;
  font-weight:700;
  color:var(--green-mid);
  line-height:1.35;
  margin-bottom:5px;
}
.why-num{font-weight:700;color:var(--green-mid);}
.why-body{
  font-size:13.5px;
  color:var(--text);
  line-height:1.5;
  padding-left:2px;
}

.closing{
  margin-top:18px;
  font-size:14px;font-weight:800;
  color:var(--green-darkest);letter-spacing:.02em;
  line-height:1.35;
  text-transform:uppercase;
}
.signature{
  font-family:var(--script);
  font-size:42px;font-weight:600;
  color:var(--green-mid);
  margin-top:14px;
  line-height:1;
}

.rdv-btn{
  margin-top:24px;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 22px;
  background:var(--green-darkest);color:#fff;
  font-size:14px;font-weight:700;letter-spacing:.02em;
  border-radius:4px;
  align-self:flex-start;
  transition:background .2s,transform .2s,box-shadow .2s;
}
.rdv-btn svg{width:16px;height:16px;transition:transform .2s;}
.rdv-btn:hover{
  background:var(--green-mid);transform:translateY(-2px);
  box-shadow:0 8px 20px -10px rgba(43,160,58,.6);
}
.rdv-btn:hover svg{transform:translateX(4px);}

/* =========================================================
   FOOTER vert sombre
   ========================================================= */
.foot{
  background:var(--green-darkest);
  color:#fff;
  text-align:center;
  padding:18px var(--gutter);
}
.foot p{
  font-size:13.5px;font-weight:600;letter-spacing:.04em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .head-inner{grid-template-columns:auto 1fr auto;gap:16px;}
  .head-title h1{font-size:14px;}
  .head-title p{font-size:11px;}
  .board-grid{grid-template-columns:1fr;gap:18px;}
  .col-1,.col-2,.col-3{max-width:680px;margin:0 auto;width:100%;}
}
@media (max-width:680px){
  .head-inner{grid-template-columns:auto auto;gap:12px;padding:12px var(--gutter);}
  .head-title{display:none;}
  .brand img{height:38px;}
  .head-cta{padding:8px 14px;font-size:12px;}
  .green-bar{height:10px;}
  .col-title{font-size:14px;}
  .signature{font-size:36px;}
  .closing{font-size:13px;}
}
