:root {
  --bg: #0f172a;
  --ink: #e5e7eb;
  --muted: #9aa4b2;
  --card: #0b1220;
  --border: #1f2937;
  --blue: #0a2747;
  --gold: #c7a352;
  --accent: #1e3a8a;
  --bg-gradient: radial-gradient(1200px 600px at 10% -10%, #173159 0%, transparent 60%), radial-gradient(1000px 500px at 110% 10%, #0e2140 0%, transparent 55%), linear-gradient(180deg, #0b1426 0%, #0f172a 100%);
  --surface: rgba(11, 18, 32, 0.8);
  --ring: 0 0 0 3px rgba(199, 163, 82, 0.3);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-gradient);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

/* Icônes sociales avec style premium */
.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: #ffd78a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(255, 215, 138, 0.4));
  position: relative;
  z-index: 2;
}

.social-icons a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, 
    rgba(199, 163, 82, 0.2) 0%,
    rgba(17, 24, 39, 0.95) 100%
  );
  border: 1px solid rgba(255, 215, 138, 0.5);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: socialPulse 3s infinite;
}

@keyframes socialPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 138, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 215, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 138, 0); }
}

.social-icons a::before,
.social-icons a::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: all 0.4s ease;
}

.social-icons a::before {
  background: radial-gradient(circle at 30% 30%,
    rgba(255, 215, 138, 0.2) 0%,
    transparent 60%
  );
  opacity: 0.5;
}

.social-icons a::after {
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0%,
    rgba(255, 215, 138, 0.1) 25%,
    transparent 50%
  );
  opacity: 0;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.social-icons a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 138, 0.8);
  background: linear-gradient(135deg,
    rgba(199, 163, 82, 0.3) 0%,
    rgba(17, 24, 39, 0.95) 100%
  );
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:hover::after {
  opacity: 0.5;
}

.social-icons a:hover .social-icon {
  color: #fff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 215, 138, 0.6));
}

.social-icons a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}

/* Animation alternée pour chaque icône */
.social-icons a:nth-child(1) { animation-delay: 0s; }
.social-icons a:nth-child(2) { animation-delay: 1s; }
.social-icons a:nth-child(3) { animation-delay: 2s; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
}

.card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.5), rgba(11, 18, 32, 0.5));
  border: 1px solid rgba(31, 41, 55, 0.6);
  border-radius: 20px;
  padding: 60px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: saturate(120%) blur(12px);
}

header {
  text-align: center;
  padding: 10px 0 50px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 20px 0 16px;
}

h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 50px 0 24px;
}

p {
  margin: 0 0 20px;
  line-height: 1.8;
  font-size: 16px;
}

/* Premium headline (gradient text) */
.headline {
  font-weight: 800;
  letter-spacing: 0.2px;
  background: linear-gradient(90deg, #f7f7f8 0%, #c7a352 60%, #e5e7eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Subtitle styling */
.subtitle {
  max-width: 800px;
  margin: 0 auto;
}

/* Disclaimer text */
.disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  opacity: 0.8;
}


.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: end;
  margin: 50px 0;
  background: rgba(11, 18, 32, 0.3);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(31, 41, 55, 0.4);
}

.hero .cta {
  background: linear-gradient(180deg, rgba(199, 163, 82, .15), rgba(199, 163, 82, .06));
  border: 1px solid #2b3b55;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
}

.hero .cta h3 {
  color: #ffd78a;
  margin-top: 0;
}

.hero .cta a {
  color: #ffd78a;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.hero .cta a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd78a, rgba(199, 163, 82, 0.5));
  transition: width 0.3s ease;
}

.hero .cta a:hover {
  color: #e5c158;
  transform: translateX(2px);
}

.hero .cta a:hover::after {
  width: 100%;
}

.hero .cta:hover {
  background: linear-gradient(180deg, rgba(199, 163, 82, .25), rgba(199, 163, 82, .12));
  border-color: rgba(199, 163, 82, 0.5);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.4),
    0 0 20px rgba(199, 163, 82, 0.15);
  transform: translateY(-2px);
}


.security-camera {
  position: fixed;
  top: 0;
  right: 0;
  width: 120px;
  height: auto;
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 0;
}

