:root {
  --forest:        #1b4332;
  --forest-2:      #2d6a4f;
  --leaf:          #40916c;
  --leaf-light:    #74c69d;
  --harvest:       #e0a458;
  --harvest-2:     #d98c3f;
  --cream:         #faf8f2;
  --cream-2:       #f2eee2;
  --ink:           #1a2420;
  --ink-soft:      #46564e;
  --line:          rgba(27, 67, 50, .12);
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(27, 67, 50, .06);
  --shadow-md:     0 14px 40px rgba(27, 67, 50, .10);
  --shadow-lg:     0 30px 70px rgba(27, 67, 50, .16);
  --radius:        18px;
  --radius-lg:     26px;
  --maxw:          1160px;
  --serif:         "Fraunces", Georgia, serif;
  --sans:          "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--leaf-light); color: var(--forest); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--forest); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--leaf);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--harvest); border-radius: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px;
  padding: 15px 28px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--harvest); color: var(--forest); }
.btn-gold:hover { background: var(--harvest-2); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217,140,63,.30); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--leaf); background: rgba(64,145,108,.06); transform: translateY(-2px); }

/* ---------- NAV ---------- */
header.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
header.nav.scrolled { background: rgba(250,248,242,.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--forest); }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--leaf), var(--forest)); color: #fff; font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: .3s; }
.burger span + span { margin-top: 5px; }
.mobile-menu { display: none; }

/* ---------- HERO ---------- */
.hero { padding: 168px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 88% 8%, rgba(116,198,157,.28), transparent 60%),
    radial-gradient(50% 50% at 5% 30%, rgba(224,164,88,.16), transparent 60%),
    var(--cream);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px;
  background: rgba(64,145,108,.10); border: 1px solid rgba(64,145,108,.24);
  border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--forest-2);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 0 rgba(64,145,108,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(64,145,108,.45)} 70%{box-shadow:0 0 0 9px rgba(64,145,108,0)} 100%{box-shadow:0 0 0 0 rgba(64,145,108,0)} }

.hero h1 { font-size: clamp(38px, 6.2vw, 70px); max-width: 15ch; margin-bottom: 24px; }
.hero h1 .accent { color: var(--harvest-2); font-style: italic; }
.hero-lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 56ch; margin-bottom: 20px; }
.hero-tag { display: inline-flex; align-items:center; gap:8px; font-size: 14.5px; font-weight: 600; color: var(--forest-2); margin-bottom: 34px; }
.hero-tag .sep { color: var(--line); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 64px; padding-top: 44px; border-top: 1px solid var(--line);
}
.hstat .num { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4vw, 44px); color: var(--forest); line-height: 1; }
.hstat .lbl { font-weight: 600; font-size: 14.5px; margin-top: 8px; color: var(--ink); }
.hstat .sub { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }

/* ---------- SECTION SHELL ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 62ch; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--ink-soft); }
.center .eyebrow { justify-content: center; }

.band { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.band-forest { background: var(--forest); color: #fff; }
.band-forest h2, .band-forest h3 { color: #fff; }
.band-forest .eyebrow { color: var(--leaf-light); }
.band-forest .section-head p { color: rgba(255,255,255,.78); }

/* ---------- PILLARS ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar .ic { font-size: 30px; margin-bottom: 16px; display: block; }
.pillar h3 { font-size: 21px; margin-bottom: 8px; }
.pillar p { font-size: 15px; color: var(--ink-soft); }

.quote-band {
  margin-top: 48px; background: var(--forest); color: #fff; border-radius: var(--radius-lg);
  padding: 46px clamp(28px, 5vw, 60px); position: relative; overflow: hidden;
}
.quote-band::after { content: "“"; position: absolute; right: 24px; top: -30px; font-family: var(--serif); font-size: 200px; color: rgba(255,255,255,.06); }
.quote-band p { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 27px); line-height: 1.4; max-width: 40ch; }
.quote-band cite { display: block; margin-top: 20px; font-family: var(--sans); font-style: normal; font-weight: 600; color: var(--leaf-light); font-size: 15px; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; max-width: 860px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--leaf), var(--harvest)); }
.tl-item { position: relative; padding-left: 78px; padding-bottom: 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 15px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--forest); z-index: 1;
}
.tl-item:last-child .tl-dot { background: var(--harvest); border-color: var(--harvest); }
.tl-year { font-weight: 700; font-size: 14px; color: var(--harvest-2); letter-spacing: .04em; }
.tl-item h3 { font-size: 21px; margin: 4px 0 8px; }
.tl-item p { font-size: 15.5px; color: var(--ink-soft); max-width: 62ch; }
.tl-chip { display: inline-block; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--leaf); background: rgba(64,145,108,.10); padding: 4px 12px; border-radius: 999px; }

/* ---------- CARDS 3 / ACHIEVEMENTS ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ach {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.ach:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ach .ic { font-size: 26px; }
.ach .big { font-family: var(--serif); font-weight: 700; font-size: 44px; color: var(--forest); line-height: 1; margin: 16px 0 6px; }
.ach h3 { font-size: 16px; color: var(--ink); font-family: var(--sans); font-weight: 700; margin-bottom: 10px; }
.ach p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- WOURY GRID (forest band) ---------- */
.woury-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.wcard {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 28px 24px; transition: background .3s, transform .3s;
}
.wcard:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); }
.wcard .ic { font-size: 28px; margin-bottom: 14px; }
.wcard h3 { color: #fff; font-size: 20px; margin-bottom: 9px; }
.wcard p { color: rgba(255,255,255,.74); font-size: 14.5px; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.metric { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); }
.metric .m { font-family: var(--serif); font-weight: 700; font-size: 34px; color: var(--harvest); line-height: 1; }
.metric .t { color: #fff; font-weight: 600; font-size: 14.5px; margin-top: 8px; }
.metric .s { color: rgba(255,255,255,.62); font-size: 12.5px; margin-top: 3px; }

.woury-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.14); }
.woury-cta .slogan { font-family: var(--serif); font-size: clamp(19px, 2.4vw, 26px); color: #fff; font-style: italic; }

/* ---------- IMPACT ---------- */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.impact {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.impact:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.impact::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--leaf), var(--harvest)); }
.impact .m { font-family: var(--serif); font-weight: 700; font-size: 46px; color: var(--forest); line-height: 1; }
.impact .u { font-weight: 700; font-size: 14px; color: var(--harvest-2); text-transform: uppercase; letter-spacing: .06em; margin: 4px 0 12px; }
.impact p { font-size: 15px; color: var(--ink-soft); }

