  :root {
    --navy: #0a2540;
    --navy-deep: #061a30;
    --navy-soft: #1a3a5f;
    --blue: #2563eb;
    --blue-soft: #dbeafe;
    --blue-pale: #eff6ff;
    --orange: #ff6f1f;
    --orange-deep: #e25600;
    --orange-soft: #fff0e3;
    --green: #10b981;
    --green-soft: #d1fae5;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;

    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 12px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.08), 0 24px 48px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 25px 50px rgba(15, 23, 42, 0.18);
    --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.18);

    --max: 1240px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--slate-900);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    position: relative;
  }

  /* ============= TOP BAR ============= */
  .topbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--navy);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-blue);
    position: relative;
  }

  .brand-mark svg {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .brand em {
    font-style: normal;
    color: var(--orange);
  }

  .nav-links {
    display: flex;
    gap: 28px;
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.94rem;
  }

  .nav-links a { transition: color 0.2s; }
  .nav-links a:hover { color: var(--blue); }

  .nav-actions { display: flex; align-items: center; gap: 14px; }

  .nav-login {
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.94rem;
    transition: color 0.2s;
  }
  .nav-login:hover { color: var(--navy); }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.94rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  /* DS v17 : .btn-primary = ORANGE par défaut (CTA conversion).
     BLEU réservé à .btn-secondary / .btn-outline (CTA navigation). */
  .btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 8px 22px rgba(255, 111, 31, 0.28);
  }

  .btn-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 111, 31, 0.36);
  }

  .btn-secondary {
    background: white;
    color: var(--navy);
    border: 1.5px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
  }

  .btn-secondary:hover {
    border-color: var(--navy);
    background: var(--slate-50);
  }

  .btn-large { padding: 15px 28px; font-size: 1rem; border-radius: 12px; }

  /* ============= HERO ============= */
  .hero {
    padding: 72px 0 48px;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.08), transparent 50%),
      radial-gradient(ellipse at bottom left, rgba(255, 111, 31, 0.05), transparent 50%),
      var(--white);
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
  }

  .hero-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.05s ease both;
  }

  .hero h1 .accent {
    color: var(--blue);
    position: relative;
    white-space: nowrap;
  }

  .hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 6px;
    background: var(--orange);
    border-radius: 99px;
    opacity: 0.4;
  }

  .hero-sub {
    font-size: 1.12rem;
    color: var(--slate-700);
    line-height: 1.55;
    max-width: 56ch;
    margin-bottom: 32px;
    animation: fadeUp 0.7s 0.1s ease both;
  }

  .hero-sub strong { color: var(--navy); font-weight: 700; }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    animation: fadeUp 0.7s 0.15s ease both;
  }

  .hero-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.88rem;
    color: var(--slate-500);
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-microcopy span { display: inline-flex; align-items: center; gap: 6px; }
  .hero-microcopy .check { color: var(--green); font-weight: 800; }

  /* ============= HERO VISUAL : RADAR FORCE 3D SIGNATURE ============= */
  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin: 0 auto;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  /* Halo behind radar */
  .radar-halo {
    position: absolute;
    inset: -10%;
    background:
      radial-gradient(circle, rgba(37, 99, 235, 0.20) 0%, transparent 55%),
      radial-gradient(circle at 70% 30%, rgba(255, 111, 31, 0.18) 0%, transparent 50%);
    border-radius: 50%;
    animation: rotateSlow 60s linear infinite;
  }

  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* Radar SVG */
  .radar-svg {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
  }

  /* Floating cards around radar */
  .float-card {
    position: absolute;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatY 5s ease-in-out infinite;
  }

  .float-card .label {
    font-size: 0.7rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .float-card .value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
  }

  .float-card .value em {
    color: var(--orange);
    font-style: normal;
    font-size: 1rem;
    margin-left: 4px;
  }

  .float-card .value .green {
    color: var(--green);
    font-size: 0.95rem;
    margin-left: 6px;
  }

  /* Flags row inside float-card */
  .float-card .flags-row {
    display: flex;
    gap: 5px;
    margin-top: 8px;
    align-items: center;
  }

  .float-card .flag-svg {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    overflow: hidden;
  }

  .float-card .flag-svg:hover {
    transform: scale(1.3) translateY(-2px);
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.15);
    z-index: 5;
    position: relative;
  }

  .float-card.fc-tl { top: 4%; left: -8%; animation-delay: 0s; }
  .float-card.fc-tr { top: 16%; right: -10%; animation-delay: 0.6s; }
  .float-card.fc-bl { bottom: 12%; left: -12%; animation-delay: 1.2s; padding: 10px 14px; }
  .float-card.fc-br { bottom: 4%; right: -6%; animation-delay: 1.8s; }

  .fc-bl .live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-soft);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
  }

  .fc-bl .live-indicator::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

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

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============= TRUST BAND (two-tier) ============= */
  .trust-band {
    padding: 56px 0 48px;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }

  .trust-tier {
    margin-bottom: 40px;
  }

  .trust-tier:last-child { margin-bottom: 0; }

  .trust-label {
    text-align: center;
    color: var(--slate-500);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .trust-divider {
    border: 0;
    border-top: 1px solid var(--slate-200);
    margin: 0 auto 40px;
    width: 100%;
    max-width: 480px;
  }

  /* Tier 1 — Partners (real logos) */
  .trust-partners {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .partner-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    transition: all 0.25s;
    overflow: hidden;
    position: relative;
  }

  .partner-logo:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  /* Logo image — uniform max height, auto width */
  .partner-logo img {
    max-height: 56px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* SVG logos (CCI, DCF) — same constraint */
  .partner-logo svg {
    max-height: 56px;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
  }

  /* Tier 2 — Tech stack */
  .trust-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 36px;
    max-width: 900px;
    margin: 0 auto;
  }

  .stack-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-500);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: all 0.25s;
    cursor: pointer;
  }

  .stack-logo:hover { color: var(--navy); transform: translateY(-2px); }

  .stack-logo svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  /* ============= STATS ============= */
  .stats {
    padding: 72px 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .stat {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--slate-200);
  }

  .stat:last-child { border-right: none; }

  .stat-num {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.04em;
  }

  .stat-num em {
    color: var(--blue);
    font-style: normal;
  }

  .stat-label {
    font-size: 0.92rem;
    color: var(--slate-500);
    font-weight: 500;
  }

  /* ============= SECTION HEADINGS ============= */
  .section-heading {
    margin-bottom: 56px;
    max-width: 720px;
  }

  .section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-eyebrow {
    display: inline-block;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 14px;
  }

  .section-heading h2 .accent { color: var(--blue); }

  .section-heading p {
    font-size: 1.05rem;
    color: var(--slate-700);
    max-width: 60ch;
    line-height: 1.55;
  }

  .section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
  }

  /* ============= HOW IT WORKS ============= */
  /* Pattern alterné : white → slate-50 → white pour différencier
     visuellement les sections "Trois temps" / "Trois vues" / "Témoignages" */
  .how {
    padding: 96px 0;
    background: #ffffff;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .step {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 0 0 28px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
  }

  .step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-soft);
  }

  .step-art {
    height: 140px;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--slate-200);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
  }

  .step-art svg { width: 100%; max-width: 200px; height: auto; }

  /* Personas vertical scroll for step 1 */
  .personas-scroll {
    width: 75%;
    height: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  }

  .persona-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
    animation: scrollPersonas 12s linear infinite;
  }

  @keyframes scrollPersonas {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  .persona-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1.5px solid var(--slate-200);
    border-radius: 10px;
    padding: 8px 10px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  .persona-card.persona-blue { border-color: var(--blue); background: #eff6ff; }
  .persona-card.persona-navy { border-color: var(--navy); }
  .persona-card.persona-orange { border-color: var(--orange); background: #fff7ed; }
  .persona-card.persona-green { border-color: var(--green); background: #f0fdf4; }

  .persona-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  .persona-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .persona-line {
    height: 4px;
    background: var(--slate-300);
    border-radius: 99px;
  }

  .persona-line.w-40 { width: 40%; }
  .persona-line.w-45 { width: 45%; }
  .persona-line.w-50 { width: 50%; }
  .persona-line.w-55 { width: 55%; }
  .persona-line.w-60 { width: 60%; }
  .persona-line.w-65 { width: 65%; }
  .persona-line.w-70 { width: 70%; }
  .persona-line.w-75 { width: 75%; }

  .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--blue);
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 22px 28px 14px;
  }

  .step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 28px 10px;
    letter-spacing: -0.01em;
  }

  .step p {
    color: var(--slate-700);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 28px;
  }

  /* ============= PRODUCT IN ACTION ============= */
  .product {
    padding: 96px 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }

  .action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .action-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }

  .action-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .action-tag {
    display: inline-block;
    margin: 18px 18px 0;
    padding: 4px 12px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 99px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    align-self: flex-start;
  }

  .mockup {
    margin: 14px auto 8px;
    background: var(--slate-900);
    border-radius: 22px;
    overflow: hidden;
    padding: 6px;
    width: 230px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
    position: relative;
  }

  .mockup-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: var(--slate-900);
    border-radius: 12px;
    z-index: 5;
  }

  .mockup-statusbar {
    display: flex;
    justify-content: space-between;
    padding: 10px 18px 6px;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--slate-900);
    background: white;
    border-radius: 16px 16px 0 0;
  }

  .mockup-statusbar.dark { color: white; background: var(--slate-900); padding-top: 8px; }

  .mockup-bar {
    background: white;
    padding: 6px 14px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    font-size: 0.7rem;
    font-weight: 700;
    border-bottom: 1px solid var(--slate-100);
  }

  .mockup-bar span { letter-spacing: 0.02em; }

  .mockup-body {
    background: white;
    padding: 14px;
    height: 360px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
  }

  /* Mockup 1 — Simulation */
  .m-persona {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-200);
  }

  .m-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.78rem;
  }

  .m-persona strong { display: block; font-size: 0.84rem; color: var(--navy); }
  .m-persona span { font-size: 0.72rem; color: var(--slate-500); }

  .m-wave {
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
    height: 30px;
  }

  .m-wave span {
    width: 3px;
    background: var(--blue);
    border-radius: 99px;
    animation: wave 1.2s ease-in-out infinite;
  }

  .m-wave span:nth-child(1) { height: 30%; }
  .m-wave span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
  .m-wave span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
  .m-wave span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
  .m-wave span:nth-child(5) { height: 80%; animation-delay: 0.4s; }
  .m-wave span:nth-child(6) { height: 40%; animation-delay: 0.5s; }
  .m-wave span:nth-child(7) { height: 65%; animation-delay: 0.6s; }
  .m-wave span:nth-child(8) { height: 35%; animation-delay: 0.7s; }

  @keyframes wave {
    0%, 100% { transform: scaleY(0.6); }
    50% { transform: scaleY(1); }
  }

  .m-msg {
    background: var(--slate-100);
    color: var(--slate-900);
    padding: 9px 12px;
    border-radius: 10px 10px 10px 2px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .m-tip {
    background: var(--navy);
    color: white;
    border-left: 3px solid var(--orange);
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.35;
    border-radius: 0 8px 8px 0;
  }

  .m-tip strong {
    display: block;
    color: var(--orange);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
  }

  /* Mockup 2 — Dashboard */
  /* Mockup 2 — Dashboard mobile */
  .m-team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--slate-200);
    margin-bottom: 4px;
  }

  .m-team-header strong {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Live pulsing dot before "6 commerciaux" */
  .live-dot-team {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: livePulse 1.6s ease-out infinite;
  }

  @keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); transform: scale(1.1); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); transform: scale(1); }
  }

  .m-team-trend {
    background: var(--green-soft);
    color: var(--green);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 0.66rem;
    font-weight: 700;
    animation: trendBlink 4s ease-in-out infinite;
  }

  @keyframes trendBlink {
    0%, 90%, 100% { background: var(--green-soft); transform: scale(1); }
    95% { background: #a7f3d0; transform: scale(1.05); }
  }

  /* Team row with rotating highlight */
  .team-row {
    position: relative;
    transition: background-color 0.4s ease;
    border-radius: 6px;
    padding: 5px 4px !important;
  }

  .team-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.04));
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  /* Cycle through rows : each row highlighted 2s in turn (8s total cycle) */
  .team-row:nth-child(2)::before { animation: highlightRow 8s ease-in-out infinite; animation-delay: 0s; }
  .team-row:nth-child(3)::before { animation: highlightRow 8s ease-in-out infinite; animation-delay: 2s; }
  .team-row:nth-child(4)::before { animation: highlightRow 8s ease-in-out infinite; animation-delay: 4s; }
  .team-row:nth-child(5)::before { animation: highlightRow 8s ease-in-out infinite; animation-delay: 6s; }

  @keyframes highlightRow {
    0%, 5% { opacity: 0; }
    10%, 22% { opacity: 1; }
    27%, 100% { opacity: 0; }
  }

  /* Animated progress bars */
  .bar-fill {
    height: 100%;
    border-radius: 99px;
    width: 0;
    animation: fillBar 2.5s ease-out forwards;
  }

  @keyframes fillBar {
    0% { width: 0; }
    100% { width: var(--bar-w, 70%); }
  }

  /* Restart bar fills periodically (every 8s) for "live data refresh" feel */
  .team-row .bar-fill {
    animation: fillBarLoop 8s ease-in-out infinite;
  }

  @keyframes fillBarLoop {
    0% { width: 0; }
    20%, 95% { width: var(--bar-w, 70%); }
    100% { width: 0; }
  }

  .d-row {
    display: grid;
    grid-template-columns: 24px 1fr 30px;
    grid-template-rows: auto auto;
    gap: 3px 8px;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--slate-100);
  }

  .d-row:last-child { border-bottom: none; }

  .d-avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    color: white;
    display: grid;
    place-items: center;
    font-size: 0.55rem;
    font-weight: 800;
    grid-row: span 2;
  }

  .d-info strong { display: block; font-size: 0.72rem; color: var(--navy); line-height: 1.1; }
  .d-info span { font-size: 0.6rem; color: var(--slate-500); }

  .d-score {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 800;
    grid-row: span 2;
    text-align: right;
  }

  .d-bar {
    grid-column: 2 / 4;
    height: 4px;
    background: var(--slate-100);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 2px;
  }

  .d-bar div { height: 100%; border-radius: 99px; }

  /* Mockup 3 — Debrief */
  .deb-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-200);
  }

  .deb-head .lab { font-size: 0.66rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
  .deb-head .val { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
  .deb-head .val em { color: var(--slate-400); font-style: normal; font-size: 0.9rem; }

  .deb-trend {
    background: var(--green-soft);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .deb-radar { width: 100%; height: 100px; }

  .deb-tip {
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.74rem;
  }

  .deb-tip.ok {
    background: var(--green-soft);
    border-left: 3px solid var(--green);
  }

  .deb-tip.warn {
    background: var(--orange-soft);
    border-left: 3px solid var(--orange);
  }

  .deb-tip strong {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 1px;
  }

  .deb-tip.ok strong { color: var(--green); }
  .deb-tip.warn strong { color: var(--orange-deep); }

  .action-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 16px 22px 6px;
    letter-spacing: -0.01em;
  }

  .action-card p {
    color: var(--slate-700);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 22px 22px;
  }

  /* ============= TESTIMONIALS CAROUSEL ============= */
  .testi {
    padding: 96px 0;
    background: #ffffff;
    overflow: hidden;
  }

  .testi-track {
    position: relative;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: transform 0.4s ease;
  }

  .testi-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: all 0.3s;
  }

  .testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .testi-stars {
    display: flex;
    gap: 3px;
    color: var(--orange);
    font-size: 1rem;
  }

  .testi-quote {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--slate-900);
    flex: 1;
    font-weight: 500;
  }

  .testi-quote::before {
    content: "« ";
    color: var(--blue);
    font-weight: 700;
  }

  .testi-quote::after {
    content: " »";
    color: var(--blue);
    font-weight: 700;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--slate-200);
  }

  .testi-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    position: relative;
  }

  .testi-photo svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .testi-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 2px;
  }

  .testi-author span {
    font-size: 0.84rem;
    color: var(--slate-500);
  }

  .testi-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
  }

  .testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--slate-200);
    color: var(--navy);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.2s;
  }

  .testi-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
  }

  /* ============= PRICING ============= */
  .pricing {
    padding: 80px 0;
    background: white;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    max-width: 920px;
    margin: 0 auto;
  }

  .price {
    padding: 36px 28px;
    background: white;
    border-right: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .price:last-child { border-right: none; }

  .price.featured {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white;
    z-index: 2;
  }

  .price.featured h3 { color: white; }
  .price.featured .price-tagline { color: rgba(255,255,255,0.65); }
  .price.featured .price-amount { color: white; }
  .price.featured .price-amount em { color: var(--orange); }
  .price.featured .price-amount sub { color: rgba(255,255,255,0.55); }
  .price.featured .price-features li { color: rgba(255,255,255,0.85); }
  .price.featured .price-features li::before { color: var(--orange); }

  .price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: white;
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .price h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy);
    letter-spacing: -0.01em;
  }

  .price-tagline {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 24px;
    min-height: 40px;
    line-height: 1.4;
  }

  .price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
  }

  .price-amount em {
    color: var(--blue);
    font-style: normal;
  }

  .price-amount sub {
    font-size: 0.88rem;
    color: var(--slate-500);
    font-weight: 500;
    vertical-align: baseline;
    margin-left: 4px;
  }

  .price-features {
    list-style: none;
    margin: 24px 0 28px;
    flex: 1;
  }

  .price-features li {
    display: flex;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.92rem;
    color: var(--slate-700);
    line-height: 1.4;
  }

  .price-features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
  }

  .price-cta {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    border: 1.5px solid var(--navy);
    background: white;
    color: var(--navy);
    transition: all 0.2s;
    font-family: var(--font);
  }

  .price-cta:hover { background: var(--navy); color: white; }

  .price.featured .price-cta {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
  }

  .price.featured .price-cta:hover {
    background: var(--orange-deep);
    border-color: var(--orange-deep);
  }

  /* ============= FINAL CTA ============= */
  .final {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 50%, #051428 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.30), transparent 60%);
  }

  .final::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 111, 31, 0.20), transparent 60%);
  }

  .final h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }

  .final h2 .accent { color: var(--orange); }

  .final p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 50ch;
    margin: 0 auto 32px;
    position: relative;
    z-index: 2;
  }

  .final-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-bottom: 64px;
  }

  .final .btn-primary {
    background: var(--orange);
    box-shadow: 0 8px 24px rgba(255, 111, 31, 0.35);
  }
  .final .btn-primary:hover { background: var(--orange-deep); }

  .final .btn-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(255,255,255,0.18);
  }
  .final .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
  }

  .final p.final-note {
    margin: 32px auto 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    position: relative;
    z-index: 2;
  }

  /* ============= FOOTER ============= */
  footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.6);
    padding: 32px 0;
    font-size: 0.88rem;
  }

  .footer-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-shell strong { color: white; }

  /* ============= RESPONSIVE ============= */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-visual { max-width: 460px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--slate-200); }
    .steps, .action-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .price { border-right: none; border-bottom: 1px solid var(--slate-200); }
    .trust-partners { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .trust-stack { gap: 24px; }
  }

  @media (max-width: 760px) {
    .nav-links,
    .nav-actions .nav-login,
    .nav-actions .btn { display: none; }
    .burger-btn { display: inline-flex; }
  }

  @media (max-width: 640px) {
    .hero { padding: 48px 0 32px; }
    .stats-grid, .steps, .action-grid, .testi-grid { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--slate-200); }
    .stat:last-child { border-bottom: none; }
    .trust-partners { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .partner-logo { height: 56px; padding: 8px 14px; }
    .trust-stack { gap: 18px; }
    .stack-logo { font-size: 0.92rem; }

    .float-card.fc-tl, .float-card.fc-bl { left: -4%; }
    .float-card.fc-tr, .float-card.fc-br { right: -4%; }
  }

