/* =================================================================
   TROP-PLUS — Design System · VERSION AUDACIEUSE
   Vibrant · coloré · expressif — motif "+"
   ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg: #fffdfa;
  --bg-2: #f4f5fb;
  --surface: #ffffff;
  --surface-2: #f7f8fc;
  --border: #e7e9f2;
  --border-strong: #d6d9ea;

  --ink: #16193b;
  --text: #2a2d44;
  --text-soft: #5b5f76;
  --text-dim: #8d91a8;

  --indigo: #243084;
  --violet: #3a47b0;
  --pink: #F08424;
  --coral: #F08424;
  --amber: #F08424;
  --cyan: #243084;
  --accent: #243084;
  --accent-tint: #ebedf8;

  --grad: linear-gradient(120deg, #243084 0%, #3a47b0 52%, #F08424 100%);
  --grad-2: linear-gradient(135deg, #243084 0%, #3a47b0 62%, #F2872A 100%);
  --grad-soft: linear-gradient(135deg, rgba(36,48,132,.12), rgba(240,132,36,.12));

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 32px;

  --shadow-sm: 0 4px 16px -6px rgba(36,48,132,.18);
  --shadow: 0 26px 60px -22px rgba(36,48,132,.40);
  --shadow-color: 0 18px 40px -14px rgba(36,48,132,.42);

  --maxw: 1180px;
  --ease: cubic-bezier(.34, 1.56, .64, 1);
  --ease-soft: cubic-bezier(.22, 1, .36, 1);

  --serif: "Space Grotesk", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font: var(--sans);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Ambient background (coloré) ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(48% 40% at 12% -5%, rgba(36,48,132,.14), transparent 60%),
    radial-gradient(45% 38% at 100% 8%, rgba(240,132,36,.14), transparent 60%),
    radial-gradient(40% 35% at 60% 100%, rgba(58,71,176,.10), transparent 60%),
    var(--bg);
}
.orb { position: fixed; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: .36; pointer-events: none; animation: float 16s var(--ease-soft) infinite alternate; }
.orb.a { width: 380px; height: 380px; background: #3a47b0; top: -90px; left: -70px; }
.orb.b { width: 340px; height: 340px; background: #F08424; top: 28%; right: -90px; animation-delay: -5s; }
@keyframes float { to { transform: translate3d(46px, 54px, 0) scale(1.14); } }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
section { padding: clamp(64px, 9vw, 124px) 0; position: relative; }
.center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
.h-xl { font-size: clamp(2.7rem, 7vw, 5.2rem); }
.h-lg { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.h-md { font-size: clamp(1.45rem, 2.8vw, 2rem); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: var(--text-soft); font-weight: 400; }
.muted { color: var(--text-soft); }
.dim { color: var(--text-dim); }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); padding: 8px 16px; border-radius: 100px; background: var(--accent-tint); border: 1.5px solid transparent;
}
.eyebrow::before { content: "✦"; color: var(--pink); }

.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 100px;
  font-weight: 700; font-size: .98rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease-soft), filter .3s;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--grad-2); color: #fff; box-shadow: var(--shadow-color); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); filter: saturate(1.15); }
.btn-ghost { border: 2px solid var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { transform: translateY(-3px); background: var(--ink); color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: .3s; border-bottom: 2px solid transparent; padding: 18px 0; }
.site-header.scrolled { background: rgba(255,253,250,.82); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--border); padding: 11px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 700; font-size: 1.34rem; color: var(--ink); }
.brand .mark { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-2); color: #fff; font-family: var(--sans); font-weight: 900; font-size: 1.4rem; box-shadow: var(--shadow-color); transform: rotate(-6deg); transition: transform .3s var(--ease); }
.brand:hover .mark { transform: rotate(6deg) scale(1.08); }
.brand .plus { color: var(--pink); }
.brand-logo { height: 38px; width: auto; display: block; transition: height .3s; }
.site-header.scrolled .brand-logo { height: 31px; }
.site-footer .brand-logo { height: 44px; }

.menu { display: flex; align-items: center; gap: 2px; }
.menu > li > a, .menu > li > .navlink { display: inline-flex; align-items: center; gap: 6px; padding: 9px 15px; border-radius: 100px; font-size: .94rem; font-weight: 600; color: var(--text-soft); transition: .2s; }
.menu > li > a:hover, .menu > li > .navlink:hover, .menu > li > a.active { color: var(--accent); background: var(--accent-tint); }
.has-drop { position: relative; }
.has-drop > .navlink::after { content: "▾"; font-size: .7em; color: var(--text-dim); }
.drop { position: absolute; top: calc(100% + 10px); left: 0; min-width: 234px; background: var(--surface); border: 2px solid var(--border); border-radius: 18px; padding: 9px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 12px; font-size: .92rem; font-weight: 600; color: var(--text-soft); transition: .18s; }
.drop a:hover { background: var(--accent-tint); color: var(--accent); transform: translateX(3px); }
.drop a .ic { font-size: 1.05rem; }
.drop a .ic-img { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; width: 46px; height: 46px; border-radius: 13px; border: 2px solid var(--ink); background: var(--surface); }
.burger span { display: block; width: 20px; height: 2.5px; background: var(--ink); margin: 4px auto; transition: .3s; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(86%, 360px); z-index: 110; background: var(--surface); border-left: 2px solid var(--border); padding: 92px 26px 40px; transform: translateX(100%); transition: transform .45s var(--ease-soft); overflow-y: auto; box-shadow: var(--shadow); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 13px 8px; font-size: 1.05rem; font-weight: 600; color: var(--text); border-bottom: 1.5px solid var(--border); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .group-title { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--pink); font-weight: 800; margin: 22px 0 4px; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 26px; }
.scrim { position: fixed; inset: 0; background: rgba(21,16,42,.42); z-index: 105; opacity: 0; visibility: hidden; transition: .3s; backdrop-filter: blur(3px); }
.scrim.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(150px, 19vh, 215px); padding-bottom: clamp(56px, 8vw, 104px); position: relative; }
.hero::before { content: "+"; position: absolute; font-family: var(--serif); font-weight: 700; font-size: 30rem; line-height: 1; right: -3%; top: 6%; color: rgba(124,58,237,.05); pointer-events: none; z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 24px 0 26px; }
.hero .lead { max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-stats { display: flex; gap: 38px; margin-top: 50px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 700; }
.hero-stats .lbl { font-size: .84rem; color: var(--text-dim); font-weight: 500; }

/* Hero visual — carte colorée animée */
.hero-visual { position: relative; }
.code-card, .visual-card {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transform: rotate(2deg); transition: transform .5s var(--ease);
}
.hero-visual:hover .visual-card, .hero-visual:hover .code-card { transform: rotate(-1deg) translateY(-6px); }
.visual-card .vc-head { padding: 32px 32px 24px; background: var(--grad-2); color: #fff; }
.visual-card .vc-kicker { font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; opacity: .9; }
.visual-card .vc-title { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; margin-top: 10px; line-height: 1.18; color: #fff; }
.visual-card .vc-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; border-bottom: 1.5px solid var(--border); font-size: .98rem; font-weight: 500; }
.visual-card .vc-row:last-child { border-bottom: none; }
.visual-card .vc-row .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; font-weight: 800; }
.code-top, .code-body, .ln, .tok-key, .tok-fn, .tok-str, .tok-var, .tok-com, .tok-pun { all: revert; }

