/* ==========================================================================
   DIGITALICI — Agence Digitale, Abidjan
   Refonte éditoriale — charte de marque
   Palette : marine #1E3A5F · orange #E67E22 · vert #27AE60 · crème #F4F6F9
   Typo : Bricolage Grotesque (display) · Hanken Grotesk (texte) · Space Mono (labels)
   ========================================================================== */

:root {
  --ink:        #122A45;
  --ink-2:      #1A3658;
  --forest:     #1E3A5F;
  --forest-2:   #18314E;
  --lime:       #E67E22;
  --lime-soft:  #F2974A;
  --green:      #27AE60;
  --cream:      #F4F6F9;
  --cream-2:    #E7ECF2;
  --on-ink:     #EAF1F8;
  --on-cream:   #1E3A5F;
  --muted:      rgba(234, 241, 248, 0.66);
  --muted-cream:#62748A;
  --line:       rgba(234, 241, 248, 0.15);
  --line-cream: rgba(30, 58, 95, 0.15);
  --on-accent:  #14293F;

  --display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --body:    'Hanken Grotesk', 'Segoe UI', sans-serif;
  --mono:    'Space Mono', ui-monospace, monospace;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--on-ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: min(var(--maxw), 100% - 2 * var(--pad)); margin-inline: auto; }

/* ---- Display headings : minuscules, légères ---- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -.02em; text-transform: lowercase; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 300; }
h3 { font-size: 1.25rem; font-weight: 500; letter-spacing: -.01em; }
.accent { color: var(--lime); }

/* ---- Eyebrow mono entre crochets ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-block;
}
.eyebrow::before { content: '[ '; opacity: .55; }
.eyebrow::after  { content: ' ]'; opacity: .55; }

/* ---- Boutons pilule ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn--lime { background: linear-gradient(135deg, #F2974A 0%, #E67E22 52%, #D26B16 100%); color: #fff; text-shadow: 0 1px 1px rgba(90, 40, 0, .4); box-shadow: 0 8px 22px rgba(230, 126, 34, .3); }
.btn--lime:hover { background: linear-gradient(135deg, #F4A35C 0%, #EB832A 52%, #C8651A 100%); }

.btn--ghost { background: transparent; color: var(--on-ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--forest); }

.linkarrow {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--on-ink);
  display: inline-flex;
  align-items: center;
  gap: .5em;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.linkarrow:hover { gap: .9em; color: var(--lime); }

/* ==========================================================================
   Navigation — pilule centrée
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line-cream);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled { padding: 10px 0; box-shadow: 0 6px 24px rgba(30, 58, 95, .08); }
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: baseline; gap: .12em; font-family: var(--display); font-weight: 500; font-size: 1.5rem; letter-spacing: -.03em; color: var(--on-cream); }
.brand b { font-weight: 500; }
.brand .dot { color: var(--lime); }
.brand img { height: 40px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line-cream);
  border-radius: 999px;
  background: rgba(30, 58, 95, .03);
}
.nav__menu a {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--muted-cream);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__menu a:hover { color: var(--on-cream); }
.nav__menu a.active { color: #fff; background: #D26B16; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav .btn--lime { color: #fff; }

.burger { display: none; background: none; border: 1px solid var(--line-cream); border-radius: 12px; width: 44px; height: 44px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--on-cream); margin: 4px auto; border-radius: 2px; transition: .25s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 7vw, 96px); }
.hero__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(520px, 72vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
/* Image duotone marine → orange (signature) */
.hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(.4) contrast(1.05);
}
.hero__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(85% 75% at 94% 4%, rgba(242, 151, 74, .58) 0%, rgba(230, 126, 34, .28) 34%, rgba(230, 126, 34, 0) 60%),
    linear-gradient(100deg, rgba(13, 30, 50, .96) 0%, rgba(15, 33, 54, .88) 38%, rgba(30, 58, 95, .55) 66%, rgba(214, 110, 28, .55) 100%),
    linear-gradient(0deg, rgba(11, 26, 44, .94) 0%, rgba(11, 26, 44, 0) 52%);
  mix-blend-mode: normal;
}

