/* Ultra Clean Azur — feuille de style principale */

:root {
  --ink: #14171a;
  --forest: #22352b;
  --forest-600: #2f4438;
  --forest-400: #4a6b58;
  --lime: #e3fa5c;
  --lime-600: #d2ee3f;
  --lime-700: #c9e33f;
  --leaf: #5d8a4a;

  --sage-50: #f5f8f1;
  --sage-100: #eef5e5;
  --sage-200: #e8eee5;

  --muted: #4c5750;
  --muted-2: #5b6660;
  --muted-3: #6d7a71;
  --muted-4: #96a099;

  --line: rgba(20, 23, 26, 0.12);
  --line-soft: rgba(20, 23, 26, 0.1);
  --line-light: rgba(255, 255, 255, 0.18);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --wrap: 1280px;
  --pad-x: clamp(18px, 4vw, 60px);
  --section-y: clamp(72px, 8vw, 132px);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--forest); }
a:hover { color: var(--forest-400); }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
::placeholder { color: #9ba49c; }
section[id] { scroll-margin-top: 96px; }
a, button, label { transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease; }

.wrap { max-width: var(--wrap); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--forest);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { font-size: 15.5px; padding: 17px 28px; }
.btn--block { width: 100%; }

.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--lime-600); color: var(--ink); }

.btn--forest { background: var(--forest); color: #fff; }
.btn--forest:hover { background: var(--forest-600); color: #fff; }

.btn--ghost {
  color: var(--ink);
  font-weight: 600;
  border: 1px solid rgba(20, 23, 26, 0.16);
  background: transparent;
}
.btn--ghost:hover { background: rgba(20, 23, 26, 0.05); color: var(--ink); }

.btn--outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(20, 23, 26, 0.12);
  padding: 14px 24px;
}
.btn--outline:hover { background: #eaf0e3; color: var(--ink); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 14px 20px;
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

/* ---------- Barre supérieure ---------- */

.topbar {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
  padding: 11px var(--pad-x);
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 30px;
}
.topbar__phone {
  color: var(--lime);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.topbar__phone:hover { color: #fff; }
.topbar__promise { margin-left: auto; }

/* ---------- En-tête ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  padding: 16px var(--pad-x);
  border-bottom: 1px solid rgba(20, 23, 26, 0.07);
  transition: box-shadow 200ms ease;
}
.header.is-scrolled { box-shadow: 0 8px 30px rgba(20, 23, 26, 0.06); }

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
}
.header__logo { flex: none; display: flex; align-items: center; margin-right: auto; }
.header__logo img { height: 50px; width: auto; }
.header__cta { flex: none; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 14.5px;
  font-weight: 500;
}
.nav a { color: var(--ink); text-decoration: none; }
.nav a:hover { color: var(--forest-400); }
.nav__cta { display: none; }

.burger {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(20, 23, 26, 0.14);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.8px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(172deg, var(--sage-100) 0%, #f7faf3 60%, #fff 100%);
  padding: clamp(40px, 5vw, 76px) var(--pad-x) clamp(56px, 6vw, 96px);
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 26px 0 0;
}
.hero__lead {
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.7;
  max-width: 46ch;
  margin: 28px 0 0;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
.hero__note { font-size: 13.5px; margin: 26px 0 0; color: var(--muted-3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.hero .eyebrow { font-size: 12px; gap: 9px; color: #5f6d64; }
.eyebrow__dash { width: 18px; height: 1px; background: var(--lime-700); }
.hero .eyebrow__dash { width: 22px; height: 2px; }
.eyebrow__num { color: var(--muted-4); font-variant-numeric: tabular-nums; }
.eyebrow--light { color: rgba(255, 255, 255, 0.6); }
.eyebrow--light .eyebrow__num { color: rgba(255, 255, 255, 0.4); }
.eyebrow__accent { color: var(--lime); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 3vw, 56px);
  margin-top: clamp(44px, 5vw, 76px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: 14px; color: var(--muted-2); margin-top: 10px; }

/* ---------- Emplacements photo ---------- */

.photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sage-200);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--hero { border-radius: var(--radius-lg); min-height: 340px; }
.photo--hero img { min-height: 340px; }
.photo--3-2 { aspect-ratio: 3 / 2; }
.photo--16-9 { aspect-ratio: 16 / 9; }

.photo__hint { display: none; }
.photo--empty {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    repeating-linear-gradient(135deg, rgba(34, 53, 43, 0.035) 0 12px, transparent 12px 24px),
    var(--sage-200);
  border: 1px dashed rgba(34, 53, 43, 0.22);
}
.photo--empty .photo__hint {
  display: block;
  max-width: 34ch;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted-3);
}
.photo--empty .photo__hint::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: rgba(34, 53, 43, 0.12);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/><circle cx='12' cy='13' r='4'/></svg>") center / 22px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/><circle cx='12' cy='13' r='4'/></svg>") center / 22px no-repeat;
}

