/* Lenkx — site vitrine. CSS pur, aucune dépendance externe.
   Parti pris : papier blanc sur noir (l'esthétique origami du héros), monochrome strict,
   typographie système géométrique, aucune fonte distante, aucun script tiers. */

:root {
  --noir:      #0b0b0c;
  --noir-2:    #101012;
  --noir-3:    #16161a;
  --papier:    #f2efe9;
  --papier-2:  #e6e2d9;
  /* Gris calés pour le contraste AA sur fond noir : 6,8:1 et 5,1:1 — le gris plus sombre
     d'origine (#6f6c66) tombait à 3,8:1, sous le seuil pour du petit texte. */
  --craie:     #9c988e;
  --craie-2:   #85827a;
  --trait:     rgba(242, 239, 233, .13);
  --trait-2:   rgba(242, 239, 233, .28);
  --encre:     #131315;

  --w:      1180px;
  --pad:    clamp(20px, 5vw, 56px);
  --gap:    clamp(28px, 4vw, 56px);
  --sect:   clamp(72px, 11vh, 132px);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Inter, Roboto, Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--noir);
  color: var(--papier);
  font-family: var(--sans);
  font-size: clamp(16px, 1.02vw + 13px, 18px);
  line-height: 1.62;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--papier); color: var(--encre);
  padding: 12px 18px; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

.wrap { width: 100%; max-width: var(--w); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 760px; }

/* ---------------------------------------------------------------- barre haute */

.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 14px var(--pad);
  background: linear-gradient(to bottom, rgba(11, 11, 12, .92), rgba(11, 11, 12, 0));
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.topbar.is-visible { opacity: 1; pointer-events: auto; }

/* Au-dessus du panneau papier, la barre s'inverse — sinon elle disparaît dans le blanc. */
.topbar.is-on-paper {
  background: linear-gradient(to bottom, rgba(242, 239, 233, .96), rgba(242, 239, 233, 0));
  color: var(--encre);
}
.topbar.is-on-paper .topnav a { color: rgba(19, 19, 21, .62); }
.topbar.is-on-paper .topnav a:hover { color: var(--encre); }
.topbar.is-on-paper .btn { border-color: rgba(19, 19, 21, .3); color: var(--encre); }
.topbar.is-on-paper .btn:hover { background: var(--encre); border-color: var(--encre); color: var(--papier); }
.topbar.is-on-paper :focus-visible { outline-color: var(--encre); }

.wordmark img { display: block; height: 26px; width: auto; }
.wordmark {
  font-size: 19px; font-weight: 650; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
}
.wordmark--foot { font-size: 22px; margin: 0 0 8px; }

.topnav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
/* Menu façon SpaceX (retour Pierre 28/07) : blanc franc, petites capitales espacées, graisse posée. */
.topnav a {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  text-decoration: none; color: var(--papier); transition: opacity .2s;
}
.topnav a:hover { opacity: .7; }
@media (max-width: 720px) { .topnav a:not(.btn) { display: none; } }

/* ---------------------------------------------------------------- boutons */