.badge {
  font-size: 13px;
  padding: 10px 18px;
  border: 1px solid #223049;
  border-radius: 999px;
  color: #cbd5e1;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.grid {
  display: grid;
  gap: 28px;
  margin: 50px 0;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  position: relative;
  background: linear-gradient(180deg, #0b1322, #0a1321);
  border: 1px solid #1f2b40;
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature h3 {
  margin: 0 0 16px;
  font-size: 20px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature:hover h3 {
  color: #ffd78a;
  text-shadow: 0 0 20px rgba(199, 163, 82, 0.5);
}

/* Section header avec bouton d'information */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
    padding-right: 60px;  /* Ajout du padding pour aligner avec le trait rouge */
}

.section-header h2 {
    margin: 0;
}

.section-header .cta-btn {
    margin: 0;
    white-space: nowrap;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

/* Modal Information */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.info-modal[aria-hidden="false"] {
    display: block;
    opacity: 1;
    visibility: visible;
}

.info-modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(4px);
}

.info-modal-content {
    position: relative;
    max-width: 90%;
    width: 800px;
    margin: 2rem auto;
    background: linear-gradient(120deg, #162447 60%, #10182f 100%);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 32px #0a0f1c88;
}

.info-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.info-modal-close:hover {
    transform: scale(1.1);
}

.info-modal-title {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    overflow: auto;
    padding: 20px;
    margin: -20px;
}

.info-image {
    max-width: 100%;
    max-height: calc(80vh - 140px); /* 80vh moins la hauteur du titre et des marges */
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px #0a0f1c44;
    object-fit: contain;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature:hover p {
  color: #e5e7eb;
}

.feature:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, 
    rgba(199, 163, 82, 0.08) 0%, 
    rgba(11, 19, 34, 0.95) 50%, 
    rgba(199, 163, 82, 0.05) 100%);
  border-color: rgba(199, 163, 82, 0.6);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(199, 163, 82, 0.2),
    inset 0 1px 0 rgba(255, 215, 130, 0.1);
}

.list {
  margin: 24px 0;
  padding-left: 24px;
}

.list li {
  margin: 14px 0;
  line-height: 1.8;
  font-size: 16px;
}

.coords {
  margin-top: 70px;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.6), rgba(10, 15, 28, 0.6));
  border: 1px solid rgba(199, 163, 82, 0.3);
  border-radius: 18px;
  padding: 48px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.coords h2 {
  margin-top: 0;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coords h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgba(199, 163, 82, 0), var(--gold), rgba(199, 163, 82, 0));
  border-radius: 4px;
}

.coords::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(199, 163, 82, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.coords:hover {
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.8), rgba(10, 15, 28, 0.8));
  border-color: rgba(199, 163, 82, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(199, 163, 82, 0.15);
  transform: translateY(-2px);
}

.coords:hover::before {
  opacity: 1;
}

.coords a {
  color: #ffd78a;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.coords a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd78a, rgba(199, 163, 82, 0.5));
  transition: width 0.3s ease;
}

.coords a:hover {
  color: #e5c158;
  transform: translateX(2px);
}

.coords a:hover::after {
  width: 100%;
}

.coords p {
  margin: 16px 0;
}

.cta-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    color: #cbd5e1;
    border: 1px solid rgba(199, 163, 82, 0.3);
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center;
}

.cta-btn:hover {
    background: linear-gradient(135deg, rgba(199, 163, 82, 0.15), rgba(199, 163, 82, 0.08));
    border-color: rgba(199, 163, 82, 0.5);
    color: #ffd78a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(199, 163, 82, 0.15);
}

