/* SYGMA — simple, sombre, matériel type Apple */
:root {
  --void: #000000;
  --surface: #0a0a0a;
  --navy: #0b1d35;
  --ink: #f5f5f7;
  --muted: #a1a1a6;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #2997ff;
  --relief: #f5f5f7;
  --relief-ink: #1d1d1f;
  --relief-muted: #6e6e73;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --header: 72px;
  --shell: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 1600px) {
  :root { --shell: 1400px; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--display);
  color: var(--ink);
  background: var(--void);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font: inherit; }
blockquote { margin: 0; }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 300;
  background: var(--accent); color: #000; padding: 10px 14px; border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

/* Champ de points bleus — fond discret */
.dot-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(41, 151, 255, 0.4) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 10%, transparent 72%);
}

/* Taches bleues d’ancre — gauche / droite */
.glow-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.9;
  will-change: transform;
}
.orb-a {
  width: min(58vw, 580px);
  height: min(58vw, 580px);
  left: -14vw;
  top: 10vh;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.85) 0%, rgba(19, 88, 200, 0.45) 40%, transparent 72%);
}
.orb-b {
  width: min(54vw, 540px);
  height: min(54vw, 540px);
  right: -12vw;
  top: 52vh;
  background: radial-gradient(circle, rgba(70, 160, 255, 0.75) 0%, rgba(41, 151, 255, 0.35) 45%, transparent 74%);
}
.orb-c {
  width: min(48vw, 480px);
  height: min(48vw, 480px);
  left: -10vw;
  bottom: 6vh;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.7) 0%, rgba(30, 100, 220, 0.25) 50%, transparent 70%);
  opacity: 0.75;
}
.orb-d {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  right: -8vw;
  top: 6vh;
  background: radial-gradient(circle, rgba(90, 170, 255, 0.7) 0%, rgba(41, 151, 255, 0.25) 50%, transparent 72%);
  opacity: 0.7;
}

@media (prefers-reduced-motion: no-preference) {
  .orb-a { animation: orb-drift-a 18s ease-in-out infinite alternate; }
  .orb-b { animation: orb-drift-b 22s ease-in-out infinite alternate; }
}
@keyframes orb-drift-a {
  from { transform: translate(0, 0); }
  to { transform: translate(24px, 36px); }
}
@keyframes orb-drift-b {
  from { transform: translate(0, 0); }
  to { transform: translate(-20px, -28px); }
}

header, main, footer, .wa-float { position: relative; z-index: 1; }
.site-header { z-index: 100; }
.wa-float { z-index: 90; }

main { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.2);
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.site-header.is-solid { border-bottom-color: var(--line); }
.header-bar {
  height: 100%;
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { width: 108px; }
.brand img { width: 100%; height: auto; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative;
  font-size: 13px; font-weight: 500;
  color: rgba(245, 245, 247, 0.72);
  padding: 8px 12px;
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.is-active { color: #fff; }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-btn {
  margin-left: 8px;
  background: var(--accent);
  color: #000 !important;
  font-weight: 600;
  border-radius: 980px;
  padding: 8px 16px;
}
.nav-btn:hover { filter: brightness(1.08); }
.nav-btn.is-active::after { display: none; }

.burger {
  display: none; width: 40px; height: 40px; border: 0; background: transparent;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; padding: 10px;
}
.burger span { display: block; height: 1.5px; background: #fff; transition: .2s ease; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.lead {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 36ch;
  line-height: 1.45;
  margin-top: 14px;
}
h2 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  padding: 12px 22px;
  border-radius: 980px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent; color: var(--accent);
  border-color: rgba(41, 151, 255, 0.35);
}
.btn-ghost:hover { background: rgba(41, 151, 255, 0.1); }
.btn-navy { background: var(--relief-ink); color: #fff; width: 100%; border-radius: 12px; }
.btn-navy:hover { background: #000; }

.text-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 15px; font-weight: 600;
  color: var(--accent);
}
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Hero */
.beat-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header);
  text-align: center;
  overflow: hidden;
}
.hero-inner {
  max-width: 1040px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(245, 245, 247, 0.85);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  margin-bottom: clamp(28px, 4vh, 44px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.2);
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 6.2vw, 96px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.hero-em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.hero-sub {
  margin-top: clamp(22px, 3vh, 32px);
  font-size: clamp(1.05rem, 1.15vw, 1.3rem);
  line-height: 1.6;
  color: var(--muted);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: clamp(36px, 5vh, 52px);
}
.hero-actions .btn { gap: 8px; }

/* Pastilles flottantes — réparties autour du titre */
.hero-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 600;
  color: rgba(245, 245, 247, 0.9);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 980px;
  background: rgba(20, 20, 22, 0.72);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  animation: tag-float 7s ease-in-out infinite;
}
.tag-1 { left: 9%;  top: 26%; transform: rotate(-9deg);  animation-delay: 0s; }
.tag-2 { left: 14%; top: 62%; transform: rotate(6deg);   animation-delay: 1.2s; }
.tag-3 { right: 9%; top: 30%; transform: rotate(8deg);   animation-delay: 0.6s; }
.tag-4 { right: 15%; top: 58%; transform: rotate(-6deg); animation-delay: 1.8s; }
.tag-5 { left: 6%;  top: 44%; transform: rotate(3deg);   animation-delay: 2.4s; color: var(--accent); border-color: rgba(41, 151, 255, 0.4); }
.tag-6 { right: 5%; top: 44%; transform: rotate(-3deg);  animation-delay: 3s;   color: var(--accent); border-color: rgba(41, 151, 255, 0.4); }

