/* ==========================================================================
   Play & Phone Fix — version « simple »
   Même identité de marque que la version complète, mais respiration doublée
   et moins de contenu par écran. Mobile-first, propriétés logiques (RTL).
   ========================================================================== */

:root {
  --ink: #0a0e1a;
  --ink-2: #121a2e;
  --violet: #6d5efc;
  --violet-d: #5546e8;
  --cyan: #24d3ee;
  --wa: #25d366;
  --wa-d: #1da851;
  --paper: #f7f8fc;
  --white: #ffffff;
  --text: #0a0e1a;
  --muted: #5f6878;
  --line: rgba(10, 14, 26, .09);
  --line-l: rgba(255, 255, 255, .13);
  --muted-l: rgba(255, 255, 255, .64);

  --r-lg: 22px;
  --r-md: 15px;
  --r-pill: 999px;
  --shadow-sm: 0 3px 14px rgba(10, 14, 26, .06);
  /* Dégradé des surfaces portant du texte ou des icônes blanches.
     Chaque point de la course reste au-dessus de 4.5:1 avec le blanc (mesuré : 4.62 à 5.44).
     L'ancien violet→cyan vif tombait à 1.81:1 sur sa fin — illisible. */
  --grad: linear-gradient(135deg, #5f4ff5 0%, #0e7f9e 100%);
  /* Version vive, réservée au texte sur fond sombre et aux éléments décoratifs */
  --grad-bright: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);

  --hdr-h: 60px;
  --dock-h: 68px;

  /* Respiration : c'est ici que se joue la densité */
  --sec-pad: 4.2rem;
  --gap: 1.15rem;

  --f-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-head: "Sora", var(--f-body);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.75;              /* plus aéré que la version complète */
  color: var(--text);
  background: var(--paper);
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--f-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .7rem;
}
h1 { font-size: clamp(1.95rem, 7.6vw, 3rem); letter-spacing: -.03em; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 5.4vw, 2.1rem); }
h3 { font-size: 1.08rem; font-weight: 700; }
p { margin: 0 0 .9rem; }
a { color: var(--violet-d); }

.accent {
  background: var(--grad-bright);   /* uniquement dans le h1, sur fond sombre */
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--violet);
}

.wrap { width: 100%; max-width: 1000px; margin-inline: auto; padding-inline: 1.25rem; }

.ph {
  background: rgba(255, 178, 36, .18);
  border-bottom: 2px dotted #e69200;
  border-radius: 3px;
  padding: 0 .25em;
  font-style: normal;
  font-weight: 600;
}

.skip {
  position: absolute; inset-inline-start: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem;
}
.skip:focus { inset-inline-start: 0; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px;
}

/* ============================ Boutons ============================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-head); font-size: 1rem; font-weight: 700;
  text-decoration: none; padding: 1rem 1.5rem;
  border: 0; border-radius: var(--r-pill); cursor: pointer;
  transition: transform .15s ease, background .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn .ico { width: 20px; height: 20px; flex: 0 0 auto; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(109, 94, 252, .34); }
.btn--wa { background: var(--wa); color: #06381b; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); }
.btn--wa:hover { background: var(--wa-d); color: #fff; }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid var(--line-l); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }

/* ============================ En-tête ============================ */

