/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Écran de transition (app/loading.jsx) ───────────────────────────── */
.route-loading { min-height: 60vh; padding: 96px 22px; }
.rl-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, transparent, #16b6c9, transparent);
  animation: rl-slide 1.1s linear infinite; z-index: 999;
}
@keyframes rl-slide { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.rl-inner { max-width: 1100px; margin: 0 auto; }
.rl-kicker { font-size: 12px; letter-spacing: .18em; opacity: .55; }
.rl-line { height: 22px; border-radius: 8px; margin-top: 18px; background: currentColor; opacity: .07; animation: rl-pulse 1.4s ease-in-out infinite; }
.rl-w70 { width: 70%; } .rl-w45 { width: 45%; }
.rl-cards { display: grid; grid-gap: 16px; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-top: 40px; }
.rl-cards i { display: block; height: 150px; border-radius: 14px; background: currentColor; opacity: .05; animation: rl-pulse 1.4s ease-in-out infinite; }
@keyframes rl-pulse { 0%, 100% { opacity: .05; } 50% { opacity: .11; } }
@media (prefers-reduced-motion: reduce) { .rl-bar, .rl-line, .rl-cards i { animation: none; } }

:root {
  /* Brand */
  --navy-950: #050d24;
  --navy-900: #081434;
  --navy: #0f2557;
  --navy-2: #16337a;
  --teal: #00b4c2;
  --teal-2: #00c9d8;
  --teal-bright: #2ee8f7;
  --indigo: #4c6fff;

  /* Surfaces & text */
  --bg: #f4f6fb;
  --ink: #101528;
  --muted: #5b6478;
  --faint: #8a92a6;
  --line: #e4e8f2;
  --card: #ffffff;

  /* Accents */
  --grad-accent: linear-gradient(120deg, var(--teal) 0%, var(--indigo) 100%);
  --grad-hero-text: linear-gradient(100deg, #2ee8f7 0%, #00b4c2 45%, #6f8dff 100%);

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(15, 37, 87, .06);
  --shadow-md: 0 10px 34px rgba(15, 37, 87, .10);
  --shadow-lg: 0 24px 70px rgba(15, 37, 87, .16);
  --ring: 0 0 0 3px rgba(0, 180, 194, .28);

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: .18s;
  --t-med: .35s;
  --t-slow: .7s;

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body, 'Helvetica Neue', Arial, sans-serif);
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, .brand, .price, .amt, .big {
  font-family: var(--font-display, var(--font-body, 'Helvetica Neue', Arial, sans-serif));
}
a { color: var(--teal); text-decoration: none; }
::selection { background: rgba(0, 180, 194, .25); }

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

/* ══════════ Scroll-reveal system (Fx.jsx adds .in when visible) ══════════ */
/* `.fx-reveal` is added by Fx.jsx AFTER hydration (never rendered by the
   server), so staggered cards are visible by default and only animate once JS
   has taken over. `[data-reveal]` is authored in the JSX, so it is hidden from
   the start. Neither may ever hide content permanently. */
.fx-reveal:not(.in),
[data-reveal]:not(.in) {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"]:not(.in)  { transform: translateX(-34px); }
[data-reveal="right"]:not(.in) { transform: translateX(34px); }
[data-reveal="scale"]:not(.in) { transform: scale(.92); }
.fx-reveal.in,
[data-reveal].in { opacity: 1; transform: none; }

/* ══════════ Navigation — glass, shrinks on scroll ══════════ */
.nav {
  position: -webkit-sticky;
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 20, 52, .82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: box-shadow var(--t-med) ease, background var(--t-med) ease;
}
.nav.scrolled { background: rgba(6, 15, 38, .92); box-shadow: 0 12px 40px rgba(5, 13, 36, .45); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px; max-width: 1120px; margin: 0 auto;
  transition: padding var(--t-med) ease;
}
.nav.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
.brand { font-size: 20px; font-weight: 800; letter-spacing: 1.5px; color: #fff; position: relative; }
.brand span { background: var(--grad-hero-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 26px; align-items: center; margin-left: auto; margin-right: 26px; white-space: nowrap; }
.nav-pay { padding: 10px 20px; font-size: 14px; }
.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, .78); font-size: 14px; font-weight: 600;
  position: relative; padding: 4px 0; transition: color var(--t-fast) ease;
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--grad-accent); border-radius: 2px;
  transition: right var(--t-med) var(--ease-out);
}
.nav-links a:not(.btn):hover { color: #fff; }
.nav-links a:not(.btn):hover::after { right: 0; }

/* Hamburger — mobile only (the media query flips it to inline-flex) */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0 9px; margin-right: -8px;
  background: transparent; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px; background: #fff;
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast) ease;
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop { display: none; }
@media (max-width: 760px) { .nav-backdrop { display: block; } }
@media (prefers-reduced-motion: reduce) {
  .nav-links, .nav-links a:not(.btn), .nav-backdrop, .nav-burger span { transition-duration: .01ms !important; transition-delay: 0s !important; }
}

/* ══════════ Buttons ══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 12px; padding: 13px 26px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; text-align: center;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-med) var(--ease-out),
              background var(--t-fast) ease, border-color var(--t-fast) ease, color var(--t-fast) ease;
}
.btn:active { transform: scale(.97); }
.btn svg { flex: 0 0 auto; }

.btn-teal {
  background: linear-gradient(120deg, var(--teal) 0%, #0993c6 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 180, 194, .35);
}
.btn-teal::before {
  /* shine sweep */
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .35) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
}
.btn-teal:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 180, 194, .5); }
.btn-teal:hover::before { transform: translateX(120%); }

