/* ============================================================
   ARTISIA — artisia.pro
   Identité : couleurs réelles du logo (bleu nuit #1E242B · orange #DF7D34)
   Display : Bricolage Grotesque · Corps : Public Sans
   Refonte visuelle 2026-07-07
   ============================================================ */

:root {
  /* Bleu nuit — teinte réelle du fond du logo */
  --navy-950: #141A1F;
  --navy-900: #1E242B;
  --navy-800: #28313A;
  --navy-700: #3A4550;
  --navy-600: #5B6570;

  /* Orange — teinte réelle du carré du logo */
  --orange-300: #F3BE86;
  --orange-400: #EA9C56;
  --orange-500: #DF7D34;
  --orange-600: #C86A26;
  --orange-700: #A9551C;
  --orange-050: #FBF0E6;

  --bg: #F7F5F2;
  --bg-soft: #FBFAF8;
  --card: #FFFFFF;
  --ink: #212A32;
  --ink-soft: #5C6771;
  --line: #EAE6E0;
  --line-soft: #F1EEE9;

  --radius: 22px;
  --radius-sm: 13px;
  --radius-lg: 30px;

  --shadow-sm: 0 1px 2px rgba(20, 26, 31, .05), 0 4px 12px -6px rgba(20, 26, 31, .10);
  --shadow: 0 2px 4px rgba(20, 26, 31, .04), 0 14px 34px -14px rgba(20, 26, 31, .18);
  --shadow-lg: 0 10px 26px -10px rgba(20, 26, 31, .16), 0 40px 80px -30px rgba(20, 26, 31, .34);
  --glow-orange: 0 24px 70px -20px rgba(223, 125, 52, .55);

  --font-display: "Bricolage Grotesque", "Public Sans", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--orange-600); text-decoration: none; }
a:hover { text-decoration: underline; }

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

::selection { background: var(--orange-500); color: #fff; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Révélations au défilement */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 242, .72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 245, 242, .9);
  box-shadow: 0 6px 24px -18px rgba(20, 26, 31, .5);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  box-shadow: 0 4px 12px -4px rgba(20, 26, 31, .35);
}

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  position: relative;
  color: var(--navy-700);
  font-weight: 600;
  font-size: 15px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
  transition: right .25s ease;
}
.site-nav a:hover { color: var(--orange-600); text-decoration: none; }
.site-nav a:hover::after { right: 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500) 55%, var(--orange-600));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(223, 125, 52, .7);
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn-primary:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(223, 125, 52, .75); }
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost { background: #fff; color: var(--navy-900); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--navy-800); text-decoration: none; transform: translateY(-2px); }

/* ---------- Eyebrow — le carré orange du logo ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 3px;
  flex: none;
  box-shadow: 0 2px 6px -1px rgba(223, 125, 52, .6);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 92px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(223, 125, 52, .16), transparent 58%),
    radial-gradient(900px 520px at 104% 4%, rgba(40, 49, 58, .10), transparent 55%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
/* Trame de points discrète */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(40, 49, 58, .06) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(760px 520px at 20% 12%, #000, transparent 72%);
  mask-image: radial-gradient(760px 520px at 20% 12%, #000, transparent 72%);
  pointer-events: none;
}
/* Halo orange flottant */
.hero::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  right: -120px; top: -140px;
  background: radial-gradient(closest-side, rgba(223, 125, 52, .28), transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy-900);
  margin: 20px 0 20px;
}
.hero h1 .accent {
  background: linear-gradient(115deg, var(--orange-600), var(--orange-500) 45%, var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  font-size: 19.5px;
  color: var(--ink-soft);
  max-width: 47ch;
  margin: 0 0 28px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Ligne de confiance sous les CTA */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 600;
}
.hero-trust .dot { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--orange-500); flex: none; }
.hero-trust .stars { color: var(--orange-500); letter-spacing: 2px; }

/* Badges boutiques */
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #fff;
  border-radius: 15px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 26px -14px rgba(20, 26, 31, .8);
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-pill:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(20, 26, 31, .85); }
.store-pill small { display: block; font-weight: 500; opacity: .72; font-size: 11.5px; line-height: 1.15; letter-spacing: .01em; }
.store-pill svg { flex: none; }

/* ---------- Mock téléphone ---------- */

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.phone-stage::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(223, 125, 52, .38), transparent 72%);
  filter: blur(18px);
  z-index: -1;
  border-radius: 50%;
}