.hero__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: clamp(22px, 3vw, 38px); }
.hero__lede { max-width: 300px; margin-left: auto; text-align: right; color: rgba(255, 255, 255, .9); font-size: .98rem; line-height: 1.5; text-shadow: 0 1px 6px rgba(13, 30, 50, .5); }

.hero__main { padding: 0 clamp(22px, 3vw, 38px); }
.hero__main h1 { margin-bottom: 26px; max-width: 16ch; }
.hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* Rangée capacités, façon « tags » fins */
.hero__caps {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 38px);
  padding: clamp(22px, 3vw, 38px);
  border-top: 1px solid var(--line);
  margin-top: clamp(28px, 4vw, 44px);
}
.cap { display: inline-flex; align-items: center; gap: .6em; font-family: var(--mono); font-size: .76rem; letter-spacing: .03em; color: var(--muted); }
.cap svg { width: 16px; height: 16px; color: var(--lime); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(30px, 4vw, 52px) 8px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--display); font-weight: 300; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.03em; }
.stat__num span { color: var(--lime); }
.stat__lbl { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ==========================================================================
   Sections génériques
   ========================================================================== */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--cream { background: var(--cream); color: var(--on-cream); }
.section--cream h2, .section--cream h3 { color: var(--on-cream); }
.section--cream .eyebrow { color: #C26A18; }
.section--cream .muted { color: var(--muted-cream); }

.head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.head .eyebrow { margin-bottom: 18px; }
.head h2 { margin-bottom: 16px; }
.head p { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.section--cream .head p { color: var(--muted-cream); }

/* Deux marchés */
.markets { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 26px); }
.market {
  position: relative;
  border: 1px solid var(--line-cream);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 46px);
  background: #fff;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.market:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(20, 33, 27, .1); }
.market__num { font-family: var(--mono); font-size: .75rem; color: var(--muted-cream); letter-spacing: .1em; }
.market__ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(28, 122, 69, .1); display: grid; place-items: center; margin: 22px 0 20px; }
.market__ico svg { width: 26px; height: 26px; color: #C26A18; }
.market h3 { font-size: 1.5rem; margin-bottom: 10px; }
.market p { color: var(--muted-cream); margin-bottom: 22px; max-width: 42ch; }

/* Services */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service { background: var(--ink); padding: clamp(28px, 3.5vw, 46px); transition: background .3s var(--ease); }
.service:hover { background: var(--ink-2); }
.service__ico { width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 24px; color: var(--lime); }
.service__ico svg { width: 24px; height: 24px; }
.service h3 { margin-bottom: 10px; }
.service p { color: var(--muted); max-width: 44ch; }

/* Méthode — vraie séquence numérotée */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 30px); }
.step { border-top: 1px solid var(--line-cream); padding-top: 22px; }
.step__n { font-family: var(--mono); font-size: .8rem; color: #C26A18; letter-spacing: .1em; margin-bottom: 38px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted-cream); font-size: .96rem; }
.steps__note { margin-top: clamp(36px, 4vw, 52px); font-family: var(--mono); font-size: .8rem; color: var(--muted-cream); letter-spacing: .03em; }

/* Pourquoi nous */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.why__cell { background: var(--ink); padding: clamp(26px, 3vw, 40px); }
.why__cell:hover { background: var(--ink-2); }
.why__cell .ic { color: var(--lime); margin-bottom: 20px; }
.why__cell .ic svg { width: 26px; height: 26px; }
.why__cell h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why__cell p { color: var(--muted); font-size: .94rem; }

/* CTA final */
.cta { position: relative; overflow: hidden; }
.cta__card {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(230, 126, 34, .28), transparent 55%),
    linear-gradient(135deg, var(--forest) 0%, var(--ink-2) 70%);
  border: 1px solid var(--line);
  text-align: center;
}
.cta__card h2 { margin-bottom: 16px; }
.cta__card p { color: var(--muted); max-width: 52ch; margin: 0 auto 30px; font-size: 1.05rem; }
.cta__actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot { padding: clamp(56px, 7vw, 90px) 0 36px; border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.foot__about { color: var(--muted); max-width: 38ch; margin: 18px 0 22px; font-size: .96rem; }
.foot h4 { font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.foot__links { display: flex; flex-direction: column; gap: 11px; }
.foot__links a { color: var(--on-ink); opacity: .8; transition: opacity .2s, color .2s; }
.foot__links a:hover { opacity: 1; color: var(--lime); }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: border-color .2s, background .2s, transform .2s; }
.socials a:hover { border-color: var(--lime); background: rgba(230, 126, 34, .1); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: var(--on-ink); }
.foot__bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: .74rem; letter-spacing: .03em; color: var(--muted); }