/* ---------- Références clients ---------- */

.clients { background: var(--sage-50); padding: clamp(40px, 4.5vw, 64px) var(--pad-x); }
.clients__head { display: flex; align-items: center; gap: 18px; }
.clients__head > span:first-child {
  flex: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.clients__rule { flex: 1; height: 1px; background: var(--line-soft); }
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.clients__card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  min-height: 92px;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--forest);
}

/* ---------- Sections ---------- */

.section { padding: var(--section-y) var(--pad-x); }
.section--sage { background: var(--sage-50); }
.section--forest { background: var(--forest); color: #fff; }

.section__title {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  margin: 22px 0 0;
  max-width: 26ch;
}
.section__title--narrow { max-width: 20ch; }
.section__title--light { color: #fff; max-width: 22ch; font-size: clamp(30px, 3.5vw, 48px); }

.section__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
}
.section__intro {
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 40ch;
  color: var(--muted);
}

/* ---------- Clientèles ---------- */

.audience {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 72px);
  margin-top: clamp(44px, 5vw, 76px);
}
.audience__col { flex: 1 1 360px; }
.audience__col h3 {
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 800;
  margin: 30px 0 0;
}
.audience__lead {
  font-size: 15.5px;
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 44ch;
  color: var(--muted);
}

.checklist { list-style: none; padding: 0; margin: 32px 0 0; font-size: 15px; }
.checklist li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: #2a332e;
}
.checklist li:last-child { border-bottom: 1px solid var(--line); }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 5px;
}
.link-cta:hover { border-color: var(--forest); color: var(--forest); }

/* ---------- Prestations ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  column-gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(44px, 5vw, 72px);
}
.service {
  border-top: 1px solid rgba(20, 23, 26, 0.14);
  padding: 28px 0 32px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0 16px;
}
.service__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted-4);
  padding-top: 5px;
}
.service h4 { font-size: 21px; font-weight: 800; }
.service p { font-size: 14.5px; line-height: 1.65; margin: 10px 0 0; color: var(--muted-2); }

/* ---------- Méthode ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  margin-top: clamp(44px, 5vw, 76px);
}
.step { border-top: 1px solid rgba(20, 23, 26, 0.14); padding-top: 26px; }
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted-4);
}
.step h4 { font-size: 21px; font-weight: 800; margin: 18px 0 0; }
.step p { font-size: 14.5px; line-height: 1.7; margin: 12px 0 0; color: var(--muted-2); }

/* ---------- Engagements ---------- */

.pledge {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 88px);
}
.pledge__lead {
  font-size: 16px;
  line-height: 1.75;
  margin: 24px 0 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.74);
}
.pledge__intro .btn { margin-top: 36px; }
.pledge__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  column-gap: clamp(28px, 4vw, 56px);
}
.pledge__item { border-top: 1px solid var(--line-light); padding: 22px 0 26px; }
.pledge__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.pledge__title--accent { color: var(--lime); }
.pledge__text {
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
}

/* ---------- Zone d'intervention ---------- */

