/* ==========================================================================
   Canopée — page d'attente (DeTag reprend Innolife)
   Autonome, charte verte Canopée · police Poppins
   ========================================================================== */
:root {
  --brand: #4e9132;
  --brand-700: #3a6f23;
  --leaf: #8cc63f;
  --forest: #143018;
  --forest-2: #1e4a22;
  --ink: #16241a;
  --text: #51605a;
  --muted: #869089;
  --line: #e7ebe6;
  --card: #ffffff;
  --radius: 12px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #fff;
  background: linear-gradient(125deg, var(--forest) 0%, var(--forest-2) 45%, var(--brand-700) 100%);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
/* filigrane de feuille */
body::before {
  content: "";
  position: fixed;
  right: -120px; bottom: -120px;
  width: 620px; height: 620px;
  background: url("leaf-texture.png") center/contain no-repeat;
  opacity: .06;
  pointer-events: none;
}
a { color: var(--leaf); text-decoration: none; transition: color .15s ease; }
a:hover { color: #fff; }
h1, h2, h3 { font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: #fff; }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: 760px; margin: 0 auto; padding: 40px 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.wrap--wide { max-width: 920px; }

/* Logo */
.logo {
  display: inline-flex; align-self: flex-start;
  background: #fff; border-radius: 16px; padding: 10px 14px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.logo img { display: block; height: 64px; width: auto; }

/* Badge "bientôt" */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 34px 0 18px;
  font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--leaf);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(140,198,63,.25); }

h1.title { font-size: clamp(2rem, 1.4rem + 3vw, 3.2rem); letter-spacing: -.01em; max-width: 16ch; }
.subtitle { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 56ch; }

/* Carte transition Innolife -> DeTag */
.transition {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin: 30px 0 8px; padding: 20px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.transition .from, .transition .to { display: flex; flex-direction: column; }
.transition .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55); }
.transition .name { font-size: 1.2rem; font-weight: 700; color: #fff; }
.transition .sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 1px; }
.transition .from .name { color: rgba(255,255,255,.85); }
.transition .name a { color: #fff; text-decoration: none; border-bottom: 2px solid rgba(140,198,63,.55); padding-bottom: 1px; transition: border-color .15s ease, color .15s ease; }
.transition .name a:hover { color: var(--leaf); border-color: var(--leaf); }
.transition .arrow { font-size: 1.6rem; color: var(--leaf); line-height: 1; }
.transition .note { flex: 1 1 240px; min-width: 200px; font-size: .92rem; color: rgba(255,255,255,.8); margin: 0; }

/* Boutons */
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 30px; font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: all .15s ease;
}
.btn--primary { background: #fff; color: var(--brand-700); border-color: #fff; }
.btn--primary:hover { background: var(--leaf); border-color: var(--leaf); color: var(--forest); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: #fff; color: var(--brand-700); border-color: #fff; }

/* Pied */
.foot {
  padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: rgba(255,255,255,.6);
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; align-items: center;
}
.foot a { color: rgba(255,255,255,.8); }
.foot a:hover { color: #fff; }

/* ---------- Page contact ---------- */
.back { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.back:hover { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; margin-top: 28px; }
.panel {
  background: rgba(255,255,255,.96); color: var(--ink);
  border-radius: var(--radius); padding: 28px 30px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.panel h2 { color: var(--ink); font-size: 1.25rem; }
.panel p { color: var(--text); }
.muted { color: var(--muted); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
  font: inherit; font-size: .95rem; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.btn--send { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--send:hover { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; font-size: .95rem; }
.info-list svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--brand); margin-top: 2px; }
.info-list strong { display: block; color: var(--ink); }
.info-list a { color: var(--brand-700); }
.info-list a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .transition .note { flex-basis: 100%; }
}

/* ---------- Formulaire : honeypot + bannières d'état ------------------- */
.hp { position: absolute !important; left: -5000px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.banner { padding: 14px 18px; border-radius: 10px; margin: 22px 0 4px; font-size: .95rem; line-height: 1.5; }
.banner--ok  { background: rgba(140,198,63,.18); border: 1px solid rgba(140,198,63,.55); color: #eaffd6; }
.banner--err { background: rgba(226,90,72,.16);  border: 1px solid rgba(226,90,72,.55); color: #ffded7; }
