/* ==========================================================================
   Zonik — pointage géolocalisé pour le gardiennage
   Palette dérivée du logo : navy #0D1B3E · teal #2EE6C8 · blanc cassé #F5F7FB
   ========================================================================== */

:root {
  --font-heading: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", "Roboto Mono", Menlo, monospace;
  --header-h: 68px;
  --radius: 12px;
  --radius-lg: 18px;
  --speed: 200ms;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

[data-theme="light"] {
  --bg: #F5F7FB;
  --surface: #FFFFFF;
  --surface-2: #EBF0F8;
  --ink: #0D1B3E;
  --ink-soft: #43526F;
  --line: #DBE2EE;
  --accent: #2EE6C8;
  --accent-ink: #0A7463;          /* teal lisible sur fonds clairs (≥ 4.5:1) */
  --accent-soft: rgba(46, 230, 200, 0.14);
  --btn-primary-ink: #07271F;
  --logo-pin: #0D1B3E;
  --logo-face: #FFFFFF;
  --shadow-card: 0 1px 2px rgba(13, 27, 62, 0.05), 0 14px 34px -18px rgba(13, 27, 62, 0.18);
  --shadow-pop: 0 8px 30px -10px rgba(13, 27, 62, 0.28);
  --header-bg: rgba(245, 247, 251, 0.86);
  /* bande sombre (section téléchargement) */
  --band-bg: #0D1B3E;
  --band-surface: rgba(255, 255, 255, 0.06);
  --band-ink: #EEF3FA;
  --band-ink-soft: #B4C1DA;
  --band-line: rgba(180, 193, 218, 0.22);
  --band-accent-ink: #2EE6C8;
}

[data-theme="dark"] {
  --bg: #070D1F;
  --surface: #0D1730;
  --surface-2: #131F3D;
  --ink: #EEF3FA;
  --ink-soft: #A9B6D1;
  --line: rgba(169, 182, 209, 0.18);
  --accent: #2EE6C8;
  --accent-ink: #2EE6C8;
  --accent-soft: rgba(46, 230, 200, 0.12);
  --btn-primary-ink: #07271F;
  --logo-pin: #16264F;
  --logo-face: #F2F6FC;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 40px -20px rgba(0, 0, 0, 0.55);
  --shadow-pop: 0 10px 34px -12px rgba(0, 0, 0, 0.6);
  --header-bg: rgba(7, 13, 31, 0.82);
  --band-bg: #0A1329;
  --band-surface: rgba(255, 255, 255, 0.05);
  --band-ink: #EEF3FA;
  --band-ink-soft: #A9B6D1;
  --band-line: rgba(169, 182, 209, 0.18);
  --band-accent-ink: #2EE6C8;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5.8vw, 3.7rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; line-height: 1.3; }
p { margin: 0 0 1em; }

a { color: var(--accent-ink); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

::selection { background: var(--accent); color: #07271F; }

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

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  vertical-align: -0.18em;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(4.25rem, 9vw, 7rem) 0; }

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--speed) var(--ease);
}
.skip-link:focus-visible { top: 0; }

/* Micro-labels GPS — motif signature dérivé du logo */
.geo-label, .geo-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow__num { opacity: 0.55; }
.eyebrow .geo-tag {
  text-transform: none;
  border-left: 1px solid var(--line);
  padding-left: 0.7rem;
  font-weight: 400;
}

/* ---------- Animations d'apparition (activées seulement si JS) ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 11px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--speed) var(--ease), background-color var(--speed) var(--ease),
              border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease),
              color var(--speed) var(--ease);
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--accent);
  color: var(--btn-primary-ink);
  box-shadow: 0 6px 20px -8px rgba(46, 230, 200, 0.55);
}
.btn--primary:hover { background: #25CFB3; transform: translateY(-1px); }

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--accent-ink); color: var(--accent-ink); transform: translateY(-1px); }

.btn--whatsapp {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.btn--whatsapp .icon { color: var(--accent-ink); }
.btn--whatsapp:hover { border-color: var(--accent-ink); transform: translateY(-1px); }

.btn--sm { min-height: 44px; padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px -18px rgba(13, 27, 62, 0.4); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { width: 34px; height: 36px; flex: none; }
.brand__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 9px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--speed) var(--ease), background-color var(--speed) var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }

/* « Espace client » : bouton dans le header sur desktop, entrée de menu sur mobile */
.nav .nav__espace { display: none; color: var(--accent-ink); font-weight: 600; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}
.nav + .header__actions { margin-left: 0; }

.theme-toggle, .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.theme-toggle:hover, .menu-toggle:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.theme-toggle .icon, .menu-toggle .icon { width: 20px; height: 20px; }

[data-theme="light"] .icon--sun { display: none; }
[data-theme="dark"] .icon--moon { display: none; }

.menu-toggle { display: none; }
.menu-toggle .icon--close { display: none; }
.menu-toggle[aria-expanded="true"] .icon--menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon--close { display: block; }

@media (max-width: 919px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 4vw 1.2rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-pop);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease), visibility 0s linear var(--speed);
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
  }
  .nav a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav .nav__espace { display: block; }
  .header__login { display: none; }
}
@media (max-width: 559px) {
  .header__cta { display: none; }
}

