:root {
  --ink: #0a1020;
  --ink-soft: #111a2d;
  --night: #07101f;
  --night-2: #0b1526;
  --paper: #f5f2eb;
  --paper-2: #ece8df;
  --white: #ffffff;
  --muted: #6e7480;
  --line: rgba(10, 16, 32, .14);
  --line-dark: rgba(255, 255, 255, .13);
  --orange: #ff4b00;
  --orange-2: #ff6a00;
  --green: #65e6a6;
  --yellow: #ffd66b;
  --blue: #8db5ff;
  --radius: 16.8px;
  --shadow: 0 19.6px 49px rgba(3, 8, 18, .14);
  --max: 840px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 11.2px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--orange); color: var(--night); }
:focus-visible { outline: 2.1px solid rgba(255,75,0,.7); outline-offset: 2.1px; }

.skip-link {
  position: fixed; left: 11.2px; top: -56px; z-index: 999;
  padding: 8.4px 12.6px; background: var(--white); border-radius: 8.4px;
  transition: top .2s ease;
}
.skip-link:focus { top: 11.2px; }
.container { width: min(calc(100% - 28px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 28px), 574px); margin: 0 auto; }
.section { padding: 82.6px 0; position: relative; }
.section-sm { padding: 54.6px 0; }
.dark { background: var(--night); color: var(--white); }
.paper-2 { background: var(--paper-2); }
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,.055) 0.7px, transparent 0.7px),
    linear-gradient(90deg, rgba(255,255,255,.055) 0.7px, transparent 0.7px);
  background-size: 50.4px 50.4px;
}
.grid-bg-light {
  background-image:
    linear-gradient(rgba(10,16,32,.05) 0.7px, transparent 0.7px),
    linear-gradient(90deg, rgba(10,16,32,.05) 0.7px, transparent 0.7px);
  background-size: 50.4px 50.4px;
}

.site-header { position: fixed; z-index: 100; left: 0; right: 0; top: 12.6px; transition: top .25s ease; }
.nav-shell {
  width: min(calc(100% - 22.4px), 812px); margin: 0 auto; height: 46.2px;
  display: flex; align-items: center; gap: 16.8px; padding: 5.6px 7px 5.6px 12.6px;
  border: 0.7px solid rgba(255,255,255,.16); border-radius: 14px;
  background: rgba(7, 16, 31, .78); color: var(--white);
  backdrop-filter: blur(14px); box-shadow: 0 8.4px 25.2px rgba(0,0,0,.18);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease, border-radius .25s ease;
}
.site-header.scrolled { top: 6.3px; }
.site-header.scrolled .nav-shell { height: 40.6px; border-radius: 11.9px; background: rgba(7,16,31,.92); box-shadow: 0 7px 21px rgba(0,0,0,.25); }
.site-header.scrolled .brand { width: 101.5px; height: 27.3px; }
.brand { width: 113.4px; height: 30.8px; color: var(--white); flex: none; }
.brand, .brand svg, .brand img { transition: width .25s ease, height .25s ease; }
.brand svg, .brand img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4.2px; margin-left: auto; }
.nav-links > a, .nav-trigger {
  padding: 7.7px 8.4px; font-size: 9.8px; color: rgba(255,255,255,.76);
  border-radius: 8.4px; transition: color .2s ease, background .2s ease;
}
.nav-links > a:hover, .nav-links > a.active, .nav-trigger:hover, .nav-trigger.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-dropdown { position: relative; }
.nav-trigger { display: inline-flex; align-items: center; gap: 4.9px; border: 0; background: transparent; font: inherit; cursor: pointer; }
.nav-trigger svg { width: 8.4px; transition: transform .2s ease; }
.nav-dropdown.open .nav-trigger svg { transform: rotate(180deg); }
.nav-menu { position: absolute; top: calc(100% + 7.7px); left: 0; width: 159.6px; padding: 6.3px; border: 0.7px solid var(--line-dark); border-radius: 11.2px; background: rgba(7,16,31,.98); box-shadow: 0 16.8px 38.5px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translateY(-4.9px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-dropdown.open .nav-menu, .nav-dropdown:hover .nav-menu, .nav-dropdown:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: grid; grid-template-columns: 23.8px 1fr; gap: 7px; align-items: center; padding: 7px; border-radius: 7.7px; color: rgba(255,255,255,.76); font-size: 9.1px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav-menu i { width: 23.8px; height: 23.8px; display: grid; place-items: center; border-radius: 7px; background: rgba(255,75,0,.12); color: var(--orange-2); font-style: normal; font-size: 7px; font-weight: 850; }
.nav-menu strong { display: block; font-size: 9.1px; }
.nav-menu small { color: rgba(255,255,255,.4); font-size: 7px; }
.nav-cta { margin-left: 4.2px; }
.nav-toggle { display: none; margin-left: auto; width: 30.8px; height: 30.8px; border: 0; background: transparent; color: white; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 15.4px; height: 1.4px; margin: 3.5px auto; background: currentColor; border-radius: 6.3px; transition: .2s ease; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(4.9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-4.9px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 35px; padding: 0 14px; border-radius: 9.8px; border: 0.7px solid transparent;
  font-size: 10.5px; font-weight: 760; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1.4px); }
.btn-primary { background: var(--orange); color: #12100e; box-shadow: 0 8.4px 19.6px rgba(255,75,0,.24); }
.btn-primary:hover { background: var(--orange-2); box-shadow: 0 11.2px 23.8px rgba(255,75,0,.32); }
.btn-dark { background: var(--night); color: var(--white); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.08); }
.btn-line { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: rgba(10,16,32,.42); background: rgba(10,16,32,.035); }
.btn-sm { min-height: 32.2px; padding: 0 11.9px; font-size: 9.8px; }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(2.8px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px; margin: 0 0 14px;
  color: var(--muted); font-size: 8.4px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em;
}
.dark .eyebrow { color: rgba(255,255,255,.62); }
.eyebrow::before { content: ""; width: 5.6px; height: 5.6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3.5px rgba(255,75,0,.13); }
.eyebrow.green::before { background: var(--green); box-shadow: 0 0 0 3.5px rgba(101,230,166,.12); }
.display {
  margin: 0; font-size: clamp(36.4px, 7.3vw, 72.8px); line-height: .92;
  letter-spacing: -.065em; font-weight: 790;
}
.display .accent { color: var(--orange); }
.h1 { margin: 0; font-size: clamp(33.6px, 6vw, 57.4px); line-height: .96; letter-spacing: -.055em; font-weight: 790; }
.h2 { margin: 0; font-size: clamp(28px, 4.7vw, 47.6px); line-height: .98; letter-spacing: -.048em; font-weight: 780; }
.h3 { margin: 0; font-size: clamp(17.5px, 2.6vw, 25.2px); line-height: 1.04; letter-spacing: -.035em; }
.lead { font-size: clamp(12.6px, 1.8vw, 16.1px); line-height: 1.55; color: var(--muted); }
.dark .lead { color: rgba(255,255,255,.66); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(196px, 308px); gap: 42px; align-items: end; margin-bottom: 40.6px; }
.section-head .lead { margin: 0; }
.faq-title { margin-bottom: 33.6px; }
.eyebrow-ink { color: rgba(10,16,32,.65); }

.hero { min-height: 100svh; padding: 107.8px 0 56px; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; inset: -25% -10% auto 48%; height: 532px; background: radial-gradient(circle, rgba(255,75,0,.2), transparent 64%); pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 434px; height: 434px; left: -273px; bottom: -182px; border: 0.7px solid rgba(141,181,255,.18); border-radius: 50%; box-shadow: 0 0 0 56px rgba(141,181,255,.025), 0 0 0 112px rgba(141,181,255,.018); }
.hero-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 49px; align-items: center; position: relative; z-index: 1; }
.hero-copy { padding-top: 12.6px; }
.hero-copy .lead { max-width: 469px; margin: 21px 0 23.8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 8.4px; }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 6.3px; margin-top: 14px; }
.hero-assurance span { display: inline-flex; align-items: center; gap: 4.9px; padding: 5.6px 7px; border: 0.7px solid rgba(255,255,255,.11); border-radius: 699.3px; background: rgba(255,255,255,.035); color: rgba(255,255,255,.65); font-size: 7.7px; }
.hero-assurance span::before { content: "✓"; color: var(--green); font-weight: 900; }
.hero-note { display: flex; align-items: center; gap: 7px; margin-top: 15.4px; color: rgba(255,255,255,.52); font-size: 9.1px; }
.hero-note::before { content: ""; width: 4.9px; height: 4.9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9.8px var(--green); }

.campaign-ui {
  position: relative; border-radius: 19.6px; overflow: hidden; border: 0.7px solid rgba(255,255,255,.15);
  background: rgba(15,27,46,.82); box-shadow: 0 28px 77px rgba(0,0,0,.36);
  transform: perspective(980px) rotateY(-4deg) rotateX(1deg);
}
.campaign-bar { display: flex; align-items: center; gap: 5.6px; padding: 12.6px 14px; border-bottom: 0.7px solid var(--line-dark); color: rgba(255,255,255,.74); font-size: 9.1px; }
.campaign-bar .dot { width: 5.6px; height: 5.6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8.4px rgba(101,230,166,.7); }
.campaign-status { margin-left: auto; padding: 4.9px 7px; border-radius: 699.3px; background: rgba(101,230,166,.09); color: var(--green); font-size: 7.7px; text-transform: uppercase; letter-spacing: .08em; }
.campaign-body { padding: 15.4px; }
.campaign-title { display: flex; justify-content: space-between; gap: 10.5px; align-items: end; padding-bottom: 14px; }
.campaign-title strong { font-size: 15.4px; }
.campaign-title span { color: rgba(255,255,255,.48); font-size: 8.4px; }
.campaign-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6.3px; }
.campaign-metric { min-width: 0; padding: 9.8px; border: 0.7px solid rgba(255,255,255,.085); border-radius: 10.5px; background: rgba(255,255,255,.025); }
.campaign-metric span, .campaign-metric small { display: block; color: rgba(255,255,255,.44); font-size: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.campaign-metric strong { display: block; margin: 5.6px 0 3.5px; font-size: 21px; line-height: 1; letter-spacing: -.05em; }
.campaign-metric small { color: rgba(255,255,255,.34); }
.campaign-metric.accent-metric { background: rgba(101,230,166,.07); border-color: rgba(101,230,166,.16); }
.campaign-metric.accent-metric strong { color: var(--green); }
.campaign-chart { margin-top: 7.7px; padding: 10.5px 11.2px 7px; border: 0.7px solid rgba(255,255,255,.085); border-radius: 10.5px; background: rgba(255,255,255,.02); }
.chart-head { display: flex; justify-content: space-between; gap: 10.5px; color: rgba(255,255,255,.43); font-size: 7px; }
.chart-head strong { color: var(--orange-2); font-weight: 750; }
.week-bars { height: 50.4px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 5.6px; align-items: end; margin-top: 8.4px; }
.week-bars i { display: block; height: 42%; border-radius: 3.5px 3.5px 1.4px 1.4px; background: linear-gradient(var(--orange-2), rgba(255,75,0,.24)); }
.week-bars i:nth-child(2) { height: 58%; }.week-bars i:nth-child(3) { height: 50%; }.week-bars i:nth-child(4) { height: 78%; }.week-bars i:nth-child(5) { height: 68%; }.week-bars i:nth-child(6) { height: 32%; opacity: .55; }.week-bars i:nth-child(7) { height: 18%; opacity: .35; }
.week-labels { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5.6px; margin-top: 4.9px; text-align: center; color: rgba(255,255,255,.3); font-size: 6.3px; }
.campaign-latest { display: grid; grid-template-columns: 23.8px 1fr auto; gap: 7px; align-items: center; margin-top: 7.7px; padding: 7.7px 9.1px; border-radius: 9.8px; background: rgba(101,230,166,.055); }
.latest-icon { width: 22.4px; height: 22.4px; display: grid; place-items: center; border-radius: 7px; background: rgba(101,230,166,.12); color: var(--green); }
.campaign-latest strong, .campaign-latest small { display: block; }
.campaign-latest strong { font-size: 7.7px; }.campaign-latest small { margin-top: 2.1px; color: rgba(255,255,255,.42); font-size: 6.3px; }
.latest-time { color: rgba(255,255,255,.32); font-size: 6.3px; }
.demo-disclaimer { margin: 0; padding: 6.3px 15.4px 7.7px; border-top: 0.7px solid rgba(255,255,255,.06); color: rgba(255,255,255,.28); font-size: 6.3px; text-align: right; }

.trust { border-top: 0.7px solid var(--line-dark); border-bottom: 0.7px solid var(--line-dark); }
.trust-inner { padding: 22.4px 0 26.6px; display: grid; grid-template-columns: 1fr; gap: 14px; }
.trust-label { display: flex; align-items: center; gap: 9.8px; min-width: 0; color: var(--white); }
.trust-label::after { content: ""; flex: 1; height: 0.7px; background: linear-gradient(90deg, rgba(255,255,255,.18), transparent); }
.trust-label span { flex: none; padding: 4.9px 7px; border: 0.7px solid rgba(255,75,0,.38); border-radius: 699.3px; background: rgba(255,75,0,.08); color: var(--orange-2); font-size: 7px; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.trust-label strong { flex: none; font-size: 10.5px; font-weight: 620; letter-spacing: -.01em; color: rgba(255,255,255,.76); }
.logo-cloud { min-width: 0; overflow: hidden; padding: 2.8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.logo-track { display: flex; width: max-content; will-change: transform; animation: logo-marquee 30s linear infinite; }
.logo-set { display: flex; gap: 7px; padding-right: 7px; }
.logo-cloud:hover .logo-track { animation-play-state: paused; }
.client-logo { width: 99.4px; height: 50.4px; flex: 0 0 99.4px; padding: 9.1px 8.4px; display: grid; place-items: center; overflow: hidden; border: 0.7px solid rgba(255,255,255,.11); border-radius: 10.5px; background: rgba(255,255,255,.96); box-shadow: 0 7px 19.6px rgba(0,0,0,.14); transition: transform .2s ease, border-color .2s ease; }
.client-logo:hover { transform: translateY(-2.1px); border-color: rgba(255,75,0,.5); }
.client-logo img { width: 100%; max-width: 89.6px; height: 100%; max-height: 33.6px; object-fit: contain; }
.client-logo-wide img { max-width: 101.5px; }
@keyframes logo-marquee { to { transform: translateX(-50%); } }

.statement { padding: 28px 0 70px; }
.statement p { max-width: 700px; margin: 0; font-size: clamp(23.8px, 4.3vw, 44.8px); line-height: 1.08; letter-spacing: -.045em; }
.statement .muted-word { color: rgba(255,255,255,.26); }

.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12.6px; }
.card { border: 0.7px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.52); padding: 21px; }
.dark .card { border-color: var(--line-dark); background: rgba(255,255,255,.035); }
.problem-card { min-height: 217px; display: flex; flex-direction: column; }
.card-index { color: var(--orange); font-size: 9.1px; font-weight: 800; letter-spacing: .08em; }
.card h3 { margin: auto 0 10.5px; font-size: 17.5px; line-height: 1.08; letter-spacing: -.03em; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; }
.dark .card p { color: rgba(255,255,255,.6); }
.problem-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12.6px; }
.problem-panel { position: relative; overflow: hidden; padding: 22.4px; border: 0.7px solid var(--line); border-radius: 18.9px; background: rgba(255,253,248,.55); }
.problem-panel h3 { margin: 0 0 11.9px; line-height: 1.02; letter-spacing: -.045em; }
.problem-panel p { margin: 0; color: var(--muted); line-height: 1.62; }
.problem-main { grid-column: span 7; grid-row: span 2; min-height: 392px; display: flex; flex-direction: column; background: var(--night); color: var(--white); border-color: var(--night); }
.problem-main::after { content: ""; position: absolute; width: 252px; height: 252px; right: -119px; bottom: -133px; border: 0.7px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 38.5px rgba(255,255,255,.018), 0 0 0 77px rgba(255,255,255,.012); }
.problem-main h3 { margin-top: auto; max-width: 434px; font-size: clamp(27.3px, 4.2vw, 42.7px); }
.problem-main p { max-width: 420px; color: rgba(255,255,255,.57); }
.problem-route { display: flex; flex-wrap: wrap; align-items: center; gap: 6.3px; margin: 32.2px 0 26.6px; }
.problem-route span { padding: 6.3px 7.7px; border: 0.7px solid rgba(255,255,255,.12); border-radius: 699.3px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.72); font-size: 7px; font-weight: 800; letter-spacing: .08em; }
.problem-route i { color: var(--orange); font-style: normal; }
.problem-side { grid-column: span 5; min-height: 189.7px; display: flex; flex-direction: column; }
.problem-side h3 { margin-top: auto; max-width: 329px; font-size: clamp(20.3px, 3vw, 30.1px); }
.problem-accent { background: #dfe8ff; border-color: rgba(81,102,153,.18); }
.problem-accent::after { content: "↗"; position: absolute; right: 16.8px; top: 15.4px; color: rgba(10,16,32,.09); font-size: 50.4px; font-weight: 800; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12.6px; }
.service-card { position: relative; min-height: 378px; overflow: hidden; border-radius: 19.6px; padding: 25.2px; display: flex; flex-direction: column; border: 0.7px solid var(--line); }
.service-card.call, .service-card.email { grid-column: span 6; min-height: 427px; display: grid; grid-template-rows: auto 117.6px 1fr; align-content: stretch; }
.service-card.call { background: radial-gradient(circle at 82% 24%, rgba(255,75,0,.13), transparent 32%), var(--night); color: var(--white); }
.service-card.email { background: linear-gradient(145deg, #e5ecff, #d6e1ff); }
.service-card.call, .service-card.email { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card.call:hover, .service-card.email:hover, .service-card.call:focus-within, .service-card.email:focus-within { transform: translateY(-3.5px); box-shadow: 0 18.2px 42px rgba(10,16,32,.14); }
.service-card.call:hover { border-color: rgba(255,75,0,.34); }
.service-card.email:hover { border-color: rgba(68,91,148,.24); }
.service-card.multi { grid-column: span 12; min-height: 266px; background: var(--orange); }
.service-topline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.service-index { font-size: 7.7px; font-weight: 850; letter-spacing: .12em; opacity: .42; }
.service-tag { align-self: flex-start; padding: 5.6px 7.7px; border: 0.7px solid currentColor; border-radius: 699.3px; font-size: 7.7px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; opacity: .72; }
.service-visual { position: relative; min-width: 0; margin: 5.6px -5.6px 15.4px; overflow: hidden; border-radius: 14px; }
.call-visual { border: 0.7px solid rgba(255,255,255,.09); background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); }
.call-visual > span { position: absolute; left: 14px; bottom: 11.9px; color: rgba(255,255,255,.46); font-size: 7.7px; text-transform: uppercase; letter-spacing: .12em; }
.email-visual { display: grid; place-items: center; border: 0.7px solid rgba(10,16,32,.1); background: rgba(255,255,255,.35); }
.service-copy { position: relative; z-index: 2; display: flex; flex-direction: column; min-height: 0; }
.service-card.call h3, .service-card.email h3 { margin: 0 0 12.6px; max-width: 420px; font-size: clamp(25.9px, 3.75vw, 37.8px); line-height: .98; letter-spacing: -.052em; }
.service-card.multi h3 { margin: auto 0 12.6px; max-width: 532px; font-size: clamp(24.5px, 4.4vw, 43.4px); line-height: .98; letter-spacing: -.052em; }
.service-card p { max-width: 427px; margin: 0 0 17.5px; line-height: 1.6; color: rgba(255,255,255,.62); }
.service-card.email p, .service-card.multi p { color: rgba(10,16,32,.7); }
.service-copy .text-link { margin-top: auto; padding-top: 2.8px; }
.text-link { display: inline-flex; align-items: center; gap: 6.3px; font-weight: 800; font-size: 9.8px; }
.phone-art { position: absolute; width: 147px; height: 147px; right: 16.8px; top: -14.7px; border: 0.7px solid rgba(255,255,255,.18); border-radius: 50%; }
.phone-art::before, .phone-art::after { content: ""; position: absolute; inset: 23.8px; border: 0.7px solid rgba(255,255,255,.14); border-radius: 50%; }
.phone-art::after { inset: 50.4px; background: var(--orange); border: 0; box-shadow: 0 0 31.5px rgba(255,75,0,.4); transition: transform .3s ease, box-shadow .3s ease; }
.service-card.call:hover .phone-art::after { transform: scale(1.08); box-shadow: 0 0 40.6px rgba(255,75,0,.5); }
.email-art { width: min(86%, 301px); display: grid; gap: 6.3px; }
.mail-line { position: relative; height: 23.8px; border: 0.7px solid rgba(10,16,32,.1); border-radius: 7.7px; background: rgba(255,255,255,.64); box-shadow: 0 4.9px 12.6px rgba(48,68,120,.06); }
.mail-line::before { content: ""; position: absolute; width: 5.6px; height: 5.6px; left: 9.1px; top: 8.4px; border-radius: 50%; background: var(--orange); }
.mail-line::after { content: ""; position: absolute; left: 21.7px; right: 9.8px; top: 10.5px; height: 2.1px; border-radius: 2.8px; background: rgba(10,16,32,.16); }
.mail-line:nth-child(2) { width: 92%; margin-left: auto; }
.mail-line:nth-child(3) { width: 84%; }
.mail-line { transition: transform .28s ease; }
.service-card.email:hover .mail-line:nth-child(1) { transform: translateX(3.5px); }
.service-card.email:hover .mail-line:nth-child(2) { transform: translateX(-4.2px); }
.channel-flow { position: absolute; inset: 36.4px 35px auto auto; display: flex; gap: 9.8px; align-items: center; }
.channel-flow span { display: grid; place-items: center; width: 40.6px; height: 40.6px; border-radius: 11.9px; background: rgba(10,16,32,.1); border: 0.7px solid rgba(10,16,32,.14); font-size: 7.7px; font-weight: 800; }
.channel-flow i { width: 29.4px; height: 0.7px; background: rgba(10,16,32,.28); position: relative; }
.channel-flow i::after { content: ""; position: absolute; right: -0.7px; top: -2.1px; width: 4.9px; height: 4.9px; border-top: 0.7px solid; border-right: 0.7px solid; transform: rotate(45deg); }

.qualify-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.sticky-copy { position: sticky; top: 91px; }
.sticky-copy .lead { margin: 16.8px 0 21px; }
.criteria { border-top: 0.7px solid var(--line-dark); }
.criterion { display: grid; grid-template-columns: 42px 1fr; gap: 15.4px; padding: 19.6px 0; border-bottom: 0.7px solid var(--line-dark); }
.criterion-num { width: 30.1px; height: 30.1px; display: grid; place-items: center; border: 0.7px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--green); font-size: 8.4px; }
.criterion h3 { margin: 0 0 5.6px; font-size: 14.7px; }
.criterion p { margin: 0; color: rgba(255,255,255,.56); line-height: 1.6; }
.rejects { margin-top: 21px; padding: 15.4px; border-radius: 12.6px; background: rgba(255,255,255,.04); border: 0.7px solid var(--line-dark); }
.rejects strong { display: block; margin-bottom: 9.1px; font-size: 9.1px; text-transform: uppercase; letter-spacing: .09em; color: var(--orange-2); }
.reject-list { display: flex; flex-wrap: wrap; gap: 5.6px; }
.reject-list span { padding: 4.9px 7px; border-radius: 699.3px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.58); font-size: 8.4px; }

.method-experience { display: grid; grid-template-columns: .78fr 1.22fr; gap: 50.4px; align-items: start; }
.method-stage { position: sticky; top: 78.4px; min-height: 329px; display: flex; flex-direction: column; overflow: hidden; padding: 21.7px; border-radius: 19.6px; background: var(--night); color: var(--white); box-shadow: var(--shadow); }
.method-stage::after { content: ""; position: absolute; width: 217px; height: 217px; right: -108.5px; top: -101.5px; border: 0.7px solid rgba(255,255,255,.11); border-radius: 50%; }
.method-stage-top { display: flex; justify-content: space-between; gap: 14px; color: rgba(255,255,255,.42); font-size: 7px; text-transform: uppercase; letter-spacing: .12em; }
.method-stage-top strong { color: var(--orange-2); }
.method-stage-top b { font-size: 12.6px; }
.method-orbit { position: relative; width: 92.4px; height: 92.4px; margin: 33.6px 0 24.5px; border: 0.7px solid rgba(255,255,255,.12); border-radius: 50%; }
.method-orbit::before, .method-orbit::after { content: ""; position: absolute; inset: 16.8px; border: 0.7px solid rgba(255,255,255,.1); border-radius: 50%; }
.method-orbit::after { inset: 34.3px; background: var(--orange); border: 0; box-shadow: 0 0 21px rgba(255,75,0,.35); }
.method-orbit i { position: absolute; width: 4.9px; height: 4.9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); }
.method-orbit i:nth-child(1) { left: 7.7px; top: 19.6px; }.method-orbit i:nth-child(2) { right: 11.9px; top: 11.9px; }.method-orbit i:nth-child(3) { right: 1.4px; bottom: 27.3px; }
.method-stage h3 { margin: auto 0 9.1px; font-size: clamp(21px, 3.2vw, 30.8px); line-height: 1; letter-spacing: -.045em; }
.method-stage > p { margin: 0; min-height: 48.3px; color: rgba(255,255,255,.55); line-height: 1.55; font-size: 9.8px; }
.method-meter { height: 2.1px; margin-top: 18.2px; border-radius: 3.5px; background: rgba(255,255,255,.1); overflow: hidden; }
.method-meter i { display: block; width: 20%; height: 100%; border-radius: inherit; background: var(--orange); transition: width .35s ease; }
.steps { counter-reset: step; display: grid; gap: 9.8px; }
.step { counter-increment: step; position: relative; min-height: 133px; display: grid; grid-template-columns: 42px 1fr; gap: 16.8px; align-content: center; padding: 21px; border: 0.7px solid var(--line); border-radius: 15.4px; background: rgba(255,255,255,.35); opacity: .56; transition: opacity .3s ease, transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.step::before { content: "0" counter(step); color: var(--orange); font-size: 8.4px; font-weight: 850; letter-spacing: .1em; }
.step::after { content: ""; position: absolute; left: -0.7px; top: 18.2px; bottom: 18.2px; width: 2.1px; border-radius: 3.5px; background: var(--orange); transform: scaleY(0); transition: transform .3s ease; }
.step.active { opacity: 1; transform: translateX(-5.6px); border-color: rgba(255,75,0,.28); background: rgba(255,253,248,.82); box-shadow: 0 12.6px 33.6px rgba(10,16,32,.08); }
.step.active::after { transform: scaleY(1); }
.step h3 { margin: 0 0 7px; font-size: clamp(17.5px, 2.6vw, 25.2px); line-height: 1; letter-spacing: -.04em; }
.step p { grid-column: 2; margin: 0; color: var(--muted); line-height: 1.62; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12.6px; }
.offer-grid.two { grid-template-columns: repeat(2, 1fr); }
.offer-card { min-height: 350px; display: flex; flex-direction: column; padding: 21px; border-radius: 18.2px; border: 0.7px solid var(--line); background: var(--white); }
.offer-card.featured { background: var(--night); color: var(--white); border-color: var(--night); transform: translateY(-9.8px); box-shadow: var(--shadow); }
.offer-kicker { color: var(--orange); font-size: 8.4px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.offer-card h3 { margin: 12.6px 0 8.4px; font-size: 22.4px; letter-spacing: -.04em; }
.offer-card > p { margin: 0 0 17.5px; color: var(--muted); line-height: 1.6; }
.offer-card.featured > p { color: rgba(255,255,255,.58); }
.check-list { list-style: none; padding: 0; margin: 0 0 21px; display: grid; gap: 8.4px; }
.check-list li { display: grid; grid-template-columns: 14.7px 1fr; gap: 7px; line-height: 1.45; font-size: 9.8px; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; }
.offer-card .btn { margin-top: auto; }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12.6px; }
.sector-card { min-height: 252px; display: flex; flex-direction: column; position: relative; overflow: hidden; padding: 21px; border-radius: 18.2px; border: 0.7px solid var(--line); background: rgba(255,255,255,.48); }
.sector-card::after { content: attr(data-mark); position: absolute; right: -8.4px; bottom: -29.4px; color: rgba(10,16,32,.05); font-size: 105px; font-weight: 900; letter-spacing: -.09em; }
.sector-card h3 { margin: auto 0 8.4px; font-size: 23.1px; letter-spacing: -.045em; }
.sector-card p { margin: 0 0 15.4px; color: var(--muted); line-height: 1.55; }

.proof-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 12.6px; }
.proof-copy, .proof-stack { border: 0.7px solid var(--line-dark); border-radius: 19.6px; padding: 26.6px; background: rgba(255,255,255,.035); }
.proof-copy { display: flex; flex-direction: column; min-height: 322px; }
.proof-copy .h3 { margin-top: auto; }
.proof-copy p { color: rgba(255,255,255,.58); line-height: 1.62; }
.proof-stack { display: grid; gap: 8.4px; }
.proof-item { display: grid; grid-template-columns: 30.8px 1fr; gap: 9.8px; align-items: start; padding: 12.6px; border-radius: 11.2px; border: 0.7px solid rgba(255,255,255,.09); background: rgba(255,255,255,.025); }
.proof-icon { width: 30.8px; height: 30.8px; display: grid; place-items: center; border-radius: 9.1px; background: rgba(255,75,0,.12); color: var(--orange); font-weight: 850; }
.proof-item h3 { margin: 1.4px 0 4.2px; font-size: 11.2px; }
.proof-item p { margin: 0; color: rgba(255,255,255,.52); font-size: 9.1px; line-height: 1.5; }