.hdr {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--hdr-h); display: flex; align-items: center;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-block-end: 1px solid transparent;
}
.hdr.scrolled {
  background: rgba(10, 14, 26, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-block-end-color: var(--line-l);
}
.hdr__in { display: flex; align-items: center; gap: .7rem; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: #fff; margin-inline-end: auto; min-width: 0; }
.brand__pic { display: block; flex: 0 0 auto; line-height: 0; }
.brand__mark {
  width: 44px; height: 44px; display: block;   /* 48px ≥980px — voir le point de rupture */
  border-radius: 13px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 5px 16px rgba(36, 211, 238, .28);
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand__name { font-family: var(--f-head); font-weight: 800; font-size: 1.02rem; letter-spacing: -.025em; white-space: nowrap; }
.brand__name .amp { color: var(--cyan); margin-inline: .04em; }
.brand__name .fix { background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand__sub { font-size: .585rem; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; color: var(--muted-l); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.langsw { display: flex; gap: 2px; background: rgba(255, 255, 255, .1); border-radius: var(--r-pill); padding: 3px; }
.langsw a { font-family: var(--f-head); font-size: .72rem; font-weight: 700; text-decoration: none; color: var(--muted-l); padding: .3rem .55rem; border-radius: var(--r-pill); line-height: 1; }
.langsw a[aria-current="true"] { background: #fff; color: var(--ink); }

.hdr__cta { display: none; }

/* ============================ Héros ============================ */

.hero {
  position: relative;
  min-height: 76svh;
  display: flex; align-items: center;
  padding-block: calc(var(--hdr-h) + 2.6rem) 3rem;
  background: var(--ink);
  overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(65% 50% at 80% 6%, rgba(109, 94, 252, .42) 0%, transparent 64%),
    radial-gradient(55% 45% at 6% 96%, rgba(36, 211, 238, .24) 0%, transparent 62%),
    linear-gradient(170deg, var(--ink-2) 0%, var(--ink) 62%);
}
/* ============ Motif circuit imprimé — la signature du site ============
   Repris du logo, qui est traversé de pistes de circuit. Tout est en SVG
   inline et en CSS : ~5 Ko, aucune image, aucune requête supplémentaire. */

.circuit {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* on estompe les bords pour que le motif ne concurrence pas le texte */
  -webkit-mask-image: radial-gradient(125% 95% at 50% 42%, #000 22%, transparent 76%);
  mask-image: radial-gradient(125% 95% at 50% 42%, #000 22%, transparent 76%);
}
.circuit .tr path { fill: none; stroke: var(--cyan); stroke-width: 1.1; opacity: .17; }
.circuit .nd .n { fill: var(--cyan); opacity: .28; animation: node 4.2s ease-in-out infinite; }
.circuit .sg path {
  fill: none;
  stroke: #8ef2ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 46 900;
  filter: drop-shadow(0 0 6px rgba(36, 211, 238, .85));
  animation: signal 9s linear infinite;
}
@keyframes node   { 0%, 100% { opacity: .2 } 50% { opacity: .85 } }
@keyframes signal { from { stroke-dashoffset: 0 } to { stroke-dashoffset: -946 } }

/* Les signaux animés portent un drop-shadow : repeint à chaque image, coûteux
   sur un Android d'entrée de gamme. On les réserve au desktop. */
@media (max-width: 760px) {
  .circuit .sg { display: none; }
  .circuit .nd .n { animation-duration: 6.5s; }
}

/* Séparateur de section : une piste qui court d'un bord à l'autre */
.sec { position: relative; }
.sec::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 211, 238, .3) 20%,
                              rgba(36, 211, 238, .3) 80%, transparent);
}
.sec::after {
  content: "";
  position: absolute;
  inset-block-start: -2.5px;
  inset-inline-start: 22%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .5;
  box-shadow: 0 0 8px rgba(36, 211, 238, .8);
}

/* Angle de carte : amorce de piste, comme sur un circuit */
.card, .acc, .find__block { position: relative; overflow: hidden; }
.card::after, .acc::after, .find__block::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 56px; height: 56px;
  pointer-events: none;
  background:
    linear-gradient(to left,   rgba(36, 211, 238, .55), transparent) 100% 0   / 56px 1px no-repeat,
    linear-gradient(to bottom, rgba(36, 211, 238, .55), transparent) 100% 0   / 1px 56px no-repeat;
}

.hero__in { color: #fff; max-width: 700px; display: grid; gap: 1.9rem; align-items: center; }
.hero__txt { min-width: 0; }
/* Sur mobile l'illustration est masquée : elle se retrouvait à 60 px du logo du header,
   lisait comme un doublon, et repoussait les boutons sous la ligne de flottaison.
   Le motif circuit porte le visuel, et on économise 26 Ko. */
.hero__fig { display: none; margin: 0; }
.hero__fig img {
  width: 100%; height: auto; display: block;
  border-radius: 18px;
  /* le halo cyan raccorde l'illustration au motif circuit qui court derrière */
  box-shadow: 0 16px 42px rgba(0, 0, 0, .48), 0 0 54px rgba(36, 211, 238, .15);
}
.hero .accent { text-shadow: 0 0 34px rgba(36, 211, 238, .38); }
.hero__txt { min-width: 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 600;
  padding: .4rem .85rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .09); border: 1px solid var(--line-l);
  margin-block-end: 1.3rem;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex: 0 0 auto; }

/* État « ouverture prochaine » : à retirer le jour de l'ouverture */
.hero__badge--soon {
  background: rgba(255, 178, 36, .15);
  border-color: rgba(255, 178, 36, .38);
  color: #ffd79a;
  font-weight: 700;
}
.hero__badge--soon .dot { background: #ffb224; box-shadow: 0 0 0 3px rgba(255, 178, 36, .22); }
.soon-note { font-size: .95rem; color: var(--muted); margin: 0; }
.find__block .btn--light { border: 1px solid var(--line); }
.dock__tt { background: var(--ink-2); color: #fff; }
.hero h1 { color: #fff; }
.hero__sub { font-size: clamp(1rem, 3.8vw, 1.15rem); color: rgba(255, 255, 255, .8); max-width: 30em; margin-block: 1rem 1.9rem; }
.hero__cta { display: flex; flex-direction: column; gap: .7rem; max-width: 23rem; }

/* ============================ Bandeau ============================ */

.strip { background: var(--ink-2); color: #fff; padding-block: 1.9rem; }
.strip__grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.strip__item { display: flex; gap: .7rem; align-items: flex-start; }
.strip__item .ico { width: 22px; height: 22px; color: var(--cyan); flex: 0 0 auto; margin-block-start: 4px; }
.strip__t { font-family: var(--f-head); font-weight: 700; font-size: 1rem; line-height: 1.3; }
.strip__d { font-size: .86rem; color: var(--muted-l); line-height: 1.5; }

/* ============================ Sections ============================ */

.sec { padding-block: var(--sec-pad); }
.sec--alt { background: var(--white); }
.sec__head { max-width: 40rem; margin-block-end: 2.6rem; }
.eyebrow { font-family: var(--f-head); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--violet-d); margin: 0 0 .55rem; }
.sec__head p { color: var(--muted); margin: 0; }

/* ============================ Cartes de services ============================ */

.cards { display: grid; gap: var(--gap); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.sec--alt .card { background: var(--paper); }
.card__ico { width: 48px; height: 48px; border-radius: 13px; background: var(--grad); display: grid; place-items: center; margin-block-end: 1.1rem; }
.card__ico .ico { width: 24px; height: 24px; color: #fff; }
.card ul { list-style: none; padding: 0; margin: .6rem 0 0; }
.card li { font-size: .95rem; color: var(--muted); padding-block: .3rem; display: flex; gap: .55rem; }
.card li::before { content: "—"; color: var(--violet); flex: 0 0 auto; }

/* Bande accessoires : pleine largeur, plus calme que les cartes */
.acc {
  margin-block-start: var(--gap);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.sec--alt .acc { background: var(--paper); }
.acc__top { display: flex; align-items: center; gap: .9rem; margin-block-end: 1rem; }
.acc__top .card__ico { margin: 0; }
.acc__top h3 { margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.chips li { font-size: .89rem; font-weight: 600; padding: .4rem .85rem; border-radius: var(--r-pill); background: rgba(109, 94, 252, .09); color: var(--violet-d); }

/* ============================ Nous trouver ============================ */

.find { display: grid; gap: var(--gap); }
.find__panel { display: flex; flex-direction: column; gap: var(--gap); }
.find__block { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.sec--alt .find__block { background: var(--paper); }
.find__label {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-head); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--muted);
  margin: 0 0 1rem;
}
.callrow { display: grid; gap: .65rem; }
.callrow .btn { width: 100%; padding-inline: .9rem; }
.find__hint { font-size: .88rem; color: var(--muted); margin: .9rem 0 0; }
.find__hint a { font-weight: 600; }

.status {
  display: inline-flex; align-items: center; gap: .38rem;
  font-family: var(--f-body); font-size: .72rem; font-weight: 700;
  letter-spacing: 0; text-transform: none;
  padding: .2rem .6rem .22rem; border-radius: var(--r-pill);
  margin-inline-start: auto;
}
.status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.status--open { background: rgba(37, 211, 102, .17); color: #0d7a3c; }
.status--closed { background: rgba(10, 14, 26, .07); color: var(--muted); }

.hours { list-style: none; padding: 0; margin: 0; font-size: .96rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding-block: .45rem; border-block-end: 1px dotted var(--line); }
.hours li:last-child { border-block-end: 0; }
.hours b { font-weight: 700; }

.facts { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-size: .95rem; }
.facts li { display: flex; gap: .65rem; align-items: flex-start; }
.facts .ico { width: 18px; height: 18px; color: var(--violet); flex: 0 0 auto; margin-block-start: 5px; }

.find__map {
  margin: 0; display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sec--alt .find__map { background: var(--paper); }
.find__map iframe { flex: 1 1 auto; width: 100%; min-height: 300px; border: 0; display: block; }
.find__mapbar { display: flex; align-items: center; gap: .9rem; padding: 1rem; border-block-start: 1px solid var(--line); }
.find__mapbar div { min-width: 0; line-height: 1.4; }
.find__mapbar b { display: block; font-family: var(--f-head); font-size: .96rem; font-weight: 700; }
.find__mapbar span { font-size: .84rem; color: var(--muted); }
.find__mapbar .btn { margin-inline-start: auto; flex: 0 0 auto; }

/* ============================ FAQ ============================ */

.faq { max-width: 44rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); margin-block-end: .7rem; overflow: hidden; }
.sec--alt .faq details { background: var(--paper); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 1.3rem;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-inline-start: auto; font-size: 1.4rem; font-weight: 400; color: var(--violet); transition: transform .2s ease; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > *:not(summary) { padding: 0 1.3rem 1.25rem; margin: 0; color: var(--muted); font-size: .96rem; }

/* ============================ Appel final ============================ */

.cta-final {
  background: linear-gradient(140deg, var(--ink-2) 0%, var(--ink) 100%);
  color: #fff; border-radius: var(--r-lg);
  padding: 2.6rem 1.5rem; text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255, 255, 255, .78); max-width: 30rem; margin-inline: auto; }
.cta-final .row { display: flex; flex-direction: column; gap: .7rem; max-width: 21rem; margin: 1.7rem auto 0; }

.social { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-block-start: 2.6rem; }
.social a {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; font-weight: 700; font-family: var(--f-head); font-size: .92rem;
  color: var(--ink); background: var(--white); border: 1px solid var(--line);
  padding: .75rem 1.2rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.social a:active { transform: scale(.96); }
.social .ico { width: 19px; height: 19px; }

/* ============================ Pied de page ============================ */

.ft { background: var(--ink); color: #fff; padding-block: 2.8rem 2.2rem; text-align: center; position: relative; }
/* Le motif se referme sur le pied de page : même piste, même nœud */
.ft::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 211, 238, .34) 20%,
                              rgba(36, 211, 238, .34) 80%, transparent);
}
.ft::after {
  content: "";
  position: absolute;
  inset-block-start: -2.5px;
  inset-inline-end: 22%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .55;
  box-shadow: 0 0 8px rgba(36, 211, 238, .8);
}
.ft .brand { justify-content: center; margin-inline: 0; display: inline-flex; }
.ft__nav { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; justify-content: center; margin-block: 1.5rem; padding: 0; list-style: none; }
.ft__nav a { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .9rem; }
.ft__nav a:hover { color: #fff; }
.ft__copy { font-size: .8rem; color: rgba(255, 255, 255, .45); }
.legalbox { text-align: start; max-width: 44rem; margin: 1.8rem auto 0; }
.legalbox summary { cursor: pointer; font-size: .85rem; color: rgba(255, 255, 255, .7); padding: .8rem 1.1rem; border: 1px solid var(--line-l); border-radius: var(--r-md); list-style: none; }
.legalbox summary::-webkit-details-marker { display: none; }
.legalbox__body { font-size: .83rem; color: rgba(255, 255, 255, .62); padding: 1.1rem; }
.legalbox__body h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-block: 1.1rem .3rem; }
.legalbox__body h3:first-child { margin-block-start: 0; }

/* ============================ Dock mobile ============================ */

.dock {
  position: fixed; inset-block-end: 0; inset-inline: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .45rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-block-start: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(10, 14, 26, .1);
  transition: transform .3s ease;
}
.dock.hidden { transform: translateY(120%); }
.dock a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  text-decoration: none; border-radius: var(--r-md); padding: .45rem .2rem;
  font-family: var(--f-head); font-size: .68rem; font-weight: 700; min-height: 54px;
}
.dock a .ico { width: 21px; height: 21px; }
.dock__call { background: var(--grad); color: #fff; }
.dock__wa { background: var(--wa); color: #06381b; }
.dock__map { background: var(--ink); color: #fff; }

/* ============================ Apparition ============================ */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================ RTL ============================ */

[dir="rtl"] body { font-family: "Cairo", var(--f-body); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] .btn, [dir="rtl"] .eyebrow, [dir="rtl"] .brand__name,
[dir="rtl"] .faq summary, [dir="rtl"] .social a, [dir="rtl"] .dock a,
[dir="rtl"] .find__label, [dir="rtl"] .find__mapbar b, [dir="rtl"] .strip__t {
  font-family: "Cairo", var(--f-body);
  letter-spacing: 0;
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { line-height: 1.45; }
[dir="rtl"] .eyebrow, [dir="rtl"] .find__label { letter-spacing: .05em; }
[dir="rtl"] .brand__sub { letter-spacing: .04em; }
[dir="rtl"] .ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }

/* ============================ Points de rupture ============================ */

@media (max-width: 399px) {
  .brand__sub { display: none; }
  .brand__name { font-size: .96rem; }
}

@media (min-width: 560px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; max-width: none; }
  .cta-final .row { flex-direction: row; justify-content: center; max-width: none; }
  .callrow { grid-template-columns: 1fr 1fr; }
  .callrow--three { grid-template-columns: repeat(3, 1fr); }
  .callrow--three .btn { padding-inline: .6rem; font-size: .9rem; }
  .strip__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(2, 1fr); }   /* 2 colonnes seulement : plus calme */
  .find { grid-template-columns: 1fr 1.02fr; align-items: stretch; }
}

@media (min-width: 900px) {
  .hero__in { max-width: 1040px; grid-template-columns: 1fr auto; gap: 3.4rem; }
  .hero__txt { order: 1; }
  .hero__fig { display: block; order: 2; width: 360px; }
  .hero__fig img { border-radius: 24px; }
}

@media (min-width: 980px) {
  :root { --sec-pad: 6rem; --hdr-h: 68px; }
  body { padding-bottom: 0; }
  .dock { display: none; }
  .hdr__cta { display: inline-flex; }
  .brand__mark { width: 48px; height: 48px; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
