/* =========================================================
   jFissa — Livraison locale à Oujda
   Palette issue du logo : orange #FF5A21 / marine #172640
   ========================================================= */
:root {
  --orange: #ff5a21;
  --orange-600: #e8490f;
  --orange-100: #ffe4d8;
  --orange-50: #fff4ee;
  --navy: #172640;
  --navy-800: #1f3152;
  --navy-700: #2b3f63;
  --slate: #5b6679;
  --line: #e7e9ee;
  --bg: #fbfaf8;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 20px 50px -20px rgba(23, 38, 64, .25);
  --shadow-sm: 0 6px 20px -8px rgba(23, 38, 64, .18);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ar: "Cairo", "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="ar"] body, [lang="ar"] { font-family: var(--font-ar); }
main { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0; line-height: 1.35; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font: inherit; font-weight: 700; border: 0; cursor: pointer;
  padding: .85em 1.4em; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 3px;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(255, 90, 33, .7); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 14px 30px -10px rgba(255, 90, 33, .8); }
.btn--ghost { background: var(--white); color: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--sm { padding: .6em 1.1em; font-size: .92rem; }
.btn--lg { padding: 1em 1.6em; font-size: 1.05rem; }
.btn--block { width: 100%; }
.phone { font-weight: 800; letter-spacing: .04em; font-family: var(--font); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 248, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(23, 38, 64, .4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 34px; width: auto; }
.brand__ar {
  font-family: var(--font-ar); font-weight: 800; font-size: 1.05rem; line-height: 1;
  color: var(--navy); padding-inline-start: 12px; border-inline-start: 2px solid var(--orange);
  white-space: nowrap;
}
.nav { display: flex; gap: 30px; font-weight: 600; font-size: .96rem; }
.nav a { position: relative; color: var(--navy-700); transition: color .2s; }
.nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -6px; height: 2px;
  background: var(--orange); transform: scaleX(0); transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.lang {
  display: inline-flex; align-items: center;
  font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer;
  background: transparent; color: var(--navy); border: 2px solid var(--line);
  border-radius: 999px; padding: .42em .95em; transition: border-color .2s;
}
.lang:hover { border-color: var(--navy); }
.lang[lang="ar"] { font-family: var(--font-ar); }
.burger { display: none; width: 42px; height: 42px; border: 0; background: var(--navy); border-radius: 12px; cursor: pointer; padding: 11px 10px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(255, 90, 33, .16), transparent 70%),
    radial-gradient(500px 360px at 10% 90%, rgba(23, 38, 64, .08), transparent 70%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .45em 1em; font-weight: 700; font-size: .85rem; letter-spacing: .08em;
  box-shadow: var(--shadow-sm);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--orange-100); animation: blink 1.6s infinite; }
@keyframes blink { 50% { box-shadow: 0 0 0 8px rgba(255, 90, 33, .08); } }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 800; margin-top: .45em; }
.hl { color: var(--orange); position: relative; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; inset-inline: -2%; bottom: .06em; height: .18em; z-index: -1;
  background: var(--orange-100); border-radius: 8px;
}
.hero__ar { font-family: var(--font-ar); font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 700; color: var(--navy-700); margin: -.2em 0 .7em; text-align: start; }
html[lang="fr"] .hero__ar { text-align: left; }
.hero__lead { font-size: 1.12rem; color: var(--slate); max-width: 34em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }
.hero__tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 700; color: var(--navy-700); }
.hero__tags li { display: inline-flex; align-items: center; gap: .5em; }
.hero__tags li::before { content: "✦"; color: var(--orange); }