@keyframes tag-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}
.beat-hero .eyebrow,
.beat-manifeste .eyebrow,
.materiel-intro .eyebrow {
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
}
.scroll-cue span {
  position: absolute; top: 7px; left: 50%;
  width: 3px; height: 7px; margin-left: -1.5px;
  border-radius: 2px; background: rgba(255, 255, 255, 0.55);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(10px); }
}

/* Manifeste */
.beat-manifeste {
  padding: 14vh 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.manifeste-inner { max-width: 720px; margin-inline: auto; }
.manifeste-quote {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin-inline: auto;
}
.manifeste-body {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 40ch;
}

/* Matériel — Apple-like */
.beat-materiel {
  padding: 10vh 0 12vh;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.materiel-intro {
  text-align: center;
  padding-bottom: 8vh;
}
.materiel-intro h2 { margin-inline: auto; }
.materiel-intro .lead { margin-inline: auto; }

.product-spotlight {
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto 6vh;
  background: #141414;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
}
.spotlight-media {
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  overflow: hidden;
}
.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.spotlight-copy {
  padding: 48px 32px 56px;
  max-width: 560px;
  margin-inline: auto;
}
.product-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.product-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.spotlight-copy h3 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}
.product-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .tile-media { aspect-ratio: 1 / 0.9; }
}
.product-tile {
  background: #141414;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.tile-media {
  aspect-ratio: 1 / 0.85;
  background: #1a1a1a;
  overflow: hidden;
}
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-tile:hover .tile-media img {
  transform: scale(1.04);
}
.tile-copy {
  padding: 36px 28px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tile-copy h3 { margin-bottom: 8px; }
.tile-copy p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 28ch;
}
.tile-copy .text-link { margin-top: 18px; }

.materiel-note {
  text-align: center;
  margin-top: 48px;
  color: var(--muted);
  font-size: 15px;
}
.materiel-note a {
  color: var(--accent);
  font-weight: 600;
}
.materiel-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Offre */
.beat-metier {
  padding: 14vh 0;
  border-top: 1px solid var(--line);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.pillar:not(:last-child) {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--line);
}
.pillar-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.pillar-num::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.18);
}
.pillar h3 { font-size: 26px; margin-bottom: 10px; }
.pillar p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 28ch;
}

/* Import */
.beat-import {
  padding: 12vh 0 14vh;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.process {
  margin: 40px 0 36px;
  max-width: 520px;
}
.process li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.process li:last-child { border-bottom: 1px solid var(--line); }
.process span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(41, 151, 255, 0.18);
}
.process strong { display: block; font-size: 19px; margin-bottom: 4px; }
.process p { color: var(--muted); font-size: 1rem; }