/* ---------- TESTIMONIALS ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.qcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.qcard .stars { color: var(--harvest); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.qcard blockquote { font-size: 16px; color: var(--ink); line-height: 1.6; flex: 1; }
.qcard .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.qcard .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; color: #fff; background: linear-gradient(140deg, var(--leaf), var(--forest)); }
.qcard .who b { display: block; font-size: 15px; color: var(--forest); }
.qcard .who span { font-size: 13px; color: var(--ink-soft); }

/* ---------- VISION 2036 ---------- */
.v-hero { text-align: center; max-width: 760px; margin: 0 auto 20px; }
.v-big { font-family: var(--serif); font-weight: 700; font-size: clamp(70px, 12vw, 130px); color: var(--harvest); line-height: .9; }
.v-hero p { color: rgba(255,255,255,.80); font-size: 18px; margin-top: 14px; }
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.rm { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px 26px; }
.rm .yr { font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--leaf-light); }
.rm h3 { color: #fff; font-size: 18px; margin: 6px 0 10px; }
.rm p { color: rgba(255,255,255,.72); font-size: 14.5px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
.contact-info > p { color: var(--ink-soft); font-size: 18px; margin-bottom: 30px; max-width: 42ch; }
.cinfo-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-top: 1px solid var(--line); }
.cinfo-item .ic { font-size: 21px; width: 44px; height: 44px; border-radius: 12px; background: rgba(64,145,108,.10); display: grid; place-items: center; flex-shrink: 0; }
.cinfo-item b { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--leaf); }
.cinfo-item a, .cinfo-item span { color: var(--ink); font-weight: 500; font-size: 16px; }
.cinfo-item a:hover { color: var(--forest-2); }

