
:root{
  /* Charte Garden Events */
  --forest:#214b35;
  --teal:#00a07a;
  --sun:#e2c200;
  --grey:#e3e3e3;
  --black:#000000;
  --white:#ffffff;

  /* UI */
  --bg: var(--white);
  --ink: var(--black);
  --muted: rgba(0,0,0,.62);
  --line: rgba(0,0,0,.12);
  --card: rgba(255,255,255,.86);
  --glass: rgba(255,255,255,.62);

  --accent: var(--teal);
  --accent2: var(--sun);

  --r:22px;
  --r2:28px;

  --shadow: 0 22px 70px rgba(0,0,0,.14);
  --shadow2: 0 12px 34px rgba(0,0,0,.12);

  --max: 1200px;
  --pad: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(0,160,122,.10), transparent 55%),
    radial-gradient(900px 500px at 92% 8%, rgba(226,194,0,.14), transparent 56%),
    var(--bg);
  color:var(--ink);
  font-family: Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}
.hr{height:1px;background:var(--line);margin:22px 0}

.top{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,245,242,.78);
  border-bottom:1px solid var(--line);
}
.top__in{height:74px; display:flex; align-items:center; justify-content:space-between; gap:12px}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:42px; height:42px; border-radius:16px;
  background: linear-gradient(145deg, var(--accent2), var(--accent));
  box-shadow: 0 14px 30px rgba(24,161,106,.18);
}
.brand__name{font-weight:900; letter-spacing:-.02em}
.brand__tag{color:var(--muted); font-size:12px; border:1px solid var(--line); padding:6px 10px; border-radius:999px; display:inline-block; margin-top:4px}

.nav{display:none; gap:18px}
.nav a{color:var(--muted); font-weight:800; font-size:13px}
.nav a:hover{color:var(--ink)}
@media(min-width:980px){.nav{display:flex}}

.actions{display:none; gap:10px; align-items:center}
@media(min-width:980px){.actions{display:flex}}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:900;
  font-size:13px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(145deg, var(--accent), #0F7F52);
  color:white;
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(24,161,106,.18);
}
.btn--ghost{background:rgba(255,255,255,.6)}
.btn--ghost:hover{background:rgba(255,255,255,.9)}

.burger{
  width:44px; height:44px; border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.6);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:5px; cursor:pointer;
}
.burger span{width:18px; height:2px; background:rgba(11,15,20,.75); border-radius:999px}
@media(min-width:980px){.burger{display:none}}

.mobile{
  display:none;
  padding:12px var(--pad) 18px;
  border-top:1px solid var(--line);
}
.mobile a{display:block; padding:12px 10px; color:var(--muted); border-radius:14px}
.mobile a:hover{background:rgba(255,255,255,.8); color:var(--ink)}
.mobile .btn{width:100%; margin-top:10px}

.hero{padding:72px 0 10px}
.hero__grid{display:grid; gap:18px; align-items:end}
@media(min-width:980px){.hero__grid{grid-template-columns: 1.05fr .95fr}}

.kicker{
  font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(11,15,20,.55);
  font-weight:950;
}
.h1{
  margin:14px 0 0;
  font-size:44px;
  letter-spacing:-.05em;
  line-height:1.02;
}
@media(min-width:980px){.h1{font-size:64px}}
.lead{
  margin-top:14px;
  font-size:16px;
  color:var(--muted);
  line-height:1.7;
  max-width:62ch;
}
.hero__cta{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}

.heroCard{
  border-radius:var(--r2);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--glass);
  box-shadow: var(--shadow);
}
.heroCard__img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  filter: contrast(1.02) saturate(1.03);
}
.heroCard__cap{
  padding:14px 16px;
  display:flex; justify-content:space-between; gap:10px;
}
.heroCard__cap b{font-weight:950; letter-spacing:-.02em}
.heroCard__cap span{color:var(--muted); font-size:12px}