.btn-outline { background: rgba(255, 255, 255, .04); color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); }
.btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-ghost { background: #eaedf5; color: var(--ink); }
.btn-ghost:hover { background: #dfe4f0; transform: translateY(-2px); }
.btn[disabled] { opacity: .6; cursor: default; transform: none !important; }

.btn:focus-visible, a:focus-visible, button:focus-visible { outline: none; box-shadow: var(--ring); }

/* inline loading spinner */
.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff;
  animation: spin .7s linear infinite; flex: 0 0 auto;
}
.spinner.dark { border-color: rgba(15, 37, 87, .25); border-top-color: var(--navy); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════ Hero — animated aurora ══════════ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 15% -10%, var(--navy-2) 0%, var(--navy-900) 48%, var(--navy-950) 100%);
  color: #fff; padding: 96px 0 110px;
}
.hero::before {
  /* aurora blobs */
  content: ''; position: absolute; inset: -30%;
  background:
    radial-gradient(38% 34% at 22% 30%, rgba(0, 201, 216, .22), transparent 70%),
    radial-gradient(30% 30% at 78% 22%, rgba(76, 111, 255, .25), transparent 70%),
    radial-gradient(32% 36% at 62% 78%, rgba(0, 180, 194, .14), transparent 70%);
  animation: aurora 16s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  /* fine grid texture */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 90% at 50% 10%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 90% at 50% 10%, #000 30%, transparent 100%);
}
@keyframes aurora {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(4%, -3%) rotate(4deg) scale(1.06); }
  100% { transform: translate(-4%, 3%) rotate(-3deg) scale(1.02); }
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-gap: 48px;
  gap: 48px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(0, 201, 216, .1);
  border: 1px solid rgba(0, 201, 216, .3);
  border-radius: 999px; padding: 8px 16px; margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright);
  box-shadow: 0 0 0 0 rgba(46, 232, 247, .6);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 232, 247, .55); }
  70% { box-shadow: 0 0 0 9px rgba(46, 232, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 232, 247, 0); }
}

.hero h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.08; letter-spacing: -.5px; max-width: 640px; font-weight: 800; }
.hero h1 em {
  font-style: normal;
  background: var(--grad-hero-text);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradient-slide 5s ease-in-out infinite alternate;
}
@keyframes gradient-slide { from { background-position: 0% 0; } to { background-position: 100% 0; } }