form.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--forest); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--leaf); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- FOOTER ---------- */
footer.site {
  background: var(--forest); color: rgba(255,255,255,.72); padding: 56px 0 34px;
}
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; align-items: center; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.14); }
.foot-brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 22px; color: #fff; }
.foot-brand .logo { width: 40px; height: 40px; border-radius: 12px; display:grid; place-items:center; background: rgba(255,255,255,.10); font-size: 20px; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { color: rgba(255,255,255,.78); font-size: 15px; font-weight: 500; }
.foot-links a:hover { color: #fff; }
.foot-bottom { margin-top: 26px; font-size: 13.5px; color: rgba(255,255,255,.55); }

/* ================================================================
   PAGE APP WOURY (prospects) — composants additionnels
   ================================================================ */

/* Hero produit : texte + mockup téléphone */
.hero-product .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-product h1 { max-width: 16ch; }

.store-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; background: var(--forest); color: #fff;
  padding: 12px 22px; border-radius: 15px; transition: transform .25s ease, box-shadow .25s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge .ic { font-size: 27px; line-height: 1; }
.store-badge small { display: block; font-size: 11px; opacity: .78; font-weight: 500; letter-spacing: .02em; }
.store-badge b { font-size: 16.5px; font-weight: 700; font-family: var(--sans); }
.store-badge.soon { background: transparent; color: var(--forest); border: 1.5px solid var(--line); cursor: default; }
.store-badge.soon:hover { transform: none; box-shadow: none; }

.trust { display: flex; align-items: center; gap: 11px; margin-top: 28px; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.trust .stars { color: var(--harvest); letter-spacing: 2px; font-size: 15px; }

/* Mockup téléphone */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 288px; height: 590px; border-radius: 46px; background: #0f1f18; padding: 13px;
  box-shadow: var(--shadow-lg); position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 118px; height: 26px; background: #0f1f18; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: var(--cream); display: flex; flex-direction: column; }
.app-top { background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: #fff; padding: 46px 20px 20px; font-family: var(--serif); font-size: 21px; }
.app-top span { display: block; font-family: var(--sans); font-size: 12.5px; font-weight: 500; opacity: .85; margin-top: 4px; }
.app-body { padding: 15px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.app-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.app-card.green { background: rgba(64,145,108,.10); border-color: rgba(64,145,108,.25); }
.app-card small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 11px; margin-top: 5px; }
.app-card .bar { height: 7px; background: var(--cream-2); border-radius: 5px; margin-top: 9px; overflow: hidden; }
.app-card .bar i { display: block; width: 60%; height: 100%; background: linear-gradient(90deg, var(--leaf), var(--harvest)); }
.app-nav { margin-top: auto; background: #fff; border-top: 1px solid var(--line); display: flex; justify-content: space-around; padding: 13px 0; font-size: 20px; }

/* Étapes "Comment ça marche" */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step .n { width: 46px; height: 46px; border-radius: 13px; background: var(--forest); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 20px; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 7px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* Tarifs */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 780px; margin-inline: auto; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); text-align: center; }
.price-card.featured { border-color: var(--leaf); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--harvest); color: var(--forest); font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 999px; letter-spacing: .03em; }
.price-card h3 { font-size: 21px; margin-bottom: 6px; }
.price-card .amt { font-family: var(--serif); font-weight: 700; font-size: 44px; color: var(--forest); line-height: 1.1; }
.price-card .amt small { font-size: 16px; font-weight: 600; color: var(--ink-soft); }
.price-card ul { list-style: none; margin: 22px 0 26px; text-align: left; display: inline-block; }
.price-card li { font-size: 14.5px; color: var(--ink-soft); padding: 6px 0 6px 26px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }
.price-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 1040px; }
@media (max-width: 860px) { .price-grid.three { grid-template-columns: 1fr; max-width: 440px; } }

/* CTA final téléchargement */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 16px; }
.cta-final p { color: rgba(255,255,255,.82); font-size: 19px; max-width: 52ch; margin: 0 auto 32px; }
.cta-final .store-badges { justify-content: center; }
.cta-final .store-badge { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); color: #fff; }
.cta-final .store-badge.gold { background: var(--harvest); color: var(--forest); border-color: var(--harvest); }
.cta-final .store-badge.soon { background: transparent; color: rgba(255,255,255,.8); }

/* ---------- REVEAL ANIM ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .pillars, .cards-3, .woury-grid, .metrics, .impact-grid, .quotes, .roadmap, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-product .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-product .phone-wrap { order: 2; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: block; }
  .mobile-menu {
    position: fixed; inset: 66px 0 auto 0; background: var(--cream); z-index: 99;
    box-shadow: var(--shadow-md); padding: 14px 24px 24px; display: none; flex-direction: column; gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 13px 6px; font-weight: 600; color: var(--forest); border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: 14px; }
  .hero { padding: 132px 0 70px; }
  .section { padding: 70px 0; }
  .woury-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .pillars, .cards-3, .woury-grid, .metrics, .impact-grid, .quotes, .roadmap, .steps, .price-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tl-item { padding-left: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge .dot { animation: none; }
}

/* ================================================================
   IMAGES RÉELLES — logo, portrait fondateur, terrain, captures
   ================================================================ */
.brand-logo { height: 54px; width: auto; display: block; }
header.nav.scrolled .brand-logo { height: 46px; }
.foot-brand img { height: 44px; width: auto; display: block; }

/* Hero fondateur (portrait) */
.hero-founder .hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; align-items: center; }
.portrait { position: relative; }
.portrait img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.portrait .cap { position: absolute; left: 16px; bottom: 16px; background: rgba(27,67,50,.92); color: #fff; padding: 11px 17px; border-radius: 13px; font-size: 13px; font-weight: 500; backdrop-filter: blur(6px); }
.portrait .cap b { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; }

/* Bandeau "sur le terrain" */
.photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photos figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.photos img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; }
.photos figure:hover img { transform: scale(1.05); }
.photos figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 14px; color: #fff; font-size: 13.5px; font-weight: 600; background: linear-gradient(transparent, rgba(15,31,24,.85)); }

/* Vraie capture dans le mockup téléphone */
.phone-screen > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Galerie de captures d'écran */
.shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.shot { text-align: center; }
.shot .frame { border-radius: 30px; overflow: hidden; border: 8px solid #0f1f18; box-shadow: var(--shadow-md); background: #0f1f18; }
.shot img { width: 100%; display: block; }
.shot figcaption { margin-top: 15px; font-size: 13.5px; font-weight: 600; color: var(--forest); }

@media (max-width: 940px) {
  .hero-founder .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-founder .portrait { max-width: 440px; margin-inline: auto; }
  .shots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .photos { grid-template-columns: 1fr; }
  .photos img { height: 220px; }
}
@media (max-width: 480px) {
  .shots { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
}