/* ---------- Héros ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
}

.hero__inner {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

.hero h1 { max-width: 15ch; margin-bottom: 0.5em; }
.hero h1 em {
  font-style: normal;
  color: var(--accent-ink);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 100% 0.14em;
  background-position: 0 92%;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero__note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
}

/* Cercles de géofence — motif signature */
.hero__rings {
  position: absolute;
  top: 50%;
  right: -160px;
  width: 0;
  height: 0;
  pointer-events: none;
}
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed var(--accent);
  border-radius: 50%;
}
.ring--1 { width: 420px; height: 420px; opacity: 0.30; }
.ring--2 { width: 640px; height: 640px; opacity: 0.16; }
.ring--3 { width: 880px; height: 880px; opacity: 0.08; }
.ring__dot {
  position: absolute;
  top: -210px;
  left: -46px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}
@media (max-width: 1023px) {
  .hero__rings { top: auto; bottom: -80px; right: -220px; }
  .ring--3 { display: none; }
}

.geo-label { position: absolute; opacity: 0.75; }
.geo-label--tl { top: 1.4rem; left: 4vw; }
.geo-label--br { bottom: 1.4rem; right: 4vw; }

/* Mockup téléphone (pur CSS) */
.hero__visual {
  position: relative;
  justify-self: center;
}

.phone {
  position: relative;
  width: min(310px, 82vw);
  border: 10px solid var(--logo-pin);
  border-radius: 44px;
  background: var(--logo-pin);
  box-shadow: var(--shadow-pop);
}
[data-theme="dark"] .phone { border-color: #1B2A52; background: #1B2A52; }

.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 2;
}

.phone__screen {
  border-radius: 34px;
  background: var(--bg);
  padding: 1.9rem 1.1rem 1.3rem;
  display: grid;
  gap: 0.85rem;
  overflow: hidden;
}

.phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--ink-soft);
}
.phone__signal { display: inline-flex; align-items: center; gap: 0.35rem; }

.phone__appbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}
.phone__logo { width: 22px; height: 23px; }

.phone__site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  box-shadow: var(--shadow-card);
}
.phone__site-name { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.6rem;
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}
.chip--ok { background: var(--accent-soft); color: var(--accent-ink); }
.chip .icon { width: 0.9em; height: 0.9em; }

.phone__punch {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem 0;
}
.phone__punch-ring {
  position: absolute;
  width: 178px;
  height: 178px;
  border: 1.5px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}
@media (prefers-reduced-motion: no-preference) {
  .phone__punch-ring { animation: geofence-pulse 3.6s var(--ease) infinite; }
}
@keyframes geofence-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.07); opacity: 0.25; }
}

.phone__punch-btn {
  display: grid;
  place-items: center;
  gap: 0.2rem;
  width: 132px;
  height: 132px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--btn-primary-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 28px -10px rgba(46, 230, 200, 0.6);
  pointer-events: none;
}
.phone__punch-btn .icon { width: 26px; height: 26px; }

