/* Workshare landing — V3 moderne, statique pour serveur PHP/Apache.
   Adapté du prototype Claude Design. Palette : navy #0F2747, vert alpin #5C7A52. */

:root {
  --w-bg: #f4f4f0;
  --w-fg: #0F2747;
  --w-fg-muted: #5a6470;
  --w-primary: #0F2747;
  --w-on-primary: #fff;
  --w-card-bg: #fff;
  --w-border: #d8d8c8;
  --w-eyebrow: #5C7A52;
  --w-accent: #5C7A52;
  --w-copper: #B87333;
  --w-radius: 8px;
  --w-radius-lg: 12px;

  --m-bg: #f4f4f0;
  --m-land: #e6e6dc;
  --m-border: #cdcdb8;
  --m-dotB: #0F2747;
  --m-dotC: #5C7A52;
  --m-label: #5a6470;
  --m-title: #0F2747;
  --m-accent: #5C7A52;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--w-bg);
  color: var(--w-fg);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; }

img { max-width: 100%; display: block; }

.ws-mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
}

.ws-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 48px; }
.ws-section { padding: 96px 0; }

.ws-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w-eyebrow);
  display: inline-flex; align-items: center; gap: 8px;
}
.ws-eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--w-eyebrow);
}

.ws-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--w-radius);
  font-weight: 600; font-size: 15px; cursor: pointer; border: 0;
  font-family: inherit;
  transition: transform .12s, background .12s, box-shadow .12s, opacity .12s;
}
.ws-btn:hover { transform: translateY(-1px); }
.ws-btn-primary { background: var(--w-primary); color: var(--w-on-primary); }
.ws-btn-accent  { background: var(--w-accent);  color: var(--w-on-primary); }
.ws-btn-ghost   { background: transparent; color: var(--w-fg); padding: 10px 14px; }
.ws-btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.ws-btn-light { background: #fff; color: var(--w-primary); }

/* ========== NAV ========== */
.v3-nav {
  padding: 16px 0; background: var(--w-bg);
  border-bottom: 1px solid var(--w-border);
  position: sticky; top: 0; z-index: 50;
}
.v3-nav-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.v3-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; color: var(--w-primary);
  letter-spacing: -0.02em;
}
.v3-logo-mark {
  width: 28px; height: 28px;
  background: var(--w-primary); border-radius: 6px;
  position: relative; flex-shrink: 0;
}
.v3-logo-mark::before {
  content: ""; position: absolute; inset: 6px;
  background: var(--w-accent); border-radius: 50%;
}
.v3-nav-links {
  display: flex; gap: 24px; font-size: 14px;
  color: #1A1A1A; font-weight: 500;
}
.v3-nav-links a:hover { color: var(--w-accent); }
.v3-nav-cta { padding: 10px 18px; font-size: 14px; }
.v3-nav-toggle {
  display: none; background: transparent; border: 1px solid var(--w-border);
  border-radius: 8px; padding: 8px 12px; cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--w-primary);
}

/* ========== HERO ========== */
.v3-hero { padding: 80px 0 64px; }
.v3-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  background: #fff; border: 1px solid var(--w-border);
  font-size: 12px; font-weight: 600; color: var(--w-primary);
  margin-bottom: 32px;
}
.v3-hero-tag b {
  background: var(--w-accent); color: white; padding: 4px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
.v3-hero h1 {
  font-size: 88px; font-weight: 800; line-height: 0.95;
  letter-spacing: -0.04em; color: var(--w-primary);
  max-width: 1000px;
}
.v3-hero h1 em { font-style: normal; color: var(--w-accent); }
.v3-hero-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end; margin-top: 48px;
}
.v3-hero-lede {
  font-size: 19px; color: #2a3a4a; line-height: 1.55;
  max-width: 540px;
}
.v3-hero-cta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-top: 28px;
}
.v3-hero-cta-primary { background: var(--w-accent); padding: 16px 28px; font-size: 16px; }
.v3-hero-aside {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.v3-hero-card {
  background: #fff; border: 1px solid var(--w-border);
  border-radius: 12px; padding: 20px;
}
.v3-hero-card-k {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--w-accent);
  margin-bottom: 8px;
}
.v3-hero-card-v {
  font-size: 22px; font-weight: 700; color: var(--w-primary);
  line-height: 1.2; letter-spacing: -0.02em;
}
.v3-hero-card-s {
  font-size: 12px; color: var(--w-fg-muted); margin-top: 6px; line-height: 1.4;
}