/* Style spécial pour le bouton de devis */
.cta-btn-primary {
    background: linear-gradient(135deg, rgba(199, 163, 82, 0.3), rgba(30, 41, 59, 0.9));
    color: #ffd78a;
    border-color: rgba(199, 163, 82, 0.5);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, rgba(199, 163, 82, 0.5), rgba(199, 163, 82, 0.3));
    color: #fff;
    border-color: rgba(199, 163, 82, 0.8);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(199, 163, 82, 0.25);
}.cta-btn:hover {
  background: linear-gradient(135deg, #e5c158 0%, #d4af37 50%, #c7a352 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 
    0 16px 40px rgba(199, 163, 82, 0.45),
    0 0 30px rgba(255, 215, 130, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 215, 130, 0.6);
}

.cta-btn:focus-visible {
  outline: none;
  box-shadow: var(--ring), 0 10px 24px rgba(199, 163, 82, 0.25);
}

.faq {
  background: rgba(11, 18, 32, 0.3);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(31, 41, 55, 0.4);
}

.faq h2 {
  margin-top: 0;
}

.faq details {
  background: linear-gradient(135deg, rgba(11, 19, 34, 0.5), rgba(10, 18, 32, 0.5));
  border: 1px solid #1f2b40;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 16px 0;
  transition: all 0.3s ease;
}

.faq details:hover {
  background: linear-gradient(135deg, rgba(199, 163, 82, 0.05), rgba(11, 19, 34, 0.95));
  border-color: rgba(199, 163, 82, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
}

.faq details[open] summary {
  margin-bottom: 18px;
}

.faq details p {
  line-height: 1.8;
  font-size: 15px;
}

.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}

.partners-section,
.why-section {
  background: rgba(11, 18, 32, 0.3);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(31, 41, 55, 0.4);
}

.why-section h2,
.partners-section h2,
.faq h2 {
  margin-top: 0;
}

/* Section sans fond avec titre */
section:not(.hero):not(.faq):not(.why-section):not(.partners-section):not(.coords) {
  margin: 50px 0;
}

section:not(.hero):not(.faq):not(.why-section):not(.partners-section):not(.coords) h2 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

section:not(.hero):not(.faq):not(.why-section):not(.partners-section):not(.coords) h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(199, 163, 82, 0));
  border-radius: 4px;
}

.partners img {
  width: 100%;
  border-radius: 14px;
  background: #0b1322;
  border: 1px solid #1f2b40;
  filter: grayscale(20%);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 16px;
}

.partners img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(199, 163, 82, 0.4);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(199, 163, 82, 0.15);
}

.logo-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}

.logo-top img {
  height: 120px;
  width: auto;
  margin-bottom: 8px;
}

.logo-top .logo-expert {
  height: 100px;
  width: auto;
  margin-bottom: 8px;
}

.banner {
  margin: 50px 0;
}

.banner img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #1f2b40;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  display: block;
}

.camera-lot-container {
  margin-top: 100px;
}

.camera-lot-img {
  width: 100%;
  height: auto;
  border: none;
  box-shadow: none;
  transition: all 0.4s ease;
}

.camera-lot-img:hover {
  transform: translateY(-4px) scale(1.02);
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 70px;
  padding-top: 48px;
  border-top: 1px solid rgba(31, 41, 55, 0.5);
  line-height: 1.8;
}

footer a {
  color: #c7a352;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffd78a;
}

/* Accessible focus for links */
a:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

@media (max-width: 860px) {
  .wrap {
    padding: 32px 24px;
  }

  .card {
    padding: 32px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }

  .grid {
    gap: 24px;
  }

  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  h2 {
    margin: 40px 0 20px;
  }

  .partners {
    gap: 24px;
  }
}

/* ============================================
   ANIMATIONS JAVASCRIPT
   ============================================ */

/* Fade in up animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Lazy loading images */
.lazy-img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

/* Shine effect sur CTA */
.cta-btn {
  position: relative;
  overflow: hidden;
}

.cta-btn .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 0.6s ease;
}

@keyframes shine {
  to {
    left: 100%;
  }
}

/* Badge shake animation */
@keyframes badge-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px) rotate(-2deg); }
  75% { transform: translateX(3px) rotate(2deg); }
}

/* Wave in animation pour header */
@keyframes wave-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Click particles effect */
.click-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(199, 163, 82, 1), rgba(199, 163, 82, 0));
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: click-particle-anim 1s ease-out forwards;
}

@keyframes click-particle-anim {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc(var(--vx) * 50px),
      calc(var(--vy) * 50px)
    ) scale(0);
    opacity: 0;
  }
}

/* Glow effect sur les cartes au hover */
.feature::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    60deg,
    transparent 0%,
    rgba(199, 163, 82, 0.4) 25%,
    rgba(255, 215, 130, 0.5) 50%,
    rgba(199, 163, 82, 0.4) 75%,
    transparent 100%
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  background-size: 200% 200%;
}

.feature:hover::before {
  opacity: 1;
  animation: glow-sweep 3s ease-in-out infinite;
}

@keyframes glow-sweep {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Shine overlay sur hover */
.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 130, 0.15),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.feature:hover::after {
  left: 100%;
}