.zone {
  padding: clamp(48px, 5vw, 80px) var(--pad-x);
  border-bottom: 1px solid var(--line-soft);
}
.zone__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
}
.zone__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.zone__note { font-size: 14px; color: var(--muted-3); margin-top: 12px; max-width: 30ch; }
.zone__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 30px);
  letter-spacing: -0.03em;
  color: var(--forest);
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
.contact__lead {
  font-size: 16.5px;
  line-height: 1.75;
  margin: 24px 0 0;
  max-width: 42ch;
  color: var(--muted);
}
.contact__direct { margin-top: 40px; }
.contact__row {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
  border-top: 1px solid rgba(20, 23, 26, 0.14);
  padding: 22px 0;
}
.contact__row:last-child { border-bottom: 1px solid rgba(20, 23, 26, 0.14); }
.contact__row:hover { color: var(--forest-400); }
.contact__row svg { flex: none; }
.contact__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.contact__meta { margin-left: auto; font-size: 12.5px; color: var(--muted-3); }
.contact__photo { margin-top: 32px; }

.formcard {
  background: var(--sage-50);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 44px);
}
.form { display: flex; flex-direction: column; gap: 24px; }
.form h3 { font-size: 25px; font-weight: 800; }
.form__note { font-size: 14px; margin: 10px 0 0; color: var(--muted-3); }

.form__types { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.form__types legend { padding: 0; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  position: relative;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill:has(input:checked) { background: var(--lime); border-color: var(--lime-700); }
.pill:has(input:focus-visible) { outline: 2px solid var(--forest); outline-offset: 2px; }

.form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--forest); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c0553f; }

.form__error {
  font-size: 13.5px;
  color: #a8412c;
  background: rgba(192, 85, 63, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0;
}

.form button[type="submit"] { padding: 18px 26px; font-size: 15.5px; }
.form.is-sending button[type="submit"] { opacity: 0.7; pointer-events: none; }

.sent { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; padding: 16px 0; }
.sent__check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
}
.sent h3 { font-size: 26px; font-weight: 800; }
.sent p { font-size: 15.5px; line-height: 1.7; color: var(--muted); }

/* ---------- Pied de page ---------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: clamp(56px, 6vw, 88px) var(--pad-x) 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.footer__logo { height: 52px; width: auto; }
.footer__baseline { font-size: 14px; line-height: 1.7; margin: 22px 0 0; max-width: 30ch; }
.footer__title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}
.footer__list a { color: inherit; text-decoration: none; }
.footer__list a:hover { color: var(--lime); }
.footer__phone {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.footer__actions { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.48);
}
.footer__bottom a { color: inherit; text-decoration: none; }
.footer__bottom a:hover { color: var(--lime); }
.footer__promise { margin-left: auto; }

/* ---------- Barre d'action mobile ---------- */

.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  gap: 10px;
  padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-soft);
  transform: translateY(0);
  transition: transform 240ms ease;
}
.stickybar .btn { flex: 1; padding: 14px; font-size: 15px; }
.stickybar__main { flex: 1.4; }
.stickybar.is-hidden { transform: translateY(110%); }

/* ---------- Apparition au défilement ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js [data-reveal="left"] { transform: translateX(-22px); }
.js [data-reveal="right"] { transform: translateX(22px); }
.js [data-reveal="scale"] { transform: scale(0.965); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Parallaxe ---------- */

.photo img { will-change: transform; }

/* ---------- Micro-interactions ---------- */

.btn {
  position: relative;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease,
              transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}
.btn svg { transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn--forest:hover { box-shadow: 0 10px 24px rgba(34, 53, 43, 0.22); }
.btn--lime:hover { box-shadow: 0 10px 24px rgba(201, 227, 63, 0.4); }
.btn:active { transform: translateY(1px) scale(0.99); }

.topbar__phone svg { transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1); }
.topbar__phone:hover svg { transform: rotate(-12deg) scale(1.1); }

.header__logo img { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.header__logo:hover img { transform: scale(1.03); }

.nav a { position: relative; }
@media (min-width: 1000px) {
  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 0;
    background: var(--lime-700);
    transition: width 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav a:hover::after { width: 100%; }
}

.photo img { transition: filter 500ms ease; }
.photo:hover img { filter: saturate(1.06) contrast(1.02); }

.stat__value { position: relative; display: inline-block; }
.stat__value::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0;
  background: var(--lime-700);
  transition: width 760ms cubic-bezier(0.22, 1, 0.36, 1) 260ms;
}
.stat.is-visible .stat__value::after { width: 100%; }

