
/* PARTIE MUSIQUE IA */
.hero-section {
position: relative;
z-index: 3;
display: flex;
  padding: 4rem 0;
  min-height: 100vh;
  align-items: center;
}

.container23 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

[data-theme="dark"] .hero-title {
  color: #ffffff;
}


.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}

[data-theme="dark"] .hero-subtitle {
  color: #b0b0b0;
}

.music-player {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .music-player {
  background: rgba(26, 26, 26, 0.269);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.05);
}

.track-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
}

[data-theme="dark"] .track-title {
  color: #ffffff;
}

.track-artist {
  color: #666;
  font-size: 0.9rem;
}

[data-theme="dark"] .track-artist {
  color: #b0b0b0;
}

.waveform {
  position: relative;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(74, 58, 89, 0.9) 0%, rgba(19, 20, 55, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.waveform::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .waveform {
  background: linear-gradient(180deg, rgba(35, 27, 43, 0.9) 0%, rgba(26, 13, 46, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.waveform-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.waveform.is-loading {
  cursor: default;
}

.waveform-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(1px);
}

[data-theme="dark"] .waveform-loading {
  color: rgba(255, 255, 255, 0.72);
}

.waveform-tooltip {
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  padding: 4px 8px;
  background: rgba(14, 17, 23, 0.96);
  color: #fff;
  border-radius: 6px;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease, transform 0.12s ease;
  will-change: transform, opacity;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.waveform-tooltip::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0 4px;
  border-style: solid;
  border-color: rgba(14, 17, 23, 0.96) transparent transparent transparent;
}

.waveform.show-tooltip .waveform-tooltip {
  opacity: 1;
  transform: translate(-50%, -2px);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

[data-theme="dark"] .feature-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

[data-theme="dark"] .feature-card h3 {
  color: #ffffff;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

[data-theme="dark"] .feature-card p {
  color: #b0b0b0;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  border-radius: 30px;
  padding: 4rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.pricing-connect-cta {
  max-width: 760px;
  margin: 2.5rem auto 4rem;
  padding: 1.75rem 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(31, 14, 65, 0.12);
  text-align: center;
  border: 1px solid rgba(112, 0, 139, 0.12);
}

[data-theme="dark"] .pricing-connect-cta {
  background: rgba(18, 18, 24, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(5, 0, 20, 0.55);
}

.pricing-connect-message {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #271447;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

[data-theme="dark"] .pricing-connect-message {
  color: #f1e9ff;
}

.pricing-connect-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.pricing-connect-cta .cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  gap: 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #ffffff;
  background: linear-gradient(135deg, #6943f8 0%, #9b3dfa 100%);
  box-shadow: 0 10px 25px rgba(105, 67, 248, 0.25);
  cursor: pointer;
}

.pricing-connect-cta .cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(105, 67, 248, 0.32);
}

.pricing-connect-cta .cta-link.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 10px 25px rgba(18, 140, 126, 0.25);
}

.pricing-connect-cta .cta-link.whatsapp:hover {
  box-shadow: 0 16px 30px rgba(18, 140, 126, 0.32);
}

.pricing-connect-cta .cta-link.visio {
  background: linear-gradient(135deg, #ff6fb7 0%, #7f37ff 100%);
  box-shadow: 0 10px 25px rgba(127, 55, 255, 0.25);
}

.pricing-connect-cta .cta-link.visio:hover {
  box-shadow: 0 16px 30px rgba(127, 55, 255, 0.32);
}

.pricing-connect-cta .cta-icon-img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.pricing-connect-cta .cta-label {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 640px) {
  .pricing-connect-cta {
    margin: 2rem 1rem 3rem;
    padding: 1.5rem 1.25rem;
  }

  .pricing-connect-message {
    font-size: 1rem;
  }

  .pricing-connect-cta .cta-link {
    width: 100%;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.cta-button {
  background: rgba(255, 255, 255, 0.9);
  color: #6661fc;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 60px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.button-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  margin-top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
}

[data-theme="dark"] .modal-content {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
  padding: 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-theme="dark"] .modal-header {
  border-bottom: 1px solid #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

[data-theme="dark"] .close-btn {
  color: #b0b0b0;
}


.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  width: 33%;
  transition: width 0.3s ease;
}

.question {
  display: none;
  padding: 2rem;
}

.question.active {
  display: block;
}

.question h4 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

[data-theme="dark"] .question h4 {
  color: #ffffff;
}

.question textarea,
.question input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
}

[data-theme="dark"] .question textarea,
[data-theme="dark"] .question input {
  background: #333;
  border-color: #555;
  color: #ffffff;
}

.name-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.name-inputs input {
  min-height: auto;
}

.modal-footer {
  padding: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

[data-theme="dark"] .modal-footer {
  border-top: 1px solid #333;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #6661fc;
  color: #6661fc;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #6661fc;
  color: white;
}

.btn-primary {
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .music-player {
    max-width: 360px;
    margin: 0 auto;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
  
  .name-inputs {
    grid-template-columns: 1fr;
  }
}

/* PARTIE MUSIQUE IA (CSS existant conservé) */
.hero-section {
  position: relative;
  z-index: 3;
  display: flex;
  padding: 2.5rem 0; /* Plus compact */
  min-height: 70vh; /* Plus compact */
  align-items: center;
}

.container23 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Réduit de 2rem à 1.5rem */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem; /* Plus compact */
  align-items: center;
  margin-bottom: 2.5rem; /* Plus compact */
}

.hero-title {
  font-size: 2.8rem; /* Plus compact */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem; /* Plus compact */
  color: #1a1a1a;
}

[data-theme="dark"] .hero-title {
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem; /* Plus compact */
  line-height: 1.5; /* Réduit de 1.6 à 1.5 */
  color: #666;
  margin-bottom: 1.25rem; /* Plus compact */
}

[data-theme="dark"] .hero-subtitle {
  color: #b0b0b0;
}


.player-header {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Plus compact */
  margin-bottom: 1.25rem; /* Plus compact */
}


.play-btn {
  width: 50px; /* Réduit de 60px à 50px */
  height: 50px; /* Réduit de 60px à 50px */
  border-radius: 50%;
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
  border: none;
  padding: 0;
  line-height: 0;
}

.play-btn:hover {
  transform: scale(1.05);
}

.play-btn:focus-visible {
  outline: 2px solid #6661fc;
  outline-offset: 3px;
}

.play-btn .icon-pause {
  display: none;
}

.play-btn.is-playing .icon-play {
  display: none;
}

.play-btn.is-playing .icon-pause {
  display: block;
}

.track-title {
  font-weight: 600;
  font-size: 1rem; /* Réduit de 1.1rem à 1rem */
  color: #1a1a1a;
}

[data-theme="dark"] .track-title {
  color: #ffffff;
}

.track-artist {
  color: #666;
  font-size: 0.85rem; /* Réduit de 0.9rem à 0.85rem */
}

[data-theme="dark"] .track-artist {
  color: #b0b0b0;
}

.music-player audio {
  display: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Plus compact */
  gap: 1.25rem; /* Plus compact */
  margin-bottom: 2.5rem; /* Plus compact */
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 14px; /* Plus compact */
  padding: 1.8rem; /* Plus compact */
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

[data-theme="dark"] .feature-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px; /* Plus compact */
  height: 60px; /* Plus compact */
  margin: 0 auto 0.75rem; /* Plus compact */
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-card h3 {
  font-size: 1.2rem; /* Plus compact */
  font-weight: 700;
  margin-bottom: 0.75rem; /* Plus compact */
  color: #1a1a1a;
}

[data-theme="dark"] .feature-card h3 {
  color: #ffffff;
}

.feature-card p {
  color: #666;
  line-height: 1.45; /* Plus compact */
  font-size: 0.9rem; /* Ajouté pour réduire la taille */
}

[data-theme="dark"] .feature-card p {
  color: #b0b0b0;
}



.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  border-radius: 24px; /* Plus compact */
  padding: 2.8rem 2rem; /* Plus compact */
  color: white;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 1.5rem auto 0; /* Plus compact */
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1.4rem; /* Plus compact */
  border-radius: 50px;
  font-size: 0.85rem; /* Plus compact */
  font-weight: 600;
  margin-bottom: 1.5rem; /* Plus compact */
  backdrop-filter: blur(10px);
}

.cta-section h2 {
  font-size: 2.1rem; /* Plus compact */
  font-weight: 700;
  margin-bottom: 2rem; /* Plus compact */
  line-height: 1.2;
}

.cta-button {
  background: rgba(255, 255, 255, 0.9);
  color: #6661fc;
  border: none;
  padding: 1.2rem 2.5rem; /* Plus compact */
  border-radius: 60px;
  font-size: 1.1rem; /* Plus compact */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.button-subtitle {
  font-size: 0.85rem; /* Plus compact */
  font-weight: 400;
  margin-top: 0.35rem; /* Plus compact */
  opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  margin-top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
}

[data-theme="dark"] .modal-content {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
  padding: 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-theme="dark"] .modal-header {
  border-bottom: 1px solid #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

[data-theme="dark"] .close-btn {
  color: #b0b0b0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  width: 33%;
  transition: width 0.3s ease;
}

.question {
  display: none;
  padding: 2rem;
}

.question.active {
  display: block;
}

.question h4 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

[data-theme="dark"] .question h4 {
  color: #ffffff;
}

.question textarea,
.question input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
}

[data-theme="dark"] .question textarea,
[data-theme="dark"] .question input {
  background: #333;
  border-color: #555;
  color: #ffffff;
}

.name-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.name-inputs input {
  min-height: auto;
}

.modal-footer {
  padding: 2rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

[data-theme="dark"] .modal-footer {
  border-top: 1px solid #333;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #6661fc;
  color: #6661fc;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #6661fc;
  color: white;
}

.btn-primary {
  background: linear-gradient(135deg, #6661fc 0%, #ff00f2 100%);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .name-inputs {
    grid-template-columns: 1fr;
  }
}
.jedevoilevideoia {
  margin-top: 50px;
    display: block;
}
#faq-jose {
  position: relative;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  width: 100%;
  max-width: fit-content;
  flex-direction: column;
  z-index: 2;
  margin-bottom: 70px;
}
#faq-jose details p {
  max-width: 580px;
}
@media (max-width: 440px) {
  #faq-jose {
    position: relative;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    width: 70%;
    max-width: fit-content;
    flex-direction: column;
    z-index: 2;
  }
}
.trust-section-married {
  margin: none;
}
.mariagefollvideomariage {
  margin-top: -200px;
  margin-bottom: 200px;
}
@media (max-width: 723px) {
  .mariagefollvideomariage {
    margin-top: -90px;
    margin-bottom: 100px;
  }
}
.review-containerprecisionvideo {
  margin-top: 100px;
}
/* CTA BTN button google form */
:root {
  --primary-color: #6661fc;
  --secondary-color: #ff00f2;
  --text-light: #333333;
  --card-bg-light: #f8f9ff;
  --shadow-light: rgba(102, 97, 252, 0.1);
  --border-light: rgba(102, 97, 252, 0.2);
}

[data-theme="dark"] {
  --primary-color: #8b87ff;
  --secondary-color: #ff4dfd;
  --text-light: #e0e0e0;
  --card-bg-light: #464a8e;
  --shadow-light: rgba(139, 135, 255, 0.2);
  --border-light: rgba(139, 135, 255, 0.3);
}

.reservation-section {
  position: relative;
  margin-top: 100px !important;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 300px;
  transition: all 0.3s ease;
}

.reservation-button {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(102, 97, 252, 0.3);
  text-transform: none;
  letter-spacing: 0.5px;
  min-width: 280px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  animation: pulse34 3s infinite, pulse34B 3s infinite;
}

.reservation-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 97, 252, 0.4);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  text-decoration: none;
}

.validation-bubble {
  position: absolute;
  top: -45px;
  right: -20px;
  background: var(--card-bg-light);
  color: var(--text-light);
  padding: 0.7rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px var(--shadow-light);
  border: 1px solid var(--border-light);
  z-index: 10;
}

.validation-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--card-bg-light);
}

/* Responsive design */
@media (max-width: 768px) {
  .reservation-section {
    margin: 1rem auto;
    padding: 1.5rem;
  }
  
  .reservation-button {
    min-width: 250px;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  
  .validation-bubble {
    right: -10px;
    top: -40px;
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }
}

.reservation-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  align-items: center; justify-content: center;
}
.reservation-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  width: 95vw;
  margin: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 0;
}
.song-request-form-wrapper {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.song-request-intro h3 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}
.song-request-intro p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.6;
}
.song-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}
.song-request-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.song-request-form label {
  font-weight: 600;
  color: #161616;
}
.song-request-form input,
.song-request-form textarea {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.song-request-form input:focus,
.song-request-form textarea:focus {
  border-color: #6661fc;
  box-shadow: 0 0 0 3px rgba(102, 97, 252, 0.15);
  outline: none;
}
.song-request-form textarea {
  resize: vertical;
  min-height: 120px;
  grid-column: span 2;
}
.song-request-form .form-footer {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.song-request-form .form-footer .cta-button {
  width: 100%;
  justify-content: center;
}
.song-request-form .privacy-note {
  font-size: 0.9rem;
  color: #545454;
  margin: 0;
}
.song-request-status {
  min-height: 1.5rem;
  font-size: 0.95rem;
  color: #161616;
}
.song-request-status.error {
  color: #d7263d;
}
.song-request-status.success {
  color: #1d7a36;
}
.reservation-modal-content iframe {
  border: none;
  width: 100%;
  min-height: 80vh;
  border-radius: 0 0 12px 12px;
}
.reservation-modal-close {
  position: absolute; top: 8px; right: 16px;
  font-size: 2rem; color: #222; cursor: pointer;
  z-index: 2;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.reservation-modal-close:focus-visible {
  outline: 2px solid #6661fc;
  outline-offset: 4px;
}
@media (max-width: 600px) {
  .reservation-modal-content {
    max-width: 98vw;
  }
  .song-request-form-wrapper {
    padding: 2rem 1.25rem;
  }
  .song-request-form {
    grid-template-columns: 1fr;
  }
  .song-request-form textarea,
  .song-request-form .form-footer {
    grid-column: auto;
  }
  .song-request-form .form-footer .cta-button {
    width: 100%;
  }
  .reservation-modal-content iframe {
    min-height: 75vh;
  }
}

body.modal-open {
  overflow: hidden;
}
/* Animation pour le badge de réduction */
@keyframes pulse34 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@keyframes pulse34B {
    0% { box-shadow: 0 0 0 0 #968dff; }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 242, 0); }
}
/* ======= Variables (faciles à personnaliser) ======= */
    .qr-timeline {
      position: relative;
      margin: 100px;
      top: 100px;
      margin-bottom: 200px;
      --qr-radius: 1.25rem;                 /* Coins des cartes */
      --qr-gap: 1rem;                       /* Espacement */
      --qr-text: #15141a;                   /* Couleur texte */
      --qr-muted: #625d6b;                  /* Texte secondaire */
      --qr-bg: #ffffff;                     /* Fond cartes */
      --qr-panel: #f7f6fb;                  /* Fond zone */
      --qr-line: rgba(120, 97, 255, 0.34);  /* Ligne de la frise (mobile) */
      --qr-shadow: 0 10px 25px rgba(31, 26, 78, 0.12);
      --qr-grad-1: #a78bfa;                 /* Violet clair */
      --qr-grad-2: #f472b6;                 /* Rose */
      --qr-accent: #7c3aed;                 /* Boutons/puces */
      --qr-border: rgba(124,58,237,.18);    /* Bordure douce */
    }
@media (max-width: 1370px) {
    .qr-timeline {
      margin: 40px;
      top: 0px;
      margin-bottom: 20px;
    }
}
[data-theme="dark"] {
    .qr-timeline {
      --qr-radius: 1.25rem;                 /* Coins des cartes */
      --qr-gap: 1rem;                       /* Espacement */
      --qr-text: #ffffff;                   /* Couleur texte */
      --qr-muted: #bebebe;                  /* Texte secondaire */
      --qr-bg: #121152c8;                     /* Fond cartes */
      --qr-panel: #f7f6fb1b;                  /* Fond zone */
      --qr-line: rgba(120, 97, 255, 0.34);  /* Ligne de la frise (mobile) */
      --qr-shadow: 0 10px 25px rgba(31, 26, 78, 0.12);
      --qr-grad-1: #a78bfa;                 /* Violet clair */
      --qr-grad-2: #f472b6;                 /* Rose */
      --qr-accent: #7c3aed;                 /* Boutons/puces */
      --qr-border: rgba(124,58,237,.18);    /* Bordure douce */
    }
}
    /* Mode sombre optionnel : ajoutez data-theme="dark" sur <section> */
    .qr-timeline[data-theme="dark"] {
      --qr-text: #ffffff;
      --qr-muted: #d1cfe6;
      --qr-bg: #16141f;
      --qr-panel: #100f18;
      --qr-line: rgba(167, 139, 250, 0.3);
      --qr-shadow: 0 8px 24px rgba(0,0,0,0.35);
      --qr-border: rgba(167,139,250,.22);
    }

    /* ======= Layout ======= */
    .qr-timeline {
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, sans-serif;
      color: var(--qr-text);
      background:
        radial-gradient(1200px 600px at 10% -10%, rgba(167,139,250,0.25), transparent 60%),
        radial-gradient(1200px 600px at 90% 10%, rgba(244,114,182,0.25), transparent 60%),
        var(--qr-panel);
      padding: clamp(1.25rem, 2.5vw + 0.5rem, 2.5rem);
      border-radius: calc(var(--qr-radius) * 1.2);
      overflow: hidden;
      box-shadow: var(--qr-shadow);
    }

    .qr-timeline .qr-header { text-align: center; margin-bottom: clamp(1rem, 2vw, 1.5rem); }

    .qr-timeline .qr-eyebrow {
      display: inline-block; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
      background: linear-gradient(90deg, var(--qr-grad-1), var(--qr-grad-2));
      -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700;
    }

    .qr-timeline h2 { font-size: clamp(1.4rem, 1.4rem + 1.2vw, 2.1rem); line-height: 1.2; margin: .25rem 0 0; font-weight: 800; }
    .qr-timeline .qr-sub { color: var(--qr-muted); max-width: 60ch; margin: .5rem auto 0; font-size: 1rem; }

    /* ======= Conteneur ======= */
    .qr-track {
      position: relative;
      margin: clamp(1rem, 2vw, 1.5rem) auto 0;
      max-width: 1100px;
      width: min(100%, 1100px);
      padding-inline: clamp(0.75rem, 3vw, 1.5rem);
      box-sizing: border-box;
    }

    /* ======= Grille ======= */
    .qr-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(1rem, 2.2vw, 1.75rem);
      align-items: start;
    }

    /* ======= Cartes d'étape ======= */
    .qr-step {
      position: relative; background: var(--qr-bg); border-radius: var(--qr-radius);
      box-shadow: var(--qr-shadow); padding: 1rem 1rem 1.1rem; border: 1px solid var(--qr-border);
    }

    /* On supprime les anciens connecteurs qui posaient souci */
    .qr-step::before, .qr-step::after { content: none; }

    /* ======= Ligne + puces seulement en MOBILE ======= */
    @media (max-width: 820px) {
      .qr-track { padding-left: 1.75rem; padding-right: clamp(0.25rem, 2vw, 1rem); margin-inline: 0; }
      .qr-track::before {
        content: ""; position: absolute; top: 0; bottom: 0; left: .4rem; width: 2px;
        background: linear-gradient(var(--qr-grad-1), var(--qr-grad-2)); opacity: .35;
      }
      .qr-step { margin-left: .75rem; min-width: 0; }
      .qr-step::marker { content: ""; }
      .qr-step[data-dot]::before {
        content: ""; position: absolute; top: 1.2rem; left: -1.25rem; width: 12px; height: 12px;
        border-radius: 999px; background: radial-gradient(circle at 35% 35%, #fff 0 30%, var(--qr-accent) 55% 100%);
        box-shadow: 0 6px 16px rgba(124,58,237,.35);
      }
    }

    @media (max-width: 520px) {
      .qr-track { padding-inline: clamp(0.5rem, 4vw, 1rem); }
      .qr-track::before { left: 0.15rem; }
      .qr-step { margin-left: 0.5rem; }
      .qr-step[data-dot]::before { left: -0.9rem; }
    }

    .qr-step .qr-top { display: flex; align-items: center; gap: .65rem; margin-bottom: .35rem; }
    .qr-step .qr-icon { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: .9rem; background: linear-gradient(135deg, var(--qr-grad-1), var(--qr-grad-2)); color: white; box-shadow: 0 6px 18px rgba(124,58,237,.25); }
    .qr-step h3 { margin: 0; font-size: 1.05rem; font-weight: 800; }
    .qr-step p { margin: .25rem 0 0; color: var(--qr-muted); font-size: .98rem; }

    .qr-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
    .qr-badge { padding: .25rem .55rem; font-size: .8rem; border-radius: 999px; background: rgba(124,58,237,.08); border: 1px solid var(--qr-border); }

    /* CTA */
    .qr-cta { margin-top: 1.25rem; text-align: center; display: grid; place-items: center; }
    .qr-cta a { display: inline-block; text-decoration: none; color: white; font-weight: 800; padding: .85rem 1.1rem; border-radius: 999px; background: linear-gradient(90deg, var(--qr-grad-1), var(--qr-grad-2)); box-shadow: 0 8px 22px rgba(124,58,237,.35); transition: transform .15s ease, box-shadow .15s ease; }
    .qr-cta a:focus-visible { outline: 3px solid rgba(244,114,182,.45); outline-offset: 3px; }
    .qr-cta a:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(124,58,237,.45); }
  

    @media (max-width: 400px) {
    .qr-timeline {
      width: 80%;
      margin-left: 5%;
    }}
.review-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 400px;
    top: 0;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
@media (max-width: 1000px) {
    .review-container {
          top: 0;
        margin: 0 auto 20px;    }
}
/* Refonte tableau complexe prestatation*/
:root {
  --gradient-primary: linear-gradient(135deg, #6365f12d 0%, #8a5cf698 50%, #ec489aa7 100%);
  --gradient-secondary: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --border-color: rgba(148, 163, 184, 0.2);
}

/* Dark Mode */
[data-theme="dark"] {
  --gradient-secondary: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  --glass-bg: rgba(15, 23, 42, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --bg-primary: #90b1ff00;
  --bg-secondary: #1e293b26;
  --border-color: rgba(148, 163, 184, 0.1);
}

[data-theme="dark"] .pricing-wrapper {
  filter: brightness(0.95) contrast(1.1);
}

/* Structure compacte */
.pricing-wrapper {
  background: var(--gradient-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  width: min(1000px, 90%);
  margin: 1.5rem auto;
  font-size: 0.9rem;
}

/* Hero compact */
.pricing-hero {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 1.8rem 1.5rem;
  position: relative;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 300;
}

/* Navigation formules compacte */
.formules-nav {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 10;
  justify-content: center;
}

.formule-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  font-size: 0.85rem;
}

.formule-btn::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
  z-index: -1;
  border-radius: var(--radius-md);
}
.formule-btn:hover {
    opacity: 0.4;
}
.formule-btn.active:hover {
    opacity: 1;
}
.formule-btn.premium {
  border-color: #6661fc5d;
}
.formule-btn.active {
    border-color: #ec4899;
    color: white;
    font-weight: bold;
    background: var(--gradient-primary);
}
.premium-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 600;
}

.formule-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.formule-price {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Desktop optimisé */
.pricing-desktop {
  padding: 1.2rem;
}


.comparison-table {
  display: grid;
  gap: 1rem;
}

.feature-section {
  background: var(--bg-primary);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0 0;
  padding-bottom: 0rem;
  border-bottom: 2px solid transparent;
  background: #6661fc;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid var(--border-color);
}

.title-icon {
  font-size: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.8fr 2fr;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
}
.feature-row.toggle-row {
  border-bottom: none;
  padding-top: 0.5rem;
}
.toggle-full {
  grid-column: 1 / -1;
}
.toggle-extra-btn {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(111, 125, 255, 0.35);
  background: rgba(111, 125, 255, 0.08);
  color: #2f2a60;
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.toggle-extra-btn:hover {
  background: rgba(111, 125, 255, 0.15);
  box-shadow: 0 10px 30px rgba(111, 125, 255, 0.18);
}
[data-theme="dark"] .toggle-extra-btn {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.24), rgba(148, 163, 255, 0.08));
  color: #eef2ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .toggle-extra-btn:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.34), rgba(148, 163, 255, 0.14));
  box-shadow: 0 10px 30px rgba(148, 163, 255, 0.16);
}
.desktop-extra {
  display: none;
}
#feature-section-main.show-extra .desktop-extra {
  display: grid;
}

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

.feature-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

/* Badges compacts */
.badge-yes {
  background: linear-gradient(135deg, #56c09d, #059669);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}
.calendar-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  min-width: 110px;
}
.calendar-trigger::after {
  content: "↗";
  font-size: 0.75rem;
  opacity: 0.85;
}

.badge-no {
  background: linear-gradient(135deg, #ef44445b, #94151565);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 1px 3px rgba(239, 68, 68, 0.3);
}

.value {
  background: var(--bg-secondary);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.value.highlight {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
  border: none;
}

.option-price {
  background: linear-gradient(135deg, #ceb9ff, #ff91c8);
  color: white;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
}

.option-price.express {
  background: linear-gradient(135deg, #ffc560, #ffcb6c);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.delivery-time {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 1px 4px rgba(6, 182, 212, 0.3);
}

/* Mobile responsive et intelligent */
.pricing-mobile {
  display: none;
  padding: 1rem;
}

.mobile-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mobile-formule {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
[data-theme="dark"] {
  .mobile-formule {
    color: #aa6dff;
  }
}

.mobile-formule.active {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-formule.premium::after {
  content: '★';
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ec4899;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.mobile-formule-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.mobile-formule-price {
  font-size: 0.8rem;
  opacity: 0.8;
}

.mobile-tabs {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.tab-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: var(--text-secondary);
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.mobile-content {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.mobile-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-feature:last-child {
  border-bottom: none;
}

.mobile-label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.mobile-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}
.mobile-extra {
  display: none;
}
.mobile-content.show-extra .mobile-extra {
  display: flex;
}
.mobile-more-toggle {
  margin: 0.5rem 0 0.25rem 0;
  padding: 0.75rem 1rem;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 102, 241, 0.25);
  background: rgba(99, 102, 241, 0.08);
  color: #2f2a60;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-more-toggle:hover {
  background: rgba(99, 102, 241, 0.15);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}
.song-modal-trigger {
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: #fff;
  color: #b91c1c;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.15);
}
.song-modal-trigger:focus-visible {
  outline: 2px solid rgba(239, 68, 68, 0.35);
  outline-offset: 2px;
  border-radius: inherit;
}
.song-modal-trigger::after {
  content: "↗";
  font-size: 0.8rem;
  opacity: 0.8;
}
.mobile-value.is-yes {
  background: linear-gradient(135deg, #56c09d, #059669);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}
.mobile-value.is-no {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .pricing-desktop {
    display: none;
  }
  
  .pricing-mobile {
    display: block;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .formules-nav {
    display: none;
    padding: 0.8rem;
  }
  
  .formule-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .pricing-wrapper {
    margin: 1rem auto;
    width: 90%;
    border-radius: var(--radius-md);
  }
  
  .pricing-hero {
    padding: 1.5rem 1rem;
  }
  
  .hero-title {
    font-size: 1.4rem;
  }
  
  .mobile-selector {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  
  .mobile-tabs {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1;
    font-size: 9px;
    min-width: 0;
  }
}

/* Dark mode spécifique */
[data-theme="dark"] .pricing-mobile .mobile-formule,
[data-theme="dark"] .pricing-mobile .tab-btn,
[data-theme="dark"] .pricing-mobile .mobile-content {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme="dark"] .pricing-mobile .mobile-value {
  background: var(--glass-bg);
  color: var(--text-primary);
}
[data-theme="dark"] .pricing-mobile .mobile-value.is-yes {
  background: linear-gradient(135deg, #34d399, #059669);
  color: #e8fff7;
}
[data-theme="dark"] .pricing-mobile .mobile-value.is-no {
  background: rgba(239, 68, 68, 0.2);
  color: #fecdd3;
  border-color: rgba(239, 68, 68, 0.4);
}
[data-theme="dark"] .mobile-more-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.24), rgba(148, 163, 255, 0.08));
  color: #eef2ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .mobile-more-toggle:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.34), rgba(148, 163, 255, 0.14));
  box-shadow: 0 6px 20px rgba(148, 163, 255, 0.18);
}

/* Animations fluides */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-section {
  animation: fadeInUp 0.5s ease-out;
}

.feature-section:nth-child(2) { animation-delay: 0.1s; }
.feature-section:nth-child(3) { animation-delay: 0.2s; }
.feature-section:nth-child(4) { animation-delay: 0.3s; }

.mobile-content {
  animation: fadeInUp 0.3s ease-out;
}

/* États de focus améliorés */
.formule-btn:focus-visible,
.mobile-formule:focus-visible,
.tab-btn:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

/* Tooltips compacts */
.info-hint {
  cursor: help;
  opacity: 0.6;
  transition: opacity 0.2s;
  font-size: 0.8rem;
}
.info-hint:hover {
  opacity: 1;
}
.tooltip {
  position: absolute;
  background: rgba(15, 23, 42, 0.95);
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  z-index: 100;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.tooltip.show {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

#detailed-pricing {
  position: relative;
  scroll-margin-top: 180px;
}
#faq .cta-inline {
  color: #5d52ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#faq .cta-inline:hover {
  color: #3c33d6;
}
.faq a.cta-inline {
  color: #5d52ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq a.cta-inline:hover {
  color: #3c33d6;
}
.videos-mariage200 {
  margin-top: 200px;
}

/* Références film de mariage (style issu du portfolio) */
.portfolio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 125, 255, 0.4);
  background: rgba(111, 125, 255, 0.12);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5d52ff;
}

.reference-carousel-section {
  margin: 4rem auto;
  max-width: min(1200px, 90%);
  width: min(1200px, 90%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(255, 126, 224, 0.08), rgba(111, 125, 255, 0.08));
  border: 1px solid rgba(111, 125, 255, 0.2);
  box-shadow: 0 30px 80px rgba(16, 0, 63, 0.08);
}
@media (max-width: 720px) {
.reference-carousel-section {
  max-width: 80%;
}
}

.reference-carousel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.reference-carousel-header h2 {
  margin: 0.5rem 0;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.reference-carousel-header p {
  max-width: 620px;
  color: rgba(0, 0, 0, 0.65);
}

.carousel-controls {
  display: inline-flex;
  gap: 0.75rem;
}

.carousel-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 2px solid #666fec00;
  background: #989dff00;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 255, 0.419));
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  pointer-events: auto;
}

.carousel-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.carousel-btn:hover {
  transition: 0.5s;
  box-shadow: 0 1px 35px rgba(121, 90, 207, 0.703);
}

.carousel-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  box-shadow: none;
}

.reference-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 2rem;
  scroll-behavior: smooth;
}

.reference-carousel-track {
  display: flex;
  gap: 1.5rem;
}

.reference-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(111, 125, 255, 0.18);
  box-shadow: 0 25px 60px rgba(16, 0, 63, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
  display: flex;
  flex-direction: column;
}

.reference-card:hover {
  transform: scale(0.95);
  box-shadow: 0 30px 70px rgba(16, 0, 63, 0.12);
}

.reference-thumb {
  position: relative;
  overflow: visible;
  aspect-ratio: 16 / 9;
}

.reference-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.reference-duration {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(9, 9, 13, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.reference-play {
  position: absolute;
  right: 20px;
  bottom: -62px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  pointer-events: auto;
  cursor: pointer;
  z-index: 2;
}

.reference-play::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 16px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #5d52ff;
}

.reference-play-hint {
  position: absolute;
  right: 1.5rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.reference-play-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reference-thumb.is-playing .reference-play {
  opacity: 0;
  visibility: hidden;
}

.reference-info {
  padding: 1.25rem 1.5rem 1.5rem;
  padding-right: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}

.reference-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5d52ff;
  text-shadow: #7a72ff 0px 0px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reference-info h3 {
  margin: 0;
  font-size: 1.1rem;
}

.reference-info p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.reference-carousel-viewport {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.reference-carousel-viewport::-webkit-scrollbar {
  display: none;
}

[data-carousel-track] > * {
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  .carousel-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .reference-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 720px) {
  .reference-carousel-header {
    flex-direction: column;
  }

  .reference-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

[data-theme="dark"] .reference-carousel-section {
  background: linear-gradient(120deg, rgba(12, 0, 40, 0.92), rgba(4, 0, 18, 0.95));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.65);
}

[data-theme="dark"] .reference-carousel-header h2,
[data-theme="dark"] .reference-carousel-header p {
  color: rgba(242, 242, 255, 0.85);
}

[data-theme="dark"] .reference-card {
  background: rgba(16, 0, 63, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .reference-info h3,
[data-theme="dark"] .reference-info p {
  color: rgba(248, 248, 255, 0.9);
}

[data-theme="dark"] .reference-tag,
[data-theme="dark"] .reference-duration {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

[data-theme="dark"] .reference-info {
  border-top-color: rgba(255, 255, 255, 0.1);
}
