/* =====================================================================
   Talentia — landing de démonstration (site fictif)
   Conçue par Meridian Studio. Identité propre à la marque fictive :
   encre nuit, or, sable — serif d'affichage, sans-serif d'interface.
   ===================================================================== */

:root {
  --navy: #0E1420;
  --navy-2: #15203A;
  --navy-3: #1B2947;
  --ink: #141821;
  --body: #5A6373;
  --faint: #8A93A5;
  --line: #E8E4D9;
  --sand: #F7F4EC;
  --sand-2: #F2EEE2;
  --white: #FFFFFF;
  --gold: #C9A227;
  --gold-2: #E2B254;
  --gold-dark: #96700F;
  --green: #3E7A46;
  --green-bg: #EAF4EA;
  --red: #B4552D;
  --red-bg: #F9EEE9;
  --radius: 16px;
  --shadow: 0 18px 44px rgba(11, 18, 32, .12);
  --shadow-lg: 0 30px 70px rgba(11, 18, 32, .22);
  --wrap: 1140px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 0 0 10px 0; z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- Apparitions (visibles sans JavaScript) ---------- */
.js .rev { opacity: 0; transform: translateY(26px); }
.js .rev.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
@media (prefers-reduced-motion: reduce) {
  .js .rev { opacity: 1; transform: none; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(100deg, var(--gold), var(--gold-2));
  color: #14203A; font-weight: 700; font-size: .95rem;
  padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 162, 39, .35); }
.btn--sm { padding: 10px 22px; font-size: .875rem; }
.btn--ghost {
  background: none; color: #DCD6C4; border: 1px solid #46536F; font-weight: 600;
}
.btn--ghost:hover { box-shadow: none; border-color: #6B7A99; }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Titres & éléments communs ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark);
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.kicker--chip {
  border: 1px solid rgba(201, 162, 39, .4); background: rgba(201, 162, 39, .1);
  color: var(--gold-2); border-radius: 999px; padding: 7px 16px;
}
.kicker--chip::before { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); }

h1, h2, .quote p { font-family: var(--serif); font-weight: 400; line-height: 1.14; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); text-wrap: balance; }
h3 { font-size: 1.12rem; }

.s-head { max-width: 640px; margin-bottom: 54px; }
.s-head h2 { margin: 16px 0 14px; }
.s-head p { color: var(--body); font-size: 1.05rem; }

section { padding: 96px 0; }

/* =====================================================================
   Navigation
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.solid { background: rgba(13, 19, 31, .92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(255, 255, 255, .06); }
.nav__in { display: flex; align-items: center; gap: 34px; height: 76px; }

.brand { display: flex; align-items: center; gap: 11px; color: #F5F1E6; font-weight: 700; font-size: 1.1rem; }
.brand i {
  width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14203A; font-style: normal; font-weight: 800; display: grid; place-items: center; font-size: .95rem;
}
.brand small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .08em; color: #97A2BB; }

.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { color: #C9CFDD; font-size: .9rem; transition: color .15s; }
.nav__links a:hover { color: #fff; }

.burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: #F5F1E6; margin: 4px auto; border-radius: 2px; }

.mnav {
  position: fixed; inset: 0; z-index: 39; background: var(--navy);
  display: none; flex-direction: column; gap: 6px; padding: 110px 28px 40px;
}
.mnav.open { display: flex; }
.mnav a { color: #E8E4D9; font-size: 1.25rem; font-family: var(--serif); padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.mnav .btn { margin-top: 22px; border-bottom: 0; font-family: var(--sans); font-size: 1rem; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0D131F 0%, #131E33 55%, #1C2A47 100%);
  color: #F5F1E6;
  padding: 172px 0 120px;
}
.hero__arcs { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 56px; align-items: center; }

.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.25rem); margin: 26px 0 20px; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--gold-2); }
.hero__sub { color: #97A2BB; font-size: 1.08rem; max-width: 34rem; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 40px; }

.trust { display: flex; gap: 26px; flex-wrap: wrap; }
.trust li { display: flex; align-items: center; gap: 9px; color: #7C8AA5; font-size: .84rem; }
.trust i {
  width: 17px; height: 17px; border-radius: 50%; border: 1px solid rgba(201, 162, 39, .5);
  background: #1D2B47; display: grid; place-items: center; font-style: normal;
}
.trust i::before { content: ""; width: 8px; height: 5px; border-left: 1.6px solid var(--gold-2); border-bottom: 1.6px solid var(--gold-2); transform: rotate(-45deg) translateY(-1px); }

/* ---------- Tableau de bord ---------- */
.board-zone { position: relative; }