/* ========== MARQUEE ========== */
.v3-marquee {
  background: var(--w-primary); color: var(--w-bg);
  padding: 14px 0; overflow: hidden;
}
.v3-marquee-inner {
  display: flex; gap: 48px; white-space: nowrap;
  animation: v3marq 40s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.04em;
  width: max-content;
}
.v3-marquee-inner span {
  display: inline-flex; gap: 8px; align-items: center;
}
.v3-marquee-inner span::before { content: "●"; color: var(--w-accent); }
@keyframes v3marq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .v3-marquee-inner { animation: none; }
}

/* ========== TITRES SECTIONS ========== */
.v3-h2 {
  font-size: 56px; font-weight: 800; max-width: 800px;
  color: var(--w-primary); line-height: 1.05; letter-spacing: -0.03em;
  margin-top: 16px;
}
.v3-h2 em { font-style: normal; color: var(--w-accent); }
.v3-sub {
  font-size: 18px; color: #2a3a4a; max-width: 600px;
  margin-top: 16px; line-height: 1.55;
}

/* ========== MAP ========== */
.ws-gmap {
  background: var(--w-card-bg); border: 1px solid var(--w-border);
  border-radius: var(--w-radius-lg); padding: 24px;
}
.ws-map-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 16px;
}
.ws-map-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--m-label); margin-bottom: 6px;
}
.ws-map-title {
  font-size: 22px; font-weight: 600; color: var(--m-title);
}
.ws-map-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.ws-seg {
  display: inline-flex; padding: 3px; background: var(--m-bg);
  border: 1px solid var(--m-border); border-radius: 8px; gap: 0;
}
.ws-seg button {
  padding: 6px 12px; border: 0; background: transparent;
  font-size: 12px; font-weight: 500; color: var(--m-label);
  border-radius: 6px; cursor: pointer; font-family: inherit;
}
.ws-seg button[data-on="true"] {
  background: var(--m-accent); color: white; font-weight: 600;
}
.ws-seg-sm button { font-size: 11px; padding: 6px 10px; }

.ws-pill {
  font-size: 10px; padding: 3px 8px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.04em; flex-shrink: 0;
}
.ws-pill-b {
  background: color-mix(in oklab, var(--m-dotB) 18%, transparent);
  color: var(--m-dotB);
}
.ws-pill-c {
  background: color-mix(in oklab, var(--m-dotC) 18%, transparent);
  color: var(--m-dotC);
}

