
  :root {
    --bg: #080c10;
    --surface: #0d1219;
    --surface2: #131b24;
    --border: rgba(255,255,255,0.07);
    --accent: #00c9a7;
    --accent2: #0070f3;
    --accent3: #6366f1;
    --text: #e8edf3;
    --muted: #6b7a8d;
    --glow: rgba(0, 201, 167, 0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .5;
  }

  /* ── TYPOGRAPHY ── */
  h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5%;
    height: 68px;
    background: rgba(8,12,16,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
  }

  .logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }

  .logo-icon svg { width: 18px; height: 18px; }

  .nav-links {
    display: flex; align-items: center; gap: 8px;
    list-style: none;
    justify-content: center;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color .2s, background .2s;
  }

  .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

  .nav-cta {
    display: flex; align-items: center; gap: 10px;
    justify-self: end;
  }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 9px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .22s;
    text-decoration: none;
    border: none;
  }

  .btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
  }
  .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

  .btn-primary {
    background: var(--accent);
    color: #040a07;
    font-weight: 600;
  }
  .btn-primary:hover {
    background: #00e0bb;
    box-shadow: 0 0 24px rgba(0,201,167,0.35);
    transform: translateY(-1px);
  }

  .btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  /* radial glow blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }
  .blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,201,167,0.12), transparent 70%);
    top: -100px; left: 50%;
    transform: translateX(-50%);
    animation: pulse 8s ease-in-out infinite;
  }
  .blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,112,243,0.1), transparent 70%);
    top: 30%; left: 10%;
    animation: pulse 10s ease-in-out infinite reverse;
  }
  .blob-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
    top: 20%; right: 8%;
    animation: pulse 12s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1) translateX(0); opacity: .8; }
    50% { transform: scale(1.1) translateX(20px); opacity: 1; }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(0,201,167,0.1);
    border: 1px solid rgba(0,201,167,0.25);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp .6s ease both;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 2s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
  }

  .hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -2px;
    max-width: 800px;
    margin: 0 auto 24px;
    animation: fadeUp .7s .1s ease both;
  }

  .hero h1 .highlight {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 40px;
    font-weight: 300;
    animation: fadeUp .7s .2s ease both;
  }

  .hero-actions {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
  }

  .hero-social-proof {
    margin-top: 64px;
    display: flex; gap: 20px;
    animation: fadeUp .7s .5s ease both;
    flex-wrap: wrap; justify-content: center;
  }

  .avatars {
    display: flex;
  }

  .avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -10px;
    background: linear-gradient(135deg, var(--accent2), var(--accent3));
    font-size: .65rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    color: white;
  }

  .avatar:first-child { margin-left: 0; }

  .social-text { font-size: .85rem; color: var(--muted); }
  .social-text strong { color: var(--text); }

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

  /* ── TRUSTED BY ── */
  .trust-bar {
    padding: 28px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .trust-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }

  .trust-logos { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; justify-content: center; }

  .trust-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: -0.5px;
    transition: color .3s;
  }
  .trust-logo:hover { color: rgba(255,255,255,0.5); }

  /* ── FEATURES ── */
  section { padding: 100px 5%; }

  .section-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 560px;
    margin-bottom: 16px;
  }

  .section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 480px;
    font-weight: 300;
  }

  .features-header { margin-bottom: 60px; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--glow), transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
  }

  .feature-card:hover {
    border-color: rgba(0,201,167,0.3);
    transform: translateY(-4px);
  }

  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }

  .icon-green { background: rgba(0,201,167,0.12); }
  .icon-blue  { background: rgba(0,112,243,0.12); }
  .icon-purple{ background: rgba(99,102,241,0.12); }
  .icon-amber { background: rgba(245,158,11,0.12); }
  .icon-rose  { background: rgba(244,63,94,0.12); }
  .icon-teal  { background: rgba(20,184,166,0.12); }

  .feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .feature-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
  }

  /* ── HOW IT WORKS ── */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
  }

  .step {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    position: relative;
  }

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

  .step-num {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    opacity: .6;
  }

  .step h3 { font-size: 1.05rem; margin-bottom: 10px; }
  .step p { font-size: .9rem; color: var(--muted); }

  /* ── PRICING ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 60px auto 0;
  }

  .plan {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: transform .25s;
  }

  .plan:hover { transform: translateY(-4px); }

  .plan.featured {
    border-color: rgba(0,201,167,0.4);
    background: linear-gradient(135deg, rgba(0,201,167,0.05), var(--surface));
  }

  .plan-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #040a07;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .plan-name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .plan-price {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 4px;
  }

  .plan-price sup { font-size: 1.2rem; vertical-align: super; letter-spacing: 0; }
  .plan-price small { font-size: .9rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }

  .plan-desc {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 28px;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--text);
  }

  .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(0,201,167,0.15);
    color: var(--accent);
    font-size: .7rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .btn-plan {
    width: 100%;
    justify-content: center;
    padding: 13px;
  }

  /* ── SECURITY SECTION ── */
  .security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .security-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }

  .security-visual::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,201,167,0.12), transparent 70%);
  }

  .encrypt-animation {
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: .75rem;
    color: var(--accent);
    line-height: 2;
    overflow: hidden;
  }

  .encrypt-line { opacity: .5; }
  .encrypt-line.active { opacity: 1; }

  .typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
  }

  .lock-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

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

  .lock-icon { font-size: 1.1rem; }

  .lock-text { font-size: .85rem; }
  .lock-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
  .lock-text span { color: var(--muted); }

  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
  }

  .testimonial {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color .3s;
  }

  .testimonial:hover { border-color: rgba(255,255,255,0.15); }

  .stars { color: #f59e0b; font-size: .85rem; margin-bottom: 16px; letter-spacing: 2px; }

  .testimonial blockquote {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent2), var(--accent3));
    font-size: .75rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    color: white;
    flex-shrink: 0;
  }

  .author-name { font-size: .9rem; font-weight: 600; }
  .author-title { font-size: .78rem; color: var(--muted); }

  /* ── CTA BANNER ── */
  .cta-banner {
    margin: 0 5% 80px;
    background: linear-gradient(135deg, rgba(0,201,167,0.1), rgba(0,112,243,0.08), rgba(99,102,241,0.1));
    border: 1px solid rgba(0,201,167,0.2);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(0,201,167,0.15), transparent 70%);
    pointer-events: none;
  }

  .cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
  }

  .cta-banner p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
    position: relative;
  }

  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 60px 5% 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-brand p { font-size: .9rem; color: var(--muted); margin: 16px 0 24px; max-width: 260px; line-height: 1.7; }

  .footer-social { display: flex; gap: 10px; }

  .social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    transition: all .2s;
  }

  .social-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

  .footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 600; margin-bottom: 18px; }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

  .footer-col a { text-decoration: none; color: var(--muted); font-size: .9rem; transition: color .2s; }
  .footer-col a:hover { color: var(--text); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p { font-size: .82rem; color: var(--muted); }

  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { font-size: .82rem; color: var(--muted); text-decoration: none; transition: color .2s; }
  .footer-bottom-links a:hover { color: var(--text); }

  /* ── OPEN SOURCE BADGE ── */
  .os-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-size: .78rem;
    color: var(--muted);
    background: var(--surface2);
  }

  /* ── STAT BAND ── */
  .stat-band {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text), var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .stat-label { font-size: .85rem; color: var(--muted); margin-top: 4px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1080px) {
    .nav-links { display: none; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .security-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: none; }
    .cta-banner { padding: 48px 32px; }
  }

  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero h1 { font-size: clamp(2rem, 10vw, 2.6rem); letter-spacing: -1px; }
    .hero { padding-top: 100px; }
    section { padding: 70px 5%; }
    .cta-banner { padding: 40px 24px; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── LANGUAGE SWITCH ── */
  .lang-switch {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .lang-switch button {
    background: transparent;
    border: none;
    color: var(--muted);
    padding: 8px 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .2s;
  }
  .lang-switch button:hover { color: var(--text); }
  .lang-switch button.active { background: rgba(0,201,167,0.12); color: var(--accent); }

  /* ── NAV SCROLLED ── */
  nav { transition: background .3s, box-shadow .3s; }
  nav.scrolled {
    background: rgba(8,12,16,0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  }

  /* ── SELECTION & SCROLLBAR ── */
  ::selection { background: rgba(0,201,167,0.3); color: #fff; }
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: #1d2733; border-radius: 99px; border: 2px solid var(--bg); }
  ::-webkit-scrollbar-thumb:hover { background: #2a3847; }

  /* ── HERO GRID ── */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, black 30%, transparent);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, black 30%, transparent);
    pointer-events: none;
  }

  /* ── BUTTON SHINE ── */
  .btn-primary { position: relative; overflow: hidden; }
  .btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
  }
  .btn-primary:hover::after { animation: shine .9s ease; }
  @keyframes shine { to { left: 160%; } }

  /* ── CARD SPOTLIGHT (suit la souris) ── */
  .testimonial { position: relative; }
  .feature-card::after, .plan::after, .testimonial::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
    background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(0,201,167,0.09), transparent 65%);
  }
  .feature-card:hover::after, .plan:hover::after, .testimonial:hover::after { opacity: 1; }

  /* ── MARQUEE LOGOS ── */
  .marquee {
    overflow: hidden;
    max-width: 720px;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  }
  .marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 26s linear infinite;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee { to { transform: translateX(calc(-50% - 28px)); } }

  /* ── BURGER & MENU MOBILE ── */
  .nav-burger {
    display: none;
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    z-index: 99;
    background: rgba(8,12,16,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 5% 24px;
    display: none;
    flex-direction: column;
  }
  .mobile-menu.open { display: flex; animation: menuIn .25s ease; }
  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
  }
  .mobile-menu > a {
    color: var(--text);
    text-decoration: none;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu > a:active { color: var(--accent); }
  .mm-cta { display: flex; gap: 10px; margin-top: 18px; }
  .mm-cta .btn { flex: 1; justify-content: center; }

  /* ── SCROLLSPY ── */
  .nav-links a.active { color: var(--accent); background: rgba(0,201,167,0.08); }

  /* ── RETOUR EN HAUT ── */
  .to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all .3s;
  }
  .to-top.show { opacity: 1; pointer-events: auto; transform: none; }
  .to-top:hover { border-color: rgba(0,201,167,0.4); color: var(--accent); }

  /* ── FAQ ── */
  .faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color .3s;
  }
  .faq-item[open] { border-color: rgba(0,201,167,0.3); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-weight: 600;
    font-size: .98rem;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-icon { color: var(--accent); font-size: 1.25rem; line-height: 1; transition: transform .3s; flex-shrink: 0; }
  .faq-item[open] .faq-icon { transform: rotate(45deg); }
  .faq-item p { padding: 0 24px 20px; color: var(--muted); font-size: .92rem; line-height: 1.7; }

  /* ── NAV RESPONSIVE FINE-TUNING ── */
  @media (max-width: 1080px) {
    .nav-burger { display: flex; }
  }
  @media (max-width: 860px) {
    .nav-cta .btn-ghost { display: none; }
  }
  @media (max-width: 640px) {
    .nav-cta .btn { display: none; }
    .nav-cta { gap: 8px; }
    nav .logo { font-size: 1.05rem; gap: 8px; }
    nav .logo-icon { width: 26px; height: 26px; }
    .sp-table { display: block; overflow-x: auto; }
    #subpage-overlay .logo { display: none; }
  }
  #subpage-overlay a[onclick*="closePage"] { white-space: nowrap; }
  @media (max-width: 480px) {
    .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); letter-spacing: -1px; padding: 0 4px; }
  }

  /* ── BANDEAU COOKIES ── */
  .cookie-banner {
    position: fixed;
    bottom: 20px; left: 20px;
    z-index: 9000;
    max-width: 380px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: none;
    animation: fadeUp .5s ease both;
  }
  .cookie-banner.show { display: block; }
  .cookie-banner p { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
  .cookie-banner a { color: var(--accent); text-decoration: none; }
  .cookie-banner button {
    padding: 9px 22px;
    background: var(--accent);
    color: #040a07;
    border: none; border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700; font-size: .85rem;
    cursor: pointer;
  }
  @media (max-width: 480px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

  /* ── BOUTON COPIER ── */
  .copy-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    margin-left: 6px;
    vertical-align: middle;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--muted);
    font-size: .75rem;
    cursor: pointer;
    transition: all .2s;
  }
  .copy-btn:hover { color: var(--accent); border-color: rgba(0,201,167,0.4); }
  .copy-btn.copied { color: var(--accent); border-color: var(--accent); }

  /* ── DÉMO DE CHIFFREMENT ── */
  .crypto-demo {
    max-width: 720px;
    margin: 70px auto 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
  }
  .crypto-demo label { font-size: .8rem; color: var(--muted); display: block; margin-bottom: 8px; }
  .crypto-demo textarea {
    width: 100%;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    outline: none;
    resize: vertical;
    min-height: 58px;
    transition: border-color .2s;
  }
  .crypto-demo textarea:focus { border-color: rgba(0,201,167,0.5); }
  .crypto-arrow {
    text-align: center;
    font-size: .75rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 14px 0;
  }
  .crypto-output {
    background: #060a0e;
    border: 1px solid rgba(0,201,167,0.2);
    border-radius: 10px;
    padding: 14px;
    font-family: 'Courier New', monospace;
    font-size: .78rem;
    color: var(--accent);
    word-break: break-all;
    min-height: 58px;
    line-height: 1.7;
  }
  .crypto-output .dim { color: var(--muted); }
  .crypto-note { font-size: .78rem; color: var(--muted); margin-top: 12px; }

  /* ── TOGGLE TARIFS ── */
  .billing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 36px auto 6px;
    width: max-content;
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 4px;
    background: var(--surface);
  }
  .billing-toggle button {
    padding: 8px 22px;
    border: none;
    border-radius: 99px;
    background: transparent;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    display: flex; align-items: center; gap: 8px;
  }
  .billing-toggle button.active { background: rgba(0,201,167,0.14); color: var(--accent); }
  .save-badge {
    background: var(--accent);
    color: #040a07;
    font-size: .68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 99px;
  }
  .billing-note { text-align: center; font-size: .82rem; color: var(--muted); margin-bottom: 0; }

  /* ── TABLEAU COMPARATIF ── */
  .compare-wrap { max-width: 860px; margin: 50px auto 0; overflow-x: auto; }
  .compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
  .compare-table th, .compare-table td {
    padding: 14px 18px;
    text-align: center;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
  }
  .compare-table th { font-family: 'Syne', sans-serif; font-size: .95rem; padding-bottom: 18px; }
  .compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--muted); font-size: .85rem; }
  .compare-table .col-ibm { background: rgba(0,201,167,0.06); color: var(--text); font-weight: 600; }
  .compare-table th.col-ibm { color: var(--accent); border-top: 2px solid var(--accent); border-radius: 8px 8px 0 0; }
  .compare-table tr:last-child td.col-ibm { border-radius: 0 0 8px 8px; }
  .compare-yes { color: var(--accent); }
  .compare-no { color: #f43f5e; }
  .compare-meh { color: #f59e0b; }

  /* ── BLOG CLIQUABLE ── */
  .sp-blog-card { transition: border-color .25s, transform .25s; }
  .sp-blog-card[onclick] { cursor: pointer; }
  .sp-blog-card[onclick]:hover { border-color: rgba(0,201,167,0.35); transform: translateY(-2px); }
  .read-more { color: var(--accent); font-size: .82rem; font-weight: 600; margin-top: 8px; display: inline-block; }

  /* ── CANARI JURIDIQUE ── */
  .canary-wrap {
    max-width: 720px;
    margin: 28px auto 0;
    background: #060a0e;
    border: 1px solid rgba(0,201,167,0.22);
    border-radius: 16px;
    overflow: hidden;
  }
  .canary-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    flex-wrap: wrap;
  }
  .canary-head strong { font-family: 'Syne', sans-serif; font-size: .92rem; }
  .canary-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: blink 2s infinite;
    flex-shrink: 0;
  }
  .canary-date { margin-left: auto; font-size: .75rem; color: var(--muted); }
  .canary-body {
    font-family: 'Courier New', monospace;
    font-size: .8rem;
    line-height: 2;
    color: var(--text);
    padding: 18px 20px;
  }
  .canary-body .ok { color: var(--accent); }
  .canary-foot {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }
  .canary-foot a { color: var(--accent); text-decoration: none; }
  .canary-foot a:hover { text-decoration: underline; }

  /* ── BANDE CONFORMITÉ ── */
  .compliance-band {
    padding: 36px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .compliance-badges { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    font-size: .85rem;
    transition: border-color .25s;
  }
  .compliance-badge:hover { border-color: rgba(0,201,167,0.35); }
  .compliance-badge strong { font-size: .82rem; }
  .compliance-badge .cb-sub {
    font-size: .72rem;
    color: var(--muted);
    border-left: 1px solid var(--border);
    padding-left: 8px;
  }

  /* ── NOTE GLOBALE (témoignages) ── */
  .rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 9px 20px;
    border-radius: 99px;
    background: var(--surface2);
    border: 1px solid var(--border);
    font-size: .85rem;
    color: var(--muted);
  }
  .rating-badge .stars { margin: 0; }
  .rating-badge strong { color: var(--text); }

  /* ── LOGOS PRESSE CLIQUABLES ── */
  .marquee { cursor: pointer; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  }