.board {
  background: var(--white); color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 28px 30px 24px;
}
.board__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.board__title { font-family: var(--serif); font-size: 1.15rem; }
.board__pill { background: var(--sand); color: #6B6250; font-size: .7rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }

.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-bottom: 20px; border-bottom: 1px solid #EFEDE6; }
.kpis span { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .1em; color: #79808D; }
.kpis strong { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; }
.kpis .neg strong { color: var(--red); }
.delta { display: inline-block; font-size: .66rem; font-weight: 700; border-radius: 999px; padding: 2px 8px; margin-left: 6px; vertical-align: 3px; }
.delta--up { color: var(--green); background: var(--green-bg); }
.delta--down { color: var(--red); background: var(--red-bg); }

.chart { display: flex; align-items: flex-end; gap: 4.2%; height: 132px; margin: 22px 2px 10px; }
.chart li { flex: 1; border-radius: 5px 5px 2px 2px; background: #E7E3D7; }
.chart li:nth-child(1) { height: 34%; }
.chart li:nth-child(2) { height: 46%; }
.chart li:nth-child(3) { height: 42%; }
.chart li:nth-child(4) { height: 58%; background: #DECf9F; }
.chart li:nth-child(5) { height: 66%; background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
.chart li:nth-child(6) { height: 60%; background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
.chart li:nth-child(7) { height: 78%; background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
.chart li:nth-child(8) { height: 88%; background: var(--navy-2); }
.chart li:nth-child(9) { height: 72%; background: var(--navy-2); }
.chart__x { display: flex; justify-content: space-between; color: #9AA0AA; font-size: .68rem; border-top: 1px solid #EFEDE6; padding-top: 9px; }

.toast {
  position: absolute; left: -34px; bottom: -30px; width: 300px;
  display: flex; gap: 13px; align-items: center;
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow); padding: 15px 17px;
}
.toast i {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--navy-2);
  display: grid; place-items: center; font-style: normal;
}
.toast i::before { content: ""; width: 11px; height: 6px; border-left: 2px solid var(--gold-2); border-bottom: 2px solid var(--gold-2); transform: rotate(-45deg) translateY(-1px); }
.toast strong { display: block; font-size: .8rem; }
.toast span { font-size: .74rem; color: var(--body); }

.badge {
  position: absolute; right: -18px; top: -24px;
  background: var(--navy-2); color: #E8E4D9; border-radius: 12px; padding: 11px 16px;
  box-shadow: var(--shadow); font-size: .74rem;
}
.badge strong { color: var(--gold-2); font-family: var(--serif); font-weight: 400; font-size: 1.05rem; margin-right: 5px; }

/* =====================================================================
   Bandeau logos
   ===================================================================== */
.logos { padding: 44px 0; border-bottom: 1px solid var(--line); }
.logos .wrap { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; }
.logos p { font-size: .68rem; font-weight: 700; letter-spacing: .16em; color: #9AA0AA; }
.logos ul { display: flex; gap: 38px; flex-wrap: wrap; align-items: center; margin-left: auto; }
.logos li { color: #B9B4A6; font-weight: 700; font-size: .95rem; letter-spacing: .03em; filter: grayscale(1); }
.logos li.serifLogo { font-family: var(--serif); font-weight: 400; font-style: italic; }
.logos li.capsLogo { letter-spacing: .2em; font-size: .8rem; }

/* =====================================================================
   Problème
   ===================================================================== */
.probleme { background: var(--sand); }
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain { background: var(--white); border: 1px solid #ECE8DC; border-radius: var(--radius); padding: 30px 28px; }
.pain i {
  width: 40px; height: 40px; border-radius: 12px; background: var(--navy-2);
  display: grid; place-items: center; font-style: normal; color: var(--gold-2); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 18px;
}
.pain h3 { margin-bottom: 9px; }
.pain p { color: var(--body); font-size: .93rem; }

.statement { margin-top: 46px; text-align: center; font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--ink); }
.statement span { color: var(--gold-dark); }

/* =====================================================================
   Produit — rangées alternées
   ===================================================================== */
.feature { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; padding: 44px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature:nth-child(even) .feature__viz { order: -1; }
.feature h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin: 12px 0 12px; }
.feature p { color: var(--body); }
.feature ul { margin-top: 16px; display: grid; gap: 9px; }
.feature ul li { position: relative; padding-left: 24px; font-size: .93rem; color: var(--ink); }
.feature ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 6px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}

.feature__viz { background: var(--sand); border-radius: var(--radius); padding: 34px; min-height: 300px; display: grid; place-items: center; }

/* viz 1 — campagne */
.viz-camp { background: var(--white); border-radius: 14px; box-shadow: var(--shadow); width: 100%; max-width: 380px; padding: 22px 24px; }
.viz-camp h4 { font-size: .8rem; margin-bottom: 14px; }
.viz-camp ol { list-style: none; display: grid; gap: 0; }
.viz-camp li { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; }
.viz-camp li i {
  flex: none; width: 22px; height: 22px; border-radius: 50%; font-style: normal;
  display: grid; place-items: center; font-size: .62rem; font-weight: 800;
  background: var(--green-bg); color: var(--green); position: relative;
}
.viz-camp li.now i { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #14203A; }
.viz-camp li.next i { background: #EEEBE0; color: #9A937F; }
.viz-camp strong { display: block; font-size: .82rem; }
.viz-camp span { font-size: .72rem; color: var(--body); }
.viz-camp .bar { height: 5px; background: #EFEDE6; border-radius: 3px; margin-top: 16px; overflow: hidden; }
.viz-camp .bar i { display: block; width: 72%; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.viz-camp .bar + span { display: block; margin-top: 7px; }

/* viz 2 — trame */
.viz-trame { background: var(--white); border-radius: 14px; box-shadow: var(--shadow); width: 100%; max-width: 360px; padding: 24px 26px; }
.viz-trame header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.viz-trame header h4 { font-size: .82rem; }
.viz-trame header span { font-size: .62rem; font-weight: 700; color: var(--green); background: var(--green-bg); padding: 3px 10px; border-radius: 999px; }
.viz-trame ul { display: grid; gap: 10px; }
.viz-trame li { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--ink); border: 1px solid #EFECE2; border-radius: 9px; padding: 10px 13px; }
.viz-trame li i { flex: none; width: 15px; height: 15px; border-radius: 4px; background: var(--navy-2); font-style: normal; position: relative; }
.viz-trame li i::before { content: ""; position: absolute; inset: 4px 3px; border-left: 1.6px solid var(--gold-2); border-bottom: 1.6px solid var(--gold-2); transform: rotate(-45deg); }
.viz-trame li.off { color: var(--faint); }
.viz-trame li.off i { background: #EDEAE0; }
.viz-trame li.off i::before { content: none; }

/* viz 3 — relances */
.viz-rel { display: grid; gap: 12px; width: 100%; max-width: 360px; }
.viz-rel .toast { position: static; width: auto; }
.viz-rel .toast:nth-child(2) { margin-left: 26px; opacity: .92; }
.viz-rel .toast:nth-child(3) { margin-left: 52px; opacity: .8; }

/* mini-features */
.minis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.mini { border: 1px solid var(--line); border-radius: 14px; padding: 20px 20px; }
.mini strong { display: block; font-size: .88rem; margin-bottom: 5px; }
.mini span { font-size: .8rem; color: var(--body); }

/* =====================================================================
   Fonctionnement
   ===================================================================== */
.how { background: linear-gradient(180deg, #0D131F, #16223C); color: #F5F1E6; }
.how .s-head p { color: #97A2BB; }
.how .kicker { color: var(--gold-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.stepc { border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--radius); padding: 30px 28px; background: rgba(255, 255, 255, .03); }
.stepc i { font-style: normal; font-family: var(--serif); font-size: 2rem; color: var(--gold-2); display: block; margin-bottom: 14px; }
.stepc h3 { margin-bottom: 9px; }
.stepc p { color: #97A2BB; font-size: .92rem; }

/* =====================================================================
   Témoignage
   ===================================================================== */
.quote-sec { background: var(--sand); }
.quote { max-width: 780px; margin: 0 auto; text-align: center; }
.quote p { font-size: clamp(1.25rem, 2.6vw, 1.75rem); color: var(--ink); }
.quote p::before { content: "« "; color: var(--gold); }
.quote p::after { content: " »"; color: var(--gold); }
.quote footer { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote footer i {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy-2); color: var(--gold-2);
  font-style: normal; font-weight: 700; display: grid; place-items: center; font-size: .9rem;
}
.quote footer div { text-align: left; }
.quote footer strong { display: block; font-size: .92rem; }
.quote footer span { font-size: .8rem; color: var(--body); }
.quote-figs { display: flex; justify-content: center; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.quote-figs div { text-align: center; }
.quote-figs strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.9rem; }
.quote-figs span { font-size: .8rem; color: var(--body); }

/* =====================================================================
   Tarifs
   ===================================================================== */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; max-width: 880px; margin: 0 auto; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 34px; position: relative; }
.plan--star { background: var(--navy); color: #F5F1E6; border-color: var(--navy); box-shadow: var(--shadow-lg); }
.plan__flag {
  position: absolute; top: -13px; left: 34px; background: linear-gradient(100deg, var(--gold), var(--gold-2));
  color: #14203A; font-size: .68rem; font-weight: 800; letter-spacing: .08em; padding: 5px 14px; border-radius: 999px;
}
.plan h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; }
.plan .price { margin: 14px 0 4px; }
.plan .price strong { font-family: var(--serif); font-weight: 400; font-size: 2.4rem; }
.plan .price span { font-size: .85rem; color: var(--body); }
.plan--star .price span { color: #97A2BB; }
.plan > p { font-size: .88rem; color: var(--body); }
.plan--star > p { color: #97A2BB; }
.plan ul { margin: 22px 0 28px; display: grid; gap: 10px; }
.plan ul li { position: relative; padding-left: 24px; font-size: .9rem; }
.plan ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 6px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.plan .btn--ghost { color: var(--ink); border-color: #CFC9BA; }
.plan--star .btn--ghost { color: #DCD6C4; border-color: #46536F; }
.plans-note { text-align: center; color: var(--body); font-size: .85rem; margin-top: 26px; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-sec { background: var(--sand); }
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid #ECE8DC; border-radius: 13px; padding: 0 24px; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-weight: 600; font-size: .95rem; padding: 19px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.4rem; color: var(--gold-dark); flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--body); font-size: .92rem; padding: 0 0 20px; }

/* =====================================================================
   CTA finale
   ===================================================================== */
.final { background: linear-gradient(180deg, #0D131F, #1C2A47); color: #F5F1E6; }
.final__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 64px; align-items: center; }
.final h2 { margin: 16px 0 14px; }
.final .lead { color: #97A2BB; max-width: 32rem; }
.final .trust { margin-top: 28px; }

.demo-form { background: var(--white); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 34px 34px 28px; }
.demo-form h3 { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; margin-bottom: 4px; }
.demo-form > p { font-size: .84rem; color: var(--body); margin-bottom: 20px; }
.demo-form label { display: block; font-size: .8rem; font-weight: 600; margin: 14px 0 6px; }
.demo-form input, .demo-form select {
  width: 100%; border: 1px solid #D9D4C6; border-radius: 10px; padding: 12px 14px;
  font: inherit; font-size: .92rem; color: var(--ink); background: #FDFCF8;
}
.demo-form input:focus, .demo-form select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.demo-form .btn { margin-top: 22px; }
.demo-form small { display: block; text-align: center; color: var(--faint); font-size: .74rem; margin-top: 12px; }

/* =====================================================================
   Pied de page
   ===================================================================== */
.foot { background: #0B1019; color: #97A2BB; padding: 64px 0 40px; font-size: .88rem; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.foot .brand { margin-bottom: 14px; }
.foot h4 { color: #E8E4D9; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.foot ul { display: grid; gap: 9px; }
.foot a:hover { color: #fff; }
.foot__bot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 22px; font-size: .8rem; color: #66708A; }
.u-ul { text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================================
   Bandeau de démonstration
   ===================================================================== */
.demo-flag {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  background: #10151F; color: #C9CFDD; font-size: .8rem; padding: 10px 18px;
  border-top: 1px solid rgba(201, 162, 39, .35);
}
.demo-flag a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  section { padding: 76px 0; }
  .hero { padding: 140px 0 96px; }
  .hero__grid, .final__grid { grid-template-columns: 1fr; gap: 48px; }
  .board-zone { max-width: 560px; }
  .pains, .steps { grid-template-columns: 1fr 1fr; }
  .minis { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; gap: 30px; padding: 36px 0; }
  .feature:nth-child(even) .feature__viz { order: 0; }
  .nav__links { display: none; }
  .nav .btn--sm { margin-left: auto; }
  .burger { display: block; }
}
@media (max-width: 640px) {
  .pains, .steps, .plans, .minis { grid-template-columns: 1fr; }
  .toast { left: 0; }
  .badge { right: 0; }
  .logos ul { margin-left: 0; gap: 22px; }
  .foot__grid { grid-template-columns: 1fr; gap: 30px; }
  .kpis strong { font-size: 1.4rem; }
  .demo-flag { font-size: .72rem; gap: 12px; }
}
