/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 375:0 Unexpected "<"

**/
<style>
/* ================= RESET ================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #05070f;
    --bg-soft: #0b1024;
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.14);

    --primary: #4f8cff;
    --secondary: #6d5dfc;
    --accent: #38f9d7;

    --text-main: #ffffff;
    --text-soft: #cfd4ff;
}

body {
    font-family: Inter, system-ui, Arial, sans-serif;
    background: radial-gradient(circle at top, var(--bg-soft), var(--bg-main));
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5,7,15,0.6);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 48px;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--accent);
}

.logo span {
    color: var(--primary);
}

.nav a {
    margin: 0 14px;
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: var(--text-main);
}

/* ================= BUTTONS ================= */
.login-btn {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    padding: 14px 36px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg,var(--secondary),var(--primary));
    box-shadow: 0 12px 45px rgba(79,140,255,0.45);
    transition: .25s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(79,140,255,0.65);
}

/* ================= HERO ================= */
/* Remplacez votre .hero actuel par ce code CSS */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  padding: 0 8%;
  /* Ancien fond :
  background: radial-gradient(circle at 30% 50%, #0b0f2f, #020617);
  */
  
  /* NOUVEAU FOND - PLUS DYNAMIQUE */
  background: #020617; /* Couleur de base très sombre */
  position: relative; /* Nécessaire pour positionner les pseudo-éléments */
  overflow: hidden; /* Pour s'assurer que les éléments flous ne débordent pas */
  color: #fff;
}

/* Pseudo-élément 1: Un grand orbe bleu/violet en haut à gauche */
.hero::before {
  content: '';
  position: absolute;
  top: -150px; /* Positionnement en dehors de l'écran ou légèrement dedans */
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 110, 245, 0.4), transparent 70%); /* Bleu avec transparence */
  border-radius: 50%;
  filter: blur(150px); /* Flou très prononcé */
  z-index: 0; /* S'assure qu'il est en arrière-plan */
  animation: blob-float 8s ease-in-out infinite alternate; /* Nouvelle animation pour les blobs */
  opacity: 0.7; /* Légère transparence pour ne pas dominer */
}

/* Pseudo-élément 2: Un orbe plus petit en bas à droite, couleur complémentaire */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%); /* Violet avec transparence */
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  animation: blob-float 10s ease-in-out infinite alternate-reverse; /* Animation différente */
  opacity: 0.6;
}

/* On doit ajuster le z-index du contenu pour qu'il soit au-dessus des blobs */
.hero-content, .hero-visual {
  position: relative; /* Les éléments doivent être positionnés */
  z-index: 1; /* Pour être au-dessus des pseudo-éléments (z-index: 0) */
}


/* Animation des blobs (tu peux la réutiliser de ton animation 'float' existante) */
@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, 10px) scale(1.05); }
  66% { transform: translate(-10px, -5px) scale(0.98); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Garder tes autres styles */
.hero-content {
  max-width: 600px;
  animation: fadeInUp 1.2s ease forwards;
}

/* ... (le reste de ton CSS) ... */

.hero-visual img {
  width: 500px;
  animation: float 4s ease-in-out infinite; /* Ton animation existante pour l'image */
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================= SECTIONS ================= */
section {
    padding: 90px 6%;
}

section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

/* ================= INTEGRATIONS ================= */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.integration-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 40px 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: .35s;
}

.integration-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
}

.integration-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    filter: invert(1);
}

/* ================= REVIEWS ================= */

/* Le cadre qui cache ce qui dépasse */
.reviews-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); /* Petit effet fondu sur les bords (optionnel) */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* La piste qui roule */
.reviews-track {
  display: flex;
  width: max-content; /* La largeur s'adapte au contenu total */
  gap: 2rem; /* Espace entre les cartes */
  animation: scroll 120s linear infinite; /* Vitesse 20s, change si tu veux */
}

/* Met en pause au survol (UX friendly) */
.reviews-track:hover {
  animation-play-state: paused;
}
.eleven-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: -50px;
    padding: 25px;
    
    width: 350px;
    min-width: 350px;
    flex-shrink: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;

    /* --- AJOUTE CES 2 LIGNES ICI --- */
    transition: all 0.3s ease; /* Rend l'effet fluide */
    cursor: default; /* ou pointer si on peut cliquer dessus */
  }

/* --- NOUVEAU BLOC A AJOUTER --- */
.eleven-card:hover {
    border-color: #4f8cff; /* Le bleu de ton site */
    transform: translateY(-5px); /* La carte monte légèrement */
    background: rgba(79, 140, 255, 0.08); /* Fond très légèrement bleuté */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); /* Petite ombre */
  }
/* L'animation mathématique */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* On décale de 50% seulement (car on a 2 jeux de cartes identiques) */
    transform: translateX(-50%); 
  }
}
  /* --- EFFET DE FONDU (VIGNETTE) --- */
  
  /* On crée les deux blocs de fondu */
  .eleven-section-wrapper::before,
  .eleven-section-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px; /* Largeur du fondu (augmente si tu veux plus de flou) */
    height: 100%;
    z-index: 2; /* Pour être AU-DESSUS des cartes */
    pointer-events: none; /* TRES IMPORTANT : permet de cliquer au travers */
  }

  /* Le fondu de GAUCHE */
  .eleven-section-wrapper::before {
    left: 0;
    /* Du noir (#05070f) vers transparent */
    background: linear-gradient(to right, #05070f 0%, transparent 100%);
  }

  /* Le fondu de DROITE */
  .eleven-section-wrapper::after {
    right: 0;
    /* Du transparent vers noir (#05070f) */
    background: linear-gradient(to left, #05070f 0%, transparent 100%);
  }
/* ================= POPUP PRICING ================= */
.pricing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,7,15,0.65);
    backdrop-filter: blur(22px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.pricing-overlay.active {
    display: flex;
}

.pricing-popup {
    width: 92%;
    max-width: 1150px;
    background: rgba(15,18,40,0.95);
    border-radius: 36px;
    padding: 46px;
    border: 1px solid var(--glass-border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--glass);
    border-radius: 30px;
    padding: 36px;
    text-align: center;
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: var(--accent);
    margin: 22px 0;
}

.subscribe-btn {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    border: none;
    font-weight: 900;
    background: linear-gradient(135deg,var(--primary),var(--accent));
    cursor: pointer;
}
</style>