.faq { border-top: 0.7px solid var(--line); }
.faq-item { border-bottom: 0.7px solid var(--line); }
.faq-button { width: 100%; display: grid; grid-template-columns: 1fr 28px; gap: 15.4px; align-items: center; padding: 18.9px 0; border: 0; background: none; text-align: left; color: var(--ink); cursor: pointer; font-size: clamp(13.3px, 2vw, 17.5px); font-weight: 720; letter-spacing: -.025em; }
.faq-icon { width: 25.2px; height: 25.2px; border: 0.7px solid var(--line); border-radius: 50%; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; width: 8.4px; height: 0.7px; background: currentColor; left: 7.7px; top: 11.9px; transition: transform .2s ease; }
.faq-icon::after { transform: rotate(90deg); }
.faq-button[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 546px; margin: 0; padding: 0 0 19.6px; color: var(--muted); line-height: 1.65; }
.faq-button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.cta-panel { position: relative; overflow: hidden; padding: 44.8px; border-radius: 23.8px; background: var(--orange); color: var(--night); }
.cta-panel::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; border: 0.7px solid rgba(10,16,32,.18); right: -84px; top: -119px; box-shadow: 0 0 0 42px rgba(10,16,32,.035), 0 0 0 84px rgba(10,16,32,.025); }
.cta-panel .h2 { max-width: 630px; position: relative; z-index: 1; }
.cta-bottom { display: flex; align-items: center; justify-content: space-between; gap: 21px; margin-top: 28px; position: relative; z-index: 1; }
.cta-bottom p { margin: 0; max-width: 350px; line-height: 1.6; color: rgba(10,16,32,.68); }

.footer { position: relative; overflow: hidden; padding: 23.8px 0 22.4px; background: var(--night); color: var(--white); }
.footer::before { content: ""; position: absolute; width: 364px; height: 364px; right: -210px; bottom: -231px; border: 0.7px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 56px rgba(255,255,255,.012), 0 0 0 112px rgba(255,255,255,.009); }
.footer-cta { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; margin-bottom: 46.2px; padding: 29.4px; overflow: hidden; border: 0.7px solid rgba(255,75,0,.3); border-radius: 19.6px; background: linear-gradient(120deg, rgba(255,75,0,.15), rgba(255,255,255,.025) 55%); }
.footer-cta::after { content: ""; position: absolute; width: 161px; height: 161px; right: 15%; top: -119px; border: 0.7px solid rgba(255,75,0,.18); border-radius: 50%; }
.footer-cta-copy { position: relative; z-index: 1; }
.footer-cta-kicker { display: block; margin-bottom: 9.1px; color: var(--orange-2); font-size: 7px; font-weight: 850; text-transform: uppercase; letter-spacing: .15em; }
.footer-cta h2 { max-width: 553px; margin: 0; font-size: clamp(21.7px, 4vw, 37.8px); line-height: 1; letter-spacing: -.05em; }
.footer-cta p { max-width: 455px; margin: 10.5px 0 0; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-cta .btn { position: relative; z-index: 1; min-width: 144.2px; }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 35px; padding-bottom: 42px; }
.footer-brand { width: 133px; height: 36.4px; object-fit: contain; margin-bottom: 15.4px; }
.footer-summary { max-width: 231px; margin: 0; color: rgba(255,255,255,.52); line-height: 1.6; font-size: 9.8px; }
.footer h3 { margin: 2.8px 0 12.6px; color: rgba(255,255,255,.42); font-size: 7.7px; text-transform: uppercase; letter-spacing: .13em; }
.footer-links { display: grid; gap: 7.7px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 9.8px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; padding-top: 16.8px; border-top: 0.7px solid var(--line-dark); color: rgba(255,255,255,.38); font-size: 8.4px; }

/* Internal pages */
body:not(.home):not(.case-page) { --max: 924px; }
.page-hero { padding: 112px 0 58.8px; min-height: 462px; display: flex; align-items: end; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 455px; height: 455px; right: -154px; top: 63px; border: 0.7px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 56px rgba(255,255,255,.018), 0 0 0 112px rgba(255,255,255,.012); }
.page-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 49px; align-items: end; position: relative; z-index: 1; }
.page-hero .page-hero-grid { grid-template-columns: minmax(0,1.42fr) minmax(210px,.58fr); gap: clamp(35px,5vw,56px); }
.page-hero .page-hero-grid > * { min-width: 0; }
.page-hero .h1 { max-width: 700px; font-size: clamp(35px,4.45vw,49px); line-height: 1.01; letter-spacing: -.05em; font-weight: 780; text-wrap: balance; }
.page-hero .lead { margin: 18.2px 0 22.4px; max-width: 574px; }
body:not(.home):not(.case-page) .section .h2,
body:not(.home):not(.case-page) .section-sm .h2 { font-size: clamp(27.3px,3.55vw,37.8px); line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
body:not(.home):not(.case-page) .section-head { grid-template-columns: minmax(0,1.5fr) minmax(220px,.5fr); gap: clamp(35px,5vw,56px); align-items: start; }
body:not(.home):not(.case-page) .section-head > div { min-width: 0; }
body:not(.home):not(.case-page) .section-head .h2 { max-width: 630px; }
body:not(.home):not(.case-page) .section-head > .lead { max-width: 350px; margin-top: 30.8px; padding-left: 17.5px; border-left: .7px solid rgba(10,16,32,.18); }
body:not(.home):not(.case-page) .dark .section-head > .lead { border-left-color: rgba(255,255,255,.16); }
body:not(.home):not(.case-page) .section > .container.split { grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr); gap: clamp(35px,5vw,56px); }
body:not(.home):not(.case-page) .section > .container.split > * { min-width: 0; }
body:not(.home):not(.case-page) .section > .container.split .h2 { max-width: 590px; }
.page-aside { padding: 18.2px; border: 0.7px solid var(--line-dark); border-radius: 15.4px; background: rgba(255,255,255,.035); }
.page-aside-label { margin-bottom: 11.9px; font-size: 7.7px; color: rgba(255,255,255,.44); text-transform: uppercase; letter-spacing: .12em; }
.page-aside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9.1px; }
.page-aside li { display: grid; grid-template-columns: 5.6px 1fr; gap: 7px; color: rgba(255,255,255,.7); line-height: 1.4; font-size: 9.8px; }
.page-aside li::before { content: ""; width: 4.9px; height: 4.9px; margin-top: 4.2px; border-radius: 50%; background: var(--green); }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 63px; align-items: start; }
.feature-list { border-top: 0.7px solid var(--line); }
.feature-list-dark { border-color: var(--line-dark); }
.feature-list-dark .feature-row { border-color: var(--line-dark); }
.feature-list-dark .feature-row p { color: rgba(255,255,255,.58); }
.feature-row { display: grid; grid-template-columns: 36.4px 1fr; gap: 14px; padding: 18.9px 0; border-bottom: 0.7px solid var(--line); }
.feature-row-num { color: var(--orange); font-size: 8.4px; font-weight: 800; }
.feature-row h3 { margin: 0 0 5.6px; font-size: 15.4px; letter-spacing: -.025em; }
.feature-row p { margin: 0; color: var(--muted); line-height: 1.6; }

.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9.8px; }
.deliverable { min-height: 154px; padding: 17.5px; display: flex; flex-direction: column; border: 0.7px solid var(--line-dark); border-radius: 14px; background: rgba(255,255,255,.035); }
.deliverable span { color: var(--orange); font-size: 7.7px; font-weight: 800; letter-spacing: .1em; }
.deliverable h3 { margin: auto 0 6.3px; font-size: 15.4px; }
.deliverable p { margin: 0; color: rgba(255,255,255,.55); line-height: 1.5; font-size: 9.8px; }

.comparison { overflow: hidden; border: 0.7px solid var(--line); border-radius: 16.8px; background: var(--white); }
.comparison-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.comparison-row > * { padding: 14px 16.8px; border-bottom: 0.7px solid var(--line); }
.comparison-row > * + * { border-left: 0.7px solid var(--line); }
.comparison-row:last-child > * { border-bottom: 0; }
.comparison-row.header { background: var(--night); color: var(--white); font-size: 9.1px; font-weight: 800; }
.comparison-row:not(.header) strong { font-size: 9.8px; }
.comparison-row:not(.header) span { color: var(--muted); font-size: 9.8px; line-height: 1.45; }
.comparison-row .good { color: #167549; }

.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 15.4px; top: 14px; bottom: 14px; width: 0.7px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 32.2px 1fr; gap: 17.5px; padding-bottom: 35px; }
.timeline-dot { width: 32.2px; height: 32.2px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); border: 0.7px solid var(--line); color: var(--orange); font-size: 7.7px; font-weight: 850; z-index: 1; }
.timeline-content { padding: 2.1px 0 0; }
.timeline-content h3 { margin: 0 0 6.3px; font-size: 18.9px; letter-spacing: -.035em; }
.timeline-content p { margin: 0; color: var(--muted); line-height: 1.65; }