.ws-gmap-body {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 20px;
  margin-top: 16px;
}
.ws-gmap-list {
  display: flex; flex-direction: column; gap: 6px;
  max-height: 540px; overflow-y: auto; padding-right: 4px;
}
.ws-gmap-list::-webkit-scrollbar { width: 6px; }
.ws-gmap-list::-webkit-scrollbar-thumb {
  background: var(--m-border); border-radius: 3px;
}
.ws-gmap-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px; border: 1px solid transparent; border-radius: 10px;
  background: transparent; cursor: pointer; font-family: inherit;
  text-align: left; width: 100%;
  transition: background .15s, border-color .15s;
}
.ws-gmap-row:hover { background: var(--m-bg); }
.ws-gmap-row[data-on="true"] {
  background: var(--m-bg); border-color: var(--m-accent);
}
.ws-gmap-pin {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  margin-top: 5px; box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.ws-gmap-pin.b { background: var(--m-dotB); }
.ws-gmap-pin.c { background: var(--m-dotC); }
.ws-gmap-row-main { flex: 1; min-width: 0; }
.ws-gmap-row-top {
  display: flex; justify-content: space-between;
  align-items: center; gap: 8px; margin-bottom: 4px;
}
.ws-gmap-row-name {
  font-weight: 600; font-size: 14px; color: var(--m-title);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ws-gmap-row-meta {
  font-size: 12px; color: var(--m-label); margin-bottom: 6px; line-height: 1.4;
}
.ws-gmap-row-foot {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--m-label);
}
.ws-gmap-pane { display: flex; flex-direction: column; gap: 12px; }
.ws-gmap-iframe-wrap {
  position: relative; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--m-border); height: 380px; background: var(--m-bg);
}
.ws-gmap-iframe-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
  pointer-events: none; filter: saturate(0.85) contrast(0.95);
}
.ws-gmap-pins { position: absolute; inset: 0; pointer-events: none; }
.ws-gmap-overpin {
  position: absolute; transform: translate(-50%, -50%);
  width: 22px; height: 22px; padding: 0; border: 0;
  background: transparent; cursor: pointer;
  pointer-events: auto; z-index: 1;
}
.ws-gmap-overpin.is-sel,
.ws-gmap-overpin.is-hov { z-index: 3; }
.ws-gmap-overpin-dot {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3),
              0 0 0 2px rgba(0,0,0,0.08);
  transition: transform .15s, box-shadow .15s;
}
.ws-gmap-overpin.b .ws-gmap-overpin-dot { background: var(--m-dotB); }
.ws-gmap-overpin.c .ws-gmap-overpin-dot { background: var(--m-dotC); }
.ws-gmap-overpin.is-hov .ws-gmap-overpin-dot {
  transform: translate(-50%, -50%) scale(1.25);
}
.ws-gmap-overpin.is-sel .ws-gmap-overpin-dot {
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,255,255,0.6);
}
.ws-gmap-overpin-tip {
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  background: #0F2747; color: #fff; padding: 8px 12px;
  border-radius: 6px; font-size: 11px; line-height: 1.45;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  display: none; flex-direction: column; gap: 2px;
  pointer-events: none;
}
.ws-gmap-overpin.is-sel .ws-gmap-overpin-tip,
.ws-gmap-overpin.is-hov .ws-gmap-overpin-tip { display: flex; }
.ws-gmap-overpin-tip::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #0F2747;
}
.ws-gmap-overpin-tip strong { font-size: 12px; font-weight: 700; }
.ws-gmap-overpin-tip em { font-style: normal; opacity: 0.7; font-size: 10px; }
.ws-gmap-overpin-tip .ws-mono { opacity: 0.85; font-size: 10px; }
.ws-gmap-attr {
  position: absolute; bottom: 6px; right: 6px;
  font-size: 10px; color: rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.85); padding: 2px 6px;
  border-radius: 4px; pointer-events: none;
}
.ws-gmap-detail {
  background: var(--m-bg); border: 1px solid var(--m-border);
  border-radius: 10px; padding: 18px;
}
.ws-gmap-detail-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.ws-gmap-detail-name {
  font-weight: 700; font-size: 16px; color: var(--m-title);
}
.ws-gmap-detail-meta {
  font-size: 12px; color: var(--m-label); margin-top: 2px;
}
.ws-gmap-detail-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; padding: 12px 0;
  border-top: 1px solid var(--m-border);
  border-bottom: 1px solid var(--m-border);
  margin-bottom: 14px;
}
.ws-mc-k {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--m-label); margin-bottom: 2px;
}
.ws-mc-v {
  font-size: 13px; font-weight: 600; color: var(--m-title);
}
.ws-map-cta {
  width: 100%; padding: 10px; border: 0; border-radius: 7px;
  background: var(--m-accent); color: white; font-weight: 600;
  font-size: 13px; cursor: pointer; font-family: inherit;
}
.ws-gmap-foot {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--m-border);
}
.ws-gmap-legend {
  display: flex; gap: 16px; font-size: 11px; color: var(--m-label);
}
.ws-gmap-legend i {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; margin-right: 5px; vertical-align: middle;
}
.ws-gmap-foot-note {
  font-size: 11px; color: var(--m-label);
  max-width: 480px; line-height: 1.5;
}