.phone {
  width: min(300px, 100%);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-radius: 46px;
  padding: 13px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.phone-stage:hover .phone { transform: rotate(0deg) translateY(-4px); }
/* Encoche */
.phone::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px;
  background: var(--navy-950);
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

.phone-screen {
  position: relative;
  background: radial-gradient(120% 80% at 50% -10%, #fff, var(--bg) 70%);
  border-radius: 34px;
  padding: 40px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.phone-screen .logo-mark {
  width: 76px; height: 76px;
  border-radius: 19px;
  box-shadow: 0 14px 28px -10px rgba(20, 26, 31, .5);
}
.phone-screen .app-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 27px;
  color: var(--navy-900);
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.phone-screen .app-tag { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; text-align: center; }

.app-btn {
  width: 100%;
  border-radius: 16px;
  padding: 13px 15px;
  color: #fff;
  box-shadow: 0 10px 20px -12px rgba(20, 26, 31, .5);
}
.app-btn strong { display: block; font-size: 14.5px; }
.app-btn span { font-size: 11px; opacity: .9; }
.app-btn.orange { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.app-btn.navy { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }

/* Cartes flottantes autour du téléphone */
.badge-float {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 11px 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
}
.badge-float small { display: block; font-weight: 500; font-size: 11px; color: var(--ink-soft); }
.badge-float .ic {
  width: 30px; height: 30px; flex: none;
  border-radius: 9px;
  display: grid; place-items: center;
  color: #fff;
}
.badge-float .ic.green { background: linear-gradient(135deg, #34C77B, #1E9E5A); }
.badge-float .ic.orange { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.badge-float .ic.navy { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }

.badge-float.b-verified { top: 30px; left: -26px; animation-delay: .4s; }
.badge-float.b-rating { bottom: 66px; left: -40px; animation-delay: 1.5s; }
.badge-float.b-msg { bottom: 20px; right: -30px; animation-delay: .9s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* ---------- Bandeau atouts ---------- */

.stats {
  position: relative;
  z-index: 1;
  margin-top: 6px;
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 30px;
}
.stat { display: flex; align-items: center; gap: 13px; }
.stat + .stat { border-left: 1px solid var(--line-soft); padding-left: 18px; }
.stat .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--orange-050);
  color: var(--orange-600);
  display: grid; place-items: center;
}
.stat b { font-family: var(--font-display); font-size: 17px; color: var(--navy-900); display: block; line-height: 1.15; }
.stat span { font-size: 13px; color: var(--ink-soft); }

/* ---------- Sections ---------- */

.section { padding: 84px 0; }
.section.alt {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(223, 125, 52, .05), transparent 60%),
    #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(29px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: var(--navy-900);
  margin: 14px 0 12px;
}
.section-head p { color: var(--ink-soft); margin: 0; font-size: 18px; }

/* ---------- Cartes publics ---------- */

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.audience {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .22s ease, box-shadow .22s ease;
}
.audience::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 200px at 100% 0%, rgba(255, 255, 255, .22), transparent 60%);
  pointer-events: none;
}
.audience:hover { transform: translateY(-5px); }
.audience.orange { background: linear-gradient(145deg, #EA9C56 0%, #DF7D34 52%, #C05F1E 100%); }
.audience.navy { background: linear-gradient(150deg, #33404E 0%, #28313A 55%, #1A2027 100%); }

.audience .icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid; place-items: center;
}
.audience h3 { font-family: var(--font-display); font-size: 26px; margin: 0; letter-spacing: -0.01em; }
.audience p { margin: 0; opacity: .94; font-size: 16px; }
.audience ul { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.audience li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.audience li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px; margin-top: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Étapes ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 11px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -8px rgba(223, 125, 52, .7);
}
.step h3 { font-family: var(--font-display); font-size: 21px; margin: 0 0 8px; color: var(--navy-900); }
.step p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Métiers ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 13px; }
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px 12px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}
.chip::before {
  content: "";
  width: 9px; height: 9px; flex: none;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  transition: transform .18s ease;
}
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--orange-300); color: var(--orange-700); }
.chip:hover::before { transform: rotate(45deg) scale(1.1); }
.chip.more { border-style: dashed; color: var(--ink-soft); font-weight: 500; box-shadow: none; }
.chip.more::before { display: none; }

/* ---------- Confiance ---------- */

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trust:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.trust .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--orange-050), #fff);
  border: 1px solid var(--orange-050);
  color: var(--orange-600);
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -12px rgba(223, 125, 52, .5);
}
.trust h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; color: var(--navy-900); }
.trust p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Zone ---------- */