.persona-tags { display: flex; flex-wrap: wrap; gap: 5.6px; margin-top: 12.6px; }
.persona-tags span { padding: 5.6px 7.7px; border: 0.7px solid var(--line); border-radius: 699.3px; color: var(--muted); font-size: 8.4px; }
.sector-detail { display: grid; grid-template-columns: .72fr 1.28fr; gap: 49px; padding: 40.6px 0; border-top: 0.7px solid var(--line); }
.sector-detail:last-child { border-bottom: 0.7px solid var(--line); }
.sector-number { color: var(--orange); font-size: 8.4px; font-weight: 850; }
.sector-detail h2 { margin: 8.4px 0 0; font-size: clamp(23.8px,4vw,39.2px); letter-spacing: -.05em; }
.sector-detail p { margin: 0 0 15.4px; color: var(--muted); line-height: 1.65; }
.sector-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; }
.sector-columns h3 { margin: 0 0 8.4px; font-size: 10.5px; }

.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12.6px; }
.resource-card { min-height: 266px; display: flex; flex-direction: column; padding: 22.4px; border: 0.7px solid var(--line); border-radius: 18.2px; background: rgba(255,255,255,.48); }
.resource-card.dark-card { background: var(--night); color: var(--white); border-color: var(--night); }
.resource-type { color: var(--orange); font-size: 7.7px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.resource-card h2 { margin: auto 0 11.2px; font-size: clamp(20.3px,3vw,30.1px); line-height: 1; letter-spacing: -.045em; }
.resource-card p { margin: 0 0 16.1px; color: var(--muted); line-height: 1.6; }
.resource-card.dark-card p { color: rgba(255,255,255,.56); }
.calculator { display: grid; grid-template-columns: .9fr 1.1fr; gap: 35px; padding: 26.6px; border-radius: 19.6px; background: var(--white); border: 0.7px solid var(--line); }
.form-grid { display: grid; gap: 11.9px; }
.field label { display: block; margin-bottom: 5.6px; font-size: 8.4px; font-weight: 800; }
.field input, .field select { width: 100%; height: 35px; padding: 0 9.8px; border: 0.7px solid var(--line); border-radius: 8.4px; background: var(--paper); color: var(--ink); }
.calc-result { padding: 21px; border-radius: 15.4px; background: var(--night); color: var(--white); display: flex; flex-direction: column; }
.calc-result-label { font-size: 7.7px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.44); }
.calc-result strong { display: block; margin: auto 0 3.5px; font-size: clamp(31.5px,5vw,50.4px); letter-spacing: -.055em; color: var(--orange); }
.calc-result p { color: rgba(255,255,255,.56); line-height: 1.6; font-size: 9.1px; }

.legal { padding: 119px 0 70px; }
.legal h1 { margin-bottom: 28px; }
.legal h2 { margin: 28px 0 9.8px; font-size: 15.4px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(16.8px); transition: opacity .68s cubic-bezier(.22,.7,.2,1), transform .68s cubic-bezier(.22,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.mobile-sticky-cta { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .logo-track { animation: none; }
  .logo-set[aria-hidden="true"] { display: none; }
}

@media (max-width: 686px) {
  .nav-links, .nav-shell > .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { position: fixed; display: flex; inset: 65.8px 11.2px auto; padding: 14px; flex-direction: column; align-items: stretch; background: rgba(7,16,31,.97); border: 0.7px solid var(--line-dark); border-radius: 14px; box-shadow: var(--shadow); }
  .nav-links.open > a, .nav-links.open .nav-trigger { width: 100%; justify-content: space-between; padding: 9.8px; font-size: 11.2px; text-align: left; }
  .nav-dropdown { width: 100%; }
  .nav-menu { position: static; width: 100%; max-height: 0; margin: 0; padding: 0 5.6px; border: 0; background: rgba(255,255,255,.025); box-shadow: none; opacity: 0; visibility: hidden; transform: none; overflow: hidden; }
  .nav-dropdown.open .nav-menu { max-height: 182px; margin: 3.5px 0 5.6px; padding: 5.6px; opacity: 1; visibility: visible; }
  .nav-menu a { padding: 6.3px; }
  .hero-layout, .page-hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 98px; }
  .campaign-ui { transform: none; max-width: 455px; }
  .section-head, .qualify-layout, .split, .sector-detail { grid-template-columns: 1fr; gap: 26.6px; }
  .sticky-copy { position: static; }
  .service-card.call, .service-card.email, .service-card.multi { grid-column: span 12; }
  .cards-3, .offer-grid, .sector-grid { grid-template-columns: 1fr 1fr; }
  .problem-main { grid-column: span 12; grid-row: auto; min-height: 336px; }
  .problem-side { grid-column: span 6; }
  .method-experience { grid-template-columns: 1fr; gap: 19.6px; }
  .method-stage { position: relative; top: auto; min-height: 273px; }
  .offer-card.featured { transform: none; }
  .proof-panel, .calculator { grid-template-columns: 1fr; }
  .footer-cta { grid-template-columns: 1fr; align-items: start; }
  .footer-cta .btn { justify-self: start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-hero { min-height: auto; }
  .page-hero .page-hero-grid { grid-template-columns: 1fr; gap: 31.5px; }
  body:not(.home):not(.case-page) .section-head { grid-template-columns: 1fr; gap: 26.6px; }
  body:not(.home):not(.case-page) .section-head > .lead { max-width: 574px; margin-top: 0; padding-left: 0; border-left: 0; }
}

@media (max-width: 820px) {
  .page-hero .page-hero-grid,
  body:not(.home):not(.case-page) .section-head,
  body:not(.home):not(.case-page) .section > .container.split { grid-template-columns: 1fr; }
  body:not(.home):not(.case-page) .section-head { gap: 21px; }
  body:not(.home):not(.case-page) .section-head > .lead { max-width: 630px; margin-top: 0; padding-left: 0; border-left: 0; }
  body:not(.home):not(.case-page) .section-head .h2,
  body:not(.home):not(.case-page) .section > .container.split .h2 { max-width: 700px; }
}

@media (max-width: 476px) {
  .container, .narrow { width: min(calc(100% - 19.6px), var(--max)); }
  .section { padding: 58.8px 0; }
  .section-sm { padding: 43.4px 0; }
  .nav-shell { width: calc(100% - 15.4px); }
  .brand { width: 99.4px; height: 29.4px; }
  .display { font-size: clamp(31.5px, 15vw, 46.9px); }
  .h1 { font-size: clamp(30.1px, 14vw, 43.4px); }
  .h2 { font-size: clamp(25.9px, 12vw, 37.8px); }
  .lead { font-size: 12.6px; }
  .hero { padding-bottom: 42px; }
  .hero-layout { gap: 32.2px; }
  .hero-actions .btn { width: 100%; }
  .campaign-body { padding: 10.5px; }
  .campaign-title { align-items: start; flex-direction: column; }
  .campaign-metrics { gap: 3.5px; }
  .campaign-metric { padding: 7px 5.6px; }
  .campaign-metric strong { font-size: 16.8px; }
  .campaign-metric span, .campaign-metric small { font-size: 5.6px; }
  .campaign-latest { grid-template-columns: 22.4px 1fr; }
  .latest-time { display: none; }
  .workflow-row { grid-template-columns: 23.8px 1fr; }
  .workflow-state { grid-column: 2; }
  .trust-inner { grid-template-columns: 1fr; gap: 12.6px; }
  .trust-label { align-items: flex-start; flex-wrap: wrap; gap: 7px; }
  .trust-label::after { display: none; }
  .trust-label strong { flex: 1 1 147px; padding-top: 3.5px; }
  .client-logo { width: 96.6px; flex-basis: 96.6px; }
  .statement { padding-bottom: 49px; }
  .cards-3, .offer-grid, .sector-grid, .resource-grid, .deliverables { grid-template-columns: 1fr; }
  .problem-main, .problem-side { grid-column: span 12; min-height: auto; }
  .problem-main { min-height: 350px; }
  .problem-panel { padding: 18.2px; }
  .problem-route { margin: 25.2px 0; gap: 4.9px; }
  .problem-route span { padding: 5.6px 6.3px; font-size: 6.3px; }
  .method-stage { min-height: 259px; padding: 18.2px; }
  .method-orbit { width: 72.8px; height: 72.8px; margin: 23.8px 0 19.6px; }
  .method-orbit::after { inset: 27.3px; }
  .step { min-height: 119px; grid-template-columns: 29.4px 1fr; gap: 9.8px; padding: 16.8px 14px; }
  .step p { grid-column: 2; }
  .offer-grid.two { grid-template-columns: 1fr; }
  .problem-card { min-height: 182px; }
  .service-card { min-height: 329px; padding: 18.9px; }
  .service-card.call, .service-card.email { min-height: 399px; grid-template-rows: auto 103.6px 1fr; }
  .service-card.call h3, .service-card.email h3 { font-size: clamp(25.2px, 11vw, 35px); }
  .phone-art { right: 2.8px; }
  .service-card.multi { min-height: 350px; }
  .channel-flow { top: 49px; right: auto; left: 18.9px; flex-wrap: wrap; }
  .channel-flow i { width: 15.4px; }
  .criterion { grid-template-columns: 30.8px 1fr; }
  .proof-copy, .proof-stack { padding: 17.5px; }
  .cta-panel { padding: 26.6px 18.2px; }
  .cta-bottom { align-items: flex-start; flex-direction: column; }
  .cta-bottom .btn { width: 100%; }
  .footer { padding-bottom: 64.4px; }
  .footer-cta { margin-bottom: 36.4px; padding: 21px 16.8px; }
  .footer-cta .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 23.8px; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky-cta { position: fixed; z-index: 120; left: 8.4px; right: 8.4px; bottom: 8.4px; min-height: 37.8px; display: flex; align-items: center; justify-content: space-between; gap: 12.6px; padding: 0 12.6px; border: 0.7px solid rgba(255,255,255,.16); border-radius: 11.2px; background: rgba(7,16,31,.94); color: var(--white); box-shadow: 0 12.6px 29.4px rgba(0,0,0,.3); backdrop-filter: blur(12.6px); font-size: 9.8px; font-weight: 780; transform: translateY(63px); opacity: 0; transition: transform .28s ease, opacity .28s ease; }
  .mobile-sticky-cta.visible { transform: translateY(0); opacity: 1; }
  .mobile-sticky-cta span { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 6.3px; background: var(--orange); color: var(--night); }
  .page-hero { padding: 96.6px 0 49px; }
  .page-hero .h1 { font-size: clamp(33.6px,10.5vw,39.2px); line-height: 1.04; }
  .page-aside { padding: 14px; }
  .comparison { overflow-x: auto; }
  .comparison-row { min-width: 504px; }
  .sector-columns { grid-template-columns: 1fr; }
  .calculator { padding: 16.8px; }
}

/* Ajustement d’échelle et mouvement doux — accueil */
.home { --max: 896px; }
.home .section { padding: 71.4px 0; }
.home .section-sm { padding: 47.6px 0; }
.home .h2 { font-size: clamp(26.6px,4.15vw,42.7px); line-height: 1; }
.home .h3 { font-size: clamp(16.8px,2.35vw,23.1px); }
.home .lead { font-size: clamp(11.9px,1.55vw,14.7px); }
.home .section-head { gap: 37.8px; margin-bottom: 36.4px; }
.home .hero { min-height: 539px; padding-top: 81.2px; padding-bottom: 43.4px; }
.home .hero .display { font-size: clamp(33.6px,4.75vw,51.8px); }
.home .campaign-ui { max-width: 413px; justify-self: end; }
.home .statement { padding-bottom: 60.2px; }
.home .statement p { font-size: clamp(22.4px,3.85vw,39.2px); }

.home .problem-main { min-height: 357px; }
.home .problem-main h3 { max-width: 490px; font-size: clamp(23.8px,3.35vw,33.6px); line-height: 1.08; letter-spacing: -.042em; font-weight: 735; text-wrap: balance; }
.home .problem-main h3 em { position: relative; color: var(--orange-2); font-style: normal; white-space: nowrap; }
.home .problem-main h3 em::after { content: ""; position: absolute; left: 2%; right: 2%; bottom: -3.5px; height: 1.4px; border-radius: 3.5px; background: linear-gradient(90deg,transparent,var(--orange),var(--orange-2),transparent); transform: scaleX(0); transform-origin: center; transition: transform .85s cubic-bezier(.22,.75,.2,1) .28s; }
.home .problem-main.visible h3 em::after { transform: scaleX(1); }
.home .problem-main .problem-route i { animation: route-energy 2.1s ease-in-out infinite; }
.home .problem-main .problem-route i:nth-of-type(2) { animation-delay: -.7s; }.home .problem-main .problem-route i:nth-of-type(3) { animation-delay: -1.4s; }
.home .problem-main::after { animation: ambient-rings 8s ease-in-out infinite alternate; }

.home .service-card.call,.home .service-card.email { min-height: 392px; grid-template-rows: auto 105px 1fr; }
.home .service-card.multi { min-height: 245px; }
.home .service-card.call h3,.home .service-card.email h3 { font-size: clamp(23.8px,3.25vw,33.6px); }
.home .service-card.multi h3 { font-size: clamp(23.8px,3.8vw,38.5px); }
.home .phone-art { animation: visual-drift 6.5s ease-in-out infinite alternate; }
.home .phone-art::after { animation: soft-core 3.8s ease-in-out infinite; }
.home .email-art { animation: visual-drift 7.5s ease-in-out -1.2s infinite alternate; }
.home .channel-flow span { animation: channel-breathe 4.8s ease-in-out infinite; }
.home .channel-flow span:nth-of-type(2) { animation-delay: -.8s; }.home .channel-flow span:nth-of-type(3) { animation-delay: -1.6s; }.home .channel-flow span:nth-of-type(4) { animation-delay: -2.4s; }
.home .channel-flow i { overflow: hidden; }
.home .channel-flow i::before { content: ""; position: absolute; left: -8.4px; top: -1.4px; width: 8.4px; height: 3.5px; border-radius: 50%; background: rgba(10,16,32,.72); filter: blur(0.7px); animation: channel-signal 2.4s linear infinite; }

.home .method-stage { min-height: 304.5px; }
.home .method-orbit { animation: orbit-calm 20s linear infinite; }
.home .method-stage::after { animation: ambient-rings 9s ease-in-out -2s infinite alternate; }
.home .step { min-height: 120.4px; padding: 18.9px; }
.home .offer-card { min-height: 322px; padding: 18.9px; }
.home .sector-card { min-height: 231px; padding: 18.9px; }
.home .sector-card::after { transition: transform .7s cubic-bezier(.22,.75,.2,1),color .4s ease; }
.home .sector-card:hover::after { transform: translate3d(-7px,-7px,0) rotate(-2deg); color: rgba(10,16,32,.075); }
.home .proof-copy { min-height: 294px; }
.home .proof-item { transition: transform .28s ease,border-color .28s ease,background .28s ease; }
.home .proof-item:hover { transform: translateX(3.5px); border-color: rgba(255,75,0,.22); background: rgba(255,255,255,.04); }
.home .criterion-num { transition: transform .3s ease,background .3s ease,box-shadow .3s ease; }
.home .criterion:hover .criterion-num { transform: scale(1.06); background: rgba(101,230,166,.08); box-shadow: 0 0 16.8px rgba(101,230,166,.1); }
.home .cta-panel { padding: 39.2px; }
.home .cta-panel::after { animation: cta-orbit 10s ease-in-out infinite alternate; }

.home .reveal { transform: translateY(12.6px); transition-duration: .82s; }
.home .service-grid .reveal:nth-child(2),.home .offer-grid .reveal:nth-child(2),.home .sector-grid .reveal:nth-child(2) { --reveal-delay: 90ms; }
.home .service-grid .reveal:nth-child(3),.home .offer-grid .reveal:nth-child(3),.home .sector-grid .reveal:nth-child(3) { --reveal-delay: 180ms; }

@keyframes route-energy { 50% { transform: translateX(2.1px); color: var(--orange-2); opacity: .68; } }
@keyframes ambient-rings { to { transform: translate3d(-8.4px,-5.6px,0) scale(1.04); opacity: .72; } }
@keyframes visual-drift { to { transform: translate3d(-4.9px,4.2px,0) rotate(-1.5deg); } }
@keyframes soft-core { 50% { transform: scale(1.08); box-shadow: 0 0 40.6px rgba(255,75,0,.5); } }
@keyframes channel-breathe { 50% { transform: translateY(-2.1px); background: rgba(10,16,32,.14); } }
@keyframes channel-signal { to { left: calc(100% + 8.4px); } }
@keyframes orbit-calm { to { transform: rotate(360deg); } }
@keyframes cta-orbit { to { transform: translate3d(-16.8px,14px,0) scale(1.06); } }

@media (max-width: 686px) {
  .home .hero { min-height: auto; }.home .campaign-ui { max-width: 455px; justify-self: start; }
  .home .problem-main { min-height: 329px; }
}

@media (max-width: 476px) {
  .home .section { padding: 53.2px 0; }.home .section-sm { padding: 40.6px 0; }.home .section-head { margin-bottom: 30.8px; }
  .home .hero { padding-top: 72.8px; padding-bottom: 36.4px; }.home .hero .display { font-size: clamp(28.7px,12vw,37.1px); }.home .statement { padding-bottom: 45.5px; }
  .home .problem-main { min-height: 311.5px; }.home .problem-main h3 { max-width: 266px; font-size: 23.8px; }.home .problem-main h3 em { white-space: normal; }
  .home .service-card.call,.home .service-card.email { min-height: 374.5px; }.home .service-card.multi { min-height: 318.5px; }
  .home .step { min-height: 108.5px; padding: 16.1px 13.3px; }.home .offer-card { min-height: 301px; }.home .sector-card { min-height: 213.5px; }.home .cta-panel { padding: 25.2px 17.5px; }
}

/* Ajustements ciblés validés sur la V2 (4) */
.site-header { top: 9.8px; }
.nav-shell { width: min(calc(100% - 28px), 924px); height: 43.4px; padding-left: 11.2px; border-radius: 12.6px; }
.brand { width: 103.6px; height: 28px; }
.nav-links > a { padding: 6.3px 7.7px; font-size: 9.1px; }
.nav-cta { min-height: 30.8px; padding-inline: 11.2px; font-size: 9.1px; }

.hero { min-height: 574px; padding: 88.2px 0 49px; }
.hero > .container { width: min(calc(100% - 44.8px), 924px); }
.hero.grid-bg { background-size: 60.2px 60.2px; animation: hero-grid-drift 20s linear infinite; }
.hero::before { inset: -35% -8% auto 52%; height: 504px; background: radial-gradient(circle,rgba(255,75,0,.22),rgba(141,181,255,.07) 36%,transparent 68%); animation: hero-aurora 9s ease-in-out infinite alternate; }
.hero-layout { grid-template-columns: 1.02fr .98fr; gap: 57.4px; }
.hero-copy { padding-top: 0; }
.hero .display { max-width: 469px; font-size: clamp(35px,5.1vw,56px); line-height: .96; letter-spacing: -.058em; }
.hero-copy .lead { max-width: 434px; margin: 17.5px 0 19.6px; font-size: clamp(11.2px,1.45vw,14px); line-height: 1.58; }
.hero-actions .btn { min-height: 32.9px; font-size: 9.8px; }
.hero-assurance { margin-top: 11.9px; }.hero-note { margin-top: 11.9px; }

.hero-layout::before { content: ""; position: absolute; z-index: -1; width: 301px; height: 301px; right: -56px; top: 8%; border-radius: 50%; background: radial-gradient(circle,rgba(73,131,255,.12),rgba(101,230,166,.045) 46%,transparent 70%); filter: blur(5.6px); animation: tech-glow 8s ease-in-out infinite alternate; }
.campaign-ui { overflow: hidden; border-color: rgba(141,181,255,.19); background: radial-gradient(circle at 84% 8%,rgba(83,123,221,.11),transparent 30%),radial-gradient(circle at 7% 96%,rgba(101,230,166,.075),transparent 25%),rgba(15,27,46,.88); box-shadow: 0 22.4px 63px rgba(0,0,0,.32),0 0 31.5px rgba(55,104,211,.08); transform: perspective(980px) rotateY(-2deg); animation: dashboard-breathe 5.5s ease-in-out infinite alternate; }
.campaign-ui::before { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(105deg,transparent 30%,rgba(141,181,255,.055) 48%,transparent 66%); transform: translateX(-120%); animation: dashboard-sheen 7s ease-in-out infinite; }
.campaign-ui::after { content: ""; position: absolute; z-index: 2; left: 0; right: 0; top: -1.4px; height: 0.7px; pointer-events: none; background: linear-gradient(90deg,transparent,rgba(101,230,166,.75),rgba(141,181,255,.7),transparent); box-shadow: 0 0 9.8px rgba(101,230,166,.4); opacity: 0; animation: dashboard-scan 5.5s linear infinite; }
.campaign-bar,.campaign-body,.demo-disclaimer { position: relative; z-index: 1; }
.campaign-bar .dot { animation: live-dot 1.7s ease-out infinite; }
.campaign-metric { transition: border-color .25s ease,background .25s ease,transform .25s ease; }
.campaign-metric:hover { transform: translateY(-2.1px); }
.campaign-metric:nth-child(1) { border-color: rgba(141,181,255,.16); background: rgba(141,181,255,.035); }
.campaign-metric:nth-child(2) { border-color: rgba(255,75,0,.15); background: rgba(255,75,0,.03); }
.campaign-metric:nth-child(1) strong { color: #b5ccff; }.campaign-metric:nth-child(2) strong { color: #ff6a00; }
.week-bars i { transform-origin: bottom; animation: chart-life 3.2s ease-in-out infinite alternate; }
.week-bars i:nth-child(2) { animation-delay: -.5s; }.week-bars i:nth-child(3) { background: linear-gradient(#a9c4ff,rgba(72,116,210,.22)); animation-delay: -1s; }.week-bars i:nth-child(4) { animation-delay: -1.5s; }.week-bars i:nth-child(5) { background: linear-gradient(#72e8ad,rgba(70,178,130,.2)); animation-delay: -2s; }.week-bars i:nth-child(6) { background: linear-gradient(#a9c4ff,rgba(72,116,210,.18)); animation-delay: -2.5s; }
.latest-icon { animation: qualified-pulse 2.4s ease-in-out infinite; }

.problem-main { align-items: center; justify-content: center; padding: 49px 29.4px 33.6px; text-align: center; }
.problem-main > .card-index { position: absolute; left: 22.4px; top: 22.4px; }
.problem-main .problem-route { width: 100%; justify-content: center; margin: 0 0 28px; }
.problem-main h3 { max-width: 462px; margin: 0 auto 13.3px; }
.problem-main p { max-width: 434px; margin-inline: auto; }

@keyframes hero-grid-drift { to { background-position: 60.2px 0,60.2px 0; } }
@keyframes hero-aurora { from { transform: translate3d(-3%,0,0) scale(.96); opacity: .68; } to { transform: translate3d(4%,5%,0) scale(1.06); opacity: 1; } }
@keyframes tech-glow { to { transform: translate3d(-21px,19.6px,0) scale(1.08); opacity: .7; } }
@keyframes dashboard-breathe { to { border-color: rgba(101,230,166,.2); box-shadow: 0 26.6px 73.5px rgba(0,0,0,.34),0 0 40.6px rgba(83,123,221,.12); } }
@keyframes dashboard-sheen { 0%,65% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes dashboard-scan { 0% { top: -1.4px; opacity: 0; } 8% { opacity: .7; } 58% { opacity: .28; } 72%,100% { top: calc(100% + 1.4px); opacity: 0; } }
@keyframes live-dot { 0% { box-shadow: 0 0 0 0 rgba(101,230,166,.55); } 70%,100% { box-shadow: 0 0 0 6.3px rgba(101,230,166,0); } }
@keyframes chart-life { from { transform: scaleY(.74); filter: saturate(.85); } to { transform: scaleY(1); filter: saturate(1.18); } }
@keyframes qualified-pulse { 50% { background: rgba(101,230,166,.2); box-shadow: 0 0 12.6px rgba(101,230,166,.18); } }

@media (max-width: 686px) {
  .hero { min-height: auto; padding-top: 82.6px; }.hero > .container { width: min(calc(100% - 28px),var(--max)); }.hero-layout { gap: 37.8px; }.hero .display { max-width: 532px; font-size: clamp(36.4px,8.5vw,53.2px); }.campaign-ui { transform: none; }
}

@media (max-width: 476px) {
  .site-header { top: 7px; }.nav-shell { width: calc(100% - 15.4px); height: 40.6px; }.brand { width: 95.2px; height: 26.6px; }
  .hero { padding: 77px 0 40.6px; }.hero > .container { width: min(calc(100% - 19.6px),var(--max)); }.hero .display { font-size: clamp(30.1px,12.8vw,39.9px); }.hero-copy .lead { font-size: 11.9px; }.hero-layout { gap: 28px; }
  .campaign-ui { border-radius: 15.4px; }.campaign-title strong { font-size: 13.3px; }
  .problem-main { min-height: 336px; padding: 52.5px 15.4px 26.6px; }.problem-main > .card-index { left: 16.8px; top: 17.5px; }.problem-main .problem-route { margin-bottom: 22.4px; }.problem-main h3 { font-size: 25.9px; }
}

/* Direction artistique unifiée — accueil */
.home { --max: 924px; }
.home .container { width: min(calc(100% - 44.8px),var(--max)); }
.home .section { padding: 75.6px 0; }
.home .h2 { font-size: clamp(28px,3.9vw,40.6px); line-height: 1.02; letter-spacing: -.047em; text-wrap: balance; }
.home .lead { font-size: clamp(11.9px,1.35vw,14px); line-height: 1.62; }

/* Une même ligne de composition pour tous les en-têtes */
.home .section-head {
  grid-template-columns: minmax(0,1.08fr) minmax(224px,.72fr);
  gap: clamp(40.6px,7vw,72.8px);
  align-items: start;
  margin-bottom: 40.6px;
}
.home .section-head > div { min-width: 0; }
.home .section-head .h2 { max-width: 532px; }
.home .section-head > .lead {
  max-width: 350px;
  margin: 30.8px 0 0;
  padding-left: 17.5px;
  border-left: 0.7px solid rgba(10,16,32,.18);
}
.home .dark .section-head > .lead { border-left-color: rgba(255,255,255,.16); }
.home .eyebrow::before { animation: ui-beacon 2.8s ease-out infinite; }

/* Hero : deux moitiés réellement équilibrées */
.home .hero { min-height: 553px; padding: 84px 0 47.6px; }
.home .hero > .container { width: min(calc(100% - 44.8px),924px); }
.home .hero-layout {
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: clamp(28px,4.2vw,44.8px);
  align-items: center;
}
.home .hero-copy { width: 100%; max-width: 441px; justify-self: start; }
.home .hero .display { max-width: 427px; font-size: clamp(34.3px,4.45vw,49px); line-height: .97; }
.home .hero-copy .lead { max-width: 427px; }
.home .campaign-ui {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: center;
  transform: none;
}
.home .campaign-body { padding: 16.8px; }
.home .campaign-title strong { font-size: 16.8px; }
.home .campaign-metric { padding: 11.2px; }
.home .campaign-metric strong { font-size: 23.8px; }
.home .campaign-chart { padding: 11.9px 12.6px 8.4px; }
.home .week-bars { height: 60.2px; }

/* Multicanal : promesse à gauche, moteur visuel à droite */
.home .service-card.multi {
  min-height: 329px;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(273px,.92fr);
  gap: clamp(32.2px,6vw,63px);
  align-items: stretch;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 12%,rgba(255,255,255,.16),transparent 26%),
    linear-gradient(135deg,#ff5600,#ff4b00 74%);
  box-shadow: 0 16.8px 42px rgba(255,75,0,.14);
}
.home .service-card.multi::before {
  content: "";
  position: absolute;
  left: -63px;
  bottom: -105px;
  width: 238px;
  height: 238px;
  border: 0.7px solid rgba(10,16,32,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 36.4px rgba(10,16,32,.025),0 0 0 72.8px rgba(10,16,32,.018);
  animation: ambient-rings 9s ease-in-out infinite alternate;
}
.home .multi-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3.5px 0;
}
.home .service-card.multi h3 {
  max-width: 476px;
  margin: auto 0 14px;
  font-size: clamp(26.6px,3.55vw,37.8px);
  line-height: 1;
  text-wrap: balance;
}
.home .service-card.multi p { max-width: 427px; margin-bottom: 18.9px; font-size: 11.2px; }
.home .service-card.multi .text-link { margin-top: 0; }
.home .multi-tech {
  position: relative;
  z-index: 2;
  min-height: 273px;
  overflow: hidden;
  padding: 16.8px;
  border: 0.7px solid rgba(255,255,255,.13);
  border-radius: 16.8px;
  background:
    linear-gradient(rgba(141,181,255,.045) 0.7px,transparent 0.7px),
    linear-gradient(90deg,rgba(141,181,255,.045) 0.7px,transparent 0.7px),
    radial-gradient(circle at 82% 4%,rgba(141,181,255,.15),transparent 35%),
    var(--night);
  background-size: 29.4px 29.4px,29.4px 29.4px,auto,auto;
  color: var(--white);
  box-shadow: 0 17.5px 38.5px rgba(7,16,31,.22);
}
.home .multi-tech::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: -1.4px;
  height: 0.7px;
  background: linear-gradient(90deg,transparent,var(--green),var(--blue),transparent);
  box-shadow: 0 0 11.2px rgba(101,230,166,.42);
  animation: multi-scan 4.8s linear infinite;
}
.home .multi-tech::after {
  content: "";
  position: absolute;
  right: -63px;
  bottom: -63px;
  width: 161px;
  height: 161px;
  border: 0.7px solid rgba(141,181,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(141,181,255,.025),0 0 0 56px rgba(141,181,255,.015);
}
.home .multi-tech-head,.home .multi-tech-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.52);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.home .multi-tech-head b { display: inline-flex; align-items: center; gap: 4.9px; color: var(--green); font-size: 6.3px; }
.home .multi-tech-head b::before { content: ""; width: 4.2px; height: 4.2px; border-radius: 50%; background: currentColor; box-shadow: 0 0 7px currentColor; animation: live-dot 1.7s ease-out infinite; }
.home .multi-tech .channel-flow {
  position: relative;
  inset: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.9px;
  margin: 17.5px 0 14.7px;
}
.home .multi-tech .channel-flow span {
  width: 100%;
  height: 39.9px;
  display: flex;
  justify-content: flex-start;
  gap: 10.5px;
  padding: 0 11.9px;
  border-color: rgba(255,255,255,.11);
  border-radius: 9.8px;
  background: rgba(255,255,255,.045);
  color: var(--white);
  animation: multi-node 5s ease-in-out infinite;
}
.home .multi-tech .channel-flow span small { color: var(--orange-2); font-size: 6.3px; letter-spacing: .1em; }
.home .multi-tech .channel-flow span:nth-of-type(2) { animation-delay: -1.2s; }
.home .multi-tech .channel-flow span:nth-of-type(3) { animation-delay: -2.4s; }
.home .multi-tech .channel-flow span:nth-of-type(4) { animation-delay: -3.6s; border-color: rgba(101,230,166,.2); background: rgba(101,230,166,.07); }
.home .multi-tech .channel-flow i {
  width: 0.7px;
  height: 7.7px;
  margin-left: 19.6px;
  overflow: visible;
  background: linear-gradient(var(--orange-2),rgba(101,230,166,.45));
}
.home .multi-tech .channel-flow i::before { left: -1.4px; top: -3.5px; width: 3.5px; height: 3.5px; background: var(--orange-2); animation: vertical-signal 1.8s linear infinite; }
.home .multi-tech .channel-flow i::after { right: -2.1px; top: 2.8px; color: var(--green); transform: rotate(135deg); }
.home .multi-tech-foot { padding-top: 10.5px; border-top: 0.7px solid rgba(255,255,255,.09); }
.home .multi-tech-foot i { width: 43.4px; height: 2.1px; overflow: hidden; border-radius: 69.3px; background: rgba(255,255,255,.09); }
.home .multi-tech-foot i::after { content: ""; display: block; width: 45%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue),var(--green)); animation: tech-meter 2.8s ease-in-out infinite alternate; }

/* Qualification : hiérarchie lisible et critères traités comme un flux */
.home #qualification { overflow: hidden; }
.home #qualification::before {
  content: "";
  position: absolute;
  width: 364px;
  height: 364px;
  left: -217px;
  top: 18%;
  border: 0.7px solid rgba(141,181,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 52.5px rgba(141,181,255,.018),0 0 0 105px rgba(141,181,255,.012);
  animation: qualify-orbit 12s ease-in-out infinite alternate;
}
.home #qualification .qualify-layout {
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(47.6px,8vw,82.6px);
  position: relative;
  z-index: 1;
}
.home #qualification .sticky-copy { top: 81.2px; padding-top: 7px; }
.home #qualification .sticky-copy .h2 { max-width: 399px; font-size: clamp(28px,3.65vw,37.8px); line-height: 1.03; }
.home #qualification .sticky-copy .lead { max-width: 367.5px; margin: 17.5px 0 21.7px; font-size: 12.6px; }
.home #qualification .criteria { position: relative; display: grid; gap: 8.4px; border-top: 0; }
.home #qualification .criteria::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 17.5px;
  top: 35px;
  bottom: 35px;
  width: 0.7px;
  background: linear-gradient(var(--green),rgba(141,181,255,.5),var(--orange));
  opacity: .45;
}
.home #qualification .criterion {
  min-height: 86.8px;
  grid-template-columns: 37.8px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16.1px;
  border: 0.7px solid rgba(255,255,255,.1);
  border-radius: 13.3px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(4.2px);
  transition: transform .3s ease,border-color .3s ease,background .3s ease,box-shadow .3s ease;
}
.home #qualification .criterion:hover {
  transform: translateX(4.2px);
  border-color: rgba(101,230,166,.2);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12.6px 33.6px rgba(0,0,0,.14);
}
.home #qualification .criterion-num { position: relative; z-index: 1; background: var(--night-2); }
.home #qualification .criterion h3 { font-size: 14px; }
.home #qualification .criterion p { max-width: 434px; font-size: 9.8px; }
.home #qualification .rejects { margin-top: 10.5px; padding: 14.7px 16.1px; }

