/* Atelox — structure inspirée Biogaz Bénin, marque Lime Circuit */
:root {
  --ink: #121212;
  --paper: #F7F7F5;
  --white: #FFFFFF;
  --muted: #5C5C5C;
  --line: #E6E6E2;
  --forest: #1B4332;
  --forest-2: #2D6A4F;
  --lime: #A3E635;
  --lime-mid: #84CC16;
  --lime-deep: #4D7C0F;
  --lime-soft: #ECFCCB;
  --shadow: 0 14px 40px rgba(18, 18, 18, 0.1);
  --font-d: "Space Grotesk", system-ui, sans-serif;
  --font-b: "IBM Plex Sans", system-ui, sans-serif;
  --font-s: "Caveat", cursive;
  --w: min(1180px, calc(100% - 48px));
  --header: 78px;
  --r: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
.wrap { width: var(--w); margin-inline: auto; }
.script {
  font-family: var(--font-s);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}
.script.accent {
  color: var(--lime-deep);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin-bottom: 8px;
}
section[id] { scroll-margin-top: calc(var(--header) + 8px); }

.progress {
  position: fixed; top: 0; left: 0; z-index: 120;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--lime), var(--lime-mid));
  box-shadow: 0 0 12px rgba(163,230,53,.55);
  transition: width .05s linear;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide > img { animation: none !important; }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
}
.brand img { height: 40px; width: auto; display: block; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 700;
}
.brand-text small {
  font-size: .68rem; color: var(--muted); letter-spacing: .02em;
  text-transform: uppercase;
}
.brand-light .brand-text small { color: #A7C4B5; }
.brand-light img { height: 44px; width: auto; filter: none; }

.primary-nav {
  display: flex; gap: 22px; align-items: center;
  font-size: .95rem; font-weight: 500;
}
.primary-nav a { color: var(--muted); position: relative; }
.primary-nav a:hover,
.primary-nav a.is-active { color: var(--forest); }
.primary-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 3px; background: var(--lime); border-radius: 99px;
}
.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--lime); color: var(--ink);
  font-family: var(--font-d); font-weight: 700; font-size: .88rem;
  padding: 10px 16px; border-radius: 999px;
  transition: transform .2s, background .2s;
}
.btn-nav:hover { background: var(--lime-mid); transform: translateY(-1px); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
}
.mobile-nav {
  display: grid; gap: 4px; padding: 12px 24px 20px;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: 12px 8px; font-weight: 500; border-radius: 8px;
}
.mobile-nav a:hover { background: var(--lime-soft); }
.mobile-nav-wa {
  background: #25D366 !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 680px);
  overflow: hidden;
  background: var(--ink);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s var(--ease);
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero-slide.is-active > img {
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to { transform: scale(1) translate3d(0,-1.5%,0); }
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,16,12,.88) 0%, rgba(8,16,12,.55) 48%, rgba(8,16,12,.42) 100%),
    linear-gradient(180deg, rgba(8,16,12,.25) 0%, transparent 35%, rgba(8,16,12,.55) 100%);
}
.hero-panel {
  position: relative;
  z-index: 2;
  min-height: min(78vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 48px 0 140px;
}
/* Empile les titres : la zone prend la hauteur du plus long → plus de chevauchement */
.hero-titles {
  display: grid;
  width: 100%;
}
.hero-title {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-title.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-kicker {
  color: var(--lime);
  font-family: var(--font-s);
  font-size: 1.55rem;
  margin: 0 0 10px;
}
.hero-title h1 {
  max-width: 16ch;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0,0,0,.35), 0 12px 40px rgba(0,0,0,.45);
}
.hero-sub {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: .95rem;
  max-width: 48ch;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-hero,
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 20px;
  border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn-hero {
  background: var(--lime);
  color: var(--ink);
}
.btn-hero:hover {
  background: #BEF264;
  transform: translateY(-1px);
}
.btn-hero-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.hero-dots {
  display: flex; gap: 8px; pointer-events: auto;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.4); cursor: pointer;
  padding: 0;
}
.hero-dots button.is-on { background: var(--lime); transform: scale(1.2); }
.hero-btn {
  pointer-events: auto;
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
  background: transparent; color: #fff;
  font-size: 1.5rem; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-btn:hover {
  background: var(--lime); border-color: var(--lime); color: var(--ink);
  transform: scale(1.05);
}

/* Value cards overlapping hero */
.value-cards {
  position: relative; z-index: 5;
  margin-top: -90px;
  padding-bottom: 20px;
}
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.value-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(18,18,18,.14);
}
.value-card .script {
  color: var(--lime-deep);
  font-size: 1.85rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.45;
}

/* Sections */
.section { padding: 88px 0; }
.sec-center { text-align: center; margin-bottom: 42px; }
.sec-center h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.lede {
  color: var(--muted); max-width: 52ch; margin: 12px auto 0;
}

/* About */
.about { background: #F0F2EF; }
.about-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.about-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 16px;
}
.about-copy > p { color: var(--muted); margin-bottom: 14px; max-width: 48ch; }
.phone-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 18px;
}
.phone-ico {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(163,230,53,.35);
}
.phone-cta small { display: block; color: var(--muted); font-size: .85rem; }
.phone-cta strong { font-family: var(--font-d); font-size: 1.15rem; }

