/* ══════════════════════════════════════
   Main styles (base, nav, hero, sections, animations, responsive)
══════════════════════════════════════ */
:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --blue: #1a56db;
    --blue-light: #3b82f6;
    --blue-pale: #eff6ff;
    --blue-ultra: #dbeafe;
    --accent: #00d4ff;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(10,22,40,0.08); }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo img { height: 52px; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-links a.nav-active {
    color: var(--blue);
    position: relative;
  }
  .nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--accent));
    border-radius: 2px;
  }
  .nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; }

  .nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.3s; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 80px;
  }

  .hero-grid-bg {
    display: none;
  }
  .hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    pointer-events: none;
  }
  .hero-glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,86,219,0.2) 0%, transparent 65%);
    bottom: -100px;
    left: 10%;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.25);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both;
    position: relative;
    overflow: hidden;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }
  .hero-badge::after {
    content: '';
    position: absolute;
    left: -60%; top: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: badge-shimmer 3s infinite 1s;
  }
  @keyframes badge-shimmer { to { left: 130%; } }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero-title em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 660px;
    margin-bottom: 44px;
    animation: fadeUp 0.7s 0.2s ease both;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: #1648c8; transform: translateY(-1px); }

  /* Hero CTA — accent colour + glow pulse */
  .btn-hero-cta {
    background: var(--accent);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.1px;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.55);
    animation: heroGlow 2.4s ease-in-out infinite, fadeUp 0.7s 0.3s ease both;
    position: relative;
  }
  .btn-hero-cta:hover {
    background: #00bfea;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,212,255,0.35);
    animation: fadeUp 0s; /* freeze pulse on hover for clean feel */
  }
  @keyframes heroGlow {
    0%   { box-shadow: 0 0 0 0   rgba(0,212,255,0.55); }
    60%  { box-shadow: 0 0 0 14px rgba(0,212,255,0);   }
    100% { box-shadow: 0 0 0 0   rgba(0,212,255,0);    }
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    animation: fadeUp 0.7s 0.4s ease both;
  }

  .hero-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    transition: background 0.2s, border-color 0.2s;
  }
  .hero-stat-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0,212,255,0.25);
  }

  .hero-stat-number {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }
  .hero-stat-number span { color: var(--white); }

  .hero-stat-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }

  /* ── PAIN POINTS ── */
  #pain {
    background: var(--gray-100);
    padding: 100px 5%;
  }
  #pain .section-tag { color: var(--blue); }
  #pain .section-title { color: var(--navy); }
  #pain .section-sub { color: var(--gray-600); }
  .section-tag {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .section-tag::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    display: inline-block;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 400;
  }
  .section-header { margin-bottom: 60px; }

  .pain-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .pain-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  }
  .pain-card:hover {
    box-shadow: 0 16px 48px rgba(10,22,40,0.09);
    transform: translateY(-4px);
    border-color: var(--blue-ultra);
  }
  .pain-card::before {
    content: attr(data-num);
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--navy);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .pain-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--accent));
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
  }
  .pain-card:hover::after { transform: scaleY(1); }
  .pain-card:hover { box-shadow: 0 16px 48px rgba(26,86,219,0.1); transform: translateY(-4px); border-color: rgba(26,86,219,0.25); }
  .pain-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-ultra);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .pain-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .pain-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.75;
    font-weight: 300;
  }

  /* ── ABOUT / WHO ── */
  #about {
    padding: 100px 5%;
    background: var(--white);
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .about-visual {
    position: relative;
  }

  .about-card-main {
    background: var(--navy);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .about-card-main::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(0,212,255,0.07);
  }

  .about-card-tag {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .about-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .about-card-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
  }

  .about-float-card {
    position: absolute;
    bottom: -30px;
    right: -24px;
    background: var(--white);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(10,22,40,0.15);
    border: 1px solid var(--gray-200);
    min-width: 200px;
  }

  .about-float-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
  }

  .about-float-label {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
  }

  .about-text-block { margin-bottom: 100px; }

  .values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
  }

  .value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: border-color 0.2s, background 0.2s;
  }
  .value-item:hover {
    border-color: var(--blue-ultra);
    background: var(--blue-pale);
  }

  .value-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 10px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .value-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .value-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── SERVICES ── */
  #services {
    padding: 100px 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  #services .hero-grid-bg { opacity: 0.5; }

  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .services-inner .section-title { color: var(--white); }
  .services-inner .section-sub { color: rgba(255,255,255,0.55); }
  .services-inner .section-tag { color: var(--accent); }

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

  .service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .service-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0,212,255,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }

  .service-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: rgba(255,255,255,0.07);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
  }

  .service-icon {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
  }

  .service-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .service-badge {
    display: inline-block;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
  }

  /* ── MÉTHODE ── */
  #methode {
    padding: 100px 5%;
    background: var(--off-white);
  }

  .methode-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .methode-steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .methode-steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), var(--accent));
  }

  .methode-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 24px 0;
  }

  .step-num-wrap {
    display: flex;
    justify-content: center;
  }

  .step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px var(--off-white);
  }

  .step-body {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 32px;
    transition: box-shadow 0.2s;
  }
  .step-body:hover { box-shadow: 0 8px 32px rgba(10,22,40,0.08); border-color: rgba(26,86,219,0.25); }

  .step-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-weight: 400;
  }

  .step-day {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-pale);
    border: 1px solid var(--blue-ultra);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }
  .step-day.accent {
    color: var(--blue);
    background: var(--blue-pale);
    border-color: var(--blue-ultra);
  }
  .step-tagline {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    font-style: italic;
    margin-bottom: 10px;
  }
  .step-num.accent-num {
    background: linear-gradient(135deg, var(--blue), var(--accent));
    color: var(--white);
    box-shadow: 0 0 0 8px var(--off-white), 0 0 20px rgba(0,212,255,0.2);
  }

  /* ── EXPERTISES ── */
  #expertises {
    padding: 100px 5%;
    background: var(--navy);
  }

  .expertise-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
  }

  .expertise-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
    background: rgba(255,255,255,0.04);
  }
  .expertise-card {
    position: relative;
    overflow: hidden;
  }
  .expertise-card:hover {
    border-color: #1a56db;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  }

  .expertise-card:hover .expertise-icon {
    background: var(--blue);
    color: var(--white);
  }

  .expertise-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: var(--white);
    color: var(--blue);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.25s, color 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  }

  .expertise-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
  }

  .expertise-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    font-weight: 400;
  }

  /* ── CTA ── */
  #contact {
    padding: 100px 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  #contact .hero-glow {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
  }

  .contact-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }

  .contact-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
  }
  .contact-title em { font-style: normal; color: var(--accent); }

  .contact-sub {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 48px;
    -webkit-font-smoothing: antialiased;
  }
  .contact-sub strong { font-weight: 700; color: rgba(255,255,255,0.9); }

  .contact-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s, border-color 0.2s;
  }
  .contact-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(0,212,255,0.3);
  }
  .contact-card-icon { font-size: 18px; }
  .contact-card-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-display);
    font-weight: 600;
  }
  .contact-card-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
  }

  .contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  .footer-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
  .footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
  footer {
    background: #060d1a;
    padding: 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-logo img { height: 52px; opacity: 1; }

  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
  }

  .footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
  }
  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.7); }

  /* ── PAIN STAT BADGES ── */
  .pain-stat-badge {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 4px 12px;
    border-radius: 20px;
  }

  .compare-wrap {
    margin-top: 64px;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: none;
  }
  .compare-col-headers {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    background: rgba(255,255,255,0.09);
    border-bottom: 1px solid rgba(255,255,255,0.11);
  }
  .compare-col-header-spacer {}
  .compare-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 20px;
  }
  .compare-col-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .eyon-header { color: var(--accent); }
  .eyon-dot { background: var(--accent); }
  .esn-header { color: rgba(255,255,255,0.35); }
  .esn-dot { background: rgba(255,255,255,0.35); }

  .compare-line {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    transition: background 0.15s;
  }
  .compare-line:last-child { border-bottom: none; }
  .compare-line:hover { background: rgba(255,255,255,0.06); }

  .compare-criterion {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    border-right: 1px solid rgba(255,255,255,0.09);
  }
  .compare-val {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
  }
  .eyon-val {
    color: var(--accent);
    background: rgba(0,212,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.09);
  }
  .esn-val {
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    font-family: var(--font-body);
  }

  /* ── KPI VITAUX CARDS ── */
  .vital-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }
  
  .vital-kpi-card {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 32px 20px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .vital-kpi-card:hover {
    border-color: var(--blue-ultra);
    box-shadow: 0 12px 40px rgba(26,86,219,0.1);
    transform: translateY(-4px);
  }
  .vital-kpi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .vital-kpi-card:hover::before { opacity: 1; }
  .vital-kpi-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
  }
  .vital-kpi-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 10px;
    transition: color 0.3s;
  }
  .vital-kpi-card:hover .vital-kpi-num { color: var(--accent); }
  .vital-kpi-unit { font-size: 0.45em; color: var(--white); font-weight: 700; }
  .vital-kpi-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
  }
  .vital-heartbeat { display: none; }
  .kpi-tracker {
    width: 100%;
    height: 36px;
    margin-top: 16px;
    display: block;
    overflow: visible;
  }
  @keyframes tracker-draw {
    0%   { stroke-dashoffset: 320; }
    85%  { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
  }
  @keyframes tracker-glow {
    0%, 100% { r: 3; opacity: 0.9; }
    50%       { r: 4; opacity: 1;   }
  }
  .kpi-tracker.active .tracker-line {
    animation: tracker-draw 2.6s cubic-bezier(0.4,0,0.4,1) infinite;
  }
  .kpi-tracker.active .tracker-dot {
    animation: tracker-glow 0.6s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(0,212,255,0.9));
  }
  .kpi-circuit {
    width: 100%;
    height: 36px;
    margin-top: 16px;
    overflow: visible;
  }
  @keyframes circuit-draw {
    to { stroke-dashoffset: 0; }
  }
  @keyframes node-light {
    0%, 30% { opacity: 0; }
    50%, 80% { opacity: 1; }
    100% { opacity: 0; }
  }
  .kpi-circuit.active .circuit-active {
    animation: circuit-draw 1.2s ease forwards;
  }
  .kpi-circuit.active .circuit-node-active {
    animation: node-light 2s ease infinite;
  }
  .kpi-circuit.active .circuit-node-active:nth-child(4) { animation-delay: 0.4s; }
  .kpi-circuit.active .circuit-node-active:nth-child(5) { animation-delay: 0.8s; }
  .kpi-circuit.active .circuit-node-active:nth-child(6) { animation-delay: 1.2s; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ══════════════════════════════════════
     RESPONSIVE — TABLETTE (≤ 900px)
  ══════════════════════════════════════ */
  @media (max-width: 900px) {

    /* NAV */
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--white);
      padding: 24px 5%;
      border-bottom: 1px solid var(--gray-200);
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      gap: 24px;
      z-index: 99;
    }
    .nav-links.open a { font-size: 16px; }
    .nav-hamburger { display: flex; }

    /* HERO */
    .hero-content { flex-direction: column; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; }

    /* ABOUT */
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { order: -1; padding-bottom: 0; }
    .about-text-block { margin-bottom: 0; }

    /* PAIN — single col */
    .pain-grid { grid-template-columns: 1fr; }

    /* COMPARISON */
    .compare-col-headers,
    .compare-line { grid-template-columns: 1fr 1fr; }
    .compare-col-header-spacer,
    .compare-criterion { display: none; }

    /* SERVICES */
    .services-grid { grid-template-columns: 1fr; }

    /* EXPERTISES */
    .expertise-grid { grid-template-columns: 1fr !important; }

    /* MÉTHODE */
    .methode-steps::before { display: none; }
    section { padding-top: 48px; padding-bottom: 48px; }
    .kpi-split-grid { grid-template-columns: 1fr !important; }
    /* FAQ compact */
    /* FAQ mobile moved to end of file */
    /* Mentions légales */
    .footer-legal-bar { padding-bottom: 80px !important; }
    footer .footer-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; flex-wrap: unset !important; justify-content: unset !important; align-items: unset !important; }
    footer .footer-grid > div:first-child { grid-column: 1 / -1 !important; width: 100% !important; }
    footer .footer-cols { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 32px !important; flex-wrap: unset !important; }
    .methode-step { grid-template-columns: 48px 1fr; gap: 20px; }
    .step-num { width: 48px; height: 48px; font-size: 18px; box-shadow: none; }

    /* CONTACT */
    .contact-cards { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; max-width: 400px; justify-content: center; text-align: center; }
    .contact-card > div { text-align: center; }

    /* FOOTER */
    footer { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }

    /* MODAL */
    .audit-overlay { padding: 16px; align-items: flex-end; }
    .audit-panel { max-height: 94vh; border-radius: 20px; }
    .tags-wrap { gap: 6px; }
    .tag { padding: 6px 12px; font-size: 11px; }

    /* KPI grid : 4 col → 2 col sur tablette */
    .vital-kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Diagnostic pain grid : déjà 1 col ✓ */

    /* Hero dashboard : pleine largeur sur tablette */
    .hero-stats { display: block; width: 100%; }

    /* Overflow protection */
    .pain-grid, .vital-kpi-grid, .services-grid, .expertise-grid { overflow: hidden; }

  /* ── Additional mobile rules ── */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .real-grid,.real-hidden-grid{grid-template-columns:repeat(2,1fr)!important;}
  .footer-legal-bar { padding-bottom: 80px; }
  :root { --faq-padding: 14px 16px; --faq-margin: 8px; }
  .faq-q { font-size: 14px !important; }
  .faq-a { font-size: 13px !important; margin-top: 10px !important; }
}

  /* ══════════════════════════════════════
     RESPONSIVE — TABLETTE ÉTROITE (≤ 700px)
  ══════════════════════════════════════ */
  @media (max-width: 700px) {
    /* Sections : padding vertical réduit */
    #pain, #about, #services, #methode, #expertises, #confiance, #contact {
      padding-top: 72px;
      padding-bottom: 72px;
    }
    .section-header { margin-bottom: 40px; }

    /* About : carte flottante reste visible */
    .about-float-card { right: 0 !important; bottom: 0 !important; }

    /* Trust grid : 2 col → 1 col */
    .trust-grid { grid-template-columns: 1fr !important; }
    .trust-grid .trust-card:last-child {
      grid-column: span 1 !important;
      flex-direction: column !important;
      gap: 24px !important;
    }
    .trust-grid .trust-card:last-child > div:last-child {
      border-left: none !important;
      border-top: 1px solid rgba(0,212,255,0.2) !important;
      padding-left: 0 !important;
      padding-top: 24px !important;
    }
  }

  /* ══════════════════════════════════════
     RESPONSIVE — MOBILE (≤ 600px)
  ══════════════════════════════════════ */
  @media (max-width: 600px) {

    /* PAIN */
    .pain-grid { grid-template-columns: 1fr !important; }

    /* HERO */
    #hero { padding: 96px 5% 56px; }
    .hero-title { font-size: clamp(36px, 10vw, 52px); }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-stat-card { padding: 16px; }
    .hero-stat-number { font-size: 28px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { text-align: center; justify-content: center; }
    .btn-hero-cta { font-size: 14px !important; padding: 14px 24px !important; }

    /* ABOUT : carte flottante en flux */
    .about-float-card {
      position: relative !important;
      bottom: auto !important;
      right: auto !important;
      margin-top: 16px;
      width: 100%;
      box-shadow: 0 4px 16px rgba(10,22,40,0.1);
    }
    .about-visual { padding-bottom: 0 !important; }

    /* PAIN */
    .pain-grid { grid-template-columns: 1fr !important; }
    .pain-card { padding: 22px 18px; }

    /* COMPARISON TABLE */
    .compare-col-headers,
    .compare-line { grid-template-columns: 1fr 1fr; }
    .compare-col-header-spacer,
    .compare-criterion { display: none; }
    .compare-val { padding: 12px 14px; font-size: 12px; }
    .eyon-val { border-right: none; border-bottom: 1px solid var(--gray-200); }

    /* VITAL KPI */
    .vital-kpi-grid { grid-template-columns: 1fr; gap: 10px; }
    .vital-kpi-num { font-size: 36px; }

    /* COMPARISON TABLE */
    .compare-wrap { overflow-x: auto; }

    .vital-kpi-num { font-size: 40px; }

    /* EXPERTISES */
    .expertise-grid { grid-template-columns: 1fr !important; gap: 12px; }
    .expertise-card { padding: 22px 16px; }
    .expertise-icon { width: 44px; height: 44px; font-size: 20px; }
    .expertise-title { font-size: 14px; }

    /* MÉTHODE */
    .step-body { padding: 18px 16px; }
    .step-title { font-size: 17px; }

    /* FAQ */
    .faq-q { font-size: 13px; padding: 12px 14px; }
    .faq-item { border-radius: 10px; }
    .faq-a { padding: 0 18px 16px; font-size: 13px; }

    /* CONTACT */
    .contact-actions { flex-direction: column; align-items: center; }
    .contact-actions .btn-primary { width: 100%; max-width: 360px; justify-content: center; }
    .contact-sub br { display: none; }
    .contact-card { width: 100%; max-width: 400px; justify-content: center; text-align: center; }
    .contact-card > div { text-align: center; }
    .contact-card .contact-card-icon { display: flex; justify-content: center; }

    /* FOOTER */
    .footer-links { flex-wrap: wrap; gap: 14px; }
    .footer-copy { font-size: 12px; }


    /* MODAL */
    .audit-overlay { padding: 0; align-items: flex-end; }
    .audit-panel { border-radius: 20px 20px 0 0; max-height: 96vh; }
    .audit-header { padding: 24px 20px 20px; }
    .audit-header-title { font-size: 20px; }
    .audit-progress { padding: 12px 20px 20px; }
    .progress-label { display: none; }
    .progress-line { margin: 0 4px; }
    .audit-body { padding: 24px 20px 0; }
    .audit-footer { padding: 20px 20px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .tags-wrap { gap: 6px; }
    .tag { padding: 6px 10px; font-size: 11px; }
    .timing-title { font-size: 13px; }
    .timing-option { padding: 12px 14px; }
  }

  /* ══════════════════════════════════════
     RESPONSIVE — TRÈS PETIT MOBILE (≤ 380px)
  ══════════════════════════════════════ */
  @media (max-width: 380px) {
    .vital-kpi-grid { grid-template-columns: 1fr; gap: 10px; }
    .hero-stats { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .hero-stat-number { font-size: 32px; }
    nav { padding: 0 4%; }
    .nav-logo img { height: 44px; }
  }


/* ══════════════════════════════════════
   Mobile CTA media query
══════════════════════════════════════ */
@media (min-width: 901px) { #mobileCTA { display: none !important; } }


/* ══════════════════════════════════════
   Service card expand styles
══════════════════════════════════════ */
.service-card {
        cursor: pointer;
        transition: background 0.3s, border-color 0.3s, transform 0.3s;
      }
      .service-detail {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        padding-top: 0;
        border-top: 0px solid rgba(255,255,255,0.1);
        transition: max-height 0.45s ease-out, opacity 0.35s ease, margin-top 0.3s ease, padding-top 0.3s ease, border-top-width 0.3s;
      }
      .service-card.expanded .service-detail {
        max-height: 600px;
        opacity: 1;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
      }
      .service-detail-section-title {
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 10px;
        margin-top: 16px;
      }
      .service-detail-section-title:first-child {
        margin-top: 0;
      }
      .service-detail ul {
        list-style: none;
        padding: 0;
        margin: 0 0 0 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .service-detail ul li {
        font-size: 13px;
        color: rgba(255,255,255,0.65);
        line-height: 1.6;
        font-weight: 300;
        padding-left: 14px;
        position: relative;
      }
      .service-detail ul li::before {
        content: '—';
        position: absolute;
        left: 0;
        color: var(--accent);
        font-size: 11px;
      }
      .service-detail ul li strong {
        color: rgba(255,255,255,0.9);
        font-weight: 600;
      }
      .service-detail-tagline {
        margin-top: 16px;
        font-size: 13px;
        font-weight: 500;
        color: var(--accent);
        font-style: italic;
        line-height: 1.5;
      }
      .service-expand-hint {
        margin-top: 20px;
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        font-family: var(--font-display);
        font-weight: 600;
        letter-spacing: 0.4px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 20px;
        transition: color 0.2s, border-color 0.2s, background 0.2s;
      }
      .service-card:hover .service-expand-hint {
        color: var(--accent);
        border-color: rgba(0,212,255,0.35);
        background: rgba(0,212,255,0.05);
      }
      .service-expand-hint .expand-arrow {
        display: inline-block;
        transition: transform 0.3s;
      }
      .service-card.expanded .service-expand-hint .expand-arrow {
        transform: rotate(180deg);
      }
      .service-card.expanded .service-expand-hint {
        color: var(--accent);
        border-color: rgba(0,212,255,0.35);
        background: rgba(0,212,255,0.05);
      }


/* ══════════════════════════════════════
   Testimonials responsive
══════════════════════════════════════ */

  @media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr !important; } }


/* ══════════════════════════════════════
   Réalisations cards
══════════════════════════════════════ */
.real-card{background:rgba(14,27,63,0.92);border:1px solid rgba(255,255,255,0.08);border-radius:16px;overflow:hidden;backdrop-filter:blur(8px);transition:border-color .25s,box-shadow .25s,transform .25s;display:flex;flex-direction:column;cursor:default;position:relative;}
.real-card:hover{border-color:rgba(26,86,219,0.45);box-shadow:0 28px 70px rgba(0,0,0,0.45),-4px 0 24px rgba(26,86,219,0.2);transform:translateY(-6px) scale(1.012);}
.real-card-shimmer{position:absolute;inset:0;background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.04) 50%,transparent 60%);transform:translateX(-100%);transition:transform 0.6s ease;pointer-events:none;z-index:1;border-radius:16px;}
.real-card:hover .real-card-shimmer{transform:translateX(100%);}
.real-detail{max-height:0;overflow:hidden;transition:max-height .45s cubic-bezier(.4,0,.2,1);}
.real-card:hover .real-detail{max-height:380px;}.real-card.open .real-detail{max-height:380px;}
.real-detail-inner{border-top:1px solid rgba(255,255,255,0.08);margin:0 18px;padding:13px 0 15px;}
.real-hidden-grid{display:none;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:20px;}
.real-hidden-grid.open{display:grid;}
.real-voir-plus{display:flex;align-items:center;justify-content:center;gap:10px;margin:36px auto 0;background:transparent;border:1px solid rgba(14,27,63,0.25);color:var(--navy);font-family:var(--font-display);font-size:13px;font-weight:600;padding:12px 28px;border-radius:8px;cursor:pointer;transition:border-color .2s,background .2s,color .2s;letter-spacing:.3px;}
.real-voir-plus:hover{border-color:var(--blue);background:rgba(26,86,219,0.06);color:var(--blue);}
.real-voir-plus .real-arrow{transition:transform .3s;}
.real-voir-plus.open .real-arrow{transform:rotate(180deg);}

@media (max-width: 600px){.real-grid,.real-hidden-grid{grid-template-columns:1fr!important;}}


/* ══════════════════════════════════════
   Audit modal
══════════════════════════════════════ */
/* Overlay */
  .audit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 26, 0.82);
    backdrop-filter: blur(6px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .audit-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Panel */
  .audit-panel {
    background: var(--navy);
    border-radius: 24px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.35s ease;
    box-shadow: 0 40px 100px rgba(6,13,26,0.4);
    scrollbar-width: thin;
    scrollbar-color: var(--gray-200) transparent;
  }
  .audit-overlay.open .audit-panel {
    transform: translateY(0) scale(1);
  }

  /* Header du modal */
  .audit-header {
    background: var(--navy);
    padding: 32px 36px 28px;
    border-radius: 24px 24px 0 0;
    position: relative;
  }
  .audit-header-tag {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
  }
  .audit-header-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }
  .audit-header-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    font-weight: 300;
  }
  .audit-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    line-height: 1;
  }
  .audit-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }

  /* Étapes progress */
  .audit-progress {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 36px 24px;
    margin-top: -1px;
    background: var(--navy);
  }
  .progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
  }
  .progress-dot {
    width: 28px; height: 28px; min-width: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.15);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: visible;
    transition: all 0.3s;
  }
  .progress-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy);
  }
  .progress-dot.done {
    background: rgba(0,212,255,0.2);
    border-color: rgba(0,212,255,0.4);
    color: var(--accent);
  }
  .progress-label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-display);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s;
  }
  .progress-label.active { color: rgba(255,255,255,0.85); }
  .progress-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 8px;
  }

  /* Body du formulaire */
  .audit-body {
    padding: 36px 36px 0;
    background: var(--white);
  }

  /* Étapes */
  .audit-step { display: none; }
  .audit-step.active { display: block; animation: stepIn 0.3s ease both; }
  @keyframes stepIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* Labels */
  .form-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .form-label .step-indicator {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .form-optional {
    font-size: 11px;
    font-weight: 400;
    color: var(--gray-400);
    font-family: var(--font-body);
    letter-spacing: 0;
    margin-left: 4px;
  }

  /* Champs */
  .form-select, .form-input, .form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-800);
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-select:focus, .form-input:focus, .form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
    background: var(--white);
  }
  .form-select-wrap {
    position: relative;
  }
  .form-select-wrap::after {
    content: '▾';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    font-size: 14px;
  }
  .form-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
  }

  /* Tags expertise */
  .tags-group { margin-bottom: 20px; }
  .tags-group-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: var(--font-display);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .tags-group-label span { font-size: 15px; }
  .tags-group-label svg { width: 16px; height: 16px; flex-shrink: 0; }
  .tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 40px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.18s;
    user-select: none;
    font-family: var(--font-body);
  }
  .tag:hover {
    border-color: var(--blue-light);
    color: var(--blue);
    background: var(--blue-pale);
  }
  .tag.selected {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
  }

  /* Champ texte expertise */
  .form-expertise-text {
    margin-top: 12px;
  }
  .form-expertise-text .form-input {
    font-size: 13px;
  }

  /* Timing options */
  .timing-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .timing-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.18s;
    background: var(--off-white);
  }
  .timing-option:hover {
    border-color: var(--blue-light);
    background: var(--blue-pale);
  }
  .timing-option.selected {
    border-color: var(--blue);
    background: var(--blue-pale);
  }
  .timing-radio {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    flex-shrink: 0;
    transition: all 0.18s;
    display: flex; align-items: center; justify-content: center;
  }
  .timing-option.selected .timing-radio {
    border-color: var(--blue);
    background: var(--blue);
  }
  .timing-option.selected .timing-radio::after {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--white);
  }
  .timing-text {
    flex: 1;
  }
  .timing-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1px;
  }
  .timing-sub {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 300;
  }
  .timing-date-input {
    margin-top: 10px;
    display: none;
  }
  .timing-date-input.visible { display: block; }

  /* Input pair */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
  }

  /* Promesse */
  .audit-promise {
    background: var(--blue-pale);
    border: 1px solid var(--blue-ultra);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 20px 0 0;
  }
  .audit-promise-icon { display: none; }
  .audit-promise-text {
    font-size: 13px;
    color: var(--blue);
    line-height: 1.6;
    font-weight: 400;
  }
  .audit-promise-text strong { display: none; }

  /* Footer du modal */
  .audit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 36px 32px;
    gap: 16px;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 0 0 24px 24px;
  }
  .audit-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
  }
  .audit-btn-back:hover { color: var(--gray-600); }
  .audit-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .audit-btn-next:hover { background: #1648c8; transform: translateY(-1px); }
  .audit-btn-submit {
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
  }
  .audit-btn-submit:hover { background: linear-gradient(135deg, #1648c8, #0284c7); }

  /* Success screen */
  .audit-success {
    display: none;
    text-align: center;
    padding: 48px 36px 44px;
    background: var(--white);
    border-radius: 0 0 24px 24px;
    min-height: 320px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .audit-success.show { display: flex; animation: stepIn 0.4s ease both; }
  .success-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(30, 86, 230, 0.22);
  }
  .success-icon svg {
    width: 20px;
    height: 20px;
  }
  .success-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .success-sub { display: none; }

  /* Séparateur */
  .form-sep {
    height: 1px;
    background: var(--gray-100);
    margin: 28px 0;
  }


/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: var(--faq-padding, 22px 28px);
    margin-bottom: var(--faq-margin, 12px);
    background: var(--white);
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  .faq-item[open] { box-shadow: 0 4px 20px rgba(26,86,219,0.1); border-color: rgba(26,86,219,0.3); background: #f8faff; }
  .faq-q {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-icon { font-size: 0; color: var(--blue); flex-shrink: 0; transition: transform 0.25s; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-pale); border: 1px solid var(--blue-ultra); display: flex; align-items: center; justify-content: center; }
  .faq-item[open] .faq-icon { transform: rotate(45deg); }
  .faq-a {
    margin-top: 14px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    font-weight: 400;
    border-top: 1px solid var(--gray-100);
    padding-top: 14px;
  }


/* ══════════════════════════════════════
   Mentions légales overlay
══════════════════════════════════════ */
/* Overlay full-page */
  #mlOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--white);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #mlOverlay.open { display: block; }
  #mlOverlay.open ~ #mobileCTA,
  body.ml-open #mobileCTA { display: none !important; }

  /* Sticky nav inside overlay */
  .ml-nav {
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
  }
  .ml-nav-logo { display: flex; align-items: center; text-decoration: none; }
  .ml-nav-logo img { height: 52px; }
  .ml-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.3px;
    text-decoration: none;
  }
  .ml-back-btn:hover { color: var(--blue); background: var(--blue-pale); }
  .ml-back-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* Hero banner */
  .ml-hero {
    background: var(--navy);
    padding: 80px 5% 56px;
    position: relative;
    overflow: hidden;
  }
  .ml-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(26,86,219,0.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .ml-hero-grid { display: none; }
  .ml-hero-inner { position: relative; max-width: 860px; margin: 0 auto; }
  .ml-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .ml-tag::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    display: inline-block;
  }
  .ml-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .ml-date { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }

  /* Content */
  .ml-content { max-width: 860px; margin: 0 auto; padding: 64px 5% 80px; }
  .ml-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-100);
  }
  .ml-section:last-child { border-bottom: none; margin-bottom: 0; }
  .ml-section-num {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
  }
  .ml-section-num::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    display: inline-block;
  }
  .ml-section h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .ml-section p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 14px;
  }
  .ml-section p:last-child { margin-bottom: 0; }
  .ml-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .ml-table tr { border-bottom: 1px solid var(--gray-100); }
  .ml-table tr:last-child { border-bottom: none; }
  .ml-table td { padding: 12px 0; vertical-align: top; line-height: 1.6; }
  .ml-table td:first-child {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    width: 220px;
    padding-right: 24px;
    flex-shrink: 0;
  }
  .ml-table td:last-child { color: var(--gray-600); font-weight: 400; }
  .ml-infobox {
    background: var(--blue-pale);
    border: 1px solid var(--blue-ultra);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 16px;
  }
  .ml-infobox p { font-size: 14px; color: var(--blue); margin-bottom: 0; font-weight: 400; }

  /* ML footer */
  .ml-footer {
    background: #060d1a;
    padding: 32px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .ml-footer-logo img { height: 48px; opacity: 1; }
  .ml-footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    font-family: var(--font-body);
  }

    
    .ml-table tr { display: flex; flex-direction: column; padding: 12px 0; }
    .ml-table td { padding: 2px 0; width: 100%; }
    .ml-table td:first-child { font-size: 12px; color: var(--blue); }
    .ml-footer { flex-direction: column; align-items: flex-start; }
  }

/* ══ FAQ MOBILE OVERRIDE (must be last) ══ */


/* ── Real cards touch device ── */
@media (hover: none), (pointer: coarse) {
  .real-detail { max-height: none !important; overflow: visible !important; display: none; transition: none !important; }
  .real-card.open .real-detail { display: block !important; }
  .real-card:hover .real-detail { display: none !important; }
  .real-card.open { border-color: rgba(26,86,219,0.45); }
}