.hero p { margin: 24px 0 36px; font-size: 18px; color: rgba(233, 240, 255, .78); max-width: 560px; line-height: 1.65; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* headline / copy load-in cascade */
.rise { opacity: 0; transform: translateY(30px); animation: rise .9s var(--ease-out) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* hero stats */
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; margin-top: 46px; }
.hstat .v { font-size: 27px; font-weight: 800; letter-spacing: -.5px; color: #fff; }
.hstat .v span { color: var(--teal-bright); }
.hstat .k { font-size: 12.5px; color: rgba(233, 240, 255, .55); font-weight: 600; margin-top: 3px; letter-spacing: .3px; }

/* ══════════ Hero visual — floating glass invoice mock ══════════ */
.hero-visual { position: relative; min-height: 400px; }
.glass {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(4, 10, 30, .5);
}
.mock-card {
  position: absolute; top: 8%; left: 4%; right: 10%;
  padding: 26px; animation: float-a 7s ease-in-out infinite;
}
@keyframes float-a { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(-1deg); } }
.mc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mc-brand { font-weight: 800; letter-spacing: 1.2px; font-size: 14px; color: #fff; }
.mc-brand span { color: var(--teal-bright); }
.mc-ref { font-size: 11.5px; color: rgba(233, 240, 255, .5); letter-spacing: 1px; }
.mc-line { display: flex; justify-content: space-between; font-size: 13px; color: rgba(233, 240, 255, .72); padding: 7px 0; border-bottom: 1px dashed rgba(255, 255, 255, .1); }
.mc-line b { color: #fff; font-weight: 700; }
.mc-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 15px; }
.mc-total .lbl { font-size: 12px; color: rgba(233, 240, 255, .55); letter-spacing: 1px; text-transform: uppercase; }
.mc-total .amt { font-size: 25px; font-weight: 800; color: var(--teal-bright); }
.mc-bar { height: 7px; border-radius: 99px; background: rgba(255, 255, 255, .12); margin-top: 16px; overflow: hidden; }
.mc-bar i {
  display: block; height: 100%; width: 30%; border-radius: 99px;
  background: var(--grad-accent);
  transform-origin: left; animation: fill-30 2.4s var(--ease-out) .8s backwards;
}
@keyframes fill-30 { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.mc-foot { display: flex; justify-content: space-between; margin-top: 9px; font-size: 11.5px; color: rgba(233, 240, 255, .5); }

.mock-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; font-size: 13px; font-weight: 700; color: #fff;
  border-radius: var(--r-md);
}
.mock-chip svg { color: var(--teal-bright); }
.mock-chip.pos-a { bottom: 16%; left: -2%; animation: float-b 6s ease-in-out 1s infinite; }
.mock-chip.pos-b { top: -2%; right: 0; animation: float-b 8s ease-in-out .4s infinite; }
@keyframes float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.chip-ok {
  position: absolute; bottom: 30%; right: 2%;
  display: flex; align-items: center; gap: 9px;
  background: linear-gradient(120deg, #0e9f6e, #0bd489);
  color: #fff; font-size: 13px; font-weight: 800;
  padding: 12px 18px; border-radius: 999px;
  box-shadow: 0 18px 44px rgba(11, 212, 137, .4);
  animation: float-b 5.5s ease-in-out .8s infinite;
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .3); border-radius: 14px;
  z-index: 2;
}
.scroll-cue::before {
  content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  border-radius: 4px; background: var(--teal-bright); transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { opacity: 0; top: 7px; } 35% { opacity: 1; } 100% { opacity: 0; top: 20px; } }

/* ══════════ Trust bar ══════════ */
.trust {
  position: relative; z-index: 2;
  background: #fff; border-block: 1px solid var(--line);
  padding: 18px 0;
}
.trust-inner { display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.trust-item svg { color: var(--teal); }

/* ══════════ Sections ══════════ */
.section { padding: 92px 0; }
/* Deux sections qui se suivent cumulent 92 + 92 = 184px de vide. Sur /agence
   les sections suivantes portent déjà `paddingTop: 0` en inline ; cette règle
   couvre les composants (Guarantees, Partners, Platforms, Testimonials) qui ne
   peuvent pas le faire. Règle : la respiration appartient à la section qui
   commence, pas à la somme des deux. */
.section + .section { padding-top: 0; }
/* Une page-fiche (`main.section`) dont le contenu est court ne doit pas être
   suivie d'une bande vide : le footer remonte. */
main.section { padding-bottom: 64px; }
.section h2 { font-size: clamp(27px, 3.2vw, 36px); letter-spacing: -.5px; color: var(--navy); margin-bottom: 12px; font-weight: 800; }
.section .sub { color: var(--muted); font-size: 16.5px; margin-bottom: 44px; max-width: 640px; line-height: 1.6; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 2.2px;
  text-transform: uppercase; margin-bottom: 16px;
  color: var(--teal);
  background: rgba(0, 180, 194, .08);
  border: 1px solid rgba(0, 180, 194, .22);
  border-radius: 999px; padding: 8px 16px;
}
.kicker::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-accent); }

.sec-head.center { text-align: center; }
.sec-head.center .sub { margin-left: auto; margin-right: auto; }

/* ══════════ Generic cards ══════════ */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-gap: 20px; gap: 20px; }
.card { background: var(--card); border-radius: var(--r-md); padding: 26px; box-shadow: var(--shadow-sm); }
.card .ico { font-size: 30px; margin-bottom: 12px; }
.card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ══════════ Process steps — connected timeline ══════════ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); grid-gap: 22px; gap: 22px; position: relative; }
.step {
  position: relative; overflow: hidden;
  background: var(--card); border-radius: var(--r-lg); padding: 30px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.step::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.step:hover::before, .step.in::before { transform: scaleX(1); }
.step .n {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; color: var(--teal); letter-spacing: 2px; margin-bottom: 12px;
}
.step h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step .big { font-size: 30px; font-weight: 800; letter-spacing: -.5px; color: var(--navy); margin: 4px 0 10px; }
.step .big span { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ══════════ CTA band — glowing gradient border ══════════ */
.band {
  position: relative;
  background: radial-gradient(130% 160% at 20% 0%, var(--navy-2) 0%, var(--navy-900) 65%);
  color: #fff; border-radius: var(--r-xl); padding: 54px;
  display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
  overflow: hidden; isolation: isolate;
}
.band::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from var(--band-angle, 0deg), transparent 10%, rgba(46, 232, 247, .9), rgba(76, 111, 255, .9), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: band-spin 6s linear infinite;
}
@property --band-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes band-spin { to { --band-angle: 360deg; } }
.band::after {
  content: ''; position: absolute; inset: -40%; z-index: -1; pointer-events: none;
  background: radial-gradient(30% 40% at 75% 30%, rgba(0, 201, 216, .18), transparent 70%);
  animation: aurora 12s ease-in-out infinite alternate;
}
.band h2 { color: #fff; font-size: 27px; margin-bottom: 8px; letter-spacing: -.3px; }
.band p { color: rgba(233, 240, 255, .72); font-size: 15px; max-width: 560px; line-height: 1.6; }

/* ══════════ Footer ══════════ */
.footer {
  position: relative;
  background: var(--navy-950); color: rgba(233, 240, 255, .65);
  padding: 56px 0 34px; margin-top: 60px; font-size: 14px;
}
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-accent); opacity: .8; }
.footer .cols { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer b { color: #fff; display: inline-block; margin-bottom: 6px; }
.footer .cols > div { line-height: 1.8; }
.footer-bar {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(233, 240, 255, .4);
}

/* ══════════ Panels & forms ══════════ */
.panel {
  position: relative;
  background: var(--card); border-radius: var(--r-lg); padding: 34px;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
label.f { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.6px; font-weight: 700; color: var(--faint); margin: 18px 0 7px; }
input.f, textarea.f, select.f {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid #d5dae6; border-radius: var(--r-sm);
  font-size: 15px; font-family: inherit; background: #fff; color: var(--ink);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, transform var(--t-fast) ease;
}
input.f:hover, textarea.f:hover { border-color: #b9c2d8; }
input.f:focus, textarea.f:focus, select.f:focus { outline: none; border-color: var(--teal); box-shadow: var(--ring); }
input.f::placeholder, textarea.f::placeholder { color: #a7aec0; }

/* Texte d'aide sous un champ. Jamais de marge négative ici : elle faisait
   remonter la phrase par-dessus le bord de l'input (chevauchement 30/08/2026). */
.f-hint { font-size: 12px; line-height: 1.55; color: var(--faint); margin: 8px 0 4px; }
.f-hint.center { text-align: center; }
input.f[type="file"] { border-style: dashed; padding: 18px 15px; cursor: pointer; background: #fafbfe; }
input.f[type="file"]:hover { border-color: var(--teal); background: #f2fbfc; }
input.f[type="file"]::-webkit-file-upload-button {
  border: 0; border-radius: 8px; padding: 8px 14px; margin-right: 12px;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 13px; font-family: inherit; cursor: pointer;
  -webkit-transition: background var(--t-fast) ease;
  transition: background var(--t-fast) ease;
}
input.f[type="file"]::file-selector-button {
  border: 0; border-radius: 8px; padding: 8px 14px; margin-right: 12px;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 13px; font-family: inherit; cursor: pointer;
  transition: background var(--t-fast) ease;
}
input.f[type="file"]::-webkit-file-upload-button:hover { background: var(--navy-2); }
input.f[type="file"]::file-selector-button:hover { background: var(--navy-2); }

.err {
  color: #b91c1c; font-size: 14px; font-weight: 600; margin-top: 12px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--r-sm); padding: 11px 14px;
  animation: shake .45s var(--ease-out);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); } 40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); } 80% { transform: translateX(3px); }
}
.okmsg { color: #16a34a; font-size: 14px; font-weight: 600; margin-top: 10px; animation: rise .4s var(--ease-out); }

/* segmented control with sliding thumb */
.seg { position: relative; display: flex; border: 1.5px solid #d5dae6; border-radius: 12px; overflow: hidden; background: #fff; isolation: isolate; }
.seg::after {
  content: ''; position: absolute; z-index: 0; top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 8px); border-radius: 9px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: 0 4px 14px rgba(15, 37, 87, .3);
  transition: transform var(--t-med) var(--ease-spring);
}
.seg[data-on="1"]::after { transform: translateX(calc(100% + 8px)); }
.seg button {
  flex: 1 1; position: relative; z-index: 1; border: 0; padding: 13px; font-size: 15px; font-weight: 700;
  background: transparent; cursor: pointer; color: var(--muted); font-family: inherit;
  transition: color var(--t-med) ease;
}
.seg button.on { color: #fff; }

/* payment status chips */
.pay-status {
  display: flex; align-items: center; gap: 10px;
  border-radius: var(--r-sm); padding: 15px 18px;
  font-size: 14.5px; font-weight: 700; margin: 16px 0;
  animation: rise .5s var(--ease-out);
}
.pay-status svg { flex: 0 0 auto; }
.pay-status.ok { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.pay-status.warn { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.pay-status.info { background: #e0f2fe; color: #075985; border: 1px solid #bae6fd; }
.pay-status.info .spinner { border-color: rgba(7, 89, 133, .25); border-top-color: #075985; width: 15px; height: 15px; }

/* La feuille de facture est un document large : sur mobile elle doit pouvoir
   se contraindre, jamais élargir le body (bande vide / zoom out). */
.sheet-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }
.sheet-wrap .sheet { min-width: 0; }

/* SHEET_CSS est partagé avec le PDF (A4) : on ne le touche pas, on surcharge
   ici pour l'écran uniquement. */
@media (max-width: 700px) {
  .sheet-wrap .sheet { padding: 24px 18px; }
  .sheet-wrap .sheet .head { flex-direction: column; gap: 16px; margin-bottom: 22px; }
  .sheet-wrap .sheet .doc { text-align: left; }
  .sheet-wrap .sheet .meta { margin-left: 0; }
  .sheet-wrap .sheet .meta td { padding: 2px 18px 2px 0; }
  .sheet-wrap .sheet .items { font-size: 11px; table-layout: fixed; width: 100%; }
  .sheet-wrap .sheet .items th,
  .sheet-wrap .sheet .items td { padding: 7px 6px; word-break: break-word; }
  .sheet-wrap .sheet .items .desc { width: 38%; }
  .sheet-wrap .sheet .totals-wrap { justify-content: stretch; }
  .sheet-wrap .sheet .totals { min-width: 0; width: 100%; }
  .sheet-wrap .sheet .stamp { position: static; display: inline-block; transform: none; margin-bottom: 14px; font-size: 15px; }
  .sheet-wrap .sheet .verify { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sheet-wrap .sheet .verify img { width: 76px; height: 76px; }
}

/* ══════════ Responsive ══════════ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { display: none; }
  .scroll-cue { display: none; }
}
@media (max-width: 760px) {
  /* nav: brand + Payer + burger on one row; links live in a slide-down drawer */
  .nav-inner { padding: 11px 18px; gap: 12px; }
  .nav-pay { order: 2; margin-left: auto; padding: 9px 16px; font-size: 13.5px; }
  .nav-burger { display: inline-flex; order: 3; }
  .nav.scrolled .nav-inner { padding-top: 8px; padding-bottom: 8px; }

  /* Drawer: the panel wipes down under the header (clip-path, so text never
     scales or distorts) while the links rise in on a short stagger. Closing
     runs faster with an ease-in curve and no stagger, so it feels like a
     retraction rather than a rewind. Negative side/bottom insets keep the
     drop shadow outside the clip. */
  .nav-links {
    /* Le tiroir ET le voile sont tous deux enfants de `.nav` : sans z-index, le
       voile (déclaré APRÈS dans le DOM) se peint AU-DESSUS du tiroir et capte
       tous les clics — le menu se fermait sans jamais naviguer.
       Règle : deux calques frères empilés se départagent par `z-index`, pas par
       l'ordre du DOM. */
    z-index: 2;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; padding: 6px 18px 18px;
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 50px rgba(5, 13, 36, .5);
    pointer-events: none; visibility: hidden;
    -webkit-clip-path: inset(0 -60px 100% -60px);
            clip-path: inset(0 -60px 100% -60px);
    transition: visibility 0s linear .24s, -webkit-clip-path .24s cubic-bezier(.4, 0, .9, .3);
    transition: clip-path .24s cubic-bezier(.4, 0, .9, .3), visibility 0s linear .24s;
    transition: clip-path .24s cubic-bezier(.4, 0, .9, .3), visibility 0s linear .24s, -webkit-clip-path .24s cubic-bezier(.4, 0, .9, .3);
  }
  .nav.menu-open .nav-links {
    pointer-events: auto; visibility: visible;
    -webkit-clip-path: inset(0 -60px -60px -60px);
            clip-path: inset(0 -60px -60px -60px);
    transition: visibility 0s, -webkit-clip-path .42s cubic-bezier(.16, 1, .3, 1);
    transition: clip-path .42s cubic-bezier(.16, 1, .3, 1), visibility 0s;
    transition: clip-path .42s cubic-bezier(.16, 1, .3, 1), visibility 0s, -webkit-clip-path .42s cubic-bezier(.16, 1, .3, 1);
  }
  .nav-links a:not(.btn) {
    font-size: 16px; padding: 14px 2px; color: rgba(233, 240, 255, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    opacity: 0; transform: translateY(-10px);
    transition: opacity .14s ease-in, transform .14s ease-in;
  }
  .nav.menu-open .nav-links a:not(.btn) {
    opacity: 1; transform: none;
    transition: opacity .3s ease-out calc(80ms + var(--i, 0) * 45ms),
                transform .42s cubic-bezier(.16, 1, .3, 1) calc(80ms + var(--i, 0) * 45ms);
  }
  .nav-links a:not(.btn):last-child { border-bottom: 0; }
  .nav-links a:not(.btn)::after { display: none; }

  .nav-backdrop {
    z-index: 1;
    position: fixed; inset: 0; top: 100%; height: 100vh;
    background: rgba(3, 8, 22, .55);
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease-in;
  }
  .nav.menu-open .nav-backdrop {
    opacity: 1; pointer-events: auto;
    transition: opacity .34s ease-out;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 60px 0 72px; }
  .hero p { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 22px; margin-top: 36px; }
  .hstat .v { font-size: 23px; }
  .trust-inner { gap: 14px 22px; }
  .trust-item { font-size: 12.5px; }
  .section { padding: 60px 0; }
  .section .sub { font-size: 15px; margin-bottom: 32px; }
  .svc { padding: 22px; border-radius: 18px; }
  .svc .foot { flex-wrap: wrap; }
  .steps { gap: 14px; }
  .band { padding: 34px 24px; }
  .band .btn { width: 100%; }
  .panel { padding: 22px 18px; }
  .recap { padding: 18px; }
  .recap .line { font-size: 13px; }
  .tier { padding: 18px; }
  .form-step h3 { font-size: 16.5px; }
  .footer { padding: 44px 0 28px; }
  .footer .cols { flex-direction: column; gap: 22px; }
}

/* ══════════ Service catalog ══════════ */
.section#services { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--bg) 30%); }
.section#services::before {
  /* dotted texture */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(15, 37, 87, .07) 1px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: radial-gradient(75% 65% at 50% 30%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 30%, #000, transparent 78%);
}
.section#services::after {
  content: ''; position: absolute; top: -140px; right: -180px; width: 520px; height: 520px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0, 180, 194, .12), transparent 65%);
}
.section#services .container { position: relative; z-index: 1; }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-gap: 22px; gap: 22px; }
.svc {
  --mx: 50%; --my: 0%;
  display: flex; flex-direction: column; align-items: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid #e2e7f3; border-radius: 22px; padding: 28px;
  color: inherit; position: relative; overflow: hidden; isolation: isolate;
  box-shadow: 0 1px 2px rgba(15, 37, 87, .04), 0 16px 40px -24px rgba(15, 37, 87, .18);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.svc::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 1;
  background: var(--grad-accent); opacity: 0;
  transform: scaleX(.4); transform-origin: left;
  transition: opacity var(--t-med) ease, transform .5s var(--ease-out);
}
.svc::after {
  /* pointer-tracked glow (Fx.jsx feeds --mx/--my) */
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(340px circle at var(--mx) var(--my), rgba(0, 180, 194, .09), transparent 65%);
  transition: opacity var(--t-med) ease;
}
.svc:hover { transform: translateY(-7px); border-color: rgba(0, 180, 194, .35); box-shadow: var(--shadow-lg); }
.svc:hover::before { opacity: 1; transform: scaleX(1); }
.svc:hover::after { opacity: 1; }
.svc .ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--indigo) 130%);
  box-shadow: 0 10px 24px -8px rgba(0, 180, 194, .55);
  margin-bottom: 18px;
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) ease;
}
.svc:hover .ico { transform: scale(1.1) rotate(-5deg); box-shadow: 0 14px 30px -8px rgba(0, 180, 194, .65); }
.svc h3 { font-size: 18.5px; color: var(--navy); margin-bottom: 8px; letter-spacing: -.2px; }
.svc .tag {
  display: inline-block; font-size: 12px; color: var(--teal); font-weight: 700;
  background: rgba(0, 180, 194, .09); border: 1px solid rgba(0, 180, 194, .18);
  border-radius: 999px; padding: 5px 12px; margin-bottom: 13px;
}
.svc p { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1 1; }
.svc .foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px dashed #dde3f0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; align-self: stretch;
}
.svc .from { font-size: 10.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700; margin-bottom: 2px; }
.svc .price { font-size: 24px; font-weight: 800; letter-spacing: -.5px; color: var(--navy); line-height: 1.1; }
.svc .price small { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.svc .go {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 800; color: var(--teal); white-space: nowrap;
  background: rgba(0, 180, 194, .1);
  border-radius: 999px; padding: 10px 17px;
  transition: background var(--t-med) ease, color var(--t-med) ease, box-shadow var(--t-med) ease;
}
.svc:hover .go {
  background: linear-gradient(120deg, var(--teal) 0%, #0993c6 100%);
  color: #fff; box-shadow: 0 10px 22px -6px rgba(0, 180, 194, .55);
}
.svc .go svg { transition: transform var(--t-med) var(--ease-out); }
.svc:hover .go svg { transform: translateX(4px); }

/* ══════════ Tier picker ══════════ */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); grid-gap: 16px; gap: 16px; margin: 8px 0 4px; align-items: stretch; }
.tier {
  text-align: left; background: var(--card); border: 2px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; cursor: pointer; font-family: inherit; position: relative; overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-spring);
}
.tier:hover { border-color: #b4c4dd; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier.on {
  border-color: var(--teal);
  box-shadow: 0 12px 34px rgba(0, 180, 194, .22);
  transform: translateY(-3px);
  animation: tier-pop .35s var(--ease-spring);
}
@keyframes tier-pop { 0% { transform: scale(.985); } 60% { transform: scale(1.012) translateY(-3px); } 100% { transform: translateY(-3px); } }
.tier::after {
  content: ''; position: absolute; inset: 0 0 auto auto; width: 0; height: 0;
  border-style: solid; border-width: 0 44px 44px 0;
  border-color: transparent var(--teal) transparent transparent;
  opacity: 0; transform: translate(8px, -8px);
  transition: opacity var(--t-fast) ease, transform var(--t-med) var(--ease-spring);
}
.tier.on::after { opacity: 1; transform: none; }
.tier .name { font-size: 15px; font-weight: 800; color: var(--navy); }
.tier .amt { font-size: 27px; font-weight: 800; letter-spacing: -.5px; color: var(--navy); margin: 6px 0 14px; }
.tier .amt small { font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: 0; }
.tier ul { list-style: none; display: grid; grid-gap: 8px; gap: 8px; align-content: start; flex: 1 1; }
.tier li { font-size: 13px; color: var(--muted); line-height: 1.45; padding-left: 22px; position: relative; }
.tier li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(0, 180, 194, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b4c2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/8px no-repeat;
}
.tier .pick { margin-top: auto; padding-top: 16px; font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--faint); transition: color var(--t-fast) ease; }
.tier.on .pick { color: var(--teal); }