/* Méthode, offres et cartes : axes nets, hauteurs régulières */
.home #methode .section-head .h2,.home #offres .section-head .h2 { max-width: 490px; }
.home .method-experience { grid-template-columns: minmax(231px,.82fr) minmax(0,1.18fr); gap: 33.6px; }
.home .method-stage { min-height: 315px; }
.home .steps { gap: 8.4px; }
.home .step { min-height: 116.2px; }
.home .offer-grid { gap: 14px; align-items: stretch; }
.home .offer-card { height: 100%; min-height: 325.5px; }
.home .offer-card.featured { transform: none; }
.home .service-card.call,.home .service-card.email,.home .offer-card,.home .sector-card {
  transition: transform .3s ease,border-color .3s ease,box-shadow .3s ease,background .3s ease;
}
.home .offer-card:hover,.home .sector-card:hover { transform: translateY(-3.5px); box-shadow: 0 16.8px 40.6px rgba(10,16,32,.1); }

@keyframes ui-beacon { 0% { box-shadow: 0 0 0 0 rgba(255,75,0,.3); } 70%,100% { box-shadow: 0 0 0 5.6px rgba(255,75,0,0); } }
@keyframes multi-scan { 0% { top: -1.4px; opacity: 0; } 12% { opacity: .8; } 70% { opacity: .22; } 82%,100% { top: calc(100% + 1.4px); opacity: 0; } }
@keyframes multi-node { 50% { transform: translateX(2.8px); border-color: rgba(141,181,255,.24); background: rgba(141,181,255,.075); } }
@keyframes vertical-signal { to { top: 9.8px; background: var(--green); } }
@keyframes tech-meter { to { width: 88%; } }
@keyframes qualify-orbit { to { transform: translate3d(23.8px,-12.6px,0) scale(1.06); opacity: .75; } }

@media (max-width: 784px) {
  .home .hero-layout { gap: 26.6px; }
  .home .hero .display { font-size: clamp(33.6px,5.7vw,45.5px); }
  .home .service-card.multi { grid-template-columns: minmax(0,1fr) minmax(245px,.9fr); gap: 26.6px; }
  .home #qualification .qualify-layout { gap: 42px; }
}

@media (max-width: 686px) {
  .home .container { width: min(calc(100% - 28px),var(--max)); }
  .home .hero > .container { width: min(calc(100% - 28px),var(--max)); }
  .home .hero-layout { grid-template-columns: 1fr; gap: 35px; }
  .home .hero-copy { max-width: 532px; }
  .home .hero .display { max-width: 504px; font-size: clamp(36.4px,8vw,50.4px); }
  .home .campaign-ui { width: min(100%,532px); justify-self: center; }
  .home .section-head { grid-template-columns: 1fr; gap: 16.8px; }
  .home .section-head > .lead { max-width: 476px; margin: 0; padding: 0; border-left: 0; }
  .home .service-card.multi { grid-template-columns: 1fr 1fr; gap: 22.4px; }
  .home #qualification .qualify-layout { grid-template-columns: 1fr; gap: 36.4px; }
  .home #qualification .sticky-copy { padding-top: 0; }
  .home #qualification .sticky-copy .h2 { max-width: 504px; }
  .home .method-experience { grid-template-columns: 1fr; }
}

@media (max-width: 532px) {
  .home .section { padding: 57.4px 0; }
  .home .service-card.multi { grid-template-columns: 1fr; min-height: auto; padding: 19.6px; }
  .home .service-card.multi h3 { margin-top: 35px; }
  .home .multi-tech { min-height: 266px; }
}