.hero__visual { position: relative; padding: 40px 0 54px; }
.map-card {
  background: #fff; border-radius: 28px; padding: 18px; box-shadow: var(--shadow);
  border: 1px solid var(--line); transform: rotate(-1.5deg);
}
html[dir="rtl"] .map-card { transform: rotate(1.5deg); }
.map-card__head { display: flex; align-items: center; gap: 12px; padding: 4px 4px 14px; }
.map-card__head strong { display: block; font-size: 1rem; }
.map-card__head small { color: var(--slate); }
.map-card__icon { width: 44px; height: 44px; border-radius: 12px; }
.live { margin-inline-start: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: #11845b; background: #e6f7ef; padding: .35em .8em; border-radius: 999px; }
.live i { width: 7px; height: 7px; border-radius: 50%; background: #16a36f; animation: blink 1.2s infinite; }
.route { width: 100%; height: auto; display: block; border-radius: 18px; background: var(--orange-50); color: var(--navy); }
.blocks rect { fill: #fff; stroke: rgba(23, 38, 64, .06); }
.route__path { fill: none; stroke: rgba(255, 90, 33, .22); stroke-width: 14; stroke-linecap: round; }
.route__dash { fill: none; stroke: var(--orange); stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 8 10; animation: dash 1.2s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -36; } }
.route__start { fill: var(--navy); stroke: #fff; stroke-width: 4; }
.route__pin circle { fill: var(--orange); }
.route__pin .pulse { fill: rgba(255, 90, 33, .25); transform-origin: center; transform-box: fill-box; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { from { transform: scale(.5); opacity: 1; } to { transform: scale(1.8); opacity: 0; } }
.car__body { fill: var(--navy); }
.car__top { fill: var(--navy-700); }
.car__wheel { fill: #0d1628; stroke: #fff; stroke-width: 1.5; }
.map-card__foot { display: flex; align-items: center; justify-content: space-between; padding: 14px 8px 4px; }
.map-card__foot small { display: block; color: var(--slate); font-size: .78rem; }
.map-card__foot strong { font-size: 1rem; }
.map-card__foot > div:last-child { text-align: end; }
.arrow { color: var(--orange); font-weight: 800; font-size: 1.3rem; }
html[dir="rtl"] .arrow { transform: scaleX(-1); }

.float-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px 14px;
  box-shadow: var(--shadow); font-weight: 700; font-size: .9rem;
  animation: float 5s ease-in-out infinite;
}
.float-badge__ico { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--orange-50); }
.float-badge--1 { top: 0; inset-inline-end: -14px; }
.float-badge--2 { bottom: 0; inset-inline-start: -18px; animation-delay: -2.5s; }
@keyframes float { 50% { transform: translateY(-10px); } }

/* ---------- Marquee ---------- */
.marquee { background: var(--navy); color: #fff; overflow: hidden; padding: 18px 0; transform: rotate(-1deg); margin: 0 -10px; }
.marquee__track { display: flex; gap: 28px; width: max-content; animation: marquee 32s linear infinite; font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 800; white-space: nowrap; }
.marquee__track i { color: var(--orange); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section--tint { background: linear-gradient(180deg, var(--orange-50), var(--bg)); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.kicker { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; margin-bottom: .8em; }
html[lang="ar"] .kicker { letter-spacing: 0; font-size: .95rem; }
.kicker--light { color: #ffb08f; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--orange-50); margin-bottom: 22px; }
.card__ico svg { width: 28px; height: 28px; fill: var(--orange); }
.card p { color: var(--slate); }
.card__ar { font-size: .98rem; padding-top: 14px; border-top: 1px dashed var(--line); margin: 0; text-align: right; }
.card__ar b { color: var(--navy); }
.card--accent { background: var(--navy); color: #fff; border-color: var(--navy); }
.card--accent p { color: #c3cad6; }
.card--accent .card__ar { border-color: rgba(255, 255, 255, .15); }
.card--accent .card__ar b { color: #fff; }
.card--accent .card__ico { background: rgba(255, 90, 33, .15); }

/* Car band */
.band { background: var(--navy); color: #fff; padding: clamp(60px, 9vw, 100px) 0; position: relative; overflow: hidden; }
.band::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  inset-inline-end: -140px; top: -160px; background: radial-gradient(circle, rgba(255, 90, 33, .28), transparent 65%);
}
.band__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; position: relative; }
.band p { color: #c3cad6; font-size: 1.05rem; }
.checks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.checks li { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.checks li::before {
  content: "✓"; flex: none; width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; background: var(--orange); color: #fff; font-size: .85rem;
}
.bigcar { width: 100%; height: auto; }
html[dir="rtl"] .bigcar { transform: scaleX(-1); }
html[dir="rtl"] .bigcar__text { transform: scaleX(-1); transform-box: fill-box; transform-origin: center; }
.bigcar__car { animation: bob 1.1s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-3px); } }
.bigcar__body { fill: var(--orange); }
.bigcar__glass { fill: #2b3f63; }
.bigcar__label { fill: #fff; }
.bigcar__text { fill: var(--navy); font: 800 16px var(--font); }
.bigcar__tire { fill: #0d1628; }
.bigcar__rim { fill: #c3cad6; }
.bigcar__light { fill: #ffe08a; }
.speedlines rect { fill: rgba(255, 255, 255, .25); animation: speed 1s linear infinite; }
.speedlines rect:nth-child(2) { animation-delay: -.33s; }
.speedlines rect:nth-child(3) { animation-delay: -.66s; }
@keyframes speed { from { transform: translateX(40px); opacity: 0; } 30% { opacity: 1; } to { transform: translateX(-40px); opacity: 0; } }
.road { fill: rgba(255, 255, 255, .15); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; position: relative; }
.step { position: relative; padding: 30px 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step__n {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 18px;
  box-shadow: 0 0 0 8px var(--orange-50); font-family: var(--font);
}
.step p { color: var(--slate); margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 57px; inset-inline-end: -22px; width: 22px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 5px, transparent 5px 9px);
}

/* Zones */
.zones { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.zones__text > p { color: var(--slate); font-size: 1.05rem; }
.zones__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: .4em;
  background: #fff; border: 1px solid var(--line); padding: .5em 1em; border-radius: 999px;
  font-weight: 600; font-size: .95rem; transition: border-color .2s, transform .2s;
}
.chip:hover { border-color: var(--orange); transform: translateY(-2px); }
.chip--main { background: var(--orange); color: #fff; border-color: var(--orange); font-weight: 800; }

.radar { position: relative; aspect-ratio: 1; width: min(460px, 100%); margin-inline: auto; border-radius: 50%; background: radial-gradient(circle, #fff 0 40%, var(--orange-50) 100%); box-shadow: var(--shadow); overflow: hidden; }
.radar__ring { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1.5px dashed rgba(23, 38, 64, .14); }
.r1 { width: 33%; height: 33%; } .r2 { width: 63%; height: 63%; } .r3 { width: 92%; height: 92%; }
.radar__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 90, 33, .28), transparent 22%);
  animation: sweep 5s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: grid; justify-items: center; gap: 6px; z-index: 2; }
.radar__center img { width: 64px; height: 64px; border-radius: 18px; box-shadow: 0 10px 26px -8px rgba(255, 90, 33, .6); }
.radar__center span { font-weight: 800; background: var(--navy); color: #fff; padding: .15em .7em; border-radius: 999px; font-size: .85rem; font-family: var(--font); }
.radar__dot { position: absolute; left: var(--x); top: var(--y); width: 12px; height: 12px; margin: -6px; border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 5px rgba(23, 38, 64, .12); z-index: 2; }
.radar__dot::after {
  content: attr(data-label); position: absolute; left: 50%; top: 16px; transform: translateX(-50%);
  font: 700 .72rem var(--font); white-space: nowrap; color: var(--navy-700);
}

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: stretch; }
.contact__card {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #fff; border-radius: 28px; padding: clamp(30px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: center;
}
.contact__card::after {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  inset-inline-end: -100px; bottom: -120px; background: radial-gradient(circle, rgba(255, 90, 33, .4), transparent 65%);
}
.contact__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.contact__brand strong { display: block; font-size: 1.3rem; font-family: var(--font); line-height: 1.2; }
.contact__brand span { display: block; font-family: var(--font-ar); font-weight: 700; color: #ffb08f; }
.contact__icon { width: 60px; height: 60px; border-radius: 16px; box-shadow: 0 0 0 2px rgba(255, 255, 255, .15); }
.footer__ar { font-style: normal; font-family: var(--font-ar); font-weight: 700; color: #ffb08f; font-size: 1rem; margin-inline-start: 6px; }
.contact__ar { font-family: var(--font-ar); font-size: clamp(1.8rem, 3vw, 2.4rem); text-align: start; margin-bottom: .2em; }
.contact__phone { font-family: var(--font); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: .03em; color: #fff; transition: color .2s; align-self: flex-start; }
.contact__phone:hover { color: var(--orange); }
.contact__loc { display: flex; align-items: center; gap: .5em; color: #c3cad6; margin: 10px 0 26px; }
.contact__loc .ico { color: var(--orange); }
.contact__btns { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }

.order { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); display: grid; gap: 16px; }
.order h3 { font-size: 1.5rem; margin: 0; }
.order__hint { color: var(--slate); margin: -8px 0 4px; }
.order label { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
.order__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order input, .order select, .order textarea {
  font: inherit; font-weight: 500; color: var(--navy); width: 100%;
  padding: .8em 1em; border: 1.5px solid var(--line); border-radius: 14px; background: var(--bg);
  transition: border-color .2s, background .2s;
}
.order input:focus, .order select:focus, .order textarea:focus { border-color: var(--orange); background: #fff; outline: none; }
.order .is-invalid { border-color: #d93636; background: #fff5f5; }
.order textarea { resize: vertical; }
.order__error { color: #d93636; font-weight: 600; margin: 0; font-size: .9rem; }

/* Footer */
.footer { background: var(--navy); color: #c3cad6; padding: 50px 0 96px; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__icon { width: 48px; height: 48px; border-radius: 14px; }
.footer__brand strong { color: #fff; font-size: 1.35rem; font-family: var(--font); }
.footer__brand strong span { color: var(--orange); }
.footer__brand p { margin: 0; font-size: .9rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; font-weight: 600; }
.footer__nav a:hover { color: #fff; }
.footer__phone { color: #fff; font-weight: 800; font-size: 1.2rem; font-family: var(--font); }
.footer__phone:hover { color: var(--orange); }
.footer__bottom { padding-top: 20px; text-align: center; font-size: .85rem; }

/* FAB */
.fab {
  position: fixed; inset-inline-end: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .7);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.map-card.reveal.is-visible, .hero__visual.reveal.is-visible { transform: none; }

/* Arabic mode: hide the duplicated Arabic sub-lines */
html[lang="ar"] [data-hide-in="ar"] { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner, .band__inner, .zones, .contact { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin: 30px auto 0; width: 100%; }
  .cards, .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .band__visual { max-width: 520px; }
}
@media (max-width: 860px) {
  .burger { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed; top: 72px; inset-inline: 0; flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 16px 18px;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s, visibility .3s;
    box-shadow: 0 20px 30px -20px rgba(23, 38, 64, .3);
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
}
@media (max-width: 560px) {
  .brand__logo { height: 28px; }
  .order__row { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
  .float-badge { display: none; }
  .hero__visual { padding: 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .radar__dot::after { font-size: .62rem; }
}

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

/* FAQ */
.faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: var(--orange-100); box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 { margin: 0; font-size: 1.08rem; }
.faq__item p { margin: 0; padding: 0 24px 22px; color: var(--slate); }
.faq__plus { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--orange-50); }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; inset: 0; margin: auto; width: 12px; height: 2px; background: var(--orange); border-radius: 2px; transition: transform .25s var(--ease); }
.faq__plus::after { transform: rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: rotate(0); }

/* Réseaux sociaux */
.social { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.social__link {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .14);
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.social__link svg { width: 20px; height: 20px; fill: currentColor; }
.social__link:hover { transform: translateY(-3px); border-color: transparent; }
.social__link--facebook:hover { background: #1877f2; }
.social__link--instagram:hover { background: radial-gradient(circle at 30% 110%, #fdd66b 0 10%, #f56040 35%, #c13584 65%, #5b51d8); }
.social__link--x:hover { background: #000; }
.social__link--youtube:hover { background: #ff0000; }
.contact__social { position: relative; z-index: 1; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); }
.contact__social p { margin: 0 0 12px; font-weight: 700; font-size: .9rem; color: #c3cad6; }
.footer__contact { display: grid; gap: 14px; justify-items: end; }
@media (max-width: 560px) { .footer__contact { justify-items: start; } }