.btn {
  display: inline-block;
  padding: 13px 24px;
  border: 1px solid var(--trait-2);
  border-radius: 2px;
  font-size: 15px; font-weight: 550; letter-spacing: .01em;
  text-decoration: none;
  color: var(--papier);
  background: transparent;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.btn:hover { background: var(--papier); border-color: var(--papier); color: var(--encre); }
.btn--ghost { padding: 9px 16px; font-size: 14px; }
.btn--quiet { border-color: transparent; color: var(--craie); padding-inline: 12px; }
.btn--quiet:hover { background: transparent; color: var(--papier); border-color: var(--trait); }
.btn--solid {
  background: var(--papier); color: var(--encre); border-color: var(--papier);
  font-weight: 600; cursor: pointer; font-family: inherit; padding: 15px 34px;
}
.btn--solid:hover { background: #fff; border-color: #fff; }
.btn--solid[disabled] { opacity: .45; cursor: progress; }

/* ---------------------------------------------------------------- héros */

.hero { position: relative; height: 280vh; }
@media (prefers-reduced-motion: reduce) { .hero { height: auto; } }

.hero__stage {
  position: sticky; top: 0;
  height: 100svh; min-height: 560px;
  overflow: hidden;
  /* Flex + min-width:0 : le contenu du bloc de texte ne peut JAMAIS élargir l'étage
     (une grille auto le faisait, et le canvas débordait de l'écran en mobile). */
  display: flex; flex-direction: column; justify-content: flex-end;
  min-width: 0;
  background: #000;
}
.hero__canvas, .hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
}
.hero__poster { z-index: 1; transition: opacity .3s linear; }
.hero__poster.is-hidden { opacity: 0; }
.hero__canvas { z-index: 2; opacity: 0; }
.hero__canvas.is-ready { opacity: 1; }

/* Voile : garantit le contraste du texte au repos, puis s'efface pour laisser le lynx seul.
   `--p` est la progression du défilement, posée par le JS sur l'étage. */
.hero__stage { --p: 0; }
.hero__veil {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(to top, rgba(11,11,12,.97) 0%, rgba(11,11,12,.9) 22%, rgba(11,11,12,0) 56%),
    radial-gradient(130% 62% at 50% 100%, rgba(11,11,12,.72), rgba(11,11,12,0) 72%);
  opacity: calc(1 - var(--p) * 1.6);
}

.hero__copy {
  position: relative; z-index: 4;
  width: 100%; max-width: var(--w); min-width: 0;
  margin-inline: auto;
  padding: 0 var(--pad) clamp(56px, 9vh, 92px);
  /* Rendu validé (Maëlle, 28/07) : tout le bloc est CENTRÉ sous le logo. */
  text-align: center;
  /* Le texte cède la place à l'animation : il s'efface sur le premier tiers du défilement. */
  opacity: calc(1 - var(--p) * 2.6);
  transform: translateY(calc(var(--p) * -22px));
  will-change: opacity, transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero__copy { opacity: 1; transform: none; }
  .hero__veil { opacity: 1; }
}

.kicker {
  margin: 14px 0 0;
  font-size: clamp(11px, .9vw, 13px);
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--craie);
}

h1 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -.032em;
  font-weight: 640;
  text-wrap: balance;
}

.hero__copy .lede { margin-inline: auto; }
.hero__cta { justify-content: center; }
.lede {
  margin: 22px 0 0;
  max-width: 46ch;
  font-size: clamp(16px, 1.35vw, 20px);
  color: var(--papier-2);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 0; }

.hero__hint {
  position: absolute; z-index: 4; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--craie-2);
  transition: opacity .4s var(--ease);
}
.hero__hint i {
  width: 1px; height: 22px;
  background: linear-gradient(to bottom, var(--trait-2), transparent);
  animation: drip 2.4s var(--ease) infinite;
}
@keyframes drip { 0%, 100% { opacity: .3; transform: translateY(-4px); } 50% { opacity: 1; transform: translateY(2px); } }
.hero__hint.is-gone { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero__hint { display: none; }
  .hero__hint i { animation: none; }
}
@media (max-width: 720px) { .hero__hint { display: none; } }

/* ---------------------------------------------------------------- rythme des sections */

/* Ancres : le titre visé ne doit pas finir sous la barre fixe. */
section[id] { scroll-margin-top: 84px; }

.band { padding: var(--sect) 0; border-top: 1px solid var(--trait); position: relative; background: var(--noir); }
.band--tight { padding-bottom: calc(var(--sect) * .72); }
.band--contact { background: var(--noir-2); }

.eyebrow {
  margin: 0 0 26px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--craie-2);
}
.eyebrow--dark { color: rgba(19, 19, 21, .64); }

.statement {
  margin: 0 0 34px;
  font-size: clamp(27px, 3.9vw, 50px);
  line-height: 1.1;
  letter-spacing: -.026em;
  font-weight: 620;
  text-wrap: balance;
}
.statement .dim { color: var(--craie); }
.statement--dark { color: var(--encre); }