/* ============================================================
   FAQ SEO patch v17.1 — append from faq-patch/faq-styles.css
   ============================================================ */
/* ============================================================
   FAQ Section — patch v17.1
   À ajouter à la fin de landing.css
   ============================================================ */

.faq {
  padding: 80px 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

/* Reset native <summary> styling */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--blue-pale);
}

.faq-item summary > span:first-child {
  flex: 1;
  line-height: 1.4;
}

/* Plus / Minus icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-pale);
  position: relative;
  transition: all 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  border-radius: 99px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  background: var(--blue);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: white;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

/* Answer block */
.faq-answer {
  padding: 0 26px 24px;
  animation: faqFadeIn 0.35s ease-out;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--slate-700);
  margin: 0;
}

.faq-answer p strong {
  color: var(--navy);
  font-weight: 700;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Soft CTA below FAQ list */
.faq-cta-soft {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-soft p {
  color: var(--slate-700);
  font-size: 0.98rem;
}

.faq-cta-soft a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--blue-soft);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.faq-cta-soft a:hover {
  text-decoration-color: var(--blue);
}

/* Responsive */
@media (max-width: 640px) {
  .faq {
    padding: 56px 0;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-answer p {
    font-size: 0.94rem;
  }
}

/* ============================================================
   Footer legal links — fix-footer (visibility + border-top)
   ============================================================ */
.footer-legal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  width: 100%;
}

.footer-legal a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: white;
}