.zone {
  position: relative;
  background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.zone::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -120px; bottom: -160px;
  background: radial-gradient(closest-side, rgba(223, 125, 52, .32), transparent 70%);
  pointer-events: none;
}
.zone::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(600px 300px at 90% 100%, #000, transparent 70%);
  mask-image: radial-gradient(600px 300px at 90% 100%, #000, transparent 70%);
  pointer-events: none;
}
.zone > * { position: relative; z-index: 1; }
.zone h2 { font-family: var(--font-display); font-size: clamp(27px, 3vw, 36px); margin: 12px 0 12px; letter-spacing: -0.02em; }
.zone p { margin: 0; color: rgba(255, 255, 255, .84); }
.zone .eyebrow { color: var(--orange-400); }
.zone-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.zone-cities span {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background .18s ease, border-color .18s ease;
}
.zone-cities span:hover { background: rgba(223, 125, 52, .22); border-color: rgba(223, 125, 52, .5); }

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

.contact-band {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background:
    radial-gradient(600px 260px at 50% -10%, rgba(223, 125, 52, .12), transparent 65%),
    linear-gradient(180deg, #fff, var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-band h2 { font-family: var(--font-display); font-size: clamp(27px, 3vw, 36px); color: var(--navy-900); margin: 14px 0 10px; letter-spacing: -0.02em; }
.contact-band p { color: var(--ink-soft); margin: 0 auto 26px; max-width: 48ch; }

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

.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: rgba(255, 255, 255, .8);
  padding: 60px 0 40px;
  margin-top: 84px;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600), transparent 70%);
}
.site-footer .top {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer .brand { color: #fff; }
.site-footer .tagline { margin: 12px 0 0; font-size: 14.5px; color: rgba(255, 255, 255, .6); max-width: 32ch; }
.footer-nav { display: grid; gap: 11px; align-content: start; }
.footer-nav strong { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a { color: rgba(255, 255, 255, .74); font-size: 15px; transition: color .18s ease, padding .18s ease; }
.footer-nav a:hover { color: var(--orange-400); text-decoration: none; padding-left: 3px; }
.site-footer .bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
}

/* ---------- Pages document (légal, support) ---------- */

.doc-hero { padding: 72px 0 8px; position: relative; }
.doc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 46px);
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 14px 0 10px;
  line-height: 1.08;
}
.doc-hero .updated { color: var(--ink-soft); font-size: 15.5px; margin: 0; max-width: 60ch; }

.doc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 60px);
  margin: 36px 0 0;
  max-width: 880px;
}
.doc h2 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 44px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.doc h2:first-child { margin-top: 0; }
.doc h2::before {
  content: "";
  width: 11px; height: 11px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 3px;
  flex: none;
  align-self: center;
}
.doc h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy-800); margin: 28px 0 8px; }
.doc p, .doc li { color: var(--navy-700); font-size: 16.5px; }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc li::marker { color: var(--orange-500); }
.doc .note {
  background: linear-gradient(180deg, var(--orange-050), #fff);
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 15.5px;
  color: var(--navy-700);
}
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15.5px; }
.doc th { text-align: left; background: var(--bg); font-family: var(--font-display); font-size: 14px; letter-spacing: .02em; }
.doc th, .doc td { border: 1px solid var(--line); padding: 12px 14px; vertical-align: top; color: var(--navy-700); }

/* FAQ */
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--orange-300); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px; color: #fff;
  width: 28px; height: 28px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 8px;
  line-height: 1;
  transition: transform .25s ease;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq details > div { padding: 0 24px 20px; color: var(--navy-700); font-size: 16px; }
.faq details > div p { margin-top: 0; }

/* Page 404 */
.err { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.err .code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(96px, 18vw, 150px);
  line-height: 1;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.err h1 { font-family: var(--font-display); color: var(--navy-900); margin: 12px 0 8px; }
.err p { color: var(--ink-soft); margin: 0 0 26px; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero { padding: 68px 0 60px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 52px; }
  .phone { transform: rotate(0deg); }
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat + .stat { border-left: none; padding-left: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line-soft); padding-right: 12px; }
  .audience-grid, .steps, .trust-grid { grid-template-columns: 1fr; }
  .zone { grid-template-columns: 1fr; padding: 42px 30px; }
  .site-nav { gap: 18px; }
  .site-nav .hide-mobile { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .stats .wrap { grid-template-columns: 1fr; padding: 20px; }
  .stat + .stat { border-top: 1px solid var(--line-soft); padding-top: 14px; }
  .stat:nth-child(odd) { border-right: none; padding-right: 0; }
  .badge-float.b-verified { left: 4px; top: 14px; }
  .badge-float.b-rating { left: 0; bottom: 54px; }
  .badge-float.b-msg { right: 2px; }
  .contact-band { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