.float-badge { position: absolute; display: flex; align-items: center; gap: 9px; background: var(--surface); border: 2px solid var(--border); box-shadow: var(--shadow-sm); padding: 12px 17px; border-radius: 16px; font-size: .86rem; font-weight: 700; color: var(--ink); animation: bob 5s var(--ease-soft) infinite alternate; }
.float-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.float-badge.one { top: -22px; right: 22px; }
.float-badge.two { bottom: -20px; left: -14px; animation-delay: -2.5s; }
@keyframes bob { to { transform: translateY(-12px); } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 100px; border: 2px solid var(--border); background: var(--surface); font-weight: 600; font-size: .93rem; color: var(--text-soft); white-space: nowrap; }
.chip .pp { color: var(--pink); font-weight: 800; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card { position: relative; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; overflow: hidden; }
.card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow); border-color: var(--violet); }
.card .ic-box { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-2); color: #fff; margin-bottom: 22px; font-size: 1.5rem; box-shadow: var(--shadow-color); transform: rotate(-5deg); transition: transform .35s var(--ease); }
.card:hover .ic-box { transform: rotate(5deg) scale(1.06); }
.card h3 { font-size: 1.3rem; margin-bottom: 11px; }
.card p { color: var(--text-soft); font-size: .96rem; }
.card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 700; font-size: .9rem; color: var(--accent); }
.card .more .arrow { transition: transform .25s var(--ease); }
.card:hover .more .arrow { transform: translateX(5px); }
.card.span-2 { grid-column: span 2; }