@media (max-width: 476px) {
  .home .container,.home .hero > .container { width: min(calc(100% - 19.6px),var(--max)); }
  .home .hero { padding-top: 72.8px; }
  .home .hero-layout { gap: 29.4px; }
  .home .hero .display { font-size: clamp(28.7px,12vw,37.1px); }
  .home .campaign-body { padding: 10.5px; }
  .home .campaign-metric { padding: 7.7px 5.6px; }
  .home .campaign-metric strong { font-size: 17.5px; }
  .home .week-bars { height: 47.6px; }
  .home .section-head { margin-bottom: 30.1px; }
  .home .section-head .h2 { max-width: 100%; }
  .home .service-card.multi { padding: 16.8px; border-radius: 16.8px; }
  .home .service-card.multi h3 { margin-top: 29.4px; font-size: 25.9px; }
  .home .multi-tech { min-height: 252px; padding: 14px; border-radius: 14px; }
  .home .multi-tech .channel-flow span { height: 36.4px; }
  .home #qualification .qualify-layout { gap: 29.4px; }
  .home #qualification .sticky-copy .h2 { font-size: 27.3px; }
  .home #qualification .criterion { grid-template-columns: 31.5px 1fr; gap: 9.8px; padding: 13.3px 11.2px; }
  .home #qualification .criteria::before { left: 26.6px; }
  .home #qualification .criterion h3 { font-size: 12.6px; }
  .home .offer-grid { gap: 9.8px; }
}

/* Visualisations produit — multicanal et reporting */
.home .trust-label { gap: 0; }
.home .trust-label strong { font-size: 11.2px; letter-spacing: -.015em; }
.home .trust-label strong::before {
  content: "";
  display: inline-block;
  width: 4.9px;
  height: 4.9px;
  margin-right: 7.7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3.5px rgba(101,230,166,.1),0 0 11.2px rgba(101,230,166,.42);
  animation: live-dot 1.9s ease-out infinite;
}

.home .service-card.multi { min-height: 364px; }
.home .multi-tech {
  min-height: 301px;
  display: flex;
  flex-direction: column;
}
.home .network-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 231px;
  margin: 8.4px -2.8px 5.6px;
}
.home .network-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.home .network-links line {
  stroke: rgba(141,181,255,.34);
  stroke-width: 1.3;
  stroke-dasharray: 5 7;
  vector-effect: non-scaling-stroke;
  animation: network-flow 4s linear infinite;
}
.home .network-links line:nth-child(2),.home .network-links line:nth-child(5) { stroke: rgba(101,230,166,.38); animation-delay: -1.3s; }
.home .network-links line:nth-child(3),.home .network-links line:nth-child(6) { stroke: rgba(255,75,0,.42); animation-delay: -2.6s; }
.home .network-hub {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 78.4px;
  height: 78.4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%,-50%);
  border: 0.7px solid rgba(255,75,0,.46);
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,75,0,.2),rgba(13,25,44,.96) 64%);
  box-shadow: 0 0 0 9.1px rgba(255,75,0,.04),0 0 29.4px rgba(255,75,0,.24);
  animation: hub-breathe 3.2s ease-in-out infinite;
}
.home .network-hub::before,.home .network-hub::after {
  content: "";
  position: absolute;
  inset: -13.3px;
  border: 0.7px solid rgba(141,181,255,.12);
  border-radius: 50%;
  animation: hub-orbit 12s linear infinite;
}
.home .network-hub::after { inset: -21.7px; border-style: dashed; border-color: rgba(101,230,166,.12); animation-direction: reverse; animation-duration: 18s; }
.home .network-hub > span {
  width: 23.1px;
  height: 23.1px;
  display: grid;
  place-items: center;
  margin-bottom: 4.9px;
  border-radius: 7px;
  background: var(--orange);
  color: var(--night);
  font-size: 12.6px;
  font-weight: 900;
}
.home .network-hub strong { font-size: 7.7px; letter-spacing: .13em; }
.home .network-hub small { margin-top: 2.1px; color: rgba(255,255,255,.4); font-size: 4.9px; text-transform: uppercase; letter-spacing: .1em; }
.home .network-node {
  position: absolute;
  z-index: 4;
  min-width: 75.6px;
  padding: 7px 7.7px 7px 18.2px;
  border: 0.7px solid rgba(255,255,255,.12);
  border-radius: 8.4px;
  background: rgba(20,36,59,.94);
  box-shadow: 0 7.7px 19.6px rgba(0,0,0,.18);
  animation: node-float 5.4s ease-in-out infinite;
}
.home .network-node::before {
  content: "";
  position: absolute;
  left: 7.7px;
  top: 10.5px;
  width: 4.2px;
  height: 4.2px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 7px currentColor;
}
.home .network-node strong,.home .network-node small { display: block; white-space: nowrap; }
.home .network-node strong { color: rgba(255,255,255,.9); font-size: 6.3px; letter-spacing: .08em; }
.home .network-node small { margin-top: 2.8px; color: rgba(255,255,255,.43); font-size: 5.6px; }
.home .node-data { left: 0; top: 3.5px; }
.home .node-email { right: 0; top: 3.5px; animation-delay: -.8s; }
.home .node-crm { right: -2.1px; top: 50%; transform: translateY(-50%); animation-delay: -1.6s; }
.home .node-call { right: 0.7px; bottom: 2.8px; animation-delay: -2.4s; }
.home .node-rdv { left: 0.7px; bottom: 2.8px; border-color: rgba(101,230,166,.22); animation-delay: -3.2s; }
.home .node-rdv::before { background: var(--green); }
.home .node-enrich { left: -2.1px; top: 50%; transform: translateY(-50%); animation-delay: -4s; }
.home .node-email::before,.home .node-call::before { background: var(--orange-2); }
.home .multi-tech-foot { margin-top: auto; }