.footer-legal .sep {
  color: rgba(255,255,255,0.25);
}

.footer-legal .copyright {
  color: rgba(255,255,255,0.5);
}

/* French Tech logo: noir devient transparent grace au mix-blend */
.partner-logo img[alt="La French Tech"] {
  mix-blend-mode: multiply;
}

/* ============================================================
   Footer 4 colonnes (harmonisé avec includes/footer.php) — v17
   ============================================================ */
footer {
  padding: 56px 0 32px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
footer .footer-col {
  display: flex;
  flex-direction: column;
}
footer .footer-col h4 {
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
footer .footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
footer .footer-col a:hover {
  color: white;
}
footer .footer-col-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
footer .footer-col-brand .footer-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #ff6f1f);
  color: white;
  font-weight: 800;
  font-size: 1rem;
}
footer .footer-col-brand .footer-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  letter-spacing: -0.01em;
}
footer .footer-col-brand .footer-logo-text em {
  font-style: normal;
  color: #ff6f1f;
}
footer .footer-col-brand .footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
footer .footer-bottom p {
  margin: 0;
}
footer .footer-bottom .footer-copyright {
  color: rgba(255,255,255,0.45);
}
@media (max-width: 760px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  footer .footer-col-brand {
    grid-column: 1 / -1;
  }
  footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= MENU BURGER (mobile) ============= */
.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.burger-btn:hover { background: var(--slate-50); border-color: var(--slate-300); }
.burger-btn span,
.burger-btn::before,
.burger-btn::after {
  content: "";
  display: block;
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.burger-btn::before { top: 14px; }
.burger-btn span     { top: 21px; }
.burger-btn::after  { top: 28px; }

body.menu-open .burger-btn::before { top: 21px; transform: rotate(45deg); background: white; }
body.menu-open .burger-btn span    { opacity: 0; }
body.menu-open .burger-btn::after  { top: 21px; transform: rotate(-45deg); background: white; }
body.menu-open .burger-btn { border-color: rgba(255,255,255,0.3); background: transparent; position: fixed; top: 18px; right: 20px; z-index: 220; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 88px 28px 32px;
  visibility: hidden;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-menu-links a {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 10px;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}
.mobile-menu-links a:hover { background: rgba(255, 255, 255, 0.06); }
.mobile-menu-links a.current { color: var(--orange); }

.mobile-menu-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.mobile-menu-cta .nav-login {
  text-align: center;
  color: white;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
}
.mobile-menu-cta .nav-login:hover { background: rgba(255,255,255,0.06); }

body.menu-open { overflow: hidden; }

/* Mobile burger visibility — placed after .burger-btn{display:none} (l.1937)
   to win on source-order at equal specificity. Fix bug "burger invisible". */
@media (max-width: 760px) {
  .burger-btn { display: inline-flex; }
}