/* Entreprise */
.beat-entreprise {
  padding: 14vh 0 16vh;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--void) 100%);
}
.entreprise-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.entreprise-head .lead {
  margin-top: 18px;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.15rem;
  line-height: 1.65;
}
.entreprise-head strong {
  color: var(--ink);
  font-weight: 700;
}
.org-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.org-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.org-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 151, 255, 0.35);
}
.org-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.org-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 18ch;
}
.org-card-meta {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.org-card-id {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.org-card-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.org-card-link:hover {
  text-decoration: underline;
}
.org-card-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.org-card-map:hover {
  text-decoration: underline;
}

/* Contact — « Vous avez un projet en tête ? » */
.beat-contact {
  padding: 14vh 0 16vh;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header) + 40px);
}
.contact-title {
  font-size: clamp(40px, 4.5vw, 72px);
  margin-bottom: 8px;
}
.contact-intro .lead {
  max-width: 42ch;
  margin-top: 18px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 460px;
}

.channel-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.channel-card:hover {
  border-color: rgba(41, 151, 255, 0.45);
  background: #181818;
  transform: translateY(-2px);
}
.channel-card--wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), #141414 55%);
  border-color: rgba(37, 211, 102, 0.28);
}
.channel-card--wa:hover {
  border-color: rgba(37, 211, 102, 0.55);
}

.channel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(41, 151, 255, 0.18);
}
.channel-card--wa .channel-dot {
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
}

.channel-meta { display: grid; gap: 2px; min-width: 0; }
.channel-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.channel-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.channel-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.channel-card--wa .channel-action { color: #25d366; }

.contact-aside-note {
  margin-top: 8px;
  padding-left: 4px;
  font-size: 13px;
  color: var(--muted);
}

.form-panel {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 3vw, 48px);
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { position: relative; }
.field input,
.field textarea {
  width: 100%;
  padding: 22px 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #0a0a0a;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { min-height: 120px; }
.field label {
  position: absolute; left: 16px; top: 15px;
  color: var(--muted); font-size: 14px;
  pointer-events: none; transition: .15s ease;
}
.field label em {
  font-style: normal;
  opacity: 0.65;
  font-size: 12px;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(41, 151, 255, 0.55);
  background: #0d0d0d;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 7px; font-size: 11px; color: var(--accent);
}

.field-select label {
  position: static;
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  pointer-events: auto;
}
.field-select select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #0a0a0a;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a1a1a6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color .2s ease, background-color .2s ease;
}
.field-select select:focus {
  border-color: rgba(41, 151, 255, 0.55);
  background-color: #0d0d0d;
}
.btn-submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 22px;
  border-radius: 980px;
}
.form-status {
  min-height: 1.2em;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: grid;
  gap: 10px;
  align-content: start;
  font-size: 14px;
  color: var(--muted);
}
.footer-brand img {
  margin-bottom: 18px;
}
.footer-legal-name {
  color: var(--ink);
  font-weight: 700;
  max-width: 34ch;
  font-size: 1.05rem;
  line-height: 1.45;
}
.footer-address,
.footer-rccm,
.footer-tagline {
  line-height: 1.5;
}
.footer-tagline {
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}
.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: 14px;
}
.footer-col a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-bar {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 14px;
  font-size: 13px; color: var(--muted);
}

/* Pages légales */
.legal-page {
  padding: calc(var(--header) + 48px) 0 80px;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.legal-page .legal-meta {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 16px;
}
.legal-page a {
  color: var(--accent);
}
.legal-page a:hover {
  text-decoration: underline;
}
.legal-back {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 600;
  color: var(--ink);
}
.legal-back:hover {
  color: var(--accent);
}

.wa-float {
  position: fixed; z-index: 90;
  right: 20px; bottom: 20px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  border-radius: 50%;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.05); }

.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in, .reveal-up.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--header) 14px auto;
    display: none; flex-direction: column;
    padding: 14px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .nav.is-open { display: flex; }
  .nav-btn { margin-top: 8px; text-align: center; }

  .product-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar:not(:last-child) {
    border-right: 0; margin-right: 0; padding-right: 0;
  }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .field-row { grid-template-columns: 1fr; }
  .org-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-spotlight { border-radius: 20px; }
  .product-tile { border-radius: 20px; }
  .spotlight-copy { padding: 36px 24px 44px; }
  .beat-hero { text-align: center; }
  .hero-tags { display: none; }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .tag-1, .tag-2 { left: 3%; }
  .tag-3, .tag-4 { right: 3%; }
  .tag-5, .tag-6 { display: none; }
}

@media (max-width: 480px) {
  .shell { width: calc(100% - 32px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .wa-float { right: 14px; bottom: 14px; width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-up { opacity: 1; transform: none; }
  .product-tile:hover .tile-media img { transform: none; }
  .hero-tag { animation: none; }
}