.clients__card {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, color 320ms ease;
  box-shadow: 0 0 0 1px rgba(20, 23, 26, 0.04);
}
.clients__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(34, 53, 43, 0.1), 0 0 0 1px var(--lime-700);
}

.checklist li {
  position: relative;
  padding-left: 0;
  transition: padding-left 300ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--lime-700);
  transform: translateY(-50%);
  transition: width 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.checklist li:hover { padding-left: 24px; color: var(--forest); }
.checklist li:hover::before { width: 14px; }

.link-cta { position: relative; border-bottom-color: transparent; }
.link-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: var(--lime);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), background-color 300ms ease;
}
.link-cta:hover::after { background: var(--forest); transform: scaleX(1.06); }

.service {
  position: relative;
  transition: border-color 320ms ease;
}
.service h4 { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.service__num { transition: color 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.service:hover { border-top-color: var(--forest); }
.service:hover h4 { transform: translateX(5px); }
.service:hover .service__num { color: var(--forest); transform: translateX(3px); }

.step { transition: border-color 320ms ease; }
.step__num {
  display: inline-block;
  padding: 3px 9px;
  margin-left: -9px;
  border-radius: 999px;
  transition: background-color 320ms ease, color 320ms ease;
}
.step:hover { border-top-color: var(--forest); }
.step:hover .step__num { background: var(--lime); color: var(--forest); }

.section--forest { position: relative; overflow: hidden; }
.section--forest::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 0%), rgba(227, 250, 92, 0.11), transparent 68%);
  transition: opacity 500ms ease;
}
.section--forest.is-lit::before { opacity: 1; }
.section--forest > .wrap { position: relative; z-index: 1; }

.pledge__item { transition: border-color 320ms ease; }
.pledge__title { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), color 320ms ease; }
.pledge__item:hover { border-top-color: var(--lime); }
.pledge__item:hover .pledge__title { transform: translateX(5px); color: var(--lime); }

.zone__cities span {
  position: relative;
  cursor: default;
  transition: color 300ms ease;
}
.zone__cities span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background: var(--lime-700);
  transition: width 340ms cubic-bezier(0.22, 1, 0.36, 1);
}
.zone__cities span:hover { color: var(--forest-400); }
.zone__cities span:hover::after { width: 100%; }

.contact__row svg { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.contact__value { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.contact__row:hover svg { transform: scale(1.18) rotate(-8deg); }
.contact__row:hover .contact__value { transform: translateX(5px); }

.pill { transition: background-color 180ms ease, border-color 180ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }
.pill:hover { transform: translateY(-2px); border-color: var(--lime-700); }

.field input, .field textarea { transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease; }
.field input:focus, .field textarea:focus { box-shadow: 0 0 0 3px rgba(227, 250, 92, 0.45); }

.footer__list a { display: inline-block; transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), color 200ms ease; }
.footer__list a:hover { transform: translateX(5px); }
.footer__phone { display: inline-block; transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1); }
.footer__phone:hover { transform: scale(1.04); }

/* ---------- Adaptations ---------- */

@media (max-width: 999px) {
  .header__cta { display: none; }
  .burger { display: block; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--pad-x) 28px;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 20px 40px rgba(20, 23, 26, 0.08);
    font-size: 17px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
  .nav__cta {
    display: inline-flex;
    margin-top: 18px;
    border-bottom: 0;
    padding: 15px 22px;
  }

  .stickybar { display: flex; }
  .footer { padding-bottom: 96px; }
  .topbar__zone { display: none; }
  .topbar__promise { margin-left: auto; }
}

@media (max-width: 620px) {
  .topbar { font-size: 12px; }
  .topbar__promise { margin-left: 0; }
  .header__logo img { height: 42px; }
  .contact__value { font-size: 21px; }
  .contact__meta { display: none; }
  .footer__bottom { flex-direction: column; }
  .footer__promise { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .photo img { transform: none !important; }
  .section--forest::before { display: none; }
}

@media print {
  .topbar, .header, .stickybar, .formcard, .photo { display: none; }
  body { font-size: 12pt; }
}