/* ══════════ Order recap ══════════ */
.recap {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 160% at 10% 0%, var(--navy-2) 0%, var(--navy-900) 70%);
  color: #fff; border-radius: var(--r-md); padding: 22px 24px; margin-bottom: 4px;
}
.recap::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 90% at 85% 10%, rgba(0, 201, 216, .12), transparent 70%);
}
.recap .line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: rgba(233, 240, 255, .72); padding: 5px 0; }
.recap .line b { color: #fff; font-weight: 700; font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }
.recap .line.total { border-top: 1px solid rgba(255, 255, 255, .16); margin-top: 8px; padding-top: 13px; font-size: 16px; }
.recap .line.total b { background: var(--grad-hero-text); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 21px; font-weight: 800; }
.recap .flash { animation: recap-flash .5s var(--ease-out) both; animation-delay: var(--d, 0s); }
@keyframes recap-flash { 0% { opacity: 0; transform: translateY(6px); } 100% { opacity: 1; transform: none; } }

.crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumb a { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; transition: color var(--t-fast) ease; }
.crumb a:hover { color: var(--teal); }
.crumb a svg { transition: transform var(--t-med) var(--ease-out); }
.crumb a:hover svg { transform: translateX(-4px); }

/* Sur une fiche courte (peu d'étapes, pas de FAQ), le dernier bloc ne doit pas
   ajouter sa marge basse à celle de `main.section`. */
.faq:last-child, .inc-grid:last-child, ol.steps:last-child { margin-bottom: 0; }

/* service page header icon */
.svc-hero-ico {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  color: var(--teal); font-size: 30px;
  background: linear-gradient(135deg, rgba(0, 180, 194, .13), rgba(76, 111, 255, .1));
  border: 1px solid rgba(0, 180, 194, .2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

/* form section headings */
.form-step { display: flex; align-items: center; gap: 12px; margin: 36px 0 16px; }
.form-step:first-of-type { margin-top: 0; }
.form-step .num {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-accent); color: #fff; font-size: 14px; font-weight: 800; flex: 0 0 auto;
  box-shadow: 0 6px 16px rgba(0, 180, 194, .35);
}
.form-step h3 { font-size: 18px; color: var(--navy); }

/* ══════════ Reduced motion ══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fx-reveal, [data-reveal] { opacity: 1 !important; transform: none !important; }
  .rise { opacity: 1; transform: none; animation: none; }
}

/* ══════════ Service detail page — share, explanation, FAQ ══════════ */
.sharebar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 13px 16px; margin: 0 0 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card);
}
.sharebar-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--faint); }
.sharebar-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.sbtn {
  display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: 13px; font-weight: 700;
  color: var(--navy); background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; cursor: pointer;
  transition: border-color var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease;
}
.sbtn:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
/* The native sheet only exists on mobile; elsewhere the explicit buttons cover it. */
.sbtn-native { display: none; }
@media (hover: none) and (pointer: coarse) { .sbtn-native { display: inline-flex; } }