.about-visual { position: relative; justify-self: center; }
.about-circle {
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}
.about-circle img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-circle:hover img { transform: scale(1.06); }
.exp-badge {
  position: absolute; left: -8px; bottom: 28px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
  animation: badgePulse 3.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.exp-badge strong {
  display: block;
  font-family: var(--font-d);
  font-size: 2.4rem;
  color: var(--lime-deep);
  line-height: 1;
}
.exp-badge span { font-size: .85rem; color: var(--muted); }

/* Why */
.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center;
}
.why-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.why-media::before {
  content: "";
  position: absolute; left: 0; bottom: 0; top: 18%; width: 8px;
  background: var(--lime); z-index: 1;
}
.why-media::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 8px; width: 55%;
  background: var(--lime); z-index: 1;
}
.why-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.why-tag {
  position: absolute; right: 16px; bottom: 18px; z-index: 2;
  background: var(--lime); color: var(--ink);
  padding: 12px 18px; border-radius: 18px 18px 18px 4px;
  font-size: 1.35rem; max-width: 14ch;
}
.why-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}
.why-copy > p { color: var(--muted); margin-bottom: 22px; }
.check-list {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 16px;
}
.check-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
}
.check-list li::before {
  content: "✓";
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
}
.check-list strong {
  display: block;
  font-family: var(--font-d); font-size: 1.05rem;
  margin-bottom: 2px;
}
.check-list span { display: block; color: var(--muted); font-size: .95rem; }

/* Services */
.services { background: #F4F6F2; }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.service-card { text-align: center; }
.service-photo {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  margin-bottom: 28px;
}
.service-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 16px;
  transition: transform .55s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-ico {
  position: absolute; left: 50%; bottom: -22px;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  font-size: 1.25rem;
  color: var(--lime-deep);
  transition: transform .3s, background .3s;
}
.service-card:hover .service-ico {
  background: var(--lime);
  transform: translateX(-50%) translateY(-4px);
}
.service-card h3 {
  font-size: 1.15rem; margin-bottom: 8px;
}
.service-card p {
  color: var(--muted); font-size: .92rem; max-width: 28ch; margin-inline: auto;
}

/* Stats */
.stats {
  background: var(--forest);
  color: #E8F5E9;
  padding: 48px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stats-grid strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--lime);
  margin-bottom: 6px;
}
.stats-grid span { font-size: .92rem; opacity: .9; }

/* Banner */
.banner {
  position: relative;
  min-height: 320px;
  display: grid; place-items: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.banner-shade {
  position: absolute; inset: 0;
  background: rgba(18, 40, 28, .62);
}
.banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 56px 0; color: #fff;
}
.banner-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 16ch;
}
.banner-play {
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 600; color: var(--lime);
}
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); color: var(--lime-deep);
  display: grid; place-items: center;
  font-size: 1.1rem; padding-left: 3px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Projects — compact, caption below */
.projects {
  background: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
}
.projects .sec-center { margin-bottom: 28px; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 16px;
  align-items: start;
}
.project-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.project-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: #F2F3F0;
  border: 1px solid var(--line);
}
.project-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.project-cap span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 2px;
}
.project-cap h3 {
  font-size: 1.05rem;
  margin: 0;
}
.project-cap p {
  margin: 2px 0 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.35;
}
.project-result {
  margin-top: 6px !important;
  font-size: .8rem !important;
  font-weight: 600;
  color: var(--forest) !important;
}