/* feature */
.feature { display: flex; gap: 16px; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 2px solid var(--border); transition: .3s; }
.feature:hover { border-color: var(--pink); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature .fic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.25rem; }
.feature h4 { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; margin-bottom: 5px; color: var(--ink); }
.feature p { font-size: .92rem; color: var(--text-soft); }

/* ---------- Stat band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 36px 18px; border-radius: var(--radius); background: var(--surface); border: 2px solid var(--border); transition: .3s; }
.stat:hover { transform: translateY(-4px); border-color: var(--violet); }
.stat .num { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 700; }
.stat .lbl { color: var(--text-soft); font-size: .92rem; margin-top: 6px; font-weight: 500; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; border-radius: var(--radius); background: var(--surface); border: 2px solid var(--border); transition: .3s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--serif); font-size: 2.6rem; font-weight: 700; line-height: 1; display: block; margin-bottom: 14px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h4 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--text-soft); font-size: .92rem; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.panel { background: var(--grad-soft); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 42px; }

.check-list li { display: flex; gap: 13px; padding: 11px 0; color: var(--text); font-weight: 500; }
.check-list li::before { content: "✦"; color: var(--pink); font-weight: 800; flex: 0 0 auto; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: clamp(58px, 8vw, 100px) 32px; border-radius: var(--radius-lg); overflow: hidden; background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.cta-band .eyebrow { color: #fff; background: rgba(255,255,255,.18); }
.cta-band .eyebrow::before { color: #fff; }
.cta-band h2 { color: #fff; max-width: 780px; margin: 0 auto 16px; }
.cta-band .grad-text { color: #fff; -webkit-text-fill-color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 10px 30px -10px rgba(0,0,0,.3); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--accent); border-color: #fff; }
.cta-band::after { content: "+"; position: absolute; font-family: var(--serif); font-weight: 700; font-size: 26rem; right: -30px; bottom: -130px; color: rgba(255,255,255,.12); line-height: 1; pointer-events: none; }

/* ---------- Team ---------- */
.team-card { text-align: center; padding: 34px 24px; }
.team-card .avatar { width: 96px; height: 96px; border-radius: 30px; margin: 0 auto 20px; display: grid; place-items: center; font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: #fff; background: var(--grad-2); box-shadow: var(--shadow-color); transform: rotate(-6deg); transition: transform .35s var(--ease); }
.team-card:hover .avatar { transform: rotate(6deg) scale(1.05); }
.team-card h3 { font-size: 1.24rem; margin-bottom: 4px; }
.team-card .role { color: var(--pink); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.socials { display: flex; gap: 9px; justify-content: center; }
.socials a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; border: 2px solid var(--border); background: var(--surface); color: var(--text-soft); font-size: .8rem; font-weight: 700; transition: .2s; }
.socials a:hover { color: #fff; background: var(--grad-2); border-color: transparent; transform: translateY(-3px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 15px; padding: 22px; border-radius: var(--radius); background: var(--surface); border: 2px solid var(--border); margin-bottom: 14px; transition: .3s; }
.info-card:hover { border-color: var(--violet); transform: translateX(4px); }
.info-card .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.2rem; flex: 0 0 auto; }
.info-card .lbl { font-size: .78rem; color: var(--text-dim); font-weight: 600; }
.info-card .val { font-weight: 700; color: var(--ink); }
form .field { margin-bottom: 18px; }
form label { display: block; font-size: .86rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
form input, form textarea, form select { width: 100%; padding: 15px 17px; border-radius: var(--radius-sm); background: var(--surface); border: 2px solid var(--border-strong); color: var(--ink); font-family: inherit; font-size: .98rem; transition: .2s; }
form input::placeholder, form textarea::placeholder { color: var(--text-dim); }
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
form textarea { resize: vertical; min-height: 130px; }
.form-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.form-note { font-size: .82rem; color: var(--text-dim); margin-top: 8px; }

/* ---------- Page hero ---------- */
.page-hero { padding-top: clamp(150px, 18vh, 196px); padding-bottom: clamp(28px, 5vw, 48px); }
.page-hero .lead { max-width: 640px; }
.breadcrumb { font-size: .85rem; color: var(--text-dim); margin-bottom: 20px; font-weight: 500; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { border-top: 2px solid var(--border); padding: 76px 0 34px; margin-top: 40px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.foot-brand p { color: var(--text-soft); max-width: 330px; margin: 18px 0 22px; font-size: .94rem; }
.site-footer h4 { font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--pink); margin-bottom: 16px; font-weight: 800; }
.site-footer li { margin-bottom: 11px; }
.site-footer a.fl { color: var(--text-soft); font-size: .94rem; transition: .2s; font-weight: 500; }
.site-footer a.fl:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 54px; padding-top: 26px; border-top: 2px solid var(--border); color: var(--text-dim); font-size: .85rem; }
.foot-social { display: flex; gap: 9px; }
.foot-social a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; border: 2px solid var(--border); font-size: .8rem; font-weight: 700; color: var(--text-soft); transition: .2s; background: var(--surface); }
.foot-social a:hover { color: #fff; background: var(--grad-2); border-color: transparent; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .09s; }
[data-reveal][data-delay="2"] { transition-delay: .18s; }
[data-reveal][data-delay="3"] { transition-delay: .27s; }
[data-reveal][data-delay="4"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .marquee-track, .orb, .float-badge { animation: none; } }

/* ---------- Trust line ---------- */
.trust-line { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: .9rem; font-weight: 600; color: var(--text-soft); }
.trust-line .tk { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--grad-2); color: #fff; font-size: .72rem; flex: 0 0 auto; }
.cta-band .trust-line { justify-content: center; color: rgba(255,255,255,.92); }
.cta-band .trust-line .tk { background: #fff; color: var(--accent); }

/* ---------- Réalisations ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.filter-pill { padding: 10px 20px; border-radius: 100px; font-size: .9rem; font-weight: 700; border: 2px solid var(--border-strong); color: var(--text-soft); background: transparent; transition: .2s; }
.filter-pill:hover { color: var(--accent); border-color: var(--violet); }
.filter-pill.active { background: var(--grad-2); color: #fff; border-color: transparent; box-shadow: var(--shadow-color); }

.work-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.work-card .thumb { aspect-ratio: 16 / 10; display: grid; place-items: center; position: relative; background: var(--grad-soft); border-bottom: 2px solid var(--border); overflow: hidden; }
.work-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.work-card:hover .thumb img { transform: scale(1.05); transition: transform .5s var(--ease-soft); }
.work-card .thumb .mono { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--accent); text-align: center; padding: 0 20px; line-height: 1.15; }
.work-card .thumb .tag { position: absolute; top: 14px; left: 14px; font-size: .72rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: #fff; background: var(--grad-2); padding: 6px 13px; border-radius: 100px; box-shadow: var(--shadow-color); }
.work-card .thumb .soon { position: absolute; top: 14px; right: 14px; font-size: .72rem; font-weight: 800; color: var(--amber); background: #fff; padding: 6px 13px; border-radius: 100px; border: 2px solid var(--border); }
.work-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.work-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.work-card p { color: var(--text-soft); font-size: .93rem; flex: 1; }
.work-card .visit { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; font-size: .89rem; color: var(--accent); }
.work-card .visit .arrow { transition: transform .25s var(--ease); }
.work-card:hover .visit .arrow { transform: translate(4px,-4px); }
.is-hidden { display: none !important; }

/* ---------- Études de cas ---------- */
.case { align-items: center; }
.case + .case { margin-top: 64px; }
.case h3 { margin: 14px 0 18px; }
.case p { margin-bottom: 12px; color: var(--text-soft); font-size: .98rem; }
.case p strong { color: var(--ink); font-weight: 700; }
.case-results { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 26px; }
.case-results .rchip { font-size: .82rem; font-weight: 700; color: #fff; background: var(--grad-2); padding: 9px 16px; border-radius: 100px; }
.case-media { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.case.reverse .case-media { transform: rotate(1.5deg); order: -1; }
.case-media img { width: 100%; display: block; }
@media (max-width: 940px) { .case.reverse .case-media { order: 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 470px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu, .nav-cta .btn { display: none; }
  .burger { display: block; }
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .card.span-2 { grid-column: span 1; }
  .hero::before { display: none; }
}
@media (max-width: 540px) {
  .cols-4, .stats-band, .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