.svc-pitch { font-size: 17px; line-height: 1.72; color: #46506b; margin: 0 0 24px; }

.who { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 0 0 28px; }
.who-h { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--faint); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 12.5px; font-weight: 600; color: #46506b; background: rgba(0, 180, 194, .09); border: 1px solid rgba(0, 180, 194, .22); border-radius: 999px; padding: 5px 12px; }

.svc-h { font-size: 20px; color: var(--navy); margin: 36px 0 16px; }
/* Deux titres qui se suivent, ou un titre juste après le fil d'ariane, ne
   doivent pas cumuler les marges. */
.svc-h + .svc-h { margin-top: 0; }
.who + .svc-h, .svc-pitch + .svc-h { margin-top: 28px; }

.inc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); grid-gap: 14px; gap: 14px; }
.inc {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 17px 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color var(--t-fast) ease, transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.inc:hover { border-color: #b4c4dd; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.inc svg { color: var(--teal); flex: none; margin-top: 2px; }
.inc b { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 4px; }
.inc p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* Fiche service : la liste « Comment ça se passe » est une colonne.
   Sans `grid-template-columns`, elle héritait de la grille process de la landing
   (`repeat(auto-fit, minmax(240px,1fr))`) — d'où des rangées hautes et vides
   quand une seule étape occupe une piste. Corrigé 30/08/2026. */
ol.steps { list-style: none; display: grid; grid-template-columns: 1fr; grid-gap: 12px; gap: 12px; counter-reset: none; }
ol.steps li { display: flex; gap: 13px; align-items: flex-start; }
.steps .sn {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  color: #fff; background: var(--navy);
}
.steps b { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 3px; }
.steps p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

.faq { display: grid; grid-gap: 10px; gap: 10px; margin-bottom: 8px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px 18px; }
.faq summary {
  cursor: pointer; list-style: none; font-size: 14.5px; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--teal); line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq p { font-size: 13.5px; line-height: 1.7; color: var(--muted); margin-top: 10px; }

@media (max-width: 560px) {
  .sharebar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .svc-pitch { font-size: 15.5px; }
  .svc-h { font-size: 18px; margin-top: 36px; }
}

/* ── Réalisations (portfolio) ────────────────────────────────────────────── */
/* Langue du portfolio — le contenu vient de nexmindev.com en FR et EN. */
.ref-langs { display: flex; justify-content: center; gap: 8px; margin: 0 0 26px; }
.ref-lang {
  padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line, #dfe5f3);
  font-size: 13px; font-weight: 600; color: #667; background: #fff;
  transition: color var(--t, .2s) var(--ease-out, ease), border-color var(--t, .2s) var(--ease-out, ease), background var(--t, .2s) var(--ease-out, ease);
}
.ref-lang:hover { color: var(--ink, #1a2340); border-color: #cfd9f0; }
.ref-lang.is-on { background: var(--ink, #1a2340); border-color: var(--ink, #1a2340); color: #fff; }

.ref-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); grid-gap: 24px; gap: 24px; }
.ref-card {
  display: flex; flex-direction: column; color: inherit; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: 0 1px 2px rgba(15, 37, 87, .04), 0 16px 40px -24px rgba(15, 37, 87, .18);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.ref-card:hover { transform: translateY(-4px); border-color: #cfd9f0; box-shadow: var(--shadow-md); }
.ref-card .shot { position: relative; aspect-ratio: 16 / 10; background: #eef2fb; overflow: hidden; }
.ref-card .shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-slow) var(--ease-out); }
.ref-card:hover .shot img { transform: scale(1.04); }
.ref-card .shot-empty { display: grid; place-items: center; height: 100%; color: var(--faint); }
.ref-card .badge-feat {
  position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(5, 13, 36, .78); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ref-card .body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1 1; }
.ref-card h3 { font-family: var(--font-display), system-ui; font-size: 19px; color: var(--navy); }
.ref-card .tag {
  align-self: flex-start; font-size: 12.5px; font-weight: 600; color: #0a7f8a;
  background: rgba(0, 180, 194, .10); border-radius: 999px; padding: 4px 11px;
}
.ref-card p { font-size: 14px; color: var(--muted); line-height: 1.62; }
.ref-card .foot {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ref-card .meta { font-size: 12.5px; color: var(--faint); }
.ref-card .go { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--teal); }

.ref-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.ref-meta b { color: var(--faint); font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: .05em; margin-right: 6px; }
.ref-meta a { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; }

.ref-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin: 26px 0 30px; padding: 24px 26px; border-radius: var(--r-xl);
  background: linear-gradient(120deg, #071233 0%, #123063 100%); color: #fff;
  box-shadow: var(--shadow-lg);
}
.ref-cta .k { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #8fb8ff; }
.ref-cta .p { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.ref-cta .p s { color: rgba(255, 255, 255, .45); font-size: 17px; }
.ref-cta .p b { font-family: var(--font-display), system-ui; font-size: 32px; color: var(--teal-bright); }
.ref-cta .p small { font-size: 12.5px; color: rgba(255, 255, 255, .7); }
.ref-cta .why { margin-top: 8px; font-size: 13px; color: rgba(255, 255, 255, .72); max-width: 46ch; line-height: 1.6; }

.ref-shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-gap: 18px; gap: 18px; margin: 26px 0 8px; }
.ref-shots figure { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--card); }
.ref-shots img { width: 100%; display: block; }
.ref-shots figcaption { padding: 10px 14px; font-size: 12.5px; color: var(--muted); border-top: 1px solid var(--line); }

.recap .line.discount b { color: #0a7f8a; }

@media (max-width: 720px) {
  .ref-cta { padding: 20px; }
  .ref-cta .btn { width: 100%; justify-content: center; }
  .ref-grid { grid-template-columns: 1fr; }
}

/* ══════════ Trust: guarantees, labels, partners, proof-of-work ══════════ */
.guar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); grid-gap: 18px; gap: 18px; }
.guar {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.guar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0, 180, 194, .32); }
.guar .ico {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
  display: grid; place-items: center;
  background: rgba(0, 180, 194, .10); color: var(--teal);
  border: 1px solid rgba(0, 180, 194, .22);
}
.guar h3 { font-size: 16px; color: var(--navy); margin-bottom: 7px; line-height: 1.35; }
.guar p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Official labels / payment rails */
.labels { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.label-card {
  flex: 1 1 300px; display: flex; align-items: center; gap: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 22px; box-shadow: var(--shadow-sm);
}
.label-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.label-card .plogo-img, .label-card .plogo-fallback { flex: 0 0 auto; }

/* Logo rendering — real file, or wordmark fallback */
.plogo-img { width: auto; max-width: 190px; object-fit: contain; display: block; }
.plogo-fallback {
  display: inline-flex; flex-direction: column; justify-content: center;
  padding: 8px 14px; border-radius: 10px; white-space: nowrap;
  background: rgba(15, 37, 87, .05); border: 1px solid var(--line);
}
.plogo-fallback .abbr {
  font-family: var(--font-display, inherit);
  font-weight: 800; font-size: 15px; letter-spacing: -.2px; color: var(--navy); line-height: 1.1;
}
.plogo-fallback .sub {
  font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--faint); line-height: 1.3;
}

/* Academic partners */
.partners .plogos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); grid-gap: 18px; gap: 18px;
}
.plogo {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 20px 24px; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.plogo:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0, 180, 194, .32); }
.ptag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal); background: rgba(0, 180, 194, .10);
  border: 1px solid rgba(0, 180, 194, .22); border-radius: 999px; padding: 5px 12px;
}
.plogo .wrap { min-height: 66px; display: grid; place-items: center; padding: 6px 0; }
.pname { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.45; }
.puniv { font-size: 12px; color: var(--faint); }