/* Pulse animation sur le CTA */
.cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(199, 163, 82, 0.3);
  border-radius: 12px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}

.cta-btn:hover::after {
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Curseur custom premium - DÉSACTIVÉ */
.custom-cursor,
.cursor-dot {
  display: none !important;
}

/* Canvas particules */
.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.9;
}

/* Transition smooth pour FAQ */
.faq details {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.faq details[open] {
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* Feature 3D hover */
.feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* Headline typing effect */
.headline {
  opacity: 0;
}

/* Mobile: désactiver curseur custom et particules */
@media (max-width: 860px) {
  .custom-cursor,
  .cursor-dot,
  .particles-canvas {
    display: none;
  }
  
  .feature {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reduce-motion * {
    transition: none !important;
    animation: none !important;
  }
  
  .custom-cursor,
  .cursor-dot,
  .particles-canvas {
    display: none !important;
  }
}

/* ============================================
   VIDEO MODAL
   ============================================ */

.video-btn {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  color: #cbd5e1;
  border: 1px solid rgba(199, 163, 82, 0.3);
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  text-align: center;
}

.video-btn:hover {
  background: linear-gradient(135deg, rgba(199, 163, 82, 0.15), rgba(199, 163, 82, 0.08));
  border-color: rgba(199, 163, 82, 0.5);
  color: #ffd78a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(199, 163, 82, 0.15);
}

.video-btn:focus-visible {
  outline: none;
  box-shadow: var(--ring), 0 10px 24px rgba(0, 0, 0, 0.35);
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.95), rgba(11, 18, 32, 0.95));
  border: 1px solid rgba(199, 163, 82, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(199, 163, 82, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(199, 163, 82, 0.1);
  border: 1px solid rgba(199, 163, 82, 0.3);
  border-radius: 50%;
  color: #ffd78a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-modal-close:hover {
  background: rgba(199, 163, 82, 0.2);
  border-color: rgba(199, 163, 82, 0.6);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(199, 163, 82, 0.3);
}

.video-modal-close:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.video-modal-title {
  margin: 0 0 24px;
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
  background: linear-gradient(90deg, #f7f7f8 0%, #c7a352 60%, #e5e7eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.video-switch-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  color: #cbd5e1;
  border: 1px solid rgba(199, 163, 82, 0.3);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.video-switch-btn:hover {
  background: linear-gradient(135deg, rgba(199, 163, 82, 0.15), rgba(199, 163, 82, 0.08));
  border-color: rgba(199, 163, 82, 0.5);
  color: #ffd78a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-switch-btn.active {
  background: linear-gradient(135deg, #d4af37 0%, #c7a352 50%, #b8933a 100%);
  color: #0a0a0a;
  border-color: rgba(255, 215, 130, 0.6);
  box-shadow: 
    0 8px 20px rgba(199, 163, 82, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.video-switch-btn.active:hover {
  background: linear-gradient(135deg, #e5c158 0%, #d4af37 50%, #c7a352 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 28px rgba(199, 163, 82, 0.45),
    0 0 20px rgba(255, 215, 130, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.video-switch-btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* Animation d'entrée */
@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 860px) {
  .video-modal-content {
    width: 95%;
    padding: 24px;
  }
  
  .video-modal-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .video-modal-close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
  
  .video-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .video-switch-btn {
    width: 100%;
  }
}

/* ============================================
   lister148
   ============================================ */

/* Info Modal */
.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.info-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.info-modal[aria-hidden="false"] .info-modal-content {
  transform: scale(1);
}

.info-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.info-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.95), rgba(11, 18, 32, 0.95));
  border: 1px solid rgba(199, 163, 82, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(199, 163, 82, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.info-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(199, 163, 82, 0.1);
  border: 1px solid rgba(199, 163, 82, 0.3);
  border-radius: 50%;
  color: #ffd78a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.info-modal-close:hover {
  background: rgba(199, 163, 82, 0.2);
  border-color: rgba(199, 163, 82, 0.6);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(199, 163, 82, 0.3);
}

.info-modal-close:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.info-modal-title {
  margin: 0 0 24px;
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
  background: linear-gradient(90deg, #f7f7f8 0%, #c7a352 60%, #e5e7eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.info-content {
  text-align: center;
  position: relative;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.info-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}