.section{padding:70px 0}
.head{max-width:900px}
.h2{
  margin:10px 0 0;
  font-size:30px; letter-spacing:-.04em; line-height:1.05;
}
@media(min-width:980px){.h2{font-size:44px}}
.p{margin-top:12px; color:var(--muted); line-height:1.75}

.cards{margin-top:18px; display:grid; gap:12px}
@media(min-width:980px){.cards{grid-template-columns: repeat(3,1fr)}}
.card{
  border-radius:var(--r2);
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
  padding:18px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.card:hover{transform: translateY(-2px); background:rgba(255,255,255,.9); box-shadow: var(--shadow)}
.card h3{margin:0; font-weight:950; letter-spacing:-.02em}
.card p{margin:10px 0 0; color:var(--muted); line-height:1.7}
.card ul{margin:12px 0 0; padding-left:18px; color:rgba(11,15,20,.75); line-height:1.75}

.editorial{margin-top:18px; display:grid; gap:12px}
@media(min-width:980px){.editorial{grid-template-columns: 1.2fr .8fr}}
.stack{display:grid; gap:12px}
.tile{
  position:relative;
  border-radius:var(--r2);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
  box-shadow: var(--shadow2);
}
.tile img{width:100%; height:100%; object-fit:cover; display:block}
.tile__meta{
  position:absolute; left:14px; bottom:14px; right:14px;
  padding:12px 12px;
  border-radius:18px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(11,15,20,.10);
  backdrop-filter: blur(10px);
  display:flex; justify-content:space-between; gap:10px; align-items:flex-end;
  opacity:0; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.tile:hover .tile__meta{opacity:1; transform:none}
.tile__meta b{font-weight:950; letter-spacing:-.02em}
.tile__meta span{color:var(--muted); font-size:12px}

.quote{
  border-radius:var(--r2);
  border:1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.80), rgba(255,255,255,.55));
  box-shadow: var(--shadow2);
  padding:18px;
}
.quote__big{
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.03em;
  font-weight:950;
}
.quote__small{margin-top:12px; color:var(--muted); line-height:1.75}

.filters{margin-top:16px; display:flex; gap:8px; flex-wrap:wrap}
.f{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
  font-weight:950;
  font-size:12px;
  color:rgba(11,15,20,.72);
  cursor:pointer;
}
.f.is-active{
  background: linear-gradient(145deg, rgba(24,161,106,.16), rgba(151,240,199,.26));
  border-color: rgba(24,161,106,.30);
  color: var(--ink);
}

.gallery{margin-top:14px; display:grid; gap:12px}
@media(min-width:760px){.gallery{grid-template-columns: repeat(2,1fr)}}
@media(min-width:1120px){.gallery{grid-template-columns: repeat(3,1fr)}}
.g{
  border-radius:var(--r2);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.g img{width:100%; aspect-ratio: 4/3; object-fit:cover; display:block}
.g .cap{padding:14px 14px 16px}
.badges{display:flex; gap:6px; flex-wrap:wrap}
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  color:rgba(11,15,20,.70);
}
.cap b{display:block; margin-top:10px; font-weight:950; letter-spacing:-.02em}
.cap span{display:block; margin-top:6px; color:var(--muted); font-size:13px}