/* Proof of work — live platforms */
.plat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); grid-gap: 18px; gap: 18px; }
.plat {
  display: block; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 22px; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.plat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0, 180, 194, .35); }
.plat .ico {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  display: grid; place-items: center; color: #fff; background: var(--grad-accent);
}
.plat h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 7px; }
.plat p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.plat .host {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 800; color: var(--teal);
}

/* Headline credentials */
.creds {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); grid-gap: 2px; gap: 2px;
  margin-top: 22px; border-radius: var(--r-lg); overflow: hidden;
  background: var(--line); border: 1px solid var(--line);
}
.cred { background: var(--card); padding: 22px 20px; text-align: center; }
.cred b {
  display: block; font-family: var(--font-display, inherit);
  font-size: 27px; font-weight: 800; letter-spacing: -.6px;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cred span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 5px; line-height: 1.45; }

/* Client testimonials */
.tstm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); grid-gap: 18px; gap: 18px; }
.tstm {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 22px; box-shadow: var(--shadow-sm); margin: 0;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.tstm:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0, 180, 194, .32); }
.tstm .ico {
  width: 38px; height: 38px; border-radius: 11px; margin-bottom: 14px;
  display: grid; place-items: center;
  background: rgba(0, 180, 194, .10); color: var(--teal);
  border: 1px solid rgba(0, 180, 194, .22);
}
.tstm blockquote { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin: 0 0 18px; flex: 1 1; }
.tstm figcaption { display: flex; align-items: center; gap: 12px; }
.tstm .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800; color: #fff; background: var(--grad-accent);
}
.tstm figcaption b { display: block; font-size: 13.5px; color: var(--navy); line-height: 1.35; }
.tstm figcaption span { display: block; font-size: 12px; color: var(--faint); }
.tstm .proj {
  margin-left: auto; align-self: flex-start;
  font-size: 10.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  color: var(--teal); background: rgba(0, 180, 194, .10);
  border: 1px solid rgba(0, 180, 194, .22); border-radius: 999px; padding: 4px 10px;
}

