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

      body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
      }

      /* Couleurs inspirées de votre photo - dégradé bleu-turquoise avec touches de vert */
      :root {
        --primary: #2b5ce6;
        --secondary: #00d4aa;
        --accent: #06b6d4;
        --success: #10b981;
        --light: #f8fafc;
        --dark: #1e293b;
        --gradient: linear-gradient(135deg, #2b5ce6 0%, #00d4aa 50%, #06b6d4 100%);
        --gradient-soft: linear-gradient(
          135deg,
          rgba(43, 92, 230, 0.1) 0%,
          rgba(0, 212, 170, 0.1) 50%,
          rgba(6, 182, 212, 0.1) 100%
        );
      }

      /* Styles généraux repris de votre site actuel */
      .top-nav {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(43, 92, 230, 0.08);
      }
      .top-nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.8rem 20px;
      }
      .nav-links {
        display: flex;
        gap: 1rem;
      }
      .nav-links a {
        color: var(--dark);
        text-decoration: none;
        font-weight: 600;
        padding: 0.4rem 0.8rem;
        border-radius: 8px;
        transition: background 0.2s;
      }
      .nav-links a:hover {
        background: var(--gradient-soft);
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .hero-section {
        background: var(--gradient-soft);
        padding: 60px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%232B5CE6" opacity="0.1"/></svg>')
          repeat;
        animation: float 20s infinite linear;
      }

      @keyframes float {
        0% {
          transform: translate(0, 0) rotate(0deg);
        }
        100% {
          transform: translate(-50px, -50px) rotate(360deg);
        }
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
      }

      .main-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        margin-bottom: 1rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
      }

      .hero-subtitle {
        font-size: 1.4rem;
        color: var(--dark);
        margin-bottom: 2rem;
        font-weight: 600;
      }

      .cta-button {
        background: var(--gradient);
        color: white;
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(43, 92, 230, 0.3);
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(43, 92, 230, 0.4);
      }

      /* Section différences clés */
      .key-differences {
        padding: 80px 20px;
        background: white;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--dark);
      }

      .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--dark);
        opacity: 0.7;
        margin-bottom: 4rem;
      }

      .differences-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .difference-card {
        background: var(--gradient-soft);
        padding: 3rem 2rem;
        border-radius: 25px;
        text-align: center;
        border: 1px solid rgba(43, 92, 230, 0.1);
        transition: all 0.3s;
      }

      .difference-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(43, 92, 230, 0.15);
      }

      .difference-card h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .difference-card p {
        color: var(--dark);
        font-size: 1.1rem;
        line-height: 1.6;
      }

      /* Section sports */
      .sports-section {
        padding: 80px 20px;
        background: var(--light);
      }

      .sports-text {
        text-align: center;
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 3rem;
        font-weight: 600;
      }

      .team-section {
        padding: 80px 20px;
        background: white;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
      }

      .team-card {
        background: var(--gradient-soft);
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        transition: all 0.3s;
      }

      .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(43, 92, 230, 0.1);
      }

      .team-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary);
      }

      /* Startup française section */
      .startup-section {
        background: var(--gradient-soft);
        padding: 3rem 2rem;
        text-align: center;
        border-radius: 20px;
        margin: 4rem 0;
        border: 1px solid rgba(43, 92, 230, 0.1);
      }

      .startup-section h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 1rem;
      }

      .startup-section p {
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 0.5rem;
      }

      /* Section pricing */
      .pricing-section {
        padding: 80px 20px;
        background: var(--light);
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
      }

      .pricing-card {
        background: white;
        border-radius: 25px;
        padding: 3rem 2rem;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border: 2px solid transparent;
        transition: all 0.3s;
        position: relative;
      }

      .pricing-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
      }

      .pricing-card.popular {
        border-color: var(--primary);
        transform: scale(1.05);
      }

      .pricing-card.popular::before {
        content: '🔥 POPULAIRE';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gradient);
        color: white;
        padding: 5px 20px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
      }

      .pricing-card h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--primary);
      }

      .price {
        font-size: 3rem;
        font-weight: 900;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 1rem 0;
      }

      .price-period {
        font-size: 1rem;
        color: var(--dark);
        opacity: 0.7;
      }

      .price-subtitle {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 2rem;
      }

      .features-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
        text-align: left;
      }

      .features-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
      }

      .features-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: bold;
      }

      /* FAQ */
      .faq-section {
        padding: 80px 20px;
        background: var(--light);
      }

      .faq-item {
        background: white;
        margin-bottom: 1rem;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-left: 4px solid var(--primary);
      }

      .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s;
        background: linear-gradient(90deg, rgba(43, 92, 230, 0.05) 0%, white 20%);
      }

      .faq-question:hover {
        background: var(--gradient-soft);
      }

      .faq-answer {
        padding: 0 1.5rem 1.5rem;
        color: var(--dark);
        opacity: 0.8;
        display: none;
        background: rgba(43, 92, 230, 0.02);
      }

      .faq-item.active .faq-answer {
        display: block;
      }

      .faq-toggle {
        font-size: 1.5rem;
        transition: transform 0.3s;
        color: var(--primary);
        font-weight: bold;
      }

      .faq-item.active .faq-toggle {
        transform: rotate(180deg);
      }

      /* Footer */
      .footer {
        background: var(--dark);
        color: white;
        padding: 3rem 2rem 1rem;
      }

      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-section h3 {
        margin-bottom: 1rem;
        color: var(--secondary);
      }

      .footer-section a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s;
        display: block;
        margin-bottom: 0.5rem;
      }

      .footer-section a:hover {
        opacity: 1;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.6;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .differences-grid {
          grid-template-columns: 1fr;
        }

        .pricing-grid {
          grid-template-columns: 1fr;
        }

        .hero-section {
          padding: 40px 20px;
        }

        .main-title {
          font-size: 2.5rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .pricing-card.popular {
          transform: none;
        }
      }

      .final-cta {
        text-align: center;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--dark);
        margin: 3rem 0 2rem;
      }
      .sports-list {
        list-style: none;
        padding: 0;
        margin: 2rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
        max-width: 900px;
      }
      .sports-list li {
        background: white;
        border: 1px solid rgba(43, 92, 230, 0.15);
        border-radius: 999px;
        padding: 0.6rem 1rem;
        color: var(--dark);
        text-align: center;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(43, 92, 230, 0.08);
      }

/* Nav CTA overrides */
.nav-links .cta-button {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 30px rgba(43, 92, 230, 0.3);
}
.nav-links .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(43, 92, 230, 0.4);
  background: var(--gradient);
}

/* Startup highlights */
.startup-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.startup-highlights .highlight {
  background: white;
  border: 1px solid rgba(43, 92, 230, 0.15);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(43, 92, 230, 0.08);
}

/* Startup highlights */
.startup-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.startup-highlights .highlight {
  background: white;
  border: 1px solid rgba(43, 92, 230, 0.15);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(43, 92, 230, 0.08);
}

/* Startup highlights */
.startup-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.startup-highlights .highlight {
  background: white;
  border: 1px solid rgba(43, 92, 230, 0.15);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(43, 92, 230, 0.08);
}

/* Startup highlights */
.startup-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.startup-highlights .highlight {
  background: white;
  border: 1px solid rgba(43, 92, 230, 0.15);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(43, 92, 230, 0.08);
}
