/* Base Styles and Variables */
:root {
    --primary: #FA5003;
    --primary-light: #FF7A42;
    --primary-dark: #D94400;
    --primary-gradient: linear-gradient(135deg, #FA5003, #FF7A42);
    --secondary-gradient: linear-gradient(135deg, #FFEBDE, #FFF6F0);
    --bg-light: #FFFFFF;
    --bg-off-white: #F8F9FD;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --text-lightest: #999999;
    --border-light: #EEEEEE;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --gradient-soft: linear-gradient(109.6deg, rgba(223,234,247,1) 11.2%, rgba(244,248,252,1) 91.1%);
    --gradient-warm: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
    --gradient-accent: linear-gradient(90deg, hsla(24, 100%, 83%, 1) 0%, hsla(341, 91%, 68%, 1) 100%);
    --gradient-section: linear-gradient(to bottom, var(--bg-light), var(--bg-off-white));
    --gradient-testimonials: linear-gradient(180deg, var(--bg-light) 0%, #FFF6F0 50%, rgba(250, 80, 3, 0.1) 100%);
  }
  
  /* Reset & Base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-medium);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  button, input {
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    position: relative;
    padding: 80px 0;
    background: var(--gradient-section);
  }
  
  section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.7;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
  }
  
  h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  p {
    margin-bottom: 16px;
  }
  
  .section-title {
    position: relative;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    color: var(--text-lightest);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
  }
  
  /* Buttons */
  .btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 14px 22px;    
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(250, 80, 3, 0.2);

    font-size: 1.125rem;      /* texte un peu plus grand */
    font-weight: 600;         /* cohérent avec le lien */

  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(250, 80, 3, 0.3);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--text-medium);
    padding: 12px 26px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
  }
  
  .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .btn-video {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition-fast);
  }
  
  .btn-video:hover {
    color: var(--primary);
  }
  
  .play-icon {
    background: var(--primary-gradient);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(250, 80, 3, 0.2);
    transition: var(--transition-fast);
  }
  
  .btn-video:hover .play-icon {
    transform: scale(1.1);
  }
  
  .btn-pricing {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: 20px;
  }
  
  .btn-pricing:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .popular .btn-pricing {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(250, 80, 3, 0.2);
  }
  
  .popular .btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(250, 80, 3, 0.3);
  }
  
  /* Navbar */
  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1rem 0;
      background-color: var(--bg-light);
      box-shadow: var(--shadow-sm);
      transition: var(--transition-fast);
  }
  
  .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .logo-container {
      display: flex;
      align-items: center;
  }
  
  .logo-img {
      height: 40px;
      width: auto;
      object-fit: contain;
  }
  
  .nav-menu {
      display: flex;
      align-items: center;
  }
  
  .nav-menu li {
      margin-left: 30px;
  }
  
  .nav-menu li a {
      font-weight: 500;
      position: relative;
  }
  
  .nav-menu li a:hover {
      color: var(--primary);
  }
  
  .nav-menu li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-gradient);
      transition: var(--transition-fast);
  }
  
  .nav-menu li a:hover::after {
      width: 100%;
  }
  
  .nav-menu li a.btn-primary,
  .nav-menu li a.btn-outline {
      padding: 10px 18px;
  }
  
  .nav-menu li a.btn-primary::after,
  .nav-menu li a.btn-outline::after {
      display: none;
  }
  
  .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
  }
  
  .menu-toggle span {
      width: 25px;
      height: 3px;
      background-color: var(--text-dark);
      margin: 2px 0;
      transition: var(--transition-fast);
  }
  
  /* Hero Section */
  /* HERO MODIFIÉ - Centré avec ajustements */
  
  .hero {
    padding-top: 150px; /* plus d'espace avec la navbar */
    padding-bottom: 120px;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--bg-off-white) 0%,
        rgba(255, 246, 240, 1) 100%
    );
    overflow: hidden;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
  }
  
  .hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 40px 0;
  }
  
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  /* DÉPLACÉ APRÈS L'IMAGE */
  .hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
  }
  
  .stat-item {
    text-align: center;
    margin: 0;
  }
  
  .stat-number {
    font-size: 2rem; /* plus gros */
    font-weight: 800; /* plus gras */
    color: var(--text-dark);
    display: block;
  }
  
  .stat-text {
    color: var(--text-light);
    font-size: 1rem;
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  /* Dropdown Menu Styles */
  .dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .dropdown-toggle i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .dropdown:hover .dropdown-toggle i,
  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  
  .dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #6E59A5;
  }
  
  /* Responsive Dropdown Menu for Mobile */
  @media (max-width: 768px) {
    .dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none;
      border-radius: 0;
      margin-top: 0;
      padding-left: 15px;
      display: none;
    }
    
    .dropdown.active .dropdown-menu {
      display: block;
    }
    
    .dropdown-toggle {
      justify-content: space-between;
      width: 100%;
    }
  }
  
  /* Dashboard Placeholders */
  .dashboard-placeholder {
      background: #fff;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-md);
      height: 80%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border-light);
  }
  
  .dashboard-placeholder::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(250, 80, 3, 0.01), rgba(255, 122, 66, 0.04));
      z-index: 1;
  }
  
  .dashboard-placeholder.large {
      height: 500px;
  }
  
  .placeholder-text {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--text-light);
      padding: 20px;
      font-style: italic;
      max-width: 300px;
      font-size: 0.9rem;
  }
  
  /* Trusted By Section */
  .trusted-by {
      padding: 60px 0;
      background-color: var(--bg-light);
      position: relative;
      overflow: hidden;
  }
  
  .trusted-by::before {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 200%;
      height: 100%;
      background: linear-gradient(
          90deg,
          transparent,
          rgba(250, 80, 3, 0.03),
          transparent
      );
      animation: shine 3s infinite linear;
  }
  
  @keyframes shine {
      from {
          transform: translateX(-100%);
      }
      to {
          transform: translateX(100%);
      }
  }
  
  .logos-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
  }
  
  .logo-item {
      color: var(--text-lightest);
      font-weight: 600;
      font-size: 1.25rem;
      margin: 20px;
      opacity: 0.8;
      transition: var(--transition-fast);
  }
  
  .logo-item:hover {
      opacity: 1;
      color: var(--primary);
  }
  
  /* Features Section */
  .features {
      background: linear-gradient(to bottom, var(--bg-light), var(--bg-off-white));
      padding: 100px 0;
  }
  
  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
  }
  .responsive-full-width {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
  
  .feature-card {
      background: linear-gradient(
          135deg,
          var(--bg-light) 0%,
          var(--bg-off-white) 100%
      );
      padding: 30px;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
  }
  
  .feature-card::before {
      background: linear-gradient(
          45deg,
          rgba(250, 80, 3, 0.03) 0%,
          rgba(255, 122, 66, 0.08) 100%
      );
      z-index: 0;
  }
  
  .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
  }
  
  .feature-card h3 {
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
  }
  
  .feature-card p {
      color: var(--text-light);
      position: relative;
      z-index: 1;
  }
  
  /* Dashboard Preview Section */
  .dashboard-preview {
      padding: 120px 0;
      background: linear-gradient(to bottom, var(--bg-off-white), var(--bg-light));
  }
  
  .tabs-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 30px;
  }
  
  .tab-button {
      padding: 12px 20px;
      margin: 0 10px 10px;
      background-color: var(--bg-light);
      border: 1px solid var(--border-light);
      border-radius: var(--border-radius-md);
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition-fast);
  }
  
  .tab-button:hover {
      background-color: var(--bg-off-white);
      border-color: var(--primary-light);
  }
  
  .tab-button.active {
      background: linear-gradient(135deg, rgba(250, 80, 3, 0.1), rgba(255, 122, 66, 0.15));
      border-color: var(--primary);
      color: var(--primary-dark);
  }
  
  .tab-pane {
      display: none;
  }
  
  .tab-pane.active {
      display: block;
      animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
  }
  
  /* How It Works Section */
  .how-it-works {
      background: linear-gradient(to bottom, var(--bg-light), var(--bg-off-white));
      padding: 120px 0;
  }
  
  .steps {
      margin-top: 60px;
  }
  
  .step {
      display: flex;
      align-items: center;
      margin-bottom: 80px;
      position: relative;
  }
  
  .step:last-child {
      margin-bottom: 0;
  }
  
  .step:not(:last-child)::after {
      content: '';
      position: absolute;
      bottom: -40px;
      left: 25px;
      height: 40px;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  }
  
  .step-number {
      background: var(--primary-gradient);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
      margin-right: 30px;
      box-shadow: 0 4px 15px rgba(250, 80, 3, 0.2);
  }
  
  .step-content {
      flex: 1;
  }
  
  .step-image {
      flex: 1;
      margin-left: 40px;
  }
  
  .step:nth-child(even) {
      flex-direction: row-reverse;
  }
  
  .step:nth-child(even) .step-number {
      margin-right: 0;
      margin-left: 30px;
  }
  
  .step:nth-child(even) .step-image {
      margin-left: 0;
      margin-right: 40px;
  }
  
  .step:nth-child(even)::after {
      left: auto;
      right: 25px;
  }
  
  /* Use Cases Section */
  .use-cases {
      background: var(--bg-light);
      padding: 120px 0 180px;
      position: relative;
      margin-bottom: 0;
      z-index: 2;
  }
  
  .use-cases::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 400px;
      background: linear-gradient(180deg, 
          var(--bg-light) 0%,
          rgba(250, 80, 3, 0.03) 30%,
          rgba(250, 80, 3, 0.08) 70%,
          rgba(250, 80, 3, 0.15) 100%
      );
      z-index: -1;
      opacity: 0.8;
  }
  
  .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    justify-content: center;
}
  
  .use-case-card {
      background: var(--bg-light);
      padding: 30px;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-sm);
      transition: var(--transition-fast);
      border: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
  }
  
  .use-case-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(250, 80, 3, 0.02), rgba(255, 122, 66, 0.05));
      z-index: 0;
  }
  
  .use-case-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md);
  }
  
  .use-case-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
  }
  
  .use-case-card h3 {
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
  }
  
  .use-case-card ul {
      color: var(--text-light);
      position: relative;
      z-index: 1;
  }
  
  .use-case-card ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 20px;
  }
  
  .use-case-card ul li::before {
      content: '•';
      color: var(--primary);
      position: absolute;
      left: 0;
  }
  
  /* Testimonials Section */
  .testimonials {
      position: relative;
      background: linear-gradient(180deg, 
          rgba(250, 80, 3, 0.05) 0%,
          rgba(250, 80, 3, 0.1) 50%,
          rgba(250, 80, 3, 0.15) 100%
      );
      padding: 0 0 120px;
      margin-top: 0;
  }
  
  .testimonials::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 500px;
      background: linear-gradient(180deg, 
          rgba(250, 80, 3, 0.15) 0%,
          rgba(250, 80, 3, 0.1) 15%, 
          rgba(250, 80, 3, 0.05) 30%,
          rgba(255, 255, 255, 0.5) 75%,
          rgba(255, 255, 255, 1) 100%
      );
      z-index: 1;
      opacity: 1;
  }
  
  .testimonials-slider {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
  }
  
  .testimonial-card {
      display: none;
      padding: 40px;
      background: var(--bg-light);
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-md);
      margin: 20px;
      opacity: 0;
      transform: translateX(100px);
      transition: var(--transition-medium);
  }
  
  .testimonial-card.active {
      display: block;
      opacity: 1;
      transform: translateX(0);
      animation: testimonialFadeIn 0.5s ease;
  }
  
  @keyframes testimonialFadeIn {
      from { opacity: 0; transform: translateX(100px); }
      to { opacity: 1; transform: translateX(0); }
  }
  
  .testimonial-stars {
      color: var(--primary);
      margin-bottom: 15px;
  }
  
  .testimonial-content p {
      font-style: italic;
      color: var(--text-medium);
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 25px;
  }
  
  .testimonial-author {
      display: flex;
      align-items: center;
  }
  
  .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--secondary-gradient);
      margin-right: 15px;
  }
  
  .author-info h4 {
      margin-bottom: 5px;
  }
  
  .author-info p {
      color: var(--text-lightest);
      font-size: 0.9rem;
      margin-bottom: 0;
  }
  
  .testimonial-dots {
      display: flex;
      justify-content: center;
      margin-top: 30px;
  }
  
  .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--border-light);
      margin: 0 5px;
      cursor: pointer;
      transition: var(--transition-fast);
  }
  
  .dot.active {
      background-color: var(--primary);
      transform: scale(1.2);
  }
  
  /* Pricing Section */
  .pricing {
      padding: 120px 0;
      background: var(--bg-light);
      position: relative;
      z-index: 2;
  }
  
  .pricing-toggle {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 50px;
  }
  
  .pricing-toggle span {
      font-weight: 500;
      margin: 0 10px;
  }
  
  .save-badge {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
      font-size: 0.7rem;
      padding: 4px 8px;
      border-radius: var(--border-radius-sm);
      margin-left: 5px;
  }
  
  .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 30px;
  }
  
  .switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }
  
  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--border-light);
      transition: var(--transition-fast);
  }
  
  .slider:before {
      position: absolute;
      content: "";
      height: 22px;
      width: 22px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: var(--transition-fast);
  }
  
  input:checked + .slider {
      background-color: var(--primary);
  }
  
  input:checked + .slider:before {
      transform: translateX(30px);
  }
  
  .slider.round {
      border-radius: 34px;
  }
  
  .slider.round:before {
      border-radius: 50%;
  }
  
  .pricing-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
  }
  
  .pricing-card {
      background: var(--bg-light);
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-sm);
      padding: 40px;
      width: 350px;
      transition: var(--transition-fast);
      border: 1px solid var(--border-light);
      position: relative;
  }
  
  .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md);
  }
  
  .pricing-card.popular {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
  }
  
  .popular-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-gradient);
      color: white;
      font-size: 0.8rem;
      padding: 5px 10px;
      border-radius: var(--border-radius-sm);
  }
  
  .pricing-header {
      text-align: center;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-light);
  }
  
  .pricing-amount {
      margin: 15px 0;
  }
  
  .price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-dark);
  }
  
  .price.annual {
      display: none;
  }
  
  .pricing-header p {
      color: var(--text-light);
      font-size: 0.9rem;
  }
  
  .pricing-features {
      margin-bottom: 30px;
  }
  
  .pricing-features li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
  }
  
  .pricing-features i {
      margin-right: 10px;
      font-size: 0.9rem;
  }
  
  .pricing-features i.fa-check {
      color: var(--primary);
  }
  
  .pricing-features i.fa-times {
      color: var(--text-lightest);
  }
  
  /* FAQ Section */
  .faq {
      padding: 120px 0;
      background: linear-gradient(to bottom, var(--bg-off-white), var(--bg-light));
  }
  
  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }
  
  .faq-item {
      margin-bottom: 20px;
      border: 1px solid var(--border-light);
      border-radius: var(--border-radius-md);
      overflow: hidden;
  }
  
  .faq-question {
      padding: 20px;
      background: var(--bg-light);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: var(--transition-fast);
  }
  
  .faq-question:hover {
      background: linear-gradient(135deg, rgba(250, 80, 3, 0.03), rgba(255, 122, 66, 0.06));
  }
  
  .faq-question h3 {
      margin-bottom: 0;
      font-size: 1.1rem;
  }
  
  .faq-icon {
      font-size: 1rem;
      color: var(--primary);
      transition: var(--transition-fast);
  }
  
  .faq-item.active .faq-icon {
      transform: rotate(45deg);
  }
  

  .faq-answer {
    display: none;
    padding: 0 1rem 1rem 1rem;
    color: #555;
    font-size: 1rem;
}
  
  .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 500px;
  }
  
  /* CTA Section */
  .cta {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(250, 80, 3, 0.1), rgba(255, 122, 66, 0.15));
  }
  
  .cta-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
  }
  
  .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .cta p {
      font-size: 1.125rem;
      color: var(--text-medium);
      margin-bottom: 40px;
  }
  
  .cta-form {
      display: flex;
      max-width: 600px;
      margin: 0 auto 20px;
  }
  
  .cta-form input {
      flex: 1;
      padding: 15px 20px;
      border: 1px solid var(--border-light);
      border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
      font-size: 1rem;
  }
  
  .cta-form button {
      border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
      padding: 0 30px;
  }
  
  .form-disclaimer {
      font-size: 0.85rem;
      color: var(--text-lightest);
  }
  
  /* Form Popup Styles */
  .form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
  }
  
  .form-popup-overlay.active {
    display: flex;
  }
  
  .form-popup {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.3s ease-out;
  }
  
  .form-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ff5722, #ff9a76);
  }
  
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .form-header h2 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    margin: 0;
  }
  
  .close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
  }
  
  .close-button:hover {
    color: #ff5722;
  }
  
  .auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"] {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #ff5722;
    box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1);
  }
  
  .remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .forgot-password {
    color: #ff5722;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  
  .forgot-password:hover {
    opacity: 0.8;
  }
  
  .form-submit-btn {
    background: linear-gradient(to right, #ff5722, #ff9a76);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
  }
  
  .form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.2);
  }
  
  .form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
  }
  
  .form-footer a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
  }
  
  .form-footer a:hover {
    opacity: 0.8;
  }
  
  .terms {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  
  .terms input[type="checkbox"] {
    margin-top: 0.2rem;
  }
  
  .terms label a {
    color: #ff5722;
    text-decoration: none;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes scaleIn {
    from {
      transform: scale(0.95);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* Footer */
  .footer {
      background-color: var(--bg-light);
      padding: 80px 0 40px;
      border-top: 1px solid var(--border-light);
  }
  
  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
  }
  
  .footer-brand {
      grid-column: span 2;
  }
  
  .footer-brand p {
      color: var(--text-light);
      margin-bottom: 20px;
  }
  
  .social-icons {
      display: flex;
  }
  
  .social-icons a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg-off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      transition: var(--transition-fast);
  }
  
  .social-icons a:hover {
      background: var(--primary-gradient);
      color: white;
      transform: translateY(-3px);
  }
  
  .footer-links h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
  }
  
  .footer-links ul li {
      margin-bottom: 10px;
  }
  
  .footer-links ul li a {
      color: var(--text-light);
      transition: var(--transition-fast);
  }
  
  .footer-links ul li a:hover {
      color: var(--primary);
      padding-left: 5px;
  }
  
  .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid var(--border-light);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
  }
  
  .footer-bottom p {
      color: var(--text-lightest);
      margin-bottom: 10px;
  }
  
  .app-links {
      display: flex;
  }
  
  .app-button {
      display: flex;
      align-items: center;
      padding: 8px 12px;
      background: var(--bg-off-white);
      border-radius: var(--border-radius-sm);
      margin-left: 10px;
      transition: var(--transition-fast);
  }
  
  .app-button i {
      font-size: 1.2rem;
      margin-right: 5px;
  }
  
  .app-button:hover {
      background: var(--primary-gradient);
      color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
      h1 {
          font-size: 3rem;
      }
      
      h2 {
          font-size: 2.2rem;
      }
      
      .hero-content {
          max-width: 500px;
      }
      
      .step {
          flex-direction: column !important;
          text-align: center;
          align-items: center;
      }
      
      .step-content {
          margin-bottom: 30px;
      }
      
      .step-image {
          margin-left: 0 !important;
          margin-right: 0 !important;
          width: 100%;
      }
      
      .step-number {
          margin-right: 0 !important;
          margin-left: 0 !important;
          margin-bottom: 20px;
      }
      
      .step::after {
          display: none;
      }
  }
  
  @media (max-width: 768px) {
      .navbar {
          padding: 15px 0;
      }
      
      .menu-toggle {
          display: flex;
      }
      
      .nav-menu {
          position: fixed;
          top: 80px;
          left: -100%;
          flex-direction: column;
          background-color: var(--bg-light);
          width: 100%;
          box-shadow: var(--shadow-md);
          padding: 20px 0;
          transition: var(--transition-fast);
      }
      
      .nav-menu.active {
          left: 0;
      }
      
      .nav-menu li {
          margin: 10px 0;
      }
      
      .hero .container {
          flex-direction: column;
      }
      
      .hero-content, .hero-image {
          width: 100%;
          max-width: 100%;
          margin-left: 0;
      }
      
      .hero-image {
          margin-top: 50px;
      }
      
      .hero-stats {
          flex-wrap: wrap;
      }
      
      .stat-item {
          margin-bottom: 20px;
          width: 50%;
      }
      
      .stat-item:not(:last-child)::after {
          display: none;
      }
      
      .features-grid, .use-cases-grid {
          grid-template-columns: 1fr;
      }
      
      .cta-form {
          flex-direction: column;
      }
      
      .cta-form input {
          border-radius: var(--border-radius-md);
          margin-bottom: 10px;
      }
      
      .cta-form button {
          border-radius: var(--border-radius-md);
          width: 100%;
      }
      
      .pricing-cards {
          flex-direction: column;
          align-items: center;
      }
      
      .pricing-card {
          width: 100%;
          max-width: 350px;
      }
      
      .footer-grid {
          grid-template-columns: 1fr;
      }
      
      .footer-brand {
          grid-column: span 1;
      }
      
      .footer-bottom {
          flex-direction: column;
          text-align: center;
      }
      
      .app-links {
          margin-top: 20px;
      }
  }
  
  @media (max-width: 480px) {
      section {
          padding: 60px 0;
      }
      
      h1 {
          font-size: 2.2rem;
      }
      
      h2 {
          font-size: 1.8rem;
      }
      
      .hero {
          padding-top: 120px;
      }
      
      .hero-cta {
          flex-direction: column;
          align-items: flex-start;
      }
      
      .hero-cta a:first-child {
          margin-right: 0;
          margin-bottom: 15px;
      }
      
      .stat-item {
          width: 100%;
      }
      
      .testimonial-card {
          padding: 20px;
      }
  }
  
  /* Nouvelle section Features */

  
  .features-new .section-header {
      text-align: center;
      margin-bottom: 60px;
  }
  
  .features-new .section-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      background: #000000;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .products-grid {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .products-menu {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }
  
  .product-button {
      background: rgba(250, 80, 3, 0.1);
      border: none;
      padding: 1rem;
      border-radius: 12px;
      color: var(--text-medium);
      text-align: left;
      display: flex;
      align-items: center;
      gap: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .product-button:hover {
      background: var(--primary-gradient);
      color: white;
      transform: translateX(5px);
  }
  
  .product-button.active {
      background: var(--primary-gradient);
      color: white;
  }
  
  .product-button i {
      font-size: 1.25rem;
  }
  
  .products-showcase {
      position: relative;
      background: rgba(250, 80, 3, 0.05);
      border-radius: 20px;
      padding: 2rem;
  }
  
  .product-cards {
      display: flex;
      gap: 1.5rem;
      overflow: hidden;
  }
  
  .product-card {
      background: white;
      padding: 1.5rem;
      border-radius: 16px;
      min-width: 280px;
      flex-shrink: 0;
      border: 1px solid rgba(250, 80, 3, 0.1);
      transition: all 0.3s ease;
  }
  
  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(250, 80, 3, 0.1);
  }
  
  .product-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
  }
  
  .product-logo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--secondary-gradient);
  }
  
  .product-value {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: var(--text-dark);
  }
  
  .product-change {
      color: #22C55E;
      font-size: 0.875rem;
  }
  
  .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary-gradient);
      border: none;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(250, 80, 3, 0.2);
  }
  
  .carousel-btn:hover {
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 15px rgba(250, 80, 3, 0.3);
  }
  
  .carousel-btn.prev {
      left: -20px;
  }
  
  .carousel-btn.next {
      right: -20px;
  }
  
  @media (max-width: 1024px) {
      .products-grid {
          grid-template-columns: 1fr;
      }
  
      .products-menu {
          flex-direction: row;
          overflow-x: auto;
          padding-bottom: 16px;
      }
  
      .product-button {
          min-width: 200px;
      }
  }
  
  @media (max-width: 768px) {
      .product-card {
          flex: 0 0 calc(50% - 12px);
      }
  }
  
  @media (max-width: 480px) {
      .product-card {
          flex: 0 0 100%;
      }
  }
  
  /* Dégradé subtil et fluide entre sections alternant orange clair et blanc */
  
  /* Hero Section */
  .hero {
      background: linear-gradient(to bottom, #FFF4EE 0%, #FFE4D6 100%);
  }
  
  /* Trusted By Section */
  .trusted-by {
      background: linear-gradient(to bottom, #FFE4D6 0%, #FFF3ED 100%);
  }
  
  /* Features Section */
  .features {
      background: linear-gradient(to bottom, #FFE4D6 0%, #FFF0E8 100%);
  }
  
  /* Dashboard Preview Section */
  .dashboard-preview {
      background: linear-gradient(to bottom, #FFF0E8 0%, #FFF6F2 100%);
  }
  
  /* How It Works Section */
  .how-it-works {
      background: linear-gradient(to bottom, #FFF6F2 0%, #FFECDD 100%);
  }
  .features-new {
    background: linear-gradient(to bottom, #FFECDD 0%, #FFECDD 100%);
    padding: 80px 0;
    color: var(--text-medium);
    position: relative;
}
  
  /* Use Cases Section */
  .use-cases {
      background: linear-gradient(to bottom, #FFECDD 0%, #FFF2EA 100%);
      position: relative;
      z-index: 0;
  }
  
  /* Transition douce vers Testimonials */
  .use-cases::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to bottom, #FFF2EA 0%, #FFF5F0 100%);
      z-index: 1;
      filter: blur(20px);
      opacity: 0.4;
  }
  
  /* Testimonials Section */
  .testimonials {
      background: linear-gradient(to bottom, #FFF5F0 0%, #FFE7D9 100%);
      position: relative;
      z-index: 0;
  }
  
  /* Transition douce vers Pricing */
  .testimonials::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to bottom, #FFE7D9 0%, #FFF1E8 100%);
      filter: blur(20px);
      opacity: 0.4;
      z-index: 1;
  }
  
  .testimonials .section-header {
      background: transparent;
      position: relative;
      z-index: 1;
      padding: 4rem 0;
  }
  
  .testimonials .section-header::before {
      content: none;
  }
  
  /* Pricing Section */
  .pricing {
      background: linear-gradient(to bottom, #FFE7D9 0%, #FFF1E8 100%);
      position: relative;
      z-index: 0;
  }
  
  .pricing::before {
      content: none;
  }
  
  /* FAQ Section */
  .faq {
      background: linear-gradient(to bottom, #FFF1E8 0%, #FFF8F4 100%);
  }
  
  /* CTA Section */
  .cta {
      background: linear-gradient(to bottom, #FFF8F4 0%, #FFF9F6 100%);
  }
  
  /* Footer */
  .footer {
      background-color: #FFF9F6;
  }
  
  /* Transition douce entre sections via pseudo-éléments */
  section {
      position: relative;
      z-index: 0;
  }
  
  section::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 0;
      right: 0;
      height: 120px;
      background: inherit;
      filter: blur(40px);
      opacity: 0.35;
      z-index: -1;
      pointer-events: none;
  }
  
  section .section-header {
      position: relative;
      z-index: 1;
      background: transparent;
  }
  
  /* Dashboard Image */
  .dashboard-image {
      width: 100%;
      height: auto;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-md);
  }
  .dashboard-preview-image {
    width: 100%;
    max-width: 600px;
    height: 100%;
    object-fit: cover; /* ou contain selon ton besoin */
    display: block;
  }
  
  .cta .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .hero-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-form input[type="email"] {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .hero-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(250, 80, 3, 0.2);
  }
  