/* Partners */
.partners { background: #F4F6F2; padding-top: 72px; padding-bottom: 72px; }
.partner-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.partner-row span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: .95rem;
  color: var(--forest);
}

/* CTA band */
.cta-band {
  background: var(--forest-2);
  color: #fff;
  padding: 56px 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.cta-band p { color: #D8E8DE; max-width: 46ch; }
.cta-band-actions {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.btn-band,
.btn-band-ghost {
  display: inline-flex; align-items: center;
  font-family: var(--font-d); font-weight: 700;
  padding: 14px 22px; border-radius: 999px;
}
.btn-band {
  background: var(--lime); color: var(--ink);
}
.btn-band:hover { background: #BEF264; }
.btn-band-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-band-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Méthode */
.method { background: var(--white); }
.method .lede {
  margin: 10px auto 0;
  max-width: 52ch;
  color: var(--muted);
}
.method-steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.method-steps li {
  position: relative;
  padding-top: 8px;
}
.method-num {
  display: block;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--lime-deep);
  margin-bottom: 10px;
}
.method-steps h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.method-steps p {
  color: var(--muted);
  font-size: .95rem;
}

/* FAQ */
.faq { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  gap: 40px;
  align-items: start;
}
.faq-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0 12px;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  padding: 10px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--lime-deep);
  font-weight: 700;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  color: var(--muted);
  padding: 0 0 6px;
  max-width: 62ch;
}

/* Testimonials */
.testimonials { background: var(--white); }
.testi-slider { position: relative; max-width: 760px; margin: 0 auto; min-height: 220px; }
.testi {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .45s;
  text-align: center;
  pointer-events: none;
}
.testi.is-active { opacity: 1; position: relative; pointer-events: auto; }
.testi p {
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
  margin-bottom: 22px;
}
.testi footer {
  display: flex; flex-direction: column; gap: 4px;
}
.testi strong { font-family: var(--font-d); }
.testi span { color: var(--muted); font-size: .92rem; }
.testi-nav {
  display: flex; justify-content: center; gap: 10px; margin-top: 24px;
}
.testi-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  cursor: pointer; font-size: 1.2rem;
}
.testi-nav button:hover { background: var(--lime); border-color: var(--lime); }

/* Contact */
.contact { background: #F0F2EF; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.contact-copy .lede { margin: 0 0 22px; }
.contact-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-family: var(--font-d);
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.btn-wa:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}
.trust-strip {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.trust-strip li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--forest);
  padding: 6px 0;
}
.trust-strip li::before {
  content: "✓ ";
  color: var(--lime-deep);
}
.contact-list {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 12px;
}
.testi-note {
  margin: 10px auto 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: .95rem;
}
.contact-list li {
  display: grid; gap: 2px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.contact-list strong { font-size: .78rem; color: var(--lime-deep); text-transform: uppercase; letter-spacing: .04em; }
.contact-list a:hover { color: var(--lime-deep); }
.contact-photo {
  margin-top: 20px; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-photo img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 6px; font-size: .88rem; color: var(--muted); }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; min-height: 46px; padding: 11px 12px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper);
  outline: none;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime-mid);
  box-shadow: 0 0 0 3px var(--lime-soft);
}