.prose { margin: 0 0 20px; max-width: 62ch; color: var(--papier-2); }
.prose--lead { font-size: clamp(17px, 1.3vw, 20px); max-width: 66ch; margin-bottom: 40px; }
.prose--small { font-size: 15px; color: var(--craie); }
.prose--dark { color: rgba(19, 19, 21, .74); max-width: 64ch; margin-top: 34px; }
.prose a { color: inherit; text-underline-offset: 3px; }

.two { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 860px) { .two { grid-template-columns: 1fr 1fr; } }

.ticks { list-style: none; margin: 42px 0 0; padding: 0; display: grid; gap: 0; }
.ticks li {
  padding: 20px 0 20px 30px;
  border-top: 1px solid var(--trait);
  color: var(--craie);
  position: relative;
}
.ticks li:last-child { border-bottom: 1px solid var(--trait); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 30px;
  width: 12px; height: 12px;
  background: var(--papier);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
}
.ticks strong { color: var(--papier); font-weight: 620; }

.split { display: grid; gap: var(--gap); grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 900px) { .split { grid-template-columns: 1.25fr 1fr; } }

.h3 { margin: 0 0 18px; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--craie-2); font-weight: 600; }

.list { list-style: none; margin: 0; padding: 0; }
.list li {
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--trait);
  position: relative;
  color: var(--papier-2);
}
.list li::before {
  content: ""; position: absolute; left: 0; top: 23px;
  width: 9px; height: 9px; background: var(--craie);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.list--muted li { color: var(--craie-2); }
.list--muted li::before { background: var(--craie-2); opacity: .6; }

/* ---------------------------------------------------------------- vignettes d'interface */

.cards {
  margin-top: clamp(48px, 7vw, 84px);
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  align-items: start; /* chaque vignette garde sa hauteur naturelle */
}
@media (min-width: 760px)  { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .cards { grid-template-columns: repeat(3, 1fr); } }
/* Mobile : une seule vignette, la plus parlante (l'appel transcrit). */
@media (max-width: 759px) { .card--inbox, .card--agenda { display: none; } }

.card {
  margin: 0;
  background: var(--noir-3);
  border: 1px solid var(--trait);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, .9);
}
.card__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--trait);
  background: rgba(242, 239, 233, .022);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--trait-2); }
.card__tab {
  margin-left: 10px;
  /* Sur l'entête de vignette (fond plus clair), le gris sombre tombait sous 4,5:1. */
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #b3aea3;
}
.card__body { padding: 18px 16px 20px; }

.callhead { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.callwho { margin: 0; font-weight: 620; font-size: 15px; }
.callmeta { margin: 3px 0 0; font-size: 12.5px; color: var(--craie-2); }
.pill {
  flex: none;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border: 1px solid var(--trait-2); border-radius: 2px; color: var(--craie);
}
.wave { width: 100%; height: 34px; margin: 16px 0 4px; }
.wave rect { fill: var(--craie-2); }
.wave rect:nth-child(3n) { fill: var(--craie); }

.cardlabel {
  margin: 16px 0 10px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--craie-2);
}
.mini { list-style: none; margin: 0; padding: 0; font-size: 14.5px; color: var(--papier-2); }
.mini li { padding: 7px 0 7px 16px; position: relative; }
.mini li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 7px; height: 7px; background: var(--craie); clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.chipline { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 0; }
.chip {
  font-size: 12px; padding: 5px 10px; border-radius: 2px;
  background: var(--papier); color: var(--encre); font-weight: 550;
}
.chip--soft { background: transparent; color: var(--craie); border: 1px solid var(--trait); font-weight: 400; }