@media (max-width: 560px) {
  .label-card { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ══════════ Offer choice page (/choix/<id>) ══════════ */
/* One prospect, one menu. The currency switch only picks which of three
   already-frozen prices is displayed — nothing is converted in the browser. */
.cur-switch { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cur-label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--faint); margin-right: 4px;
}
.cur-pill {
  font-family: inherit; font-size: 13px; font-weight: 800; cursor: pointer;
  color: var(--muted); background: var(--card); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 7px 15px;
  transition: color var(--t-fast) ease, border-color var(--t-fast) ease, transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) var(--ease-out);
}
.cur-pill:hover { border-color: #b4c4dd; transform: translateY(-1px); }
.cur-pill.on {
  color: #fff; background: var(--navy); border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(15, 37, 87, .22);
}

.tier-flag {
  align-self: flex-start; margin-bottom: 10px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  color: var(--teal); background: rgba(0, 180, 194, .10);
  border: 1px solid rgba(0, 180, 194, .22); border-radius: 999px; padding: 4px 10px;
}
.tier-tag { font-size: 13.5px; line-height: 1.55; color: var(--ink); margin: -6px 0 14px; }
.tier-note {
  font-size: 12.5px; line-height: 1.5; color: var(--navy); margin-top: 12px;
  background: rgba(0, 180, 194, .07); border-left: 2px solid var(--teal);
  border-radius: 0 6px 6px 0; padding: 8px 10px;
}
.tier-delay {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--faint); margin-top: 14px;
}
.tier-delay svg { flex: none; }