/* ==========================================================================
   Pages internes — bandeau de titre
   ========================================================================== */
.pagehero { padding: clamp(40px, 6vw, 84px) 0 clamp(36px, 5vw, 64px); }
.pagehero__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 70px);
  background:
    radial-gradient(85% 150% at 95% -15%, rgba(242, 151, 74, .52) 0%, rgba(230, 126, 34, .18) 38%, rgba(230, 126, 34, 0) 66%),
    linear-gradient(100deg, rgba(13, 30, 50, 1) 0%, rgba(20, 41, 64, 1) 40%, rgba(35, 68, 104, 1) 70%, rgba(196, 102, 24, 1) 100%);
  border: 1px solid var(--line);
}
.pagehero .eyebrow { margin-bottom: 18px; }
.pagehero h1 { max-width: 18ch; margin-bottom: 14px; }
.pagehero p { color: var(--muted); max-width: 52ch; font-size: 1.08rem; }

/* ==========================================================================
   Offres — cartes tarifaires
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 38px);
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); }
.plan--featured { border-color: rgba(230, 126, 34, .55); box-shadow: 0 0 0 1px rgba(230, 126, 34, .25), 0 30px 60px rgba(0, 0, 0, .35); }
.plan__badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-accent); background: var(--lime); border-radius: 999px; padding: 5px 12px;
}
.plan__tier { font-family: var(--mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.plan__price { font-family: var(--display); font-weight: 300; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.15; letter-spacing: -.02em; }
.plan__create { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--muted); margin-top: 4px; }
.plan__rec { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .92rem; color: var(--on-ink); }
.plan__rec span { color: var(--muted); }
.plan__features { margin: 22px 0 26px; flex: 1; }
.plan__features li { position: relative; padding: 9px 0 9px 28px; font-size: .95rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.plan__features li:last-child { border-bottom: none; }
.plan__features li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 14px; height: 8px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.plan .btn { width: 100%; justify-content: center; }
.plans__note { text-align: center; margin-top: clamp(28px, 3vw, 40px); font-family: var(--mono); font-size: .76rem; letter-spacing: .03em; color: var(--muted); }

/* Services à la carte */
.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.addon { display: flex; gap: 20px; align-items: flex-start; background: var(--ink); padding: clamp(24px, 3vw, 34px); }
.addon:hover { background: var(--ink-2); }
.addon__ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--lime); }
.addon__ico svg { width: 22px; height: 22px; }
.addon h3 { margin-bottom: 4px; }
.addon p { color: var(--muted); font-size: .92rem; margin-bottom: 8px; }
.addon__price { font-family: var(--mono); font-size: .85rem; color: var(--lime); }

/* ==========================================================================
   À propos
   ========================================================================== */
.about-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-split p { color: var(--muted); margin-bottom: 1em; }
.about-split strong { color: var(--on-ink); font-weight: 600; }
.section--cream .about-split p { color: var(--muted-cream); }
.section--cream .about-split strong { color: var(--on-cream); }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 360px; isolation: isolate; }
.about-media::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1000');
  background-size: cover; background-position: center; filter: grayscale(.35) contrast(1.05);
}
.about-media::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, rgba(18, 42, 69, .55), rgba(24, 49, 78, .35) 60%, rgba(230, 126, 34, .15));
}

.statline { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); margin-bottom: clamp(40px, 5vw, 64px); }
.statline__cell { border: 1px solid var(--line-cream); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); text-align: center; background: #fff; }
.statline__num { font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 4vw, 3rem); color: #C26A18; line-height: 1; }
.statline__cell p { color: var(--muted-cream); margin: 10px 0 0; font-size: .95rem; }