/* ========== STEPS ========== */
.v3-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.v3-step {
  background: #fff; border-radius: 14px;
  padding: 32px; border: 1px solid var(--w-border);
  position: relative; overflow: hidden;
}
.v3-step::before {
  content: ""; position: absolute; top: 0; left: 0;
  height: 3px; width: 60px; background: var(--w-accent);
}
.v3-step-n {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--w-accent); font-weight: 700; letter-spacing: 0.08em;
}
.v3-step h3 {
  font-size: 24px; font-weight: 700; color: var(--w-primary);
  margin: 32px 0 10px; letter-spacing: -0.01em;
}
.v3-step p {
  font-size: 15px; color: #2a3a4a; line-height: 1.6;
}

/* ========== CANAL B ========== */
.v3-canalb {
  background: var(--w-primary); color: var(--w-bg);
  padding: 96px 0;
}
.v3-canalb h2 {
  color: #fff; font-size: 56px; max-width: 720px;
  letter-spacing: -0.03em; line-height: 1.05;
  font-weight: 800;
}
.v3-canalb h2 em { font-style: normal; color: var(--w-accent); }
.v3-canalb-lede {
  color: #c5d0dd; font-size: 17px; max-width: 600px;
  margin: 24px 0 56px; line-height: 1.55;
}
.v3-canalb-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: start;
}
.v3-flow-svg {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 32px;
}
.v3-flow-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; align-items: center;
}
.v3-flow-actor {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 18px;
}
.v3-flow-actor.center {
  background: var(--w-accent); border: 0;
  grid-column: 1 / -1; text-align: center;
  margin: 12px 0;
}
.v3-flow-actor-r {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--w-accent); margin-bottom: 6px;
}
.v3-flow-actor.center .v3-flow-actor-r { color: rgba(255,255,255,0.85); }
.v3-flow-actor h4 {
  color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px;
}
.v3-flow-actor p {
  color: #c5d0dd; font-size: 13px; line-height: 1.45;
}
.v3-flow-actor.center p {
  color: rgba(255,255,255,0.92); font-size: 13px;
}
.v3-flow-conn {
  display: flex; flex-direction: column; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--w-accent); letter-spacing: 0.04em; padding: 6px;
}
.v3-canalb-side {
  display: flex; flex-direction: column; gap: 16px;
}
.v3-cb {
  background: rgba(92,122,82,0.1); border-left: 3px solid var(--w-accent);
  padding: 18px 20px; border-radius: 0 10px 10px 0;
}
.v3-cb h4 {
  color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px;
}
.v3-cb p {
  color: #c5d0dd; font-size: 13px; line-height: 1.5;
}
.v3-cb-copper {
  background: rgba(184,115,51,0.1); border-color: var(--w-copper);
}

/* ========== PILOTS ========== */
.v3-pilots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--w-border); border: 1px solid var(--w-border);
  border-radius: 12px; overflow: hidden;
}
.v3-pilot {
  background: #fff; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.v3-pilot-quote {
  font-size: 17px; color: var(--w-primary); line-height: 1.45;
  font-weight: 600; letter-spacing: -0.01em; flex: 1;
}
.v3-pilot-quote::before {
  content: "\201C"; color: var(--w-accent);
  font-size: 32px; font-weight: 700;
  display: block; line-height: 0.5; margin-bottom: 14px;
}
.v3-pilot-attr {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid #ecece0;
}
.v3-pilot-photo-mini {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg, #5C7A52, #2c4423); flex-shrink: 0;
}
.v3-pilot-attr-name {
  font-weight: 700; font-size: 14px; color: var(--w-primary);
}
.v3-pilot-attr-meta {
  font-size: 12px; color: var(--w-fg-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ========== TRUST STRIP ========== */
.v3-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 48px;
  background: #fff; border: 1px solid var(--w-border);
  border-radius: 12px; overflow: hidden;
}
.v3-trust-item {
  padding: 28px; border-right: 1px solid #ecece0;
}
.v3-trust-item:last-child { border-right: 0; }
.v3-trust-k {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--w-accent); margin-bottom: 8px;
}
.v3-trust-v {
  font-size: 16px; color: var(--w-primary); line-height: 1.4; font-weight: 600;
}