/* The devis a prospect has already accepted, kept in front of them so a second
   visit resumes instead of starting over. */
.offer-open {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #f0fdfa; border: 1px solid #99f6e4; border-radius: var(--r-md);
  padding: 16px 18px; margin-bottom: 22px;
}
.offer-open p { font-size: 14px; line-height: 1.6; color: var(--ink); margin: 0; flex: 1 1 240px; }
.offer-open .btn { flex: 0 0 auto; }

/* ═══ Marché : euro par défaut, dinar pour un visiteur tunisien ═══
   Les deux prix sont rendus (components/Money.jsx), un seul s'affiche.

   L'euro est visible sans condition et c'est le dinar qui prend sa place quand
   <html data-market="tn"> : écrit dans ce sens, la règle ne dépend d'aucun
   sélecteur ancêtre pour le cas par défaut. (Le minifieur CSS réécrit
   `html[data-market='intl'] .mk-intl` en `.mk-intl` — les deux prix
   s'affichaient alors ensemble pour un visiteur tunisien.)
   Détection : lib/market.js · MARKET_SNIPPET, posé avant le premier paint. */
.mk-intl { display: inline; }
.mk-tn { display: none; }
html[data-market='tn'] .mk-intl { display: none; }
html[data-market='tn'] .mk-tn { display: inline; }

/* Un bloc entier (le récapitulatif de commande) plutôt qu'un montant : même
   règle, en display:block. */
.mk-block.mk-intl { display: block; }
html[data-market='tn'] .mk-block.mk-intl { display: none; }
html[data-market='tn'] .mk-block.mk-tn { display: block; }

/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app/layout.jsx","import":"Inter","arguments":[{"subsets":["latin"],"variable":"--font-body","display":"swap"}],"variableName":"inter"} ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Inter Fallback';src: local("Arial");ascent-override: 90.44%;descent-override: 22.52%;line-gap-override: 0.00%;size-adjust: 107.12%
}.__className_f367f3 {font-family: 'Inter', 'Inter Fallback';font-style: normal
}.__variable_f367f3 {--font-body: 'Inter', 'Inter Fallback'
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app/layout.jsx","import":"Space_Grotesk","arguments":[{"subsets":["latin"],"variable":"--font-display","display":"swap"}],"variableName":"grotesk"} ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* vietnamese */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/_next/static/media/e1aab0933260df4d-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/_next/static/media/b7387a63dd068245-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/_next/static/media/36966cca54120369-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Space Grotesk Fallback';src: local("Arial");ascent-override: 89.71%;descent-override: 26.62%;line-gap-override: 0.00%;size-adjust: 109.69%
}.__className_dd5b2f {font-family: 'Space Grotesk', 'Space Grotesk Fallback';font-style: normal
}.__variable_dd5b2f {--font-display: 'Space Grotesk', 'Space Grotesk Fallback'
}