.rows { list-style: none; margin: 0; padding: 0; }
.rows li {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--trait);
  font-size: 14px; color: var(--craie);
}
.rows li:last-child { border-bottom: 0; }
.rows b { color: var(--papier); font-weight: 600; }
.row__t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row__d { font-size: 12px; color: var(--craie-2); font-variant-numeric: tabular-nums; }
.ico svg { width: 15px; height: 15px; fill: none; stroke: var(--craie-2); stroke-width: 1.2; }
.is-live .ico svg { stroke: var(--papier); }

.slots { list-style: none; margin: 0; padding: 0; }
.slots li { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: start; padding: 10px 0; }
.hour { font-size: 12px; color: var(--craie-2); font-variant-numeric: tabular-nums; padding-top: 3px; }
.slot {
  display: block; padding: 10px 12px; border-radius: 3px; font-size: 14px;
  background: var(--papier); color: var(--encre); font-weight: 550;
}
.slot em { display: block; font-style: normal; font-size: 12px; font-weight: 400; opacity: .62; margin-top: 2px; }
.slot--soft { background: transparent; color: var(--craie); border: 1px solid var(--trait); font-weight: 400; }

.caption { margin: 18px 0 0; font-size: 12.5px; color: var(--craie-2); }

/* ---------------------------------------------------------------- métiers */

.trades { display: grid; gap: 1px; background: var(--trait); border: 1px solid var(--trait); border-radius: 3px; overflow: hidden; }
@media (min-width: 640px)  { .trades { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .trades { grid-template-columns: repeat(4, 1fr); } }

.trade { background: var(--noir); padding: clamp(24px, 3vw, 34px) clamp(20px, 2.4vw, 28px); }
.trade__ico {
  width: 40px; height: 40px; margin-bottom: 22px;
  fill: none; stroke: var(--papier); stroke-width: 1.1; stroke-linejoin: round; stroke-linecap: round;
}
.trade h3 { margin: 0 0 10px; font-size: 17px; font-weight: 620; letter-spacing: -.012em; }
.trade p { margin: 0; font-size: 14.5px; color: var(--craie); }

/* ---------------------------------------------------------------- panneau papier */

.paper {
  background: var(--papier);
  color: var(--encre);
  padding: clamp(72px, 11vh, 132px) 0;
  /* Pli de papier : deux arêtes très légères, en haut et en bas du panneau. */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), inset 0 -1px 0 rgba(0, 0, 0, .12);
}
.claims { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.claims li {
  display: grid; gap: 4px;
  padding: 22px 0;
  border-top: 1px solid rgba(19, 19, 21, .14);
}
.claims li:last-child { border-bottom: 1px solid rgba(19, 19, 21, .14); }
.claims b {
  font-size: clamp(19px, 2.1vw, 26px); font-weight: 620; letter-spacing: -.02em; line-height: 1.2;
}
.claims span { color: rgba(19, 19, 21, .66); font-size: 15px; }
@media (min-width: 800px) {
  .claims li { grid-template-columns: 1fr 1fr; align-items: baseline; gap: 24px; }
}

/* ---------------------------------------------------------------- essai */

.steps { display: grid; gap: 1px; background: var(--trait); border-block: 1px solid var(--trait); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--noir); padding: 30px clamp(0px, 2vw, 28px); }
@media (min-width: 820px) { .step { padding-inline: clamp(20px, 2.4vw, 30px); } }
.step__n { display: block; font-size: 12px; letter-spacing: .2em; color: var(--craie-2); margin-bottom: 14px; }
.step h3 { margin: 0 0 8px; font-size: 18px; font-weight: 620; letter-spacing: -.014em; }
.step p { margin: 0; font-size: 15px; color: var(--craie); }

.delta {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(26px, 3.4vw, 40px);
  border: 1px solid var(--trait-2);
  border-radius: 3px;
}
.delta p { margin: 0; font-size: clamp(16px, 1.5vw, 21px); color: var(--papier-2); max-width: 62ch; }
.delta b { color: var(--papier); font-weight: 620; }

/* ---------------------------------------------------------------- formulaire */