/* WhatsApp + dial picker */
.phone-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: stretch;
}
.dial { position: relative; }
.dial-btn {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 46px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); cursor: pointer;
  white-space: nowrap; font-family: var(--font-b); font-size: .92rem;
  color: var(--ink);
}
.dial-btn:hover, .dial.is-open .dial-btn {
  border-color: var(--lime-mid);
  box-shadow: 0 0 0 3px var(--lime-soft);
}
.dial-flag-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(20, 22, 18, 0.12);
  background: #e8ebe4;
}
.dial-flag-img {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
}
.dial-code { font-family: var(--font-d); font-weight: 600; }
.dial-chev { color: var(--muted); font-size: .7rem; }
.dial-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.dial-opt-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-d);
  font-weight: 600;
  font-style: normal;
  font-size: .9rem;
  color: var(--ink);
  min-width: 5.5rem;
}
.dial-opt-name {
  color: var(--muted);
  font-size: .88rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.dial-panel {
  position: absolute; left: 0; top: calc(100% + 6px); z-index: 40;
  width: min(320px, 85vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dial-search {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  background: var(--paper);
  outline: none;
}
.dial-search:focus {
  box-shadow: inset 0 0 0 2px var(--lime-soft);
}
.dial-menu {
  max-height: 260px; overflow: auto;
  margin: 0; padding: 6px;
  list-style: none;
}
.dial-menu li {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 10px; border-radius: 8px;
  cursor: pointer; color: var(--ink); font-size: .9rem;
}
.dial-menu li:hover,
.dial-menu li[aria-selected="true"] {
  background: var(--lime-soft);
}
.dial-empty {
  padding: 14px 10px;
  color: var(--muted);
  font-size: .88rem;
  cursor: default;
}
.field-hint {
  color: var(--muted); font-size: .78rem;
}
.budget-currency,
.field-optional {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  font-size: .85em;
}
.contact-form .btn-primary { grid-column: 1 / -1; justify-self: start; }
.contact-form .form-next,
.contact-form .form-success { grid-column: 1 / -1; }
.form-next {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.45;
}
.form-next a {
  color: var(--forest-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-next a:hover { color: var(--lime-deep); }

@media (max-width: 700px) {
  .contact-form { grid-template-columns: 1fr; }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0; cursor: pointer;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 999px;
  margin-top: 4px;
  transition: transform .15s, background .15s;
}
.contact-paths .btn-primary { margin-top: 0; }
.btn-primary:hover { background: var(--lime-mid); transform: translateY(-1px); }
.form-success {
  margin: 0; padding: 12px; border-radius: 10px;
  background: var(--lime-soft); color: var(--lime-deep); font-weight: 500;
}
.form-success.is-error {
  background: #fde8e4;
  color: #8a2f1f;
}
.contact-form .btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: #E8F5E9;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px;
  margin-bottom: 40px;
}
.footer-about { color: #A7C4B5; margin-top: 14px; font-size: .92rem; max-width: 36ch; }
.site-footer h4 {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 14px;
}
.site-footer a {
  display: block; color: #D8E8DE; margin-bottom: 8px; font-size: .92rem;
}
.site-footer a:hover { color: var(--lime); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .88rem; color: #A7C4B5;
}
.footer-bottom a { display: inline; color: #A7C4B5; }

/* Blog Soro */
.page-blog {
  background:
    radial-gradient(1200px 480px at 10% -10%, rgba(163, 230, 53, 0.12), transparent 55%),
    radial-gradient(900px 420px at 90% 0%, rgba(45, 106, 79, 0.1), transparent 50%),
    var(--paper);
  padding-bottom: 100px;
}
.blog-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header) + 56px) 0 64px;
  color: #fff;
  background: #10261c;
}
.blog-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(16, 38, 28, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse 80% 70% at 85% 20%, rgba(163, 230, 53, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(45, 106, 79, 0.55), transparent 50%),
    linear-gradient(180deg, #143024 0%, #0e1f18 100%);
}
.blog-hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
}
.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(720px, 100%);
}
.blog-hero-brand {
  margin: 0 0 14px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--lime);
}
.blog-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: #fff;
}
.blog-hero-lede {
  margin: 0;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(216, 232, 222, 0.92);
}
.blog-embed-section {
  position: relative;
  margin-top: -28px;
  padding: 0 0 48px;
  background: transparent;
}
.blog-embed-wrap {
  min-height: 360px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(230, 230, 226, 0.95);
  border-radius: 22px;
  padding: 28px 28px 36px;
  backdrop-filter: blur(10px);
}
.blog-list-head {
  margin-bottom: 22px;
}
.blog-list-head h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}
#soro-blog {
  width: 100%;
}
.blog-teaser {
  background: var(--white);
}
.blog-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.blog-teaser h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 8px;
}
.blog-teaser .lede {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}

