/* CSS pour la section exemples en version mobile uniquement */
@media (max-width: 768px) {
  /* Masquer la version desktop des exemples */
  section.phones-animation-section {
    display: none !important;
  }
  
  /* Afficher la version mobile des exemples */
  section.examples-mobile-only {
    display: block !important;
    padding: 60px 0;
    background: #f8fafc;
    width: 100%;
    overflow: hidden;
  }
  
  section.examples-mobile-only .examples-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  
  section.examples-mobile-only .examples-fixed {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  section.examples-mobile-only h2 {
    font-size: 46px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  section.examples-mobile-only p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Slider mobile pour exemples */
  section.examples-mobile-only .examples-slider {
    position: relative;
    width: 100%;
    overflow: visible;
    margin-bottom: 30px;
  }
  
  section.examples-mobile-only .slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
  }
  
  section.examples-mobile-only .slider-container::-webkit-scrollbar {
    display: none;
  }
  
  section.examples-mobile-only .examples-slides-wrapper {
    display: flex;
    gap: 8px;
    padding: 0;
    width: max-content;
  }
  
  section.examples-mobile-only .examples-slide {
    flex: 0 0 380px;
    width: 380px;
    max-width: 380px;
    min-width: 380px;
    height: 620px;
    scroll-snap-align: start;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
  }
  
  section.examples-mobile-only .examples-slide:first-child {
    margin-left: 0;
  }
  
  section.examples-mobile-only .examples-slide-content {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Cadre iPhone */
  section.examples-mobile-only .iphone-frame {
    position: relative;
    width: 330px;
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  section.examples-mobile-only .iphone-frame-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
  }
  
  section.examples-mobile-only .iphone-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 265px;
    height: 570px;
    border-radius: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  section.examples-mobile-only .iphone-screen::-webkit-scrollbar {
    display: none;
  }
  
  section.examples-mobile-only .template-image {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: contain;
    object-position: top center;
    display: block;
  }
  
  section.examples-mobile-only .examples-slide-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: center;
  }
  
  section.examples-mobile-only .examples-slide-text p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: center;
  }
  
  /* Points de progression pour exemples mobile */
  section.examples-mobile-only .mobile-progress-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  section.examples-mobile-only .mobile-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  section.examples-mobile-only .mobile-progress-dot.active {
    background: #3B82F6;
    transform: scale(1.2);
  }
}

/* Masquer la section mobile sur desktop et tablette */
@media (min-width: 769px) {
  section.examples-mobile-only {
    display: none !important;
  }
}