/* ========== FAQ ========== */
.v3-faq-section {
  background: #fff;
  border-top: 1px solid var(--w-border);
  border-bottom: 1px solid var(--w-border);
}
.v3-faq-container { max-width: 820px; }
.ws-faq-list { margin-top: 32px; }
.ws-faq-item { border-bottom: 1px solid var(--w-border); }
.ws-faq-q {
  width: 100%; padding: 22px 0; background: transparent;
  border: 0; cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; text-align: left; color: var(--w-fg);
  font-size: 17px; font-weight: 500;
}
.ws-faq-q-icon {
  width: 22px; height: 22px; border: 1.5px solid currentColor;
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; font-size: 14px; transition: transform .2s;
  flex-shrink: 0; opacity: 0.6;
}
.ws-faq-item[data-open="true"] .ws-faq-q-icon { transform: rotate(45deg); }
.ws-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  color: var(--w-fg-muted); font-size: 15px; line-height: 1.7;
  padding: 0 60px 0 0;
}
.ws-faq-item[data-open="true"] .ws-faq-a {
  max-height: 400px; padding: 0 60px 24px 0;
}

/* ========== FORM ========== */
.v3-form-section {
  background: var(--w-primary); color: var(--w-bg);
  border-radius: 24px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.v3-form-section h2 {
  color: #fff; font-size: 48px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05;
  margin-top: 16px;
}
.v3-form-section h2 em { font-style: normal; color: var(--w-accent); }
.v3-form-section p {
  color: #c5d0dd; font-size: 16px; line-height: 1.6; margin-top: 16px;
}
.v3-form-bullets {
  list-style: none; padding: 0; margin-top: 24px;
  font-size: 14px; color: #c5d0dd;
}
.v3-form-bullets li { padding: 6px 0; }

.v3-form input,
.v3-form select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px; font-family: inherit; font-size: 15px;
  background: rgba(255,255,255,0.06); color: #fff;
}
.v3-form input::placeholder { color: rgba(255,255,255,0.5); }
.v3-form select { appearance: none; -webkit-appearance: none; }
.v3-form select option { color: #1a1a1a; background: #fff; }
.v3-form input:focus,
.v3-form select:focus {
  outline: none; border-color: var(--w-accent);
  background: rgba(255,255,255,0.1);
}
.v3-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.v3-form-grid > .v3-full { grid-column: 1 / -1; }
.v3-form-cta {
  width: 100%; margin-top: 16px; padding: 16px;
  background: var(--w-accent); color: white;
  border: 0; border-radius: 8px; font-weight: 700;
  font-size: 16px; cursor: pointer; font-family: inherit;
  transition: background .15s, opacity .15s;
}
.v3-form-cta:hover { background: #4a6342; }
.v3-form-cta:disabled { opacity: 0.6; cursor: progress; }
.v3-form-note {
  font-size: 11px; color: rgba(255,255,255,0.55);
  text-align: center; margin-top: 12px;
}
.v3-form-status {
  margin-top: 12px; padding: 12px 16px; border-radius: 8px;
  font-size: 14px; display: none;
}
.v3-form-status.is-ok {
  display: block;
  background: rgba(92,122,82,0.2); color: #c4e0b6;
  border: 1px solid var(--w-accent);
}
.v3-form-status.is-err {
  display: block;
  background: rgba(178,58,72,0.2); color: #f4c4c8;
  border: 1px solid #B23A48;
}

/* ========== FINAL CTA ========== */
.v3-final {
  padding: 80px 0; background: var(--w-accent); color: #fff;
}
.v3-final-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: center;
}
.v3-final h2 {
  font-size: 56px; font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: #fff;
}
.v3-final h2 .muted { opacity: 0.7; }
.v3-final p {
  font-size: 17px; margin-top: 16px; max-width: 540px;
  line-height: 1.55; color: rgba(255,255,255,0.9);
}
.v3-final-actions {
  display: flex; flex-direction: column; gap: 12px;
}
.v3-final-actions .ws-btn { padding: 18px 28px; font-size: 16px; }
.v3-final-note {
  font-size: 12px; color: rgba(255,255,255,0.7);
  text-align: center; margin-top: 8px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}

/* ========== FOOTER ========== */
.v3-foot {
  background: #0a1d36; color: #c5d0dd;
  padding: 56px 0 32px; font-size: 14px;
}
.v3-foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.v3-foot h5 {
  color: #fff; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 12px; font-weight: 700;
}
.v3-foot ul { list-style: none; padding: 0; margin: 0; }
.v3-foot li { padding: 4px 0; }
.v3-foot li a:hover { color: #fff; }
.v3-foot-about {
  max-width: 320px; line-height: 1.6; font-size: 14px;
}
.v3-foot-socials {
  display: flex; gap: 8px; margin-top: 20px;
}
.v3-foot-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #c5d0dd;
}
.v3-foot-socials a:hover {
  color: #fff; border-color: rgba(255,255,255,0.3);
}
.v3-foot-mini {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.v3-foot-mini-r { display: flex; gap: 16px; }
.v3-foot-mini-r .muted { opacity: 0.6; }

/* ========== CANAL D — PUBLIER UN BESOIN ========== */
.v3-need {
  background: #fff; border: 1px solid var(--w-border);
  border-radius: 14px; overflow: hidden; margin-top: 40px;
  display: grid; grid-template-columns: 1.05fr 1fr;
}
.v3-need-form {
  padding: 36px 40px; border-right: 1px solid #ecece0;
}
.v3-need-form-head {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 24px;
}
.v3-need-form-head h4 {
  font-size: 20px; font-weight: 700;
  color: var(--w-fg); letter-spacing: -0.01em;
}
.v3-need-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--w-bg); border: 1px solid var(--w-border);
  padding: 4px 10px; border-radius: 999px;
  color: var(--w-accent); font-weight: 700;
}
.v3-need-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.v3-need-grid > .v3-full { grid-column: 1 / -1; }
.v3-need-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--w-fg-muted);
  margin-bottom: 6px; display: block;
}
.v3-need-input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--w-border); border-radius: 8px;
  font-family: inherit; font-size: 14px; color: var(--w-fg);
  background: #fafaf6; box-sizing: border-box; line-height: 1.45;
}
.v3-need-input.v3-selectish {
  display: flex; align-items: center; justify-content: space-between;
}
.v3-need-input.v3-selectish::after {
  content: "\25BE"; color: var(--w-fg-muted); margin-left: 12px;
}
.v3-need-textarea { min-height: 64px; }
.v3-need-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.v3-need-chip {
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--w-border); background: #fafaf6;
  font-size: 12px; color: #2a3a4a; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: background .12s, color .12s, border-color .12s;
}
.v3-need-chip:hover { border-color: var(--w-fg); }
.v3-need-chip.on {
  background: var(--w-fg); color: #fff; border-color: var(--w-fg);
}
.v3-need-cta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid #ecece0;
}
.v3-need-submit {
  background: var(--w-accent); color: #fff; border: 0;
  padding: 14px 22px; border-radius: 8px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: inherit; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .12s, background .12s;
}
.v3-need-submit:hover {
  transform: translateY(-1px); background: #4d6845;
}
.v3-need-meta {
  font-size: 12px; color: var(--w-fg-muted); line-height: 1.5;
}
.v3-need-meta b { color: var(--w-fg); }
.v3-need-feed {
  background: #f9f9f3; padding: 36px 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.v3-need-feed-head {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 4px;
}
.v3-need-feed-head h5 {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--w-accent);
  font-weight: 700;
}
.v3-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--w-fg-muted); letter-spacing: 0.04em;
}
.v3-live::before {
  content: ""; width: 7px; height: 7px;
  background: var(--w-accent); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(92, 122, 82, 0.25);
  animation: v3pulse 1.6s ease-in-out infinite;
}
@keyframes v3pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.v3-need-card {
  background: #fff; border: 1px solid #e3e3d3;
  border-radius: 10px; padding: 16px 18px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 8px 14px;
}
.v3-need-card-h {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-family: 'JetBrains Mono', monospace;
  color: var(--w-fg-muted); letter-spacing: 0.04em;
}
.v3-need-card-h .v3-tag-b,
.v3-need-card-h .v3-tag-c {
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: 4px; letter-spacing: 0.08em; color: #fff;
}
.v3-need-card-h .v3-tag-b { background: var(--w-fg); }
.v3-need-card-h .v3-tag-c { background: var(--w-accent); }
.v3-need-card-t {
  font-size: 15px; font-weight: 700; color: var(--w-fg);
  letter-spacing: -0.01em; grid-column: 1 / -1;
}
.v3-need-card-m {
  font-size: 12px; color: var(--w-fg-muted); line-height: 1.5;
  grid-column: 1 / -1;
}
.v3-need-card-r {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--w-fg); font-weight: 700; text-align: right;
  align-self: start;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .ws-container { padding: 0 32px; }
  .v3-hero h1 { font-size: 64px; }
  .v3-h2 { font-size: 44px; }
  .v3-canalb h2 { font-size: 44px; }
  .v3-final h2 { font-size: 44px; }
  .v3-form-section { padding: 48px; gap: 48px; }
  .v3-form-section h2 { font-size: 36px; }

  .v3-hero-bottom { grid-template-columns: 1fr; gap: 40px; }
  .v3-canalb-grid { grid-template-columns: 1fr; gap: 32px; }
  .v3-need { grid-template-columns: 1fr; }
  .v3-need-form { border-right: 0; border-bottom: 1px solid #ecece0; }
  .ws-gmap-body { grid-template-columns: 1fr; }
  .ws-gmap-list { max-height: 300px; }
  .v3-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .ws-container { padding: 0 20px; }
  .ws-section { padding: 64px 0; }
  .v3-hero { padding: 56px 0 40px; }
  .v3-hero h1 { font-size: 44px; line-height: 1; }
  .v3-h2 { font-size: 32px; }
  .v3-canalb { padding: 64px 0; }
  .v3-canalb h2 { font-size: 32px; }
  .v3-final { padding: 56px 0; }
  .v3-final h2 { font-size: 32px; }
  .v3-final-grid { grid-template-columns: 1fr; gap: 32px; }
  .v3-form-section { grid-template-columns: 1fr; padding: 32px; gap: 32px; border-radius: 16px; }
  .v3-form-section h2 { font-size: 28px; }

  .v3-nav-links { display: none; }
  .v3-nav-cta { display: none; }
  .v3-nav-toggle { display: inline-flex; }
  .v3-nav.is-open .v3-nav-links {
    display: flex; flex-direction: column; gap: 12px;
    width: 100%; padding: 16px 0 8px; border-top: 1px solid var(--w-border);
  }
  .v3-nav.is-open .v3-nav-row { flex-wrap: wrap; }

  .v3-hero-aside { grid-template-columns: 1fr 1fr; }
  .v3-hero-card { padding: 16px; }
  .v3-hero-card-v { font-size: 18px; }
  .v3-steps { grid-template-columns: 1fr; }
  .v3-pilots { grid-template-columns: 1fr; }
  .v3-trust { grid-template-columns: 1fr 1fr; }
  .v3-trust-item { border-right: 0; border-bottom: 1px solid #ecece0; }
  .v3-trust-item:nth-child(2) { border-right: 0; }
  .v3-trust-item:last-child,
  .v3-trust-item:nth-last-child(2) { border-bottom: 0; }

  .v3-flow-row { grid-template-columns: 1fr; }
  .v3-flow-actor.center { grid-column: 1; }

  .ws-gmap { padding: 16px; }
  .ws-gmap-iframe-wrap { height: 320px; }
  .ws-gmap-detail-grid { grid-template-columns: 1fr 1fr; }

  .v3-form-grid { grid-template-columns: 1fr; }
  .v3-foot-grid { grid-template-columns: 1fr; gap: 32px; }

  .v3-need-form,
  .v3-need-feed { padding: 24px; }
  .v3-need-grid { grid-template-columns: 1fr; }
}