.home .proof-panel { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 14px; align-items: stretch; }
.home .proof-copy,.home .proof-stack { min-height: 434px; padding: 23.8px; }
.home .proof-copy .h3 { max-width: 399px; margin: 19.6px 0 9.1px; font-size: clamp(19.6px,2.7vw,26.6px); }
.home .proof-copy > p { max-width: 427px; margin: 0; }
.home .report-dashboard {
  position: relative;
  overflow: hidden;
  margin-top: 17.5px;
  padding: 12.6px;
  border: 0.7px solid rgba(141,181,255,.15);
  border-radius: 14.7px;
  background:
    linear-gradient(rgba(141,181,255,.035) 0.7px,transparent 0.7px),
    linear-gradient(90deg,rgba(141,181,255,.035) 0.7px,transparent 0.7px),
    radial-gradient(circle at 100% 0,rgba(255,75,0,.09),transparent 36%),
    rgba(9,20,37,.72);
  background-size: 22.4px 22.4px,22.4px 22.4px,auto,auto;
}
.home .report-dashboard::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.7px;
  height: 0.7px;
  background: linear-gradient(90deg,transparent,var(--blue),var(--green),transparent);
  animation: report-scan 5.4s linear infinite;
}
.home .report-head { display: flex; align-items: center; justify-content: space-between; gap: 12.6px; margin-bottom: 9.8px; }
.home .report-head > span { display: flex; align-items: center; gap: 5.6px; color: rgba(255,255,255,.76); font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.home .report-head i { width: 4.9px; height: 4.9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px rgba(101,230,166,.6); animation: live-dot 1.7s ease-out infinite; }
.home .report-head small { color: rgba(255,255,255,.33); font-size: 5.6px; }
.home .report-metrics { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 4.9px; }
.home .report-metrics > div { min-width: 0; padding: 8.4px 7px; border: 0.7px solid rgba(255,255,255,.08); border-radius: 9.1px; background: rgba(255,255,255,.035); }
.home .report-metrics span,.home .report-metrics small { display: block; overflow: hidden; color: rgba(255,255,255,.38); font-size: 5.6px; text-overflow: ellipsis; white-space: nowrap; }
.home .report-metrics strong { display: block; margin: 4.2px 0 3.5px; color: var(--white); font-size: 17.5px; line-height: 1; letter-spacing: -.05em; }
.home .report-metrics > div:nth-child(2) strong { color: var(--blue); }
.home .report-metrics > div:nth-child(3) { border-color: rgba(101,230,166,.17); background: rgba(101,230,166,.055); }
.home .report-metrics > div:nth-child(3) strong,.home .report-metrics > div:nth-child(4) strong { color: var(--green); }
.home .report-metrics strong em { font-size: 8.4px; font-style: normal; }
.home .report-activity { margin-top: 5.6px; padding: 8.4px 8.4px 5.6px; border: 0.7px solid rgba(255,255,255,.08); border-radius: 9.1px; background: rgba(255,255,255,.025); }
.home .report-chart-head { display: flex; justify-content: space-between; gap: 8.4px; color: rgba(255,255,255,.38); font-size: 5.6px; }
.home .report-chart-head b { color: var(--orange-2); font-weight: 720; }
.home .report-bars { height: 40.6px; display: grid; grid-template-columns: repeat(8,1fr); gap: 4.9px; align-items: end; margin-top: 5.6px; }
.home .report-bars i { height: 38%; border-radius: 2.8px 2.8px 0.7px 0.7px; background: linear-gradient(var(--orange-2),rgba(255,75,0,.12)); transform-origin: bottom; animation: report-bars 3.6s ease-in-out infinite alternate; }
.home .report-bars i:nth-child(2) { height: 64%; animation-delay: -.45s; }.home .report-bars i:nth-child(3) { height: 46%; background: linear-gradient(var(--blue),rgba(141,181,255,.13)); animation-delay: -.9s; }.home .report-bars i:nth-child(4) { height: 80%; animation-delay: -1.35s; }.home .report-bars i:nth-child(5) { height: 57%; animation-delay: -1.8s; }.home .report-bars i:nth-child(6) { height: 90%; background: linear-gradient(var(--green),rgba(101,230,166,.12)); animation-delay: -2.25s; }.home .report-bars i:nth-child(7) { height: 51%; animation-delay: -2.7s; }.home .report-bars i:nth-child(8) { height: 72%; background: linear-gradient(var(--blue),rgba(141,181,255,.13)); animation-delay: -3.15s; }
.home .report-latest { display: grid; grid-template-columns: 21px 1fr auto; gap: 7px; align-items: center; margin-top: 5.6px; padding: 6.3px 7px; border-radius: 8.4px; background: rgba(101,230,166,.055); }
.home .report-latest > span { width: 20.3px; height: 20.3px; display: grid; place-items: center; border-radius: 6.3px; background: rgba(101,230,166,.12); color: var(--green); font-size: 8.4px; animation: qualified-pulse 2.4s ease-in-out infinite; }
.home .report-latest strong,.home .report-latest small { display: block; }
.home .report-latest strong { font-size: 6.3px; }.home .report-latest small,.home .report-latest > b { margin-top: 2.1px; color: rgba(255,255,255,.36); font-size: 4.9px; font-weight: 500; }
.home .proof-stack { align-content: stretch; }
.home .proof-item { min-height: 84px; align-items: center; }

@keyframes network-flow { to { stroke-dashoffset: -48; } }
@keyframes hub-breathe { 50% { box-shadow: 0 0 0 12.6px rgba(255,75,0,.025),0 0 40.6px rgba(255,75,0,.32); } }
@keyframes hub-orbit { to { transform: rotate(360deg); } }
@keyframes node-float { 50% { margin-top: -2.1px; border-color: rgba(141,181,255,.22); } }
@keyframes report-scan { 0% { top: -0.7px; opacity: 0; } 12% { opacity: .65; } 72% { opacity: .15; } 84%,100% { top: calc(100% + 0.7px); opacity: 0; } }
@keyframes report-bars { from { transform: scaleY(.7); filter: saturate(.8); } to { transform: scaleY(1); filter: saturate(1.18); } }

@media (max-width: 686px) {
  .home .proof-panel { grid-template-columns: 1fr; }
  .home .proof-copy,.home .proof-stack { min-height: auto; }
  .home .proof-stack { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 532px) {
  .home .multi-tech { min-height: 297.5px; }
  .home .network-stage { min-height: 227.5px; }
  .home .proof-stack { grid-template-columns: 1fr; }
}

@media (max-width: 392px) {
  .home .trust-label strong { font-size: 9.8px; }
  .home .network-stage { min-height: 248.5px; transform: scale(.94); transform-origin: center; }
  .home .network-node { min-width: 70px; padding-left: 16.8px; }
  .home .network-node small { font-size: 4.9px; }
  .home .report-dashboard { margin-inline: -4.9px; padding: 9.1px; }
  .home .report-metrics { grid-template-columns: repeat(2,1fr); }
  .home .report-metrics strong { font-size: 16.1px; }
  .home .report-latest { grid-template-columns: 20.3px 1fr; }
  .home .report-latest > b { display: none; }
}

/* Ajustements de composition demandés */
@media (min-width: 686.7px) {
  .home .hero-layout {
    width: min(calc(100% - 44.8px),924px);
    margin-right: auto;
    margin-left: auto;
    transform: none;
    align-items: center;
  }
  .home .hero .display { font-size: clamp(30.8px,4vw,44.1px); }
  .home .hero-copy .lead { margin: 15.4px 0 17.5px; font-size: clamp(10.5px,1.2vw,12.6px); }
  .home .hero-actions .btn { min-height: 30.1px; padding-inline: 12.6px; font-size: 9.1px; }
  .home .hero-assurance { margin-top: 10.5px; }
  .home .hero-assurance span { padding: 4.9px 6.3px; font-size: 7px; }
  .home .hero-note { margin-top: 10.5px; font-size: 8.4px; }
  .home .campaign-bar { padding: 11.2px 12.6px; font-size: 8.4px; }
  .home .campaign-body { padding: 15.4px; }
  .home .campaign-title { padding-bottom: 12.6px; }
  .home .campaign-title strong { font-size: 15.4px; }
  .home .campaign-title span { font-size: 7.7px; }
  .home .campaign-metric { padding: 9.8px; }
  .home .campaign-metric strong { font-size: 21.7px; }
  .home .campaign-chart { padding: 10.5px 11.2px 7px; }
  .home .week-bars { height: 53.9px; }
  .home .campaign-latest { padding: 7px 8.4px; }
}

.home .multi-snapshot {
  width: 100%;
  margin-top: 21.7px;
  padding: 10.5px;
  border: 0.7px solid rgba(10,16,32,.16);
  border-radius: 11.9px;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0.7px rgba(255,255,255,.18);
}
.home .multi-snapshot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12.6px;
  margin-bottom: 7.7px;
  color: rgba(10,16,32,.56);
  font-size: 6.3px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.home .multi-snapshot-head b { display: inline-flex; align-items: center; gap: 4.9px; color: rgba(10,16,32,.74); font-size: 6.3px; }
.home .multi-snapshot-head b::before { content: ""; width: 4.2px; height: 4.2px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px rgba(18,115,77,.38); animation: live-dot 1.8s ease-out infinite; }
.home .multi-snapshot-path { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 4.9px; align-items: center; }
.home .multi-snapshot-path > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5.6px;
  padding: 7.7px 7px;
  border: 0.7px solid rgba(10,16,32,.13);
  border-radius: 8.4px;
  background: rgba(255,253,248,.2);
  animation: snapshot-step 4.5s ease-in-out infinite;
}
.home .multi-snapshot-path > span:nth-of-type(2) { animation-delay: -1.5s; }
.home .multi-snapshot-path > span:nth-of-type(3) { animation-delay: -3s; }
.home .multi-snapshot-path > span.complete { border-color: rgba(12,99,66,.22); background: rgba(101,230,166,.14); }
.home .multi-snapshot-path small { color: rgba(10,16,32,.42); font-size: 5.6px; font-weight: 800; }
.home .multi-snapshot-path strong { overflow: hidden; color: rgba(10,16,32,.82); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.home .multi-snapshot-path > i { color: rgba(10,16,32,.45); font-size: 8.4px; font-style: normal; animation: snapshot-arrow 1.8s ease-in-out infinite; }
.home .multi-snapshot-path > i:nth-of-type(2) { animation-delay: -.9s; }
.home .service-card.multi h3 { margin: 20.3px 0 14px; }

@keyframes snapshot-step { 50% { transform: translateY(-1.4px); border-color: rgba(10,16,32,.24); background: rgba(255,253,248,.28); } }
@keyframes snapshot-arrow { 50% { transform: translateX(2.1px); color: rgba(10,16,32,.8); } }

@media (max-width: 686px) {
  .home .hero-layout { width: auto; margin-left: 0; transform: none; }
}

@media (max-width: 392px) {
  .home .multi-snapshot { display: none; }
  .home .service-card.multi h3 { margin-top: 29.4px; }
}

/* V3 — contraste franc et palette plus saturée */
.nav-links > a,
.nav-trigger,
.nav-menu a,
.nav-menu small,
.dark .eyebrow,
.dark .lead,
.hero-assurance span,
.hero-note,
.campaign-bar,
.campaign-title span,
.campaign-metric span,
.campaign-metric small,
.chart-head,
.week-labels,
.campaign-latest small,
.latest-time,
.demo-disclaimer,
.trust-label strong,
.statement .muted-word,
.dark .card p,
.problem-main p,
.problem-route span,
.call-visual > span,
.service-card.call p,
.criterion p,
.reject-list span,
.method-stage-top,
.method-stage > p,
.offer-card.featured > p,
.proof-copy p,
.proof-item p,
.footer-cta p,
.footer-summary,
.footer h3,
.footer-links a,
.footer-bottom,
.page-aside-label,
.page-aside li,
.feature-list-dark .feature-row p,
.deliverable p,
.resource-card.dark-card p,
.calc-result-label,
.calc-result p,
.home .multi-tech-head,
.home .multi-tech-foot,
.home .network-hub small,
.home .network-node strong,
.home .network-node small,
.home .report-head > span,
.home .report-head small,
.home .report-metrics span,
.home .report-metrics small,
.home .report-chart-head,
.home .report-latest small,
.home .report-latest > b {
  color: #ffffff;
}

.service-tag,
.service-index,
.dark .offer-kicker { opacity: 1; }
.btn-primary { background: #ff4b00; box-shadow: 0 8.4px 19.6px rgba(255,75,0,.3); }
.btn-primary:hover { background: #ff6200; box-shadow: 0 11.2px 23.8px rgba(255,75,0,.38); }
.home .service-card.multi {
  background:
    radial-gradient(circle at 12% 12%,rgba(255,255,255,.12),transparent 26%),
    linear-gradient(135deg,#ff5a00,#ff3d00 74%);
  box-shadow: 0 16.8px 42px rgba(255,61,0,.2);
}
.campaign-metric:nth-child(2) strong { color: #ff6a00; }
.chart-head strong,
.report-chart-head b { color: #ff6a00; }

/* V3 — raffinement du hero, de la preuve sociale et des expertises */
@media (min-width: 686.7px) {
  .home .hero { padding: 101.5px 0 30.1px; }
}

.home .trust {
  position: relative;
  overflow: hidden;
  background-color: var(--night);
  background-size: 60.2px 60.2px;
}
.home .trust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,var(--night),transparent 18%,transparent 82%,var(--night));
}
.home .trust-inner { position: relative; z-index: 1; padding: 25.2px 0 29.4px; gap: 16.8px; }
.home .trust-label {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  align-items: center;
  gap: 14px;
}
.home .trust-label::after { display: none; }
.home .trust-label .trust-kicker {
  padding: 4.9px 7.7px;
  border: 0.7px solid rgba(255,75,0,.46);
  border-radius: 699.3px;
  background: rgba(255,75,0,.11);
  color: var(--orange-2);
  font-size: 6.3px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.home .trust-label strong {
  position: relative;
  padding-left: 14px;
  font-size: 13.3px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.home .trust-label strong::before {
  width: 4.9px;
  height: 4.9px;
  margin: 0 7.7px 1.4px 0;
  transform: none;
}
.home .logo-cloud { padding: 3.5px 0 5.6px; }
.home .logo-set { gap: 8.4px; padding-right: 8.4px; }
.home .logo-track { animation-duration: 64s; }
.home .client-logo {
  width: 105px;
  height: 54.6px;
  flex-basis: 105px;
  padding: 9.8px;
  border-color: rgba(255,255,255,.17);
  border-radius: 11.9px;
  background: #ffffff;
  box-shadow: 0 9.8px 25.2px rgba(0,0,0,.18),inset 0 0.7px rgba(255,255,255,.8);
}
.home .client-logo img { filter: saturate(.96) contrast(1.04); }

.home .statement {
  padding: 47.6px 0 72.8px;
  border-bottom: 0.7px solid var(--line-dark);
  background-color: var(--night);
  background-size: 60.2px 60.2px;
}
.home .statement-inner {
  display: grid;
  grid-template-columns: 119px minmax(0,1fr);
  gap: clamp(35px,7vw,77px);
  align-items: start;
}
.home .statement-index {
  display: block;
  padding-top: 8.4px;
  border-top: 1.4px solid var(--orange);
  color: var(--orange-2);
  font-size: 6.3px;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.home .statement p {
  max-width: 707px;
  font-size: clamp(25.2px,3.45vw,38.5px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.home .statement p strong { color: var(--orange-2); font-weight: 840; }
.home .statement .muted-word {
  display: block;
  margin-top: 9.8px;
  color: #ffffff;
  font-weight: 520;
}

.home .sector-grid { gap: 14px; align-items: stretch; }
.home .sector-card {
  min-height: 0;
  height: 100%;
  padding: 8.4px;
  border-color: rgba(10,16,32,.15);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12.6px 31.5px rgba(10,16,32,.06);
}
.home .sector-card::after { display: none; }
.home .sector-card .card-index {
  position: absolute;
  z-index: 3;
  left: 17.5px;
  top: 17.5px;
  min-width: 28px;
  padding: 4.2px 5.6px;
  border: 0.7px solid rgba(255,255,255,.23);
  border-radius: 699.3px;
  background: rgba(7,16,31,.82);
  color: var(--orange-2);
  font-size: 6.3px;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(7px);
}
.home .sector-visual {
  height: 126px;
  overflow: hidden;
  border-radius: 13.3px;
  background: var(--night);
  box-shadow: inset 0 0 0 0.7px rgba(255,255,255,.09);
}
.home .sector-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.75,.2,1),filter .35s ease;
}
.home .sector-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15.4px 9.8px 9.8px;
}
.home .sector-card h3 { margin: 0 0 7.7px; font-size: 18.2px; line-height: 1.04; }
.home .sector-card p { flex: 1; margin-bottom: 14px; }
.home .sector-card:hover .sector-visual img { transform: scale(1.035); filter: saturate(1.12); }

main > .grid-bg-light {
  background-image:
    linear-gradient(rgba(10,16,32,.045) 0.7px,transparent 0.7px),
    linear-gradient(90deg,rgba(10,16,32,.045) 0.7px,transparent 0.7px),
    radial-gradient(circle at 85% 15%,rgba(255,75,0,.035),transparent 28%);
  background-size: 50.4px 50.4px,50.4px 50.4px,auto;
}
main > .dark.grid-bg {
  background-color: var(--night);
  background-image:
    linear-gradient(rgba(255,255,255,.047) 0.7px,transparent 0.7px),
    linear-gradient(90deg,rgba(255,255,255,.047) 0.7px,transparent 0.7px),
    radial-gradient(circle at 82% 10%,rgba(255,75,0,.065),transparent 30%);
  background-size: 50.4px 50.4px,50.4px 50.4px,auto;
}

@media (max-width: 686px) {
  .home .trust-label { grid-template-columns: 1fr; gap: 9.8px; }
  .home .trust-label strong { padding-left: 13.3px; font-size: 11.2px; }
  .home .statement { padding: 39.2px 0 54.6px; }
  .home .statement-inner { grid-template-columns: 1fr; gap: 21px; }
  .home .statement-index { width: 112px; }
  .home .statement p { font-size: clamp(23.8px,7.8vw,33.6px); }
}

@media (max-width: 476px) {
  .home .sector-visual { height: 147px; }
}

/* V3.2 — hero abaissé et manifeste commercial recomposé */
@media (min-width: 686.7px) {
  .home .hero { padding: 119px 0 12.6px; }
}

.home .statement { padding: 49px 0 56px; }
.home .statement-inner {
  grid-template-columns: 133px minmax(0,1fr);
  gap: clamp(37.8px,6vw,63px);
  align-items: stretch;
}
.home .statement-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 224px;
  padding: 0 0 5.6px;
}
.home .statement-index { width: 100%; }
.home .statement .statement-rail p {
  max-width: 105px;
  margin: 0;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.home .statement-content { min-width: 0; }
.home .statement .statement-overline {
  max-width: none;
  margin: 0 0 10.5px;
  color: var(--green);
  font-size: 7px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.home .statement h2 {
  max-width: 665px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(30.8px,3.7vw,42px);
  font-weight: 790;
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.home .statement h2 em { color: var(--orange-2); font-style: normal; }
.home .statement .statement-copy {
  max-width: 581px;
  margin: 15.4px 0 0;
  color: #ffffff;
  font-size: 12.6px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.012em;
}
.home .statement-roles {
  display: grid;
  grid-template-columns: minmax(0,1fr) 21px minmax(0,1fr);
  gap: 8.4px;
  align-items: center;
  margin-top: 25.2px;
}
.home .statement-roles > div {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12.6px 14px;
  border: 0.7px solid rgba(255,255,255,.13);
  border-radius: 11.2px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0.7px rgba(255,255,255,.04);
}
.home .statement-roles > div:last-child {
  border-color: rgba(101,230,166,.23);
  background: linear-gradient(120deg,rgba(101,230,166,.085),rgba(141,181,255,.035));
}
.home .statement-roles span {
  margin-bottom: 5.6px;
  color: var(--orange-2);
  font-size: 6.3px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.home .statement-roles > div:last-child span { color: var(--green); }
.home .statement-roles strong {
  color: #ffffff;
  font-size: 9.1px;
  font-weight: 690;
  line-height: 1.35;
  letter-spacing: -.015em;
}
.home .statement-roles > i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 0.7px solid rgba(255,75,0,.36);
  border-radius: 50%;
  background: rgba(255,75,0,.1);
  color: var(--orange-2);
  font-size: 9.8px;
  font-style: normal;
  box-shadow: 0 0 14px rgba(255,75,0,.12);
}

@media (max-width: 686px) {
  .home .statement-inner { grid-template-columns: 1fr; gap: 24.5px; }
  .home .statement-rail { min-height: 0; gap: 14px; }
  .home .statement-index { width: 112px; }
  .home .statement .statement-rail p { max-width: none; }
  .home .statement h2 { font-size: clamp(28px,9.3vw,37.8px); }
  .home .statement .statement-copy { font-size: 11.9px; }
  .home .statement-roles { grid-template-columns: 1fr; gap: 7px; }
  .home .statement-roles > i { transform: rotate(90deg); justify-self: center; }
}

/* V3.4 — manifeste recentré sans cartouche latéral */
.home .statement-inner { display: block; }
.home .statement-content { width: min(100%, 805px); margin: 0 auto; }

/* V3.6 — assistant conversationnel */
.sr-only {
  position: absolute;
  width: 0.7px;
  height: 0.7px;
  padding: 0;
  margin: -0.7px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.chatbot { position: relative; z-index: 180; }
.chat-launcher {
  position: fixed;
  z-index: 181;
  right: 14px;
  bottom: 14px;
  min-height: 45.5px;
  display: flex;
  align-items: center;
  gap: 8.4px;
  padding: 6.3px 10.5px 6.3px 6.3px;
  border: 0.7px solid rgba(255,255,255,.18);
  border-radius: 13.3px;
  background: rgba(7,16,31,.94);
  color: #ffffff;
  box-shadow: 0 14px 38.5px rgba(0,0,0,.3),0 0 21px rgba(255,75,0,.09);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.chat-launcher:hover,.chat-launcher:focus-visible { transform: translateY(-2.1px); border-color: rgba(255,75,0,.58); box-shadow: 0 16.8px 42px rgba(0,0,0,.34),0 0 24.5px rgba(255,75,0,.14); }
.chat-launcher-icon {
  width: 32.2px;
  height: 32.2px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9.1px;
  background: linear-gradient(145deg,#ff6a00,#ff3d00);
  color: var(--night);
  box-shadow: 0 7px 17.5px rgba(255,75,0,.26);
}
.chat-launcher-icon svg { width: 17.5px; height: 17.5px; }
.chat-launcher > span:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.chat-launcher small { margin-bottom: 1.4px; color: var(--green); font-size: 5.6px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.chat-launcher strong { color: #ffffff; font-size: 8.4px; font-weight: 740; line-height: 1.15; }
.chat-launcher.attention { animation: chat-attention 1.2s ease 2; }

.chat-panel {
  position: fixed;
  z-index: 182;
  right: 14px;
  bottom: 65.8px;
  width: min(301px,calc(100vw - 28px));
  max-height: min(455px,calc(100svh - 84px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0.7px solid rgba(141,181,255,.22);
  border-radius: 16.8px;
  background:
    linear-gradient(rgba(141,181,255,.035) 0.7px,transparent 0.7px),
    linear-gradient(90deg,rgba(141,181,255,.035) 0.7px,transparent 0.7px),
    radial-gradient(circle at 100% 0,rgba(255,75,0,.1),transparent 34%),
    #091426;
  background-size: 28px 28px,28px 28px,auto,auto;
  color: #ffffff;
  box-shadow: 0 25.2px 70px rgba(0,0,0,.42),0 0 35px rgba(55,104,211,.09);
  transform-origin: right bottom;
  animation: chat-open .28s cubic-bezier(.22,.75,.2,1) both;
}
.chat-panel[hidden] { display: none; }
.chat-header {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12.6px;
  padding: 11.2px 12.6px;
  border-bottom: 0.7px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
}
.chat-identity { display: flex; align-items: center; gap: 8.4px; }
.chat-mark {
  width: 29.4px;
  height: 29.4px;
  display: grid;
  place-items: center;
  border-radius: 8.4px;
  background: var(--orange);
  color: var(--night);
  font-size: 13.3px;
  font-weight: 900;
}
.chat-identity strong,.chat-identity small { display: block; }
.chat-identity strong { margin-bottom: 2.1px; color: #ffffff; font-size: 9.1px; }
.chat-identity small { color: #ffffff; font-size: 6.3px; }
.chat-identity small i { width: 4.2px; height: 4.2px; display: inline-block; margin-right: 3.5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px rgba(101,230,166,.65); animation: live-dot 1.8s ease-out infinite; }
.chat-close {
  width: 24.5px;
  height: 24.5px;
  display: grid;
  place-items: center;
  border: 0.7px solid rgba(255,255,255,.12);
  border-radius: 7px;
  background: rgba(255,255,255,.04);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.chat-close:hover { border-color: rgba(255,75,0,.46); background: rgba(255,75,0,.1); }
.chat-messages {
  flex: 1;
  min-height: 182px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12.6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
}
.chat-message { display: flex; gap: 6.3px; align-items: flex-end; margin-bottom: 7.7px; }
.chat-message p {
  max-width: 231px;
  margin: 0;
  padding: 8.4px 9.1px;
  border: 0.7px solid rgba(255,255,255,.1);
  border-radius: 10.5px 10.5px 10.5px 3.5px;
  background: rgba(255,255,255,.055);
  color: #ffffff;
  font-size: 8.4px;
  line-height: 1.48;
}
.chat-avatar { width: 20.3px; height: 20.3px; flex: none; display: grid; place-items: center; border-radius: 6.3px; background: rgba(255,75,0,.16); color: var(--orange-2); font-size: 7.7px; font-weight: 900; }
.chat-message.user { justify-content: flex-end; }
.chat-message.user p { border-color: rgba(255,75,0,.32); border-radius: 10.5px 10.5px 3.5px 10.5px; background: rgba(255,75,0,.13); }
.chat-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 5.6px; margin: 9.8px 0 2.8px 26.6px; }
.chat-quick button {
  min-height: 27.3px;
  padding: 5.6px 7px;
  border: 0.7px solid rgba(141,181,255,.2);
  border-radius: 8.4px;
  background: rgba(141,181,255,.055);
  color: #ffffff;
  font: inherit;
  font-size: 7.7px;
  font-weight: 690;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease,background .2s ease,transform .2s ease;
}
.chat-quick button:hover { transform: translateY(-1.4px); border-color: rgba(255,75,0,.48); background: rgba(255,75,0,.1); }
.chat-actions { display: flex; flex-wrap: wrap; gap: 5.6px; margin: 2.8px 0 11.2px 26.6px; }
.chat-actions a { padding: 5.6px 7.7px; border: 0.7px solid rgba(255,75,0,.35); border-radius: 7.7px; background: rgba(255,75,0,.1); color: #ffffff; font-size: 7px; font-weight: 760; }
.chat-actions a:first-child { background: var(--orange); color: var(--night); }
.chat-typing { width: 41.3px; display: flex; gap: 2.8px; margin: 0 0 8.4px 26.6px; padding: 7px 8.4px; border: 0.7px solid rgba(255,255,255,.1); border-radius: 9.1px; background: rgba(255,255,255,.05); }
.chat-typing i { width: 3.5px; height: 3.5px; border-radius: 50%; background: #ffffff; animation: chat-dot .9s ease-in-out infinite; }
.chat-typing i:nth-child(2) { animation-delay: .15s; }.chat-typing i:nth-child(3) { animation-delay: .3s; }
.chat-form { flex: none; display: grid; grid-template-columns: 1fr 27.3px; gap: 5.6px; padding: 8.4px 9.8px 5.6px; border-top: 0.7px solid rgba(255,255,255,.1); background: rgba(5,12,24,.65); }
.chat-form input { min-width: 0; height: 27.3px; padding: 0 8.4px; border: 0.7px solid rgba(255,255,255,.13); border-radius: 7.7px; outline: none; background: rgba(255,255,255,.045); color: #ffffff; font-size: 8.4px; }
.chat-form input::placeholder { color: rgba(255,255,255,.7); }
.chat-form input:focus { border-color: rgba(255,75,0,.58); box-shadow: 0 0 0 2.1px rgba(255,75,0,.08); }
.chat-form button { width: 27.3px; height: 27.3px; display: grid; place-items: center; border: 0; border-radius: 7.7px; background: var(--orange); color: var(--night); font-size: 11.2px; font-weight: 900; cursor: pointer; }
.chat-form.busy input,.chat-form.busy button { cursor: wait; opacity: .58; }
.chat-form button:disabled { filter: saturate(.7); }
.chatbot.ai-connected .chat-identity small { color: var(--green); }

/* Ressources interactives — simulateurs Hilead */
.resource-card.tool-card { position: relative; overflow: hidden; min-height: 308px; isolation: isolate; }
.resource-card.tool-card::after { content: ""; position: absolute; z-index: -1; width: 175px; height: 175px; right: -77px; top: -91px; border: .7px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.014),0 0 0 60px rgba(255,255,255,.009); }
.resource-card.tool-card.light-tool::after { border-color: rgba(10,16,32,.09); box-shadow: 0 0 0 30px rgba(10,16,32,.012),0 0 0 60px rgba(10,16,32,.008); }
.resource-card.tool-card h2 { max-width: 455px; }
.resource-tool-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.resource-tool-index { width: 32.2px; height: 32.2px; display: grid; place-items: center; border: .7px solid rgba(255,255,255,.14); border-radius: 10.5px; color: var(--orange-2); background: rgba(255,255,255,.045); font-size: 8.4px; font-weight: 850; }
.light-tool .resource-tool-index { border-color: var(--line); background: rgba(255,255,255,.58); }
.resource-mini-flow { display: flex; align-items: center; flex-wrap: wrap; gap: 4.9px; margin: 18.2px 0 8.4px; }
.resource-mini-flow span { padding: 4.9px 6.3px; border: .7px solid currentColor; border-radius: 699.3px; opacity: .62; font-size: 6.3px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.resource-mini-flow i { color: var(--orange); font-style: normal; }
.resource-card.tool-card .btn { align-self: flex-start; }
.resource-note { margin-top: 21px; padding: 14px 16.8px; border: .7px solid var(--line); border-radius: 12.6px; background: rgba(255,255,255,.45); color: var(--muted); line-height: 1.55; }

.simulator-page { background: var(--paper); }
.simulator-page .page-hero { min-height: 448px; }
.simulator-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 5.6px; margin: 0 0 16.8px; color: rgba(255,255,255,.52); font-size: 8.4px; }
.simulator-breadcrumb a:hover { color: var(--white); }
.simulator-breadcrumb i { color: var(--orange-2); font-style: normal; }
.simulator-section { padding-top: 52.5px; }
.simulator-shell { overflow: hidden; border: .7px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.86); box-shadow: 0 18.2px 49px rgba(10,16,32,.08); }
.simulator-toolbar { min-height: 59.5px; display: flex; align-items: center; justify-content: space-between; gap: 16.8px; padding: 11.9px 16.8px; border-bottom: .7px solid var(--line); background: rgba(255,255,255,.72); }
.simulator-toolbar-copy strong,.simulator-toolbar-copy span { display: block; }
.simulator-toolbar-copy strong { font-size: 11.2px; }
.simulator-toolbar-copy span { margin-top: 2.8px; color: var(--muted); font-size: 7.7px; }
.simulator-tabs,.revenue-tabs { display: inline-flex; gap: 3.5px; padding: 3.5px; border: .7px solid var(--line); border-radius: 9.8px; background: var(--paper-2); }
.simulator-tab,.revenue-tab { min-height: 29.4px; padding: 0 10.5px; border: 0; border-radius: 7px; background: transparent; color: var(--muted); font-size: 8.4px; font-weight: 800; cursor: pointer; transition: background .2s ease,color .2s ease,box-shadow .2s ease; }
.simulator-tab.active,.revenue-tab.active { background: var(--night); color: var(--white); box-shadow: 0 4.9px 12.6px rgba(10,16,32,.13); }
.simulator-layout { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(273px,.92fr); align-items: stretch; }
.simulator-controls { padding: 23.8px; }
.simulator-results { padding: 23.8px; background: var(--night); color: var(--white); }
.control-section + .control-section { margin-top: 21px; padding-top: 21px; border-top: .7px solid var(--line); }
.control-head { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.control-head h2,.control-head h3 { margin: 0; font-size: 13.3px; letter-spacing: -.025em; }
.control-head p { max-width: 245px; margin: 0; color: var(--muted); font-size: 7.7px; line-height: 1.45; text-align: right; }
.control-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12.6px; }
.control-grid.three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.sim-field { min-width: 0; }
.sim-field.full { grid-column: 1 / -1; }
.sim-field-head { display: flex; align-items: center; justify-content: space-between; gap: 10.5px; margin-bottom: 6.3px; }
.sim-field label,.sim-field-head label { color: var(--ink); font-size: 8.4px; font-weight: 780; line-height: 1.25; }
.sim-field output { flex: none; padding: 3.5px 5.6px; border-radius: 699.3px; background: rgba(255,75,0,.08); color: var(--orange); font-size: 7px; font-weight: 850; }
.sim-field select,.sim-field input[type="number"] { width: 100%; height: 36.4px; padding: 0 9.8px; border: .7px solid var(--line); border-radius: 8.4px; background: var(--paper); color: var(--ink); outline: none; }
.sim-field select:focus,.sim-field input[type="number"]:focus { border-color: rgba(255,75,0,.6); box-shadow: 0 0 0 2.1px rgba(255,75,0,.08); }
.sim-field input[type="range"] { width: 100%; height: 14px; margin: 3.5px 0 0; accent-color: var(--orange); cursor: pointer; }
.sim-help { display: block; margin-top: 4.2px; color: var(--muted); font-size: 7px; line-height: 1.4; }
.toggle-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7.7px; }
.sim-toggle { min-height: 49px; display: flex; align-items: center; gap: 8.4px; padding: 9.1px; border: .7px solid var(--line); border-radius: 9.8px; background: rgba(245,242,235,.68); cursor: pointer; }
.sim-toggle input { width: 14px; height: 14px; flex: none; accent-color: var(--orange); }
.sim-toggle span { font-size: 7.7px; font-weight: 720; line-height: 1.32; }
.sim-toggle[data-multichannel-only] { opacity: .43; }
.is-multichannel .sim-toggle[data-multichannel-only] { opacity: 1; }
.result-kicker { color: var(--green); font-size: 7.7px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.result-title { margin: 9.8px 0 7px; font-size: clamp(22.4px,3.5vw,35px); line-height: 1; letter-spacing: -.045em; }
.result-intro { margin: 0; color: rgba(255,255,255,.62); line-height: 1.55; }
.quality-index { display: flex; align-items: center; justify-content: space-between; gap: 12.6px; margin: 16.8px 0; padding: 9.8px 11.2px; border: .7px solid rgba(255,255,255,.11); border-radius: 9.8px; background: rgba(255,255,255,.035); }
.quality-index span { color: rgba(255,255,255,.6); font-size: 7.7px; }
.quality-index strong { color: var(--orange-2); font-size: 12.6px; }
.funnel-results { display: grid; gap: 7.7px; }
.funnel-card { position: relative; overflow: hidden; padding: 13.3px; border: .7px solid rgba(255,255,255,.1); border-radius: 11.2px; background: rgba(255,255,255,.038); }
.funnel-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: var(--funnel-width,100%); height: 2.1px; background: linear-gradient(90deg,var(--orange),var(--green)); }
.funnel-card:nth-child(2) { --funnel-width: 76%; }.funnel-card:nth-child(3) { --funnel-width: 52%; }.funnel-card:nth-child(4) { --funnel-width: 31%; }
.funnel-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10.5px; color: rgba(255,255,255,.56); font-size: 7.7px; }
.funnel-card-top b { color: var(--blue); font-size: 7px; }
.funnel-card strong { display: block; margin-top: 6.3px; font-size: 22.4px; line-height: 1; letter-spacing: -.045em; }
.funnel-card small { display: block; margin-top: 4.2px; color: rgba(255,255,255,.48); font-size: 6.7px; line-height: 1.38; }
.simulator-disclaimer { margin: 14px 0 0; padding-top: 11.2px; border-top: .7px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: 7px; line-height: 1.5; }

.cac-layout { grid-template-columns: minmax(0,1fr) minmax(273px,.78fr); }
.scenario-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.scenario-link { min-height: 29.4px; padding: 0 9.8px; border: .7px solid var(--line); border-radius: 7.7px; background: transparent; color: var(--ink); font-size: 7.7px; font-weight: 780; cursor: pointer; }
.scenario-link:hover { border-color: rgba(10,16,32,.35); background: rgba(10,16,32,.025); }
.revenue-tabs { display: flex; width: 100%; }
.revenue-tab { flex: 1; }
.profitability-simulator[data-revenue-mode="subscription"] [data-project-field],
.profitability-simulator[data-revenue-mode="project"] [data-subscription-field] { display: none; }
.cac-hero-result { padding: 17.5px; border: .7px solid rgba(255,75,0,.28); border-radius: 13.3px; background: linear-gradient(135deg,rgba(255,75,0,.14),rgba(255,255,255,.03)); }
.cac-hero-result span { color: rgba(255,255,255,.58); font-size: 7.7px; font-weight: 760; text-transform: uppercase; letter-spacing: .11em; }
.cac-hero-result strong { display: block; margin: 7px 0 4.2px; color: var(--orange-2); font-size: clamp(33.6px,5vw,49px); line-height: .92; letter-spacing: -.06em; }
.cac-hero-result p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.5; }
.cac-status-row { display: flex; align-items: center; justify-content: space-between; gap: 12.6px; margin: 14px 0 7px; }
.cac-status-row span { color: rgba(255,255,255,.56); font-size: 7.7px; }
.status-pill { padding: 4.9px 7.7px; border-radius: 699.3px; font-size: 7px; font-weight: 850; }
.status-pill[data-status="Dans la cible"] { background: rgba(101,230,166,.12); color: var(--green); }
.status-pill[data-status="À surveiller"] { background: rgba(255,214,107,.12); color: var(--yellow); }
.status-pill[data-status="À risque"] { background: rgba(255,75,0,.14); color: var(--orange-2); }
.cac-meter { height: 5.6px; overflow: hidden; border-radius: 699.3px; background: rgba(255,255,255,.09); }
.cac-meter i { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--green); transition: width .3s ease,background .3s ease; }
.cac-meter i[data-status="À surveiller"] { background: var(--yellow); }.cac-meter i[data-status="À risque"] { background: var(--orange); }
.cac-results-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7.7px; margin-top: 14px; }
.cac-result-item { padding: 11.2px; border: .7px solid rgba(255,255,255,.1); border-radius: 9.8px; background: rgba(255,255,255,.035); }
.cac-result-item span,.cac-result-item strong { display: block; }
.cac-result-item span { min-height: 20.3px; color: rgba(255,255,255,.5); font-size: 6.7px; line-height: 1.35; }
.cac-result-item strong { margin-top: 5.6px; font-size: 14px; }
.cac-result-item strong.negative { color: var(--orange-2); }
.cac-result-notice { margin: 14px 0 0; color: rgba(255,255,255,.48); font-size: 7px; line-height: 1.5; }
.comparison-panel { padding: 0 23.8px 23.8px; background: rgba(255,255,255,.86); }
.comparison-panel[hidden] { display: none; }
.scenario-comparison { overflow-x: auto; border: .7px solid var(--line); border-radius: 13.3px; background: var(--white); }
.scenario-compare-row { min-width: 532px; display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.scenario-compare-row > * { padding: 10.5px 12.6px; border-bottom: .7px solid var(--line); }
.scenario-compare-row > * + * { border-left: .7px solid var(--line); }
.scenario-compare-row:last-child > * { border-bottom: 0; }
.scenario-compare-row.header { background: var(--night); color: var(--white); font-size: 8.4px; font-weight: 800; }
.scenario-compare-row:not(.header) > strong { font-size: 8.4px; }
.scenario-compare-row:not(.header) span { color: var(--muted); font-size: 8.4px; }
.scenario-compare-row [data-status="Dans la cible"] { color: #167549; font-weight: 800; }
.scenario-compare-row [data-status="À surveiller"] { color: #916600; font-weight: 800; }
.scenario-compare-row [data-status="À risque"] { color: #bd3d08; font-weight: 800; }
.formula-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9.8px; }
.formula-card { min-height: 151px; padding: 17.5px; border: .7px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.52); }
.formula-card span { color: var(--orange); font-size: 7px; font-weight: 850; letter-spacing: .11em; }
.formula-card h3 { margin: 28px 0 7px; font-size: 14px; letter-spacing: -.025em; }
.formula-card p { margin: 0; color: var(--muted); font-size: 8.4px; line-height: 1.55; }

@media (max-width: 686px) {
  .simulator-toolbar { align-items: flex-start; flex-direction: column; }
  .simulator-layout,.cac-layout { grid-template-columns: 1fr; }
  .simulator-results { min-height: auto; }
  .control-grid.three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .toggle-grid,.formula-grid { grid-template-columns: 1fr; }
}

@media (max-width: 476px) {
  .resource-card.tool-card { min-height: 280px; }
  .simulator-tabs { width: 100%; overflow-x: auto; }
  .simulator-tab { flex: 1; white-space: nowrap; }
  .simulator-controls,.simulator-results { padding: 16.8px; }
  .control-head { align-items: flex-start; flex-direction: column; }
  .control-head p { text-align: left; }
  .control-grid,.control-grid.three { grid-template-columns: 1fr; }
  .sim-field.full { grid-column: auto; }
  .cac-results-grid { grid-template-columns: 1fr; }
  .comparison-panel { padding: 0 16.8px 16.8px; }
}

@media print {
  .site-header,.footer,.chatbot,.mobile-sticky-cta,.simulator-page .page-hero,.simulator-page .section-sm,.scenario-actions { display: none !important; }
  .simulator-page { background: #fff; }
  .simulator-section { padding: 0; }
  .simulator-shell { box-shadow: none; }
}
.chat-privacy { flex: none; margin: 0; padding: 0 9.8px 7px; background: rgba(5,12,24,.65); color: #ffffff; font-size: 5.6px; text-align: center; letter-spacing: .035em; }

@keyframes chat-open { from { opacity: 0; transform: translateY(9.8px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes chat-dot { 0%,100% { opacity: .28; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-2.1px); } }
@keyframes chat-attention { 50% { transform: translateY(-2.8px); box-shadow: 0 16.8px 42px rgba(0,0,0,.34),0 0 0 5.6px rgba(255,75,0,.09); } }

@media (max-width: 476px) {
  .chat-launcher { right: 8.4px; bottom: 54.6px; }
  .chat-panel { right: 8.4px; bottom: 105px; width: calc(100vw - 16.8px); max-height: calc(100svh - 119px); }
}

@media (prefers-reduced-motion: reduce) {
  .chat-launcher,.chat-panel,.chat-typing i { animation: none !important; }
}

/* V3.8 — lisibilité et accessibilité de prépublication */
body { font-size: 14px; line-height: 1.5; }
.nav-links > a,.nav-trigger { font-size: 11.5px; }
.nav-menu a,.nav-menu strong { font-size: 11px; }
.nav-menu small { font-size: 9.5px; }
.nav-cta { font-size: 11.5px; }
.btn,.btn-sm { min-height: 40px; font-size: 12.5px; }
.eyebrow { font-size: 10.5px; }
.lead,.home .lead,.home .hero-copy .lead { font-size: clamp(14px,1.45vw,16px); }
.hero-assurance span { font-size: 10.5px; }
.hero-note { font-size: 11.5px; }
.card p,.problem-panel p,.service-card p,.offer-card p,.feature-row p,.step p,.criterion p,.resource-card p,.formula-card p,.resource-note,.check-list { font-size: 12.5px; }
.home #qualification .criterion p { font-size: 12.5px; }
.footer-cta-kicker { font-size: 10px; }
.footer-cta p,.footer-summary,.footer-links a { font-size: 12.5px; }
.footer h3 { font-size: 10.5px; }
.footer-bottom { flex-wrap: wrap; font-size: 11px; }
.legal { padding-top: 126px; }
.legal .narrow { width: min(calc(100% - 28px),700px); }
.legal h1 { margin-bottom: 14px; }
.legal-intro { margin: 0 0 34px; font-size: 16px; }
.legal-section { padding: 24px 0; border-top: 1px solid var(--line); }
.legal-section h2,.legal h2 { margin: 0 0 12px; font-size: 20px; }
.legal-section p,.legal-section li,.legal p,.legal li { font-size: 14px; }
.legal-section a { color: #bd3d08; text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { margin-top: 30px; font-size: 12px !important; }

.chat-panel { width: min(360px,calc(100vw - 28px)); max-height: min(560px,calc(100svh - 84px)); }
.chat-launcher { min-height: 52px; }
.chat-launcher small { font-size: 9px; }
.chat-launcher strong { font-size: 11.5px; }
.chat-identity strong { font-size: 12px; }
.chat-identity small { font-size: 10px; }
.chat-message p { max-width: 278px; font-size: 12px; }
.chat-avatar { width: 26px; height: 26px; font-size: 10px; }
.chat-quick { margin-left: 34px; }
.chat-quick button { min-height: 38px; font-size: 11px; }
.chat-actions { margin-left: 34px; }
.chat-actions a { min-height: 36px; display: inline-flex; align-items: center; font-size: 10.5px; }
.chat-form { grid-template-columns: 1fr 40px; }
.chat-form input { height: 40px; font-size: 12px; }
.chat-form button { width: 40px; height: 40px; font-size: 15px; }
.chat-privacy { padding: 4px 12px 10px; font-size: 9.5px; line-height: 1.4; }
.chat-privacy a { color: var(--orange-2); text-decoration: underline; text-underline-offset: 2px; }

.simulator-breadcrumb { font-size: 11px; }
.simulator-toolbar-copy strong { font-size: 14px; }
.simulator-toolbar-copy span,.control-head p { font-size: 11px; }
.simulator-tab,.revenue-tab,.scenario-link { min-height: 40px; font-size: 11.5px; }
.control-head h2,.control-head h3 { font-size: 16px; }
.sim-field label,.sim-field-head label { font-size: 12px; }
.sim-field output { font-size: 10.5px; }
.sim-field select,.sim-field input[type="number"] { height: 44px; font-size: 12px; }
.sim-help { font-size: 10.5px; }
.sim-toggle span { font-size: 11px; }
.result-kicker,.quality-index span,.funnel-card-top,.cac-hero-result span,.cac-status-row span { font-size: 10.5px; }
.funnel-card-top b,.status-pill { font-size: 10px; }
.funnel-card small,.simulator-disclaimer,.cac-result-notice { font-size: 10px; }
.cac-result-item span { font-size: 10px; }
.scenario-compare-row.header,.scenario-compare-row:not(.header) > strong,.scenario-compare-row:not(.header) span { font-size: 11px; }
.formula-card span { font-size: 10px; }
.formula-card p { font-size: 11.5px; }

@media (max-width: 686px) {
  .nav-links.open > a,.nav-links.open .nav-trigger { min-height: 48px; padding: 13px; font-size: 14px; }
  .nav-menu a { min-height: 48px; font-size: 13px; }
}

@media (max-width: 476px) {
  .btn,.btn-sm { min-height: 46px; font-size: 13px; }
  .mobile-sticky-cta { min-height: 48px; font-size: 13px; }
  .chat-launcher { min-height: 48px; }
  .chat-close,.chat-quick button,.chat-actions a,.chat-form button { min-width: 44px; min-height: 44px; }
  .chat-form { grid-template-columns: 1fr 44px; }
  .chat-form input { height: 44px; font-size: 13px; }
  .chat-form button { width: 44px; height: 44px; }
  .simulator-tab,.revenue-tab,.scenario-link { min-height: 44px; }
  .sim-toggle { min-height: 54px; }
  .legal { padding-top: 108px; }
}

/* V3.16 — page Expertises & cas clients, rythme visuel allégé */
.case-sector,.case-number { color: #bd3d08; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.case-intro { position: relative; overflow: hidden; padding: 140px 0 84px; }
.case-intro::before { content: ""; position: absolute; top: -260px; left: 50%; width: 720px; height: 520px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle,rgba(255,75,0,.12),transparent 68%); pointer-events: none; }
.case-intro::after { content: ""; position: absolute; left: 50%; bottom: -410px; width: 760px; aspect-ratio: 1; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 110px rgba(255,255,255,.018),0 0 0 230px rgba(255,255,255,.012); pointer-events: none; }
.case-intro-grid { position: relative; z-index: 1; display: block; }
.case-intro-copy { max-width: 1040px; margin: 0 auto; text-align: center; }
.case-intro-copy h1 { max-width: 1000px; margin: 16px auto 22px; color: #fff; font-size: clamp(42px,5vw,66px); line-height: 1.02; letter-spacing: -.06em; text-wrap: balance; }
.case-intro-copy .lead { max-width: 790px; margin: 0 auto; color: rgba(255,255,255,.7); font-size: clamp(15px,1.55vw,18px); line-height: 1.65; }
.case-intro-actions { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 32px; }
.combined-expertise { position: relative; padding-top: 72px; padding-bottom: 78px; border-top: 1px solid rgba(255,255,255,.09); }
.combined-expertise .page-hero-grid { align-items: end; }
.combined-expertise .h1 { max-width: 760px; margin: 16px 0 22px; }
.combined-expertise .lead { max-width: 700px; margin-bottom: 26px; }
.combined-expertise .page-aside { margin-bottom: 0; }

.case-selector-section { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-selector-viewport { width: 100%; overflow: hidden; }
.case-selector-track { display: flex; width: max-content; will-change: transform; animation: case-card-marquee 82s linear infinite; }
.case-selector-viewport:hover .case-selector-track,.case-selector-viewport:focus-within .case-selector-track { animation-play-state: paused; }
.case-selector-set { display: flex; gap: 14px; padding-right: 14px; }
.case-selector-card { flex: 0 0 235px; width: 235px; min-height: 146px; display: flex; flex-direction: column; justify-content: flex-end; padding: 19px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.82); box-shadow: 0 10px 28px rgba(10,16,32,.05); transition: border-color .2s ease,transform .2s ease,box-shadow .2s ease; }
.case-selector-card:hover,.case-selector-card:focus-visible { transform: translateY(-3px); border-color: rgba(255,75,0,.42); box-shadow: 0 16px 34px rgba(10,16,32,.09); }
.case-selector-card span { margin-bottom: auto; color: #bd3d08; font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.case-selector-card strong { margin: 18px 0 6px; font-size: 17px; letter-spacing: -.025em; }
.case-selector-card small { color: var(--muted); font-size: 9.5px; line-height: 1.4; }
@keyframes case-card-marquee { to { transform: translateX(-50%); } }

.case-study-list { display: grid; gap: 36px; }
.case-study-list #coopteo { order: 1; }
.case-study-list #workadventure { order: 2; }
.case-study-list #storen { order: 3; }
.case-study-list #smc-consulting { order: 4; }
.case-study-list #mi4 { order: 5; }
.case-study-list #shop-my-influence { order: 6; }
.case-study-list #istrium { order: 7; }
.case-study-list #haloitsm { order: 8; }
.case-study-list #andzup { order: 9; }
.case-study-list #flexiglob { order: 10; }
.case-study-list #captely { order: 11; }
.case-study-list #akidel { order: 12; }
.case-study-list #certure { order: 13; }
.case-study { scroll-margin-top: 88px; padding: 36px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.78); box-shadow: 0 20px 48px rgba(10,16,32,.07); }
.case-client-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.case-client-identity { min-width: 0; display: grid; grid-template-columns: 150px minmax(0,1fr); align-items: center; gap: 28px; }
.case-client-logo { width: 150px; height: 72px; object-fit: contain; object-position: left center; }
.case-client-logo-compact { width: 106px; height: 72px; }
.case-client-logo-wide { width: 150px; height: 58px; }
.case-client-logo-on-dark { padding: 10px 13px; border-radius: 10px; background: #081426; object-position: center; }
.case-client-head h2 { max-width: 680px; margin: 10px 0 0; font-size: clamp(25px,3.4vw,38px); line-height: 1.04; letter-spacing: -.05em; }
.case-official-link { flex: none; min-height: 38px; display: inline-flex; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 750; transition: border-color .2s ease,color .2s ease; }
.case-official-link:hover { border-color: var(--orange); color: #9c340c; }
.case-public-summary { margin: 28px 0; padding: 18px 20px; border-left: 3px solid var(--orange); background: rgba(255,75,0,.055); color: var(--muted); font-size: 13px; line-height: 1.65; }
.case-public-summary strong { color: var(--ink); }
.case-campaign-facts { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.case-campaign-facts section { min-height: 172px; padding: 20px; border-right: 1px solid var(--line); background: var(--paper-2); }
.case-campaign-facts section:last-child { border-right: 0; }
.case-campaign-facts span { display: block; margin-bottom: 18px; color: #bd3d08; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.case-campaign-facts strong { display: block; margin-bottom: 9px; font-size: 15px; line-height: 1.25; }
.case-campaign-facts p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.case-execution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 26px; }
.case-execution-grid section { padding-top: 16px; border-top: 2px solid var(--orange); }
.case-execution-grid h3 { margin: 0 0 9px; font-size: 14px; }
.case-execution-grid p,.case-learning { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.65; }
.case-results,.case-public-metrics { display: grid; grid-template-columns: repeat(4,1fr); margin: 30px 0 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.case-results div,.case-public-metrics div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 18px; border-right: 1px solid var(--line); background: #081426; }
.case-results div:last-child,.case-public-metrics div:last-child { border-right: 0; }
.case-results strong,.case-public-metrics strong { color: #fff; font-size: 28px; line-height: 1; letter-spacing: -.05em; }
.case-results span,.case-public-metrics span { margin-top: 8px; color: rgba(255,255,255,.64); font-size: 10px; line-height: 1.35; }
.case-public-metrics div { background: var(--paper-2); }
.case-public-metrics strong { color: var(--ink); }
.case-public-metrics span { color: var(--muted); }
.case-learning { margin-top: 22px; padding: 17px 19px; border-left: 3px solid var(--orange); background: rgba(255,75,0,.055); color: var(--ink); }
.case-method .deliverable p { color: rgba(255,255,255,.7); }

@media (max-width: 940px) {
  .case-intro-copy h1 { max-width: 820px; }
  .case-campaign-facts { grid-template-columns: repeat(2,1fr); }
  .case-campaign-facts section:nth-child(2) { border-right: 0; }
  .case-campaign-facts section:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 686px) {
  .case-intro { padding: 112px 0 52px; }
  .case-intro-copy h1 { font-size: clamp(38px,11vw,56px); }
  .case-intro-actions { align-items: stretch; flex-direction: column; }
  .case-intro-actions .btn { width: 100%; }
  .combined-expertise { padding-top: 54px; padding-bottom: 60px; }
  .combined-expertise .h1 { font-size: 38px; }
  .case-selector-viewport { overflow-x: auto; padding: 2px 20px 12px; scrollbar-width: thin; scroll-snap-type: x proximity; }
  .case-selector-track { animation: none; }
  .case-selector-set[aria-hidden="true"] { display: none; }
  .case-selector-card { flex-basis: 218px; width: 218px; min-height: 132px; scroll-snap-align: start; }
  .case-execution-grid { grid-template-columns: 1fr; }
  .case-client-head { display: grid; }
  .case-client-identity { grid-template-columns: 112px minmax(0,1fr); gap: 18px; }
  .case-client-logo { width: 112px; }
  .case-client-head h2 { font-size: 25px; }
  .case-results,.case-public-metrics { grid-template-columns: repeat(2,1fr); }
  .case-results div:nth-child(2),.case-public-metrics div:nth-child(2) { border-right: 0; }
  .case-results div:nth-child(-n+2),.case-public-metrics div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 476px) {
  .case-study { padding: 22px 18px; }
  .case-client-identity { grid-template-columns: 1fr; }
  .case-client-logo,.case-client-logo-compact { width: 132px; height: 54px; }
  .case-campaign-facts { grid-template-columns: 1fr; }
  .case-campaign-facts section,.case-campaign-facts section:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .case-campaign-facts section:last-child { border-bottom: 0; }
  .case-results strong,.case-public-metrics strong { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .case-selector-viewport { overflow-x: auto; }
  .case-selector-track { animation: none; }
  .case-selector-set[aria-hidden="true"] { display: none; }
}

/* V3.19 — vrais logos et ajustements de lisibilité sur l’accueil */
.home .client-logo-dark { background: #081426; border-color: rgba(141,181,255,.22); }
.home .client-logo-dark img { filter: none; }
.home .statement .statement-overline { margin-bottom: 12px; font-size: 9px; letter-spacing: .13em; }
.home .statement-roles { grid-template-columns: minmax(0,1fr) 26px minmax(0,1fr); gap: 10px; margin-top: 28px; }
.home .statement-roles > div { min-height: 82px; padding: 15px 18px; }
.home .statement-roles span { margin-bottom: 7px; font-size: 8px; }
.home .statement-roles strong { font-size: 11px; line-height: 1.42; }
.home .statement-roles > i { width: 26px; height: 26px; font-size: 11px; }
.home .hero-actions .btn { min-height: 43px; padding-inline: 18px; font-size: 13px; }
.home .hero-assurance { gap: 8px; margin-top: 14px; }
.home .hero-assurance span { padding: 6px 9px; font-size: 10.5px; }
.home .hero-note { margin-top: 14px; font-size: 12px; }

@media (max-width: 686px) {
  .home .statement-roles { grid-template-columns: 1fr; gap: 8px; }
  .home .statement-roles > i { transform: rotate(90deg); justify-self: center; }
  .home .hero-actions .btn { min-height: 42px; font-size: 12.5px; }
}

/* V3.20 — système éditorial premium des pages internes */
body.internal-page:not(.home):not(.case-page) { --max: 1120px; }
body.internal-page .section { padding: clamp(62px,6.5vw,88px) 0; }
body.internal-page .section.dark { overflow: hidden; }
body.internal-page .section.dark::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -210px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,75,0,.13),transparent 68%);
  pointer-events: none;
}
body.internal-page .section.dark > .container { position: relative; z-index: 1; }

body.internal-page:not(.home):not(.case-page) .section .h2,
body.internal-page:not(.home):not(.case-page) .section-sm .h2 {
  font-size: clamp(30px,3.45vw,44px);
  line-height: 1.01;
  letter-spacing: -.052em;
  text-wrap: balance;
}

body.internal-page:not(.home):not(.case-page) .section-head {
  position: relative;
  grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr);
  gap: clamp(26px,4vw,52px);
  align-items: center;
  margin-bottom: 30px;
  padding: clamp(25px,3vw,36px);
  overflow: hidden;
  border: 1px solid rgba(10,16,32,.11);
  border-radius: 22px;
  background: linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,249,241,.78));
  box-shadow: 0 18px 48px rgba(10,16,32,.065);
}
body.internal-page:not(.home):not(.case-page) .section-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(25px,3vw,36px);
  width: 86px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg,var(--orange),var(--orange-2));
}
body.internal-page:not(.home):not(.case-page) .section-head .h2 { max-width: 720px; }
body.internal-page:not(.home):not(.case-page) .section-head > .lead {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 21px 22px 21px 25px;
  border: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 3px 0 var(--orange),0 10px 28px rgba(10,16,32,.055);
  color: #596476;
  font-size: 15px;
  line-height: 1.62;
}
body.internal-page:not(.home):not(.case-page) .dark .section-head {
  border-color: rgba(141,181,255,.18);
  background: linear-gradient(135deg,rgba(18,32,54,.92),rgba(10,21,38,.82));
  box-shadow: 0 24px 65px rgba(0,0,0,.24);
}
body.internal-page:not(.home):not(.case-page) .dark .section-head::before {
  background: linear-gradient(90deg,var(--green),#8db5ff);
}
body.internal-page:not(.home):not(.case-page) .dark .section-head > .lead {
  border: 0;
  background: rgba(4,12,25,.54);
  box-shadow: inset 3px 0 var(--green),0 12px 30px rgba(0,0,0,.17);
  color: rgba(255,255,255,.8);
}

body.internal-page:not(.home):not(.case-page) .section > .container.split {
  grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
  gap: 14px;
  align-items: stretch;
}
body.internal-page .section > .container.split > .reveal:first-child {
  position: relative;
  min-height: 100%;
  padding: clamp(25px,3vw,34px);
  overflow: hidden;
  border: 1px solid rgba(10,16,32,.11);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.94),rgba(255,248,239,.72));
  box-shadow: 0 18px 46px rgba(10,16,32,.06);
}
body.internal-page .section > .container.split > .reveal:first-child::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -105px;
  bottom: -110px;
  border: 1px solid rgba(255,75,0,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,75,0,.025);
  pointer-events: none;
}
body.internal-page .section.dark > .container.split > .reveal:first-child {
  border-color: rgba(141,181,255,.19);
  background: linear-gradient(145deg,rgba(20,35,58,.94),rgba(8,20,37,.82));
  box-shadow: 0 22px 56px rgba(0,0,0,.22);
}
body.internal-page .section > .container.split > .reveal:first-child .lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.65;
}
body.internal-page .section > .container.split > .reveal:first-child .btn { margin-top: 22px; }

body.internal-page .feature-list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  border: 0;
}
body.internal-page .feature-row {
  min-height: 164px;
  display: grid;
  grid-template-columns: 36px minmax(0,1fr);
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(10,16,32,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 32px rgba(10,16,32,.045);
  transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
body.internal-page .feature-row:hover {
  transform: translateY(-3px);
  border-color: rgba(255,75,0,.28);
  box-shadow: 0 17px 38px rgba(10,16,32,.075);
}
body.internal-page .feature-row:last-child:nth-child(odd) { grid-column: 1 / -1; }
body.internal-page .feature-row-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,75,0,.1);
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}
body.internal-page .feature-row h3 {
  margin: 4px 0 10px;
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: -.025em;
}
body.internal-page .feature-row p {
  grid-column: 2;
  margin: 0;
  color: #667184;
  font-size: 13px;
  line-height: 1.62;
}
body.internal-page .feature-list-dark .feature-row {
  border-color: rgba(141,181,255,.18);
  background: linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  box-shadow: 0 14px 36px rgba(0,0,0,.16);
}
body.internal-page .feature-list-dark .feature-row-num { background: rgba(101,230,166,.1); color: var(--green); }
body.internal-page .feature-list-dark .feature-row p { color: rgba(255,255,255,.68); }

body.internal-page .steps {
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}
body.internal-page .step,
body.internal-page .step.active {
  min-height: 178px;
  grid-template-columns: 40px minmax(0,1fr);
  gap: 14px;
  align-content: start;
  padding: 23px;
  border: 1px solid rgba(10,16,32,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.79);
  box-shadow: 0 12px 32px rgba(10,16,32,.045);
  opacity: 1;
  transform: none;
}
body.internal-page .step::before {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255,75,0,.1);
  font-size: 10px;
}
body.internal-page .step::after { display: none; }
body.internal-page .step h3 { margin: 5px 0 11px; font-size: 18px; line-height: 1.16; }
body.internal-page .step p { grid-column: 2; color: #667184; font-size: 13px; line-height: 1.62; }

body.internal-page .timeline.narrow {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}
body.internal-page .timeline::before { display: none; }
body.internal-page .timeline-item {
  min-height: 184px;
  grid-template-columns: 44px minmax(0,1fr);
  gap: 16px;
  align-content: start;
  padding: 23px;
  border: 1px solid rgba(10,16,32,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 32px rgba(10,16,32,.045);
}
body.internal-page .timeline-dot {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--night);
  color: var(--orange-2);
  font-size: 9px;
}
body.internal-page .timeline-content { padding-top: 3px; }
body.internal-page .timeline-content h3 { margin-bottom: 9px; font-size: 19px; line-height: 1.16; }
body.internal-page .timeline-content p { color: #667184; font-size: 13px; line-height: 1.62; }
body.internal-page .persona-tags span { background: rgba(255,75,0,.045); color: #596476; }

body.page-cold-call .deliverables,
body.page-cold-email .deliverables { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
body.page-methodologie .deliverables,
body.page-ressources .deliverables { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
body.internal-page .deliverable {
  position: relative;
  min-height: 180px;
  padding: 22px;
  overflow: hidden;
  border-color: rgba(141,181,255,.18);
  border-radius: 18px;
  background: linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  box-shadow: 0 15px 38px rgba(0,0,0,.16);
}
body.internal-page .deliverable::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--orange),transparent);
}
body.internal-page .deliverable span {
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid rgba(255,75,0,.24);
  border-radius: 999px;
  background: rgba(255,75,0,.08);
  color: var(--orange-2);
  font-size: 8px;
}
body.internal-page .deliverable h3 { margin: auto 0 9px; font-size: 17px; line-height: 1.18; }
body.internal-page .deliverable p { color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.58; }

body.page-about .statement {
  position: relative;
  padding: clamp(72px,8vw,108px) 0;
  overflow: hidden;
}
body.page-about .statement::before {
  content: "“";
  position: absolute;
  left: 7%;
  top: -40px;
  color: rgba(255,75,0,.16);
  font-size: 230px;
  font-weight: 900;
  line-height: 1;
}
body.page-about .statement .container { position: relative; z-index: 1; display: grid; place-items: center; text-align: center; }
body.page-about .statement p { max-width: 920px; font-size: clamp(32px,4.6vw,58px); line-height: 1.02; }
body.page-about .statement .muted-word { display: block; margin-top: 10px; color: rgba(255,255,255,.48); }
body.page-about .cards-3 { gap: 14px; }
body.page-about .problem-card {
  min-height: 230px;
  padding: 25px;
  border-radius: 19px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 14px 38px rgba(10,16,32,.055);
}
body.page-about .problem-card h3 { font-size: 19px; line-height: 1.18; }
body.page-about .problem-card p { font-size: 13px; line-height: 1.62; }

@media (max-width: 900px) {
  body.internal-page:not(.home):not(.case-page) .section-head,
  body.internal-page:not(.home):not(.case-page) .section > .container.split { grid-template-columns: 1fr; }
  body.internal-page:not(.home):not(.case-page) .section-head { gap: 18px; }
  body.internal-page:not(.home):not(.case-page) .section-head > .lead { max-width: 720px; }
  body.page-methodologie .deliverables,
  body.page-ressources .deliverables { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 686px) {
  body.internal-page .section { padding: 54px 0; }
  body.internal-page:not(.home):not(.case-page) .section-head { padding: 22px; border-radius: 18px; }
  body.internal-page:not(.home):not(.case-page) .section-head::before { left: 22px; }
  body.internal-page:not(.home):not(.case-page) .section-head > .lead { padding: 17px 18px 17px 21px; font-size: 14px; }
  body.internal-page .section > .container.split > .reveal:first-child { padding: 23px; border-radius: 18px; }
  body.internal-page .feature-list,
  body.internal-page .steps,
  body.internal-page .timeline.narrow,
  body.page-cold-call .deliverables,
  body.page-cold-email .deliverables,
  body.page-methodologie .deliverables,
  body.page-ressources .deliverables { grid-template-columns: 1fr; }
  body.internal-page .feature-row:last-child:nth-child(odd) { grid-column: auto; }
  body.internal-page .feature-row,
  body.internal-page .step,
  body.internal-page .step.active,
  body.internal-page .timeline-item,
  body.internal-page .deliverable { min-height: auto; }
  body.internal-page .deliverable h3 { margin-top: 34px; }
  body.page-about .cards-3 { grid-template-columns: 1fr; }
  body.page-about .problem-card { min-height: auto; }
  body.page-about .statement p { font-size: clamp(30px,10vw,43px); }
}

/* V3.21 — appels à l’action unifiés et plus premium */
.cta-panel {
  isolation: isolate;
  position: relative;
  padding: clamp(30px,4vw,48px);
  overflow: hidden;
  border: 1px solid rgba(141,181,255,.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%,rgba(255,75,0,.18),transparent 28%),
    linear-gradient(135deg,#101d31 0%,#07101f 72%);
  color: #fff;
  box-shadow: 0 24px 65px rgba(7,16,31,.18);
}
.cta-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  right: -115px;
  bottom: -160px;
  border: 1px solid rgba(255,106,0,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255,75,0,.035),0 0 0 88px rgba(255,75,0,.018);
}
.cta-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: clamp(30px,4vw,48px);
  width: 92px;
  height: 3px;
  border: 0;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg,var(--orange),var(--orange-2));
  box-shadow: none;
  animation: none;
  transform: none;
}
.home .cta-panel::after { animation: none; transform: none; }
.cta-panel .eyebrow,
.cta-panel .eyebrow-ink {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255,106,0,.25);
  border-radius: 999px;
  background: rgba(255,75,0,.09);
  color: var(--orange-2);
}
.cta-panel .h2 {
  position: relative;
  z-index: 1;
  max-width: 790px;
  color: #fff;
  font-size: clamp(31px,3.7vw,46px);
  line-height: 1;
  letter-spacing: -.052em;
  text-wrap: balance;
}
body:not(.home):not(.case-page) .section-sm .cta-panel .h2 {
  max-width: 790px;
  font-size: clamp(31px,3.7vw,46px);
}
.cta-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: end;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.cta-bottom p {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.65;
}
.cta-panel .btn-dark {
  min-height: 50px;
  padding-inline: 21px;
  border-color: var(--orange);
  background: var(--orange);
  color: var(--night);
  box-shadow: 0 12px 28px rgba(255,75,0,.28);
}
.cta-panel .btn-dark:hover {
  border-color: var(--orange-2);
  background: var(--orange-2);
  color: var(--night);
  transform: translateY(-2px);
}

.footer-cta {
  isolation: isolate;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 34px;
  align-items: center;
  margin-bottom: 42px;
  padding: clamp(27px,3vw,36px);
  overflow: hidden;
  border: 1px solid rgba(141,181,255,.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% -20%,rgba(101,230,166,.1),transparent 32%),
    linear-gradient(125deg,rgba(21,38,62,.96),rgba(8,19,35,.9));
  box-shadow: 0 22px 58px rgba(0,0,0,.22),inset 0 1px rgba(255,255,255,.035);
}
.footer-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: clamp(27px,3vw,36px);
  width: 76px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg,var(--green),#8db5ff);
}
.footer-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: 13%;
  top: -145px;
  border: 1px solid rgba(141,181,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(141,181,255,.018);
}
.footer-cta-copy { position: relative; z-index: 1; }
.footer-cta-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(101,230,166,.22);
  border-radius: 999px;
  background: rgba(101,230,166,.07);
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(27px,3.2vw,38px);
  line-height: 1;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.footer-cta p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.58;
}
.footer-cta .btn {
  position: relative;
  z-index: 1;
  min-width: 210px;
  min-height: 49px;
  justify-content: center;
}

@media (max-width: 820px) {
  .cta-bottom,
  .footer-cta { grid-template-columns: 1fr; align-items: start; }
  .cta-panel .btn,
  .footer-cta .btn { width: 100%; }
}

@media (max-width: 476px) {
  .cta-panel { padding: 25px 20px; border-radius: 19px; }
  .cta-panel::after { left: 20px; }
  .cta-panel .h2,
  body:not(.home):not(.case-page) .section-sm .cta-panel .h2 { font-size: clamp(29px,9.5vw,38px); }
  .cta-bottom { gap: 20px; margin-top: 24px; padding-top: 20px; }
  .footer-cta { margin-bottom: 34px; padding: 24px 19px; border-radius: 18px; }
  .footer-cta::before { left: 19px; }
  .footer-cta h2 { font-size: 29px; }
}