.modal{
  position:fixed; inset:0; z-index:100;
  background: rgba(11,15,20,.72);
  display:none;
  padding:18px;
}
.modal.is-open{display:flex}
.modal__box{
  margin:auto;
  max-width: 1100px;
  width: 100%;
  border-radius:var(--r2);
  overflow:hidden;
  background: #fff;
  box-shadow: 0 30px 120px rgba(0,0,0,.35);
  position:relative;
}
.modal__img{width:100%; max-height:80vh; object-fit:contain; background:#0B0F14; display:block}
.modal__bar{
  padding:12px 14px;
  display:flex; justify-content:space-between; gap:10px;
  border-top:1px solid rgba(11,15,20,.08);
}
.modal__bar b{font-weight:950; letter-spacing:-.02em}
.modal__bar span{color:var(--muted); font-size:12px}
.close{
  position:absolute; top:12px; right:12px;
  width:42px; height:42px; border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color:white;
  cursor:pointer;
}

.form{margin-top:14px; display:grid; gap:10px}
.row{display:grid; gap:10px}
@media(min-width:760px){.row{grid-template-columns:1fr 1fr}}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  font-size:14px;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
small{color:var(--muted)}

.footer{
  padding:26px 0 40px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
}

.footerGrid{
  display:grid; gap:18px;
}
@media(min-width:980px){.footerGrid{grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr}}
.footerCol h4{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(11,15,20,.55);
}
.footerCol a, .footerCol span{
  display:block;
  padding:6px 0;
  color:var(--muted);
}
.footerCol a:hover{color:var(--ink)}
.footerBottom{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:14px;
}


/* Brand */
.brand__logo{
  width:148px;
  height:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}
.brand__name{color:var(--forest)}
.brand__tag{border-color:rgba(33,75,53,.20)}
.nav a{letter-spacing:.02em}
.nav a:hover{color:var(--forest)}
.btn--primary{background: linear-gradient(145deg, var(--forest), var(--teal)); box-shadow: 0 16px 46px rgba(0,160,122,.22)}
.btn--ghost{background:rgba(255,255,255,.75)}

/* Decorative shapes */
.shape{
  position:absolute;
  pointer-events:none;
  user-select:none;
  opacity:.26;
  filter: saturate(1.1);
}
.shape--1{width:260px; left:-40px; top:-40px}
.shape--2{width:240px; right:-50px; top:30px; opacity:.18}
.shape--3{width:220px; left:20px; bottom:-70px; opacity:.16}
.shape--4{width:260px; right:-70px; bottom:-90px; opacity:.14}

.hero{position:relative; overflow:hidden}
.hero .kicker{color:rgba(33,75,53,.65)}
.h1, .h2{color:var(--forest)}
.card{background:rgba(255,255,255,.90)}
.card:hover{background:rgba(255,255,255,.98)}

/* Page hero */
.pageHero{
  position:relative;
  padding:56px 0 18px;
}
.pageHero__grid{display:grid; gap:16px; align-items:end}
@media(min-width:980px){.pageHero__grid{grid-template-columns: 1.05fr .95fr}}
.pageHero__media{
  border-radius:var(--r2);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--glass);
  box-shadow: var(--shadow);
}
.pageHero__media img{width:100%; height:380px; object-fit:cover; display:block}
.pageHero__badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(33,75,53,.18);
  background: rgba(255,255,255,.8);
  color:rgba(33,75,53,.85);
  font-weight:950; font-size:12px;
}
.pageHero__list{margin:14px 0 0; padding-left:18px; color:rgba(0,0,0,.78); line-height:1.75}

.split{
  display:grid; gap:14px; align-items:stretch; margin-top:18px;
}
@media(min-width:980px){.split{grid-template-columns: 1fr 1fr}}
.split__img{border-radius:var(--r2); overflow:hidden; border:1px solid var(--line); background:var(--card); box-shadow:var(--shadow2)}
.split__img img{width:100%; height:320px; object-fit:cover; display:block}
.split__text{border-radius:var(--r2); border:1px solid var(--line); background:var(--card); box-shadow:var(--shadow2); padding:18px}
.split__text h3{margin:0; color:var(--forest); font-weight:950}
.split__text p{margin:10px 0 0; color:var(--muted); line-height:1.75}

.footer h4{color:var(--forest)}

.footer__logo{width:180px;height:auto;display:block;margin:0 0 10px;filter:drop-shadow(0 12px 18px rgba(0,0,0,.10))}

/* ===========================
   HOME (Design A – Luxury Botanical)
   =========================== */