@keyframes modalIn {
  from { opacity:0; transform:translateY(24px) scale(.97); }
  to   { opacity:1; transform:none; }
}


.sp-hero { text-align:center; margin-bottom:60px; }
.sp-hero .sp-tag { display:inline-block;padding:5px 14px;border-radius:99px;background:rgba(0,201,167,0.1);border:1px solid rgba(0,201,167,0.2);color:var(--accent);font-size:.75rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:20px; }
.sp-hero h1 { font-size:clamp(2rem,5vw,3.5rem);font-weight:800;letter-spacing:-1.5px;margin-bottom:16px; }
.sp-hero p { color:var(--muted);font-size:1.05rem;max-width:560px;margin:0 auto; }
.sp-cards { display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;margin:40px 0; }
.sp-card { background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:28px; }
.sp-card h3 { font-size:1.05rem;font-weight:700;margin-bottom:10px; }
.sp-card p { font-size:.875rem;color:var(--muted);line-height:1.65; }
.sp-card .sp-icon { font-size:1.5rem;margin-bottom:14px; }
.sp-divider { border:none;border-top:1px solid var(--border);margin:48px 0; }
.sp-section-title { font-size:1.4rem;font-weight:800;letter-spacing:-.5px;margin-bottom:12px; }
.sp-prose { color:var(--muted);line-height:1.8;font-size:.95rem; }
.sp-prose strong { color:var(--text); }
.sp-table { width:100%;border-collapse:collapse;margin:24px 0; }
.sp-table th { text-align:left;font-size:1.1rem;text-transform:uppercase;letter-spacing:1.5px;color:var(--muted);padding:10px 16px;border-bottom:1px solid var(--border); }
.sp-table td { padding:14px 16px;font-size:.9rem;border-bottom:1px solid rgba(255,255,255,0.04); }
.sp-table tr:hover td { background:rgba(255,255,255,0.02); }
.sp-badge { display:inline-flex;align-items:center;gap:6px;padding:3px 10px;border-radius:99px;font-size:.72rem;font-weight:600; }
.sp-badge-green { background:rgba(0,201,167,0.12);color:var(--accent); }
.sp-badge-blue { background:rgba(0,112,243,0.12);color:#60a5fa; }
.sp-cta { margin-top:48px;padding:40px;background:linear-gradient(135deg,rgba(0,201,167,0.08),rgba(0,112,243,0.06));border:1px solid rgba(0,201,167,0.2);border-radius:16px;text-align:center; }
.sp-cta h3 { font-size:1.3rem;font-weight:800;margin-bottom:10px; }
.sp-cta p { color:var(--muted);font-size:.9rem;margin-bottom:24px; }
.sp-blog-card { background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:24px;margin-bottom:16px;display:flex;gap:20px;align-items:flex-start; }
.sp-blog-date { font-size:.75rem;color:var(--muted);white-space:nowrap;margin-top:4px; }
.sp-blog-title { font-size:1rem;font-weight:700;margin-bottom:6px; }
.sp-blog-excerpt { font-size:.85rem;color:var(--muted);line-height:1.6; }
.sp-job { background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:24px;margin-bottom:12px;display:flex;justify-content:space-between;align-items:center;gap:20px; }
.sp-job-title { font-size:1rem;font-weight:700;margin-bottom:4px; }
.sp-job-meta { font-size:.8rem;color:var(--muted); }