.form { display: grid; gap: 18px; margin: 34px 0 30px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .form { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }

label { font-size: 13.5px; color: var(--craie); letter-spacing: .01em; }
.req { color: var(--papier); }

input, textarea {
  width: 100%;
  font: inherit; font-size: 16px;
  color: var(--papier);
  background: var(--noir);
  border: 1px solid var(--trait-2);
  border-radius: 2px;
  padding: 13px 14px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: var(--craie-2); opacity: .8; }
input:hover, textarea:hover { border-color: rgba(242, 239, 233, .4); }
input:focus, textarea:focus { outline: 2px solid var(--papier); outline-offset: 1px; border-color: transparent; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #d98b7a; }

.hint { margin: 0; font-size: 12px; color: var(--craie-2); text-align: right; font-variant-numeric: tabular-nums; }

/* Piège à robots : retiré du flux, invisible, jamais lu par un lecteur d'écran. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: 6px; }
.legalese { margin: 0; font-size: 13px; color: var(--craie-2); max-width: 46ch; }
.legalese a { color: var(--craie); }

.status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 15px;
  padding: 0;
  min-height: 0;
}
.status.is-error, .status.is-ok {
  padding: 14px 16px;
  border-radius: 2px;
  border: 1px solid var(--trait-2);
}
.status.is-error { border-color: #d98b7a; color: #f0b7a8; }
.status.is-ok { border-color: var(--papier); color: var(--papier); background: rgba(242, 239, 233, .05); }

/* ---------------------------------------------------------------- pied de page */

.footer { border-top: 1px solid var(--trait); padding: clamp(48px, 6vw, 72px) 0 34px; background: var(--noir); }
.footer__grid { display: grid; gap: 32px; }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1fr auto; align-items: start; } }
.footline { margin: 0; color: var(--craie-2); font-size: 14px; letter-spacing: .02em; }
.footer__nav { display: grid; gap: 10px; }
@media (min-width: 780px) { .footer__nav { justify-items: end; } }
.footer__nav a { font-size: 14.5px; color: var(--craie); text-decoration: none; }
.footer__nav a:hover { color: var(--papier); text-decoration: underline; text-underline-offset: 3px; }
.footer__base {
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  margin-top: clamp(40px, 5vw, 60px); padding-top: 22px; border-top: 1px solid var(--trait);
}
.footer__base p { margin: 0; font-size: 13px; color: var(--craie-2); }

/* ---------------------------------------------------------------- page mentions légales */

.legal { padding: 130px 0 clamp(60px, 8vw, 100px); }
.legal h1 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 12px; }
.legal .updated { color: var(--craie-2); font-size: 14px; margin: 0 0 clamp(40px, 5vw, 62px); }
.legal section { padding: 30px 0; border-top: 1px solid var(--trait); }
.legal h2 { font-size: clamp(19px, 2vw, 24px); margin: 0 0 14px; font-weight: 620; letter-spacing: -.018em; }
.legal p, .legal li { color: var(--papier-2); max-width: 68ch; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { margin-bottom: 7px; }
.legal .todo {
  background: rgba(242, 239, 233, .07);
  border: 1px dashed var(--trait-2);
  padding: 1px 7px; border-radius: 2px; font-size: .92em; color: var(--papier);
}
.legal .back { display: inline-block; margin-top: 34px; font-size: 15px; color: var(--craie); }
.legal-top { position: static; opacity: 1; pointer-events: auto; background: none; }

/* Sous-section (Sécurité, dans le panneau papier) : même voix, un cran plus bas. */
.statement--sub { font-size: clamp(24px, 3vw, 38px); margin-top: 8px; }
#securite { margin-top: 64px; }

/* La carte « Et le vôtre » : volontairement inachevée — un emplacement qui attend son métier. */
.trade--open { border-style: dashed; }
.trade--open .trade__ico { opacity: .55; }

/* Cartes métiers centrées (retour Maëlle/Pierre 28/07) — l'icône d'abord. */
.trade { text-align: center; }
.trade__ico { margin-inline: auto; display: block; }