/* CTA projet — barre flottante */
.blog-cta-sticky {
  display: none;
}
.page-blog .blog-cta-sticky {
  display: block;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  padding: 0;
  background: transparent;
  border: 0;
  pointer-events: none;
}
.blog-cta-sticky-inner {
  width: min(720px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 14px;
  background: rgba(16, 38, 28, 0.94);
  border: 1px solid rgba(163, 230, 53, 0.35);
  border-radius: 18px;
  pointer-events: auto;
  backdrop-filter: blur(12px);
}
.blog-cta-label {
  margin: 0 auto 0 0;
  color: #D8E8DE;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: .95rem;
}
.blog-cta-primary,
.blog-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
}
.blog-cta-primary {
  background: var(--lime);
  color: var(--ink);
}
.blog-cta-primary:hover { background: #BEF264; }
.blog-cta-wa {
  background: #25D366;
  color: #fff;
}
.blog-cta-wa:hover { background: #1ebe57; }
.page-blog .wa-float,
.page-blog .mobile-cta-bar,
.page-blog .sticky-note {
  display: none !important;
}
.page-blog .top-float {
  bottom: 100px;
}

/* Mobile sticky convert bar */
.mobile-cta-bar[hidden] {
  display: none !important;
}
.mobile-cta-bar {
  display: none;
}

/* Floats */
.wa-float,
.top-float {
  position: fixed; z-index: 80;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  border: 0; cursor: pointer;
}
.wa-float {
  right: 22px; bottom: 22px;
  background: #25D366; color: #fff; font-size: 1.2rem;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .35);
}
.wa-float:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.top-float {
  right: 22px; bottom: 84px;
  background: var(--forest-2); color: #fff; font-size: 1.1rem;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.top-float.is-visible { opacity: 1; pointer-events: auto; }

/* Touch Atelox — sticky note */
.sticky-note {
  position: fixed; left: 18px; bottom: 22px; z-index: 70;
  width: 148px;
  background: #F7FEE7;
  border: 1px solid #D9F99D;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transform: rotate(-3deg);
  animation: noteIn .8s var(--ease) .6s both;
}
.sticky-note .script {
  color: var(--lime-deep); font-size: 1.35rem; margin-bottom: 2px;
}
.sticky-note p:last-child {
  font-size: .78rem; color: var(--muted); font-weight: 500;
}
@keyframes noteIn {
  from { opacity: 0; transform: translateY(20px) rotate(-8deg); }
  to { opacity: 1; transform: rotate(-3deg); }
}
@media (max-width: 900px) {
  .sticky-note, .btn-nav { display: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .value-grid,
  .about-grid,
  .why-grid,
  .service-grid,
  .stats-grid,
  .project-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  :root {
    --w: calc(100% - 32px);
  }
  .value-cards { margin-top: -48px; }
  .value-grid,
  .about-grid,
  .why-grid,
  .service-grid,
  .stats-grid,
  .project-grid,
  .contact-grid,
  .footer-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }
  .exp-badge { left: 12px; bottom: 12px; }
  .hero,
  .hero-panel {
    min-height: 70vh;
  }
  .hero-panel {
    padding: 48px 0 120px;
    gap: 12px;
  }
  .hero-title h1 {
    font-size: 1.7rem;
    max-width: 16ch;
  }
  .hero-sub { font-size: .88rem; }
  .btn-hero,
  .btn-hero-ghost {
    padding: 11px 16px;
    font-size: .9rem;
  }
  .hero-btn {
    width: 42px;
    height: 42px;
  }
  .sticky-note { display: none; }
  .wa-float { display: none; }
  .top-float { bottom: 76px; }
  body.has-mobile-cta { padding-bottom: 76px; }
  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 85;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(18, 18, 18, 0.92);
    border-radius: 14px;
  }
  .mobile-cta-bar[hidden] {
    display: none !important;
  }
  .mobile-cta-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-family: var(--font-d);
    font-weight: 700;
    font-size: .92rem;
    background: var(--lime);
    color: var(--ink);
  }
  .mobile-cta-bar a.is-wa {
    background: #25D366;
    color: #fff;
  }
  .blog-hero {
    padding: calc(var(--header) + 40px) 0 52px;
  }
  .blog-embed-section {
    margin-top: -20px;
  }
  .blog-embed-wrap {
    padding: 20px 16px 28px;
    border-radius: 18px;
  }
  .blog-cta-sticky {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .blog-cta-sticky-inner {
    justify-content: stretch;
    border-radius: 16px;
  }
  .blog-cta-label {
    width: 100%;
    margin: 0 0 2px;
    font-size: .85rem;
  }
  .blog-cta-primary,
  .blog-cta-wa {
    flex: 1;
  }
  .page-blog {
    padding-bottom: 120px;
  }
  .page-blog .top-float {
    bottom: 118px;
  }
}