.homeHero{
  position:relative;
  padding:72px 0 34px;
  background:
    radial-gradient(900px 540px at 18% 0%, rgba(0,160,122,.14), transparent 60%),
    radial-gradient(760px 520px at 92% 18%, rgba(33,75,53,.12), transparent 55%),
    linear-gradient(180deg, rgba(227,227,227,.28) 0%, rgba(255,255,255,0) 70%);
  overflow:hidden;
}
.homeHero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:stretch;
}
.eyebrow{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(0,0,0,.60);
}
.eyebrow::before{
  content:"";
  width:34px;
  height:1px;
  background: rgba(0,160,122,.65);
}
.homeHero__title{
  margin:16px 0 12px;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height:1.02;
  letter-spacing:-.02em;
}
.homeHero__title em{
  font-style:italic;
  font-weight:800;
  color: var(--forest);
}
.homeHero__lead{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color: rgba(0,0,0,.70);
  max-width: 60ch;
}
.homeHero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 20px;
}
.chip{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(0,160,122,.18);
  background: rgba(0,160,122,.08);
  color: rgba(0,0,0,.74);
  font-weight:800;
  font-size:13px;
}
.homeHero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:4px;
}
.homeHero__proof{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.proofCard{
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.72);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.proofCard b{display:block;font-size:14px;margin-bottom:4px}
.proofCard span{display:block;color:rgba(0,0,0,.62);line-height:1.45;font-size:13px}

.homeHero__media{
  position:relative;
  min-height: 520px;
}
.mediaFrame{
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
  height:100%;
  min-height: 520px;
  position:relative;
  background: #111;
}
.mediaFrame__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.02);
}
.mediaFrame::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.48));
}
.mediaFrame__badge{
  position:absolute;
  left:16px;
  bottom:16px;
  z-index:2;
  max-width: 380px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.12);
  padding:14px 14px;
}
.mediaFrame__badge strong{display:block;font-size:14px}
.mediaFrame__badge span{display:block;color:rgba(0,0,0,.70);font-size:13px;line-height:1.35;margin-top:3px}

.shape{
  position:absolute;
  pointer-events:none;
  opacity:.22;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.10));
}
.shape--a{right:-40px;top:-26px;width:min(360px, 42vw)}
.shape--b{left:-46px;bottom:-60px;width:min(320px, 38vw);opacity:.18}
.shape--c{right:-30px;bottom:-30px;width:min(300px, 34vw);opacity:.20}