.phone__coords {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.phone__sync {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--surface-2);
  border-radius: 99px;
  padding: 0.5rem 0.8rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.phone__sync .icon { color: var(--accent-ink); }

.hero__toast {
  position: absolute;
  bottom: 118px;
  left: -46px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-pop);
}
.hero__toast .icon {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--btn-primary-ink);
  box-sizing: border-box;
}
.hero__toast strong { display: block; font-size: 0.85rem; font-family: var(--font-heading); }
.hero__toast span { font-size: 0.75rem; color: var(--ink-soft); white-space: nowrap; }
@media (max-width: 479px) {
  .hero__toast {
    position: relative;
    bottom: auto;
    left: auto;
    width: fit-content;
    margin: -24px auto 0;
  }
}

/* ---------- Le problème ---------- */

.problem { background: var(--surface); border-block: 1px solid var(--line); }
[data-theme="dark"] .problem { background: var(--surface); }

.problem__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.problem__head h2 { max-width: 24ch; }

.problem__list { display: grid; gap: 2.25rem; }

.problem__item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  max-width: 620px;
  padding-left: 1.4rem;
  border-left: 2px solid var(--line);
}
.problem__item h3 { margin-bottom: 0.35em; }
.problem__item p { margin: 0; color: var(--ink-soft); }

.problem__num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-ink);
  opacity: 0.9;
}

@media (min-width: 900px) {
  .problem__list {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem 0;
  }
  .problem__item { grid-column: 1 / 8; }
  .problem__item--offset { grid-column: 5 / 12; }
  .problem__item:last-child { grid-column: 2 / 9; }
}

/* ---------- La solution ---------- */

.solution__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.solution__grid { display: grid; gap: 1.4rem; }

.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.pillar:hover { transform: translateY(-3px); border-color: var(--accent-ink); }

.pillar__icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  box-sizing: border-box;
  margin-bottom: 1.1rem;
}
.pillar h3 { margin-bottom: 0.4em; }
.pillar p { margin: 0; color: var(--ink-soft); }
.pillar strong { color: var(--ink); }

.pillar--wide { display: grid; gap: 2rem; }

.pillar__illus {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
}
.pillar__fence {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1.5px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.55;
}
.pillar__pin {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.pillar__pin .icon { width: 18px; height: 18px; }
.pillar__pin--in {
  background: var(--accent);
  color: var(--btn-primary-ink);
  box-shadow: 0 6px 18px -6px rgba(46, 230, 200, 0.6);
}
.pillar__pin--out {
  position: absolute;
  top: 12px;
  right: 8%;
  background: transparent;
  border: 1.5px dashed var(--ink-soft);
  color: var(--ink-soft);
  opacity: 0.85;
}
.pillar__legend {
  position: absolute;
  bottom: 6px;
  right: 4%;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .solution__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar--wide { grid-column: 1 / -1; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); align-items: center; }
}

/* ---------- Fonctionnement ---------- */

.steps__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.steps__head h2 { max-width: 26ch; }

.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.5rem;
  counter-reset: step;
}
@media (min-width: 820px) {
  .steps__list { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.step { position: relative; padding-top: 0.4rem; }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--accent-ink);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}
.step__icon {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--ink);
  margin-bottom: 0.9rem;
  opacity: 0.9;
}
.step h3 { margin-bottom: 0.35em; }
.step p { margin: 0; color: var(--ink-soft); }

@media (min-width: 820px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 52px;
    right: -2.2rem;
    border-top: 1.5px dashed var(--line);
  }
}

/* ---------- Tarifs ---------- */

.pricing { background: var(--surface); border-block: 1px solid var(--line); }

.pricing__head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.pricing__intro { color: var(--ink-soft); max-width: 56ch; margin: 0; }
.pricing__intro strong { color: var(--ink); }