.opps { max-width: 780px; margin: 0 auto; }
.opps li { position: relative; padding: 16px 18px 16px 52px; border: 1px solid var(--line-cream); border-radius: 14px; margin-bottom: 12px; background: #fff; color: var(--on-cream); }
.opps li::before {
  content: ''; position: absolute; left: 20px; top: 50%; transform: translateY(-60%) rotate(-45deg);
  width: 13px; height: 7px; border-left: 2px solid #C26A18; border-bottom: 2px solid #C26A18;
}

/* ==========================================================================
   Réalisations
   ========================================================================== */
.notice { border: 1px dashed var(--line); border-radius: 14px; padding: 22px 26px; margin-bottom: 36px; color: var(--muted); font-size: .94rem; }
.notice strong { color: var(--lime); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(32px, 4vw, 48px); }
.filters button {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.filters button:hover { color: var(--on-ink); border-color: var(--muted); }
.filters button.active { background: var(--lime); color: var(--on-accent); border-color: var(--lime); }

.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.project { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--ink-2); transition: transform .3s var(--ease); }
.project:hover { transform: translateY(-5px); }
.project__media { height: 190px; display: grid; place-items: center; font-size: 46px; background: linear-gradient(150deg, var(--forest), var(--ink)); border-bottom: 1px solid var(--line); }
.project__body { padding: 22px 24px 26px; }
.project__type { font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--lime); }
.project h3 { margin-top: 8px; font-size: 1.15rem; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.quote { border: 1px solid var(--line-cream); border-radius: var(--radius); padding: clamp(26px, 3vw, 36px); background: #fff; }
.quote__mark { font-family: var(--display); font-size: 3rem; line-height: .6; color: #c4cfdb; }
.quote p { color: var(--on-cream); margin: 14px 0 20px; font-size: 1rem; }
.quote__author { font-family: var(--mono); font-size: .82rem; color: var(--on-cream); }
.quote__role { font-family: var(--mono); font-size: .72rem; color: var(--muted-cream); }

/* ==========================================================================
   Contact — formulaire
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.formcard { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); }
.formcard h2 { margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: .98rem; color: var(--on-ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(234, 243, 236, .04);
  transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(234, 243, 236, .35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); background: rgba(230, 126, 34, .06); }
.field select option { color: #14211b; }
.field textarea { resize: vertical; min-height: 130px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.formcard .btn { margin-top: 6px; }
.form-ok { display: none; margin-top: 18px; padding: 14px 18px; border-radius: 12px; font-size: .92rem; background: rgba(230, 126, 34, .1); border: 1px solid rgba(230, 126, 34, .4); color: var(--lime-soft); }
.form-ok.visible { display: block; }

.infocard { background: linear-gradient(160deg, var(--forest), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 40px); }
.infocard h2 { font-size: 1.6rem; margin-bottom: 26px; }
.infoline { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.infoline__ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--lime); }
.infoline__ico svg { width: 20px; height: 20px; }
.infoline__lbl { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.infoline a, .infoline span.v { color: var(--on-ink); font-size: 1rem; }
.infoline a:hover { color: var(--lime); }
.infocard .socials { margin-top: 28px; }

/* ==========================================================================
   Reveal au scroll
   ========================================================================== */
/* Le contenu est visible par défaut ; on ne le masque que si JS est actif
   (classe .js sur <html>), pour qu'une panne de JS ne cache jamais la page. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
  .nav__menu { display: none; }
  .burger { display: block; }
  .nav__cta .btn--ghost { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .markets, .services, .why { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .addons { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-media { min-height: 280px; order: -1; }
  .statline { grid-template-columns: 1fr; }
  .projects, .quotes { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* menu mobile déroulant */
  .nav__menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: var(--pad); right: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line-cream);
    box-shadow: 0 24px 50px rgba(30, 58, 95, .15);
  }
  .nav__menu.open a { padding: 14px 16px; }
}

@media (max-width: 620px) {
  .hero__top { flex-direction: column; }
  .hero__lede { text-align: left; margin-left: 0; max-width: none; }
  .steps, .why, .foot__grid { grid-template-columns: 1fr; }
  .projects, .quotes, .field-2 { grid-template-columns: 1fr; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

/* Accessibilité — mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
}

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