.homeSection{padding:46px 0}
.homeSection--alt{
  background:
    radial-gradient(760px 420px at 15% 0%, rgba(226,194,0,.10), transparent 60%),
    linear-gradient(180deg, rgba(227,227,227,.22) 0%, rgba(255,255,255,0) 70%);
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.sectionHead h2{margin:0;font-size:28px;letter-spacing:-.02em}
.sectionHead p{margin:0;color:rgba(0,0,0,.66);max-width:60ch;line-height:1.55}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.cardX{
  display:block;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.86);
  border-radius: 22px;
  padding:16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cardX:hover{transform: translateY(-2px); box-shadow: 0 18px 55px rgba(0,0,0,.10)}
.cardX__img{
  height:180px;
  border-radius: 16px;
  background-size:cover;
  background-position:center;
  border:1px solid rgba(0,0,0,.10);
}
.cardX h3{margin:12px 0 6px;font-size:16px}
.cardX p{margin:0;color:rgba(0,0,0,.66);line-height:1.45;font-size:14px}
.cardX__link{display:inline-block;margin-top:10px;color:var(--teal);font-weight:900}

.cards3--mini{margin-top:14px}
.cardMini{
  border:1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.cardMini b{font-size:14px}
.cardMini span{color:rgba(0,0,0,.64);line-height:1.4;font-size:13px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
.split__media{position:relative}
.split__img{
  width:100%;
  height: 420px;
  object-fit:cover;
  border-radius: 28px;
  border:1px solid rgba(0,0,0,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  display:block;
}
.split__copy h2{margin:12px 0 10px;font-size:28px;letter-spacing:-.02em}
.split__copy p{margin:0;color:rgba(0,0,0,.68);line-height:1.6}
.bullets{margin:14px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.bullets li{display:flex;gap:10px;align-items:flex-start;color:rgba(0,0,0,.70);line-height:1.45}
.dot{width:10px;height:10px;border-radius:50%;background: var(--teal);margin-top:6px;flex:0 0 auto}

.mosaic{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
}
.mosaic a{
  position:relative;
  border-radius: 28px;
  border:1px solid rgba(0,0,0,.12);
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow: 0 16px 60px rgba(0,0,0,.10);
  min-height: 220px;
}
.mosaic__big{min-height: 460px}
.mosaic__small{min-height: 222px}
.mosaic a::after{
  content:"";
  position:absolute;inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.52));
}
.mosaic__tag{
  position:absolute;left:16px;top:16px;z-index:2;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.20);
  color:#fff;font-weight:800;font-size:12px;
}
.mosaic__title{
  position:absolute;left:16px;bottom:16px;z-index:2;
  color:#fff;font-weight:900;
  font-size:16px;
  letter-spacing:-.01em;
}

.homeSection--newsletter{
  padding:30px 0 60px;
}
.newsletterBox{
  border-radius: 28px;
  border:1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(780px 340px at 10% 0%, rgba(0,160,122,.16), transparent 60%),
    radial-gradient(700px 320px at 90% 30%, rgba(226,194,0,.12), transparent 58%),
    rgba(255,255,255,.86);
  box-shadow: 0 18px 70px rgba(0,0,0,.08);
  padding:22px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:center;
}
.newsletterBox h2{margin:0 0 6px;font-size:22px}
.newsletterBox p{margin:0;color:rgba(0,0,0,.66);line-height:1.5}
.newsletterForm{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.newsletterForm input{
  flex:1;
  min-width: 220px;
  border-radius: 14px;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.92);
}
.newsletterForm small{
  width:100%;
  text-align:right;
  color: rgba(0,0,0,.58);
}
@media (max-width: 980px){
  .homeHero__grid{grid-template-columns:1fr}
  .homeHero__media{min-height:auto}
  .mediaFrame{min-height:360px}
  .homeHero__proof{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .split__img{height:320px}
  .mosaic{grid-template-columns:1fr}
  .mosaic__big{min-height:320px}
  .newsletterBox{grid-template-columns:1fr}
  .newsletterForm{justify-content:flex-start}
  .newsletterForm small{text-align:left}
}


/* ---- Dense B2B blocks (Homepage A+) ---- */
.homeSection--tight{ padding-top: 22px; }
.trustRow{ display:grid; grid-template-columns: 1fr 1.1fr; gap: 22px; align-items: start; }
.trustRow__left p{ margin:10px 0 0; color: var(--muted); line-height:1.6; }
.logoStrip{ display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-start; }
.logoPill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px; border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 13px;
}
.kpiRow{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.kpi{
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.75);
}
.kpi b{ display:block; font-size: 18px; }
.kpi span{ display:block; margin-top:6px; color: var(--muted); line-height:1.45; font-size:13px; }

.sectorGrid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sectorCard{
  display:block;
  padding:18px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sectorCard b{ display:block; font-size: 15px; letter-spacing: -.01em; }
.sectorCard span{ display:block; margin-top:6px; color: var(--muted); line-height:1.5; font-size: 13px; }
.sectorCard:hover{ transform: translateY(-2px); border-color: rgba(0,160,122,.30); box-shadow: 0 22px 60px rgba(0,0,0,.08); }

.centerCta{ margin-top: 16px; display:flex; gap: 12px; flex-wrap: wrap; align-items:center; justify-content:flex-start; }

.whyGrid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.whyCard{
  padding:18px;
  border:1px solid var(--line);
  border-radius: var(--r2);
  background: rgba(255,255,255,.78);
}
.whyCard b{ display:block; }
.whyCard span{ display:block; margin-top:8px; color: var(--muted); line-height:1.55; font-size:13px; }

.faq{ display:grid; gap: 10px; }
.faqItem{
  border:1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.82);
  padding: 2px 0;
}
.faqItem summary{
  cursor:pointer;
  padding: 14px 16px;
  font-weight: 850;
  list-style: none;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqItem summary:after{
  content:"+";
  float:right;
  font-weight:900;
  color: rgba(0,0,0,.55);
}
.faqItem[open] summary:after{ content:"–"; }
.faqBody{
  padding: 0 16px 14px 16px;
  color: var(--muted);
  line-height:1.6;
  font-size: 14px;
}

/* Maintenance page — contact block */
.geContact__chips{
  list-style:none;
  padding:0;
  margin:10px 0 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.geChip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: rgba(0,0,0,.75);
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.geChip__icon{ width:16px; height:16px; color: var(--accent); }

.geContact__list{
  list-style:none;
  padding:0;
  margin:12px 0 0 0;
  display:grid;
  gap:12px;
}
.geContact__item{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.65);
}
.geContact__icon{
  width:28px;
  height:28px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(0,122,87,.12), rgba(0,122,87,.04));
}
.geContact__icon svg{ width:16px; height:16px; color: var(--accent); }
.geContact__label{ font-weight:700; margin:0 0 2px 0; }
.geContact__value{ margin:0; color: rgba(0,0,0,.72); }
.geContact__value a{ color: inherit; text-decoration: none; border-bottom:1px dotted rgba(0,0,0,.25); }
.geContact__value a:hover{ border-bottom-color: rgba(0,0,0,.5); }

.geContact__note{
  margin-top:12px;
  display:flex;
  gap:8px;
  align-items:flex-start;
  color: rgba(0,0,0,.6);
  font-size: 12px;
}
.geContact__note svg{ width:14px; height:14px; color: rgba(0,0,0,.45); margin-top:2px; }

@media (max-width: 980px){
  .trustRow{ grid-template-columns: 1fr; }
  .kpiRow{ grid-template-columns: 1fr; }
  .sectorGrid{ grid-template-columns: 1fr; }
  .whyGrid{ grid-template-columns: 1fr; }
}

/* --- Maintenance: Coordonnées (premium, aéré) --- */
.geContact__blocks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:14px 0 10px;
}
.geContact__block{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(17,24,39,.08);
  border-radius:18px;
  padding:14px 14px;
  box-shadow:0 10px 24px rgba(17,24,39,.06);
}
.geContact__title{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.geBadgeIcon{
  width:38px;
  height:38px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 38px;
  background:linear-gradient(135deg, rgba(10, 128, 92, .16), rgba(10, 128, 92, .06));
  border:1px solid rgba(10, 128, 92, .22);
  color:rgba(10, 128, 92, 1);
}
.geBadgeIcon svg{width:18px;height:18px;}
.geContact__kicker{
  font-weight:700;
  letter-spacing:.02em;
  color:rgba(17,24,39,.92);
  line-height:1.15;
}
.geContact__value{
  margin-top:4px;
  color:rgba(17,24,39,.72);
  font-size:14px;
  line-height:1.35;
}

.geContact__lines{
  margin-top:12px;
  padding-top:2px;
}
.geContact__line{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  border-top:1px solid rgba(17,24,39,.08);
}
.geContact__line:first-child{border-top:none;}

.geIcon{
  width:32px;
  height:32px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 32px;
  background:rgba(10, 128, 92, .10);
  border:1px solid rgba(10, 128, 92, .18);
}
.geIcon::before{font-size:16px;line-height:1;}
.geIcon--mail::before{content:"✉️";}
.geIcon--phone::before{content:"📞";}
.geIcon--ig::before{content:"📷";}

.geContact__k{
  min-width:92px;
  font-weight:700;
  color:rgba(17,24,39,.86);
}
.geContact__v{
  color:rgba(17,24,39,.76);
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.geContact__v:hover{border-bottom-color:rgba(10, 128, 92, .35);}

@media (max-width: 720px){
  .geContact__blocks{grid-template-columns:1fr;}
  .geContact__k{min-width:80px;}
}