.pricing__grid { display: grid; gap: 1.4rem; align-items: start; }
@media (min-width: 940px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.plan:hover { transform: translateY(-3px); }

.plan h3 { margin-bottom: 0.1em; }
.plan__range { font-size: 0.875rem; color: var(--ink-soft); margin-bottom: 1.2rem; }

.plan__price {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.plan__price span { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; }
.plan__price small { display: block; font-size: 0.8125rem; font-weight: 400; color: var(--ink-soft); }

.plan__features {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  flex: 1;
}
.plan__features li { display: flex; gap: 0.6rem; align-items: baseline; }
.plan__features li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateY(-1px);
}

.plan--featured {
  background: var(--band-bg);
  border-color: transparent;
  box-shadow: var(--shadow-pop);
  --ink: var(--band-ink);
  --ink-soft: var(--band-ink-soft);
  --line: var(--band-line);
  --accent-ink: var(--band-accent-ink);
  color: var(--band-ink);
}
[data-theme="dark"] .plan--featured { border-color: rgba(46, 230, 200, 0.4); }

.plan__badge {
  position: absolute;
  top: -13px;
  left: 1.7rem;
  margin: 0;
  padding: 0.3rem 0.8rem;
  background: var(--accent);
  color: var(--btn-primary-ink);
  border-radius: 99px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pricing__payment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.2rem 0 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  text-align: center;
}
.pricing__payment .icon { color: var(--accent-ink); }
.pricing__payment strong { color: var(--ink); }

/* ---------- Téléchargement (bande sombre) ---------- */

.download {
  background: var(--band-bg);
  color: var(--band-ink);
  --ink: var(--band-ink);
  --ink-soft: var(--band-ink-soft);
  --line: var(--band-line);
  --accent-ink: var(--band-accent-ink);
  --surface: var(--band-surface);
}

.download__inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) {
  .download__inner { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 5rem; }
}

.download h2 { max-width: 22ch; }
.download__copy > p { color: var(--band-ink-soft); max-width: 54ch; }

.download__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0 1.6rem;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border: 1.5px dashed var(--band-line);
  border-radius: 11px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--band-ink-soft);
}

.download__note {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  max-width: 58ch;
  margin: 0;
  font-size: 0.875rem;
  color: var(--band-ink-soft);
}
.download__note .icon { margin-top: 0.2em; color: var(--band-accent-ink); }

.download__specs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.download__specs li {
  display: grid;
  gap: 0.15rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--band-line);
}
.download__specs li:last-child { border-bottom: 1px solid var(--band-line); }
.download__specs strong { font-family: var(--font-heading); font-size: 1.05rem; }
.download__specs span { font-size: 0.9rem; color: var(--band-ink-soft); }

/* ---------- Contact ---------- */

.contact__inner { display: grid; gap: 3rem; }
@media (min-width: 960px) {
  .contact__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 5rem; align-items: start; }
}

.contact__copy h2 { max-width: 20ch; }
.contact__copy > p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.8rem; }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
}

.field { grid-column: 1 / -1; }
@media (min-width: 560px) {
  .field--half { grid-column: span 1; }
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.field__optional { font-weight: 400; color: var(--ink-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); opacity: 0.7; }

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact__form .btn { grid-column: 1 / -1; margin-top: 0.3rem; }

.contact__privacy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Aussi adapté à ---------- */

.sectors {
  border-top: 1px solid var(--line);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.sectors__inner { display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 900px) {
  .sectors__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; }
}

.sectors__copy .eyebrow { margin-bottom: 0.45rem; }
.sectors__intro {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40ch;
  text-wrap: balance;
}

.sectors__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem 1.6rem;
}
.sectors__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
}
.sectors__list .icon {
  width: 20px;
  height: 20px;
  color: var(--accent-ink);
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
  background: var(--surface);
}

.footer__inner {
  display: grid;
  gap: 2rem;
}
@media (min-width: 820px) {
  .footer__inner { grid-template-columns: auto 1fr auto; align-items: center; }
}

.footer__brand { display: flex; align-items: center; gap: 0.7rem; }
.footer__brand .brand__mark { width: 38px; height: 40px; }
.footer__brand p { margin: 0; font-size: 0.8125rem; color: var(--ink-soft); }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.4rem;
}
@media (min-width: 820px) { .footer__nav { justify-content: center; } }
.footer__nav a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--accent-ink); text-decoration: underline; }

.footer__meta { font-size: 0.8125rem; color: var(--ink-soft); }
.footer__meta p { margin: 0.15em 0; }
.footer__tagline span { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.12em; }
