/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  /* Thème Noir/Gris Professionnel */
  --primary-color: #0a0a0a;
  --primary-light: #111111;
  --secondary-color: #1a1a1a;
  --accent-color: #ff4500;
  --accent-light: #ff6a3c;
  --dark-color: #050505;
  --darker-color: #000000;
  --light-color: #ffffff;
  --text-light: #f0f0f0;
  --text-gray: #a0a0a0;
  --text-dark: #888888;
  --glass-light: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --card-bg: #151515;
  --card-border: #222222;
}

/* Background pattern subtil */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255, 69, 0, 0.03) 0, transparent 20%),
    radial-gradient(circle at 85% 30%, rgba(255, 69, 0, 0.02) 0, transparent 20%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(5, 5, 5, 0.9));
  z-index: -1;
  pointer-events: none;
}

body {
  background: linear-gradient(135deg, #000000 0, #0a0a0a 100%);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  background-attachment: fixed;
}

/* ---------- LOGOS PERSONNALISÉS ---------- */
.logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-right: 15px;
  filter: drop-shadow(0 0 12px rgba(255, 69, 0, 0.6));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 900;
}

.logo-text {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;
  font-size: 1.9rem;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.footer-logo .logo-img {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.6));
}

.footer-logo h3 {
  font-size: 2.3rem;
  color: var(--text-light);
}

.footer-logo span {
  color: var(--accent-color);
  font-size: 2.1rem;
}

/* ---------- ÉCRAN D'ACCUEIL AVEC BOUTON ---------- */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0, #0a0a0a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.loading-content {
  text-align: center;
  width: 90%;
  max-width: 500px;
  background: rgba(15, 15, 15, 0.9);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #222222;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.loading-logo {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.custom-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.7));
  animation: pulseLogo 2s infinite alternate;
}

@keyframes pulseLogo {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.5));
  }
  100% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 35px rgba(255, 69, 0, 0.8));
  }
}

.loading-text {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--accent-color), #ff6a3c, #ff8c00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 3s infinite linear;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.enter-text {
  text-align: center;
  margin: 30px 0;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.enter-text h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.enter-text p {
  color: var(--text-gray);
  font-size: 1.1rem;
  font-style: italic;
}

.enter-btn {
  background: linear-gradient(135deg, var(--accent-color), #ff5a2f);
  color: var(--text-light);
  border: none;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px auto;
  min-width: 300px;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.enter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.enter-btn:hover::before {
  left: 100%;
}

.enter-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
}

.enter-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.enter-btn i {
  font-size: 1.4rem;
}

.enter-tip {
  color: var(--text-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
}

.enter-tip i {
  color: var(--accent-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- GLASS EFFECT ---------- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  border-bottom: 1px solid #222222;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 12px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  white-space: nowrap;
  font-size: 1.05rem;
  background: rgba(30, 30, 30, 0.3);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
  background: linear-gradient(
    90deg,
    rgba(255, 69, 0, 0.1),
    rgba(255, 69, 0, 0.05)
  );
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--accent-color);
}

.nav-text {
  display: inline-block;
}

.login-btn {
  background: var(--accent-color);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.login-btn:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

/* ---------- HERO SECTION ---------- */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 69, 0, 0.05) 0,
    transparent 60%
  );
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  width: 100%;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--accent-color);
  display: inline-block;
  position: relative;
  font-size: 3.2rem;
}

.hero-title span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 100%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cta-btn {
  background: linear-gradient(135deg, var(--accent-color), #ff5a2f);
  color: var(--text-light);
  padding: 18px 35px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 350px;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--accent-light), #ff7b5a);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 69, 0, 0.4);
}

.cta-btn i {
  font-size: 1.3rem;
}

.secondary-cta-btn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.secondary-cta-btn:hover {
  background: var(--accent-color);
  color: var(--text-light);
}

/* VIDÉO DE PRÉSENTATION */
.video-wrapper {
  width: 100%;
  max-width: 650px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #222222;
  background: #151515;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  margin: 0 auto;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(255, 69, 0, 0.2);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-wrapper:hover .hero-video-thumb {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: white;
  transition: background 0.3s ease;
}

.video-wrapper:hover .play-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-overlay i {
  font-size: 4rem;
  color: var(--accent-color);
  filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
  animation: pulsePlay 2s infinite;
}

.play-overlay span {
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

@keyframes pulsePlay {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ---------- SECTION STATISTIQUES - TEXTE À GAUCHE, PHOTO À DROITE ---------- */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), rgba(10, 10, 10, 0.7));
  position: relative;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.3), transparent);
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-text {
  width: 100%;
}

.stats-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.stats-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

.stats-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
}

.stats-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 30px rgba(255, 69, 0, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.stats-image {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #222222;
  background: #151515;
}

.stats-visual {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.stats-image:hover .stats-visual {
  transform: scale(1.05);
}

/* ---------- SECTION À PROPOS - Même style que Stats ---------- */
.about-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), rgba(10, 10, 10, 0.7));
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.3), transparent);
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  width: 100%;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

.about-content {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 700px;
}

.about-content p {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content p:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.about-content strong {
  color: var(--text-light);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

.about-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.about-content li {
  margin-bottom: 8px;
  position: relative;
}

.about-content li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: -15px;
}

.about-image {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #222222;
  background: #151515;
}

.about-visual {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover .about-visual {
  transform: scale(1.05);
}

/* ---------- SECTIONS GÉNÉRALES ---------- */
section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(10, 10, 10, 0.3)
  );
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 69, 0, 0.1),
    transparent
  );
}

section:last-child::after {
  display: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  position: relative;
}

.section-title i {
  color: var(--accent-color);
  font-size: 2.2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 60px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- HIGHLIGHTS GRID ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  width: 100%;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid #333333;
  background: #1a1a1a;
}

.product-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.12);
}

.product-image::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 3.5rem;
  color: var(--accent-color);
  text-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s;
  pointer-events: none;
}

.product-card:hover .product-image::after {
  transform: translate(-50%, -50%) scale(1);
}

.product-info {
  padding: 25px;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.3;
}

.product-price {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: rgba(255, 69, 0, 0.1);
  color: var(--accent-color);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.buy-btn {
  width: 100%;
  padding: 15px;
  background: rgba(255, 69, 0, 0.15);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
}

.buy-btn:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

.buy-btn i {
  font-size: 1.2rem;
}

/* ---------- SETUP SECTION ---------- */
.setup-visuals {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 3rem;
}

.setup-image-item {
  width: 100%;
  background: #151515;
  backdrop-filter: blur(15px);
  border: 1px solid #222222;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
}

.setup-image-item:hover {
  border-color: rgba(255, 69, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.setup-image-content {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.setup-image-content:hover {
  transform: scale(1.04);
}

.setup-link-pcp {
  color: var(--text-gray);
  text-decoration: underline;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  transition: color 0.3s;
  padding: 10px;
}

.setup-link-pcp:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.setup-description {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.setup-description p {
  font-size: 1.2rem;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.setup-specs-full {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 4rem;
}

.specs-category {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #252525;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.specs-category:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.specs-category h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.specs-category h3 i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.category-subtitle {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1rem;
  font-style: italic;
}

.specs-list {
  list-style: none;
  padding: 0;
}

.specs-list li {
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.specs-list li:hover {
  transform: translateX(5px);
}

.specs-list li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.specs-list a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: color 0.3s ease;
  padding: 8px 5px;
  border-radius: 6px;
}

.specs-list a:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

.specs-list i {
  width: 24px;
  color: var(--accent-color);
  margin-top: 3px;
  font-size: 1.1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(to top, #050505, #0a0a0a);
  padding: 80px 0 40px;
  border-top: 1px solid #222222;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.footer-section {
  text-align: center;
  background: rgba(20, 20, 20, 0.4);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-top: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.social-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
  border-color: var(--accent-color);
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-light);
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  font-size: 1.05rem;
  padding: 8px 15px;
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.05);
}

.footer-links i {
  font-size: 0.9rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--text-gray);
  font-size: 1.05rem;
  background: rgba(25, 25, 25, 0.5);
  padding: 12px 15px;
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
}

.email-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.copy-email-btn {
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.copy-email-btn:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.contact-info i {
  color: var(--accent-color);
  width: 24px;
  font-size: 1.2rem;
}

.footer-email {
  color: var(--text-gray) !important;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.05rem;
}

.footer-email:hover {
  color: var(--accent-color) !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-gray);
  font-size: 1rem;
  padding: 30px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- MODALES ---------- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-container {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  border-radius: 20px;
  width: 95%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid #252525;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  animation: scaleIn 0.3s ease;
}

.modal-header {
  padding: 30px 30px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(255, 69, 0, 0.1),
    transparent
  );
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  font-size: 1.8rem;
  color: var(--text-light);
  font-weight: 700;
}

.close-btn {
  color: var(--text-gray);
  font-size: 35px;
  cursor: pointer;
  transition: all 0.3s;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.close-btn:hover {
  color: var(--accent-color);
  background: rgba(255, 69, 0, 0.15);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  padding: 30px;
}

.modal-body video {
  width: 100%;
  max-height: 350px;
  border-radius: 12px;
  margin-bottom: 25px;
  background: #000000;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-info {
  margin-bottom: 20px;
}

.video-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.video-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 20, 20, 0.7);
  padding: 6px 10px;
  border-radius: 999px;
}

.video-stats i {
  color: var(--accent-color);
}

.video-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-tag {
  background: rgba(255, 69, 0, 0.1);
  color: var(--accent-color);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.modal-description h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.modal-description p {
  color: var(--text-gray);
  line-height: 1.7;
}

.image-modal {
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 95vw;
}

#modalImage {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- AUDIO CONTROL ---------- */
#audio-control-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 100;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid #333333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

#audio-control-icon:hover {
  background: var(--accent-color);
  transform: scale(1.15) rotate(15deg);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(255, 69, 0, 0.5);
}

#volume-icon {
  color: #ff4500;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

#audio-control-icon:hover #volume-icon {
  color: var(--text-light);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #111111;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #333333, #444444);
  border-radius: 6px;
  border: 2px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ff4500, #ff6a3c);
}

/* ---------- MEDIA QUERIES - TABLETTE ---------- */
@media (min-width: 768px) {
  .hero {
    padding: 180px 0 100px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-title span {
    font-size: 3.8rem;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-btn {
    width: auto;
    min-width: 250px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  
  .stats-text {
    flex: 1;
  }
  
  .stats-image {
    flex: 1;
    max-width: 500px;
  }
  
  .stats-details {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
    max-width: 500px;
  }
  
  .setup-visuals {
    flex-direction: row;
  }
  .setup-image-item {
    flex: 1;
  }
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-section {
    flex: 1 1 300px;
    text-align: left;
  }
  .footer-section h3::after {
    left: 0;
    transform: none;
  }
  .social-links {
    justify-content: flex-start;
  }
  .footer-links a,
  .contact-info {
    justify-content: flex-start;
  }
  .logo-img {
    width: 55px;
    height: 55px;
  }
  .logo-text {
    font-size: 1.8rem;
  }
  
  .video-wrapper {
    height: 400px;
  }
}

/* ---------- MEDIA QUERIES - DESKTOP ---------- */
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav-links {
    display: flex !important;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 80px;
    align-items: center;
  }

  .hero-text {
    text-align: left;
    max-width: 50%;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-visual {
    max-width: 50%;
  }

  .video-wrapper {
    height: 450px;
    width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-container {
    gap: 100px;
  }
  
  .stats-title {
    font-size: 2.5rem;
  }
  
  .stats-description {
    font-size: 1.2rem;
    max-width: 700px;
  }
  
  .stats-details {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item {
    padding: 30px;
  }
  
  .stat-value {
    font-size: 3rem;
  }
  
  .about-container {
    gap: 100px;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    font-size: 1.2rem;
  }

  .setup-specs-full {
    flex-direction: row;
    gap: 50px;
  }
  .specs-category {
    flex: 1;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-title span {
    font-size: 4.2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    max-width: 550px;
  }

  .modal-container {
    max-width: 1000px;
  }

  .modal-body video {
    max-height: 600px;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  .logo-text {
    font-size: 2rem;
  }

  .footer-logo .logo-img {
    width: 100px;
    height: 100px;
  }

  .custom-logo {
    width: 180px;
    height: 180px;
  }

  .loading-text {
    font-size: 4.5rem;
  }
}

/* ---------- AMÉLIORATIONS ESTHÉTIQUES MOBILE ---------- */
@media (max-width: 1023px) {
  .navbar {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #222222;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu-btn:hover {
    background: rgba(255, 69, 0, 0.2);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 20px;
    border: 1px solid #222222;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    gap: 10px;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    margin: 5px 0;
    border-radius: 10px;
  }

  .nav-link.active {
    background: linear-gradient(
      90deg,
      rgba(255, 69, 0, 0.2),
      rgba(255, 69, 0, 0.1)
    );
    border-left: 3px solid var(--accent-color);
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
  }

  .hero-title span {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-btn {
    max-width: 280px;
    min-width: 250px;
    padding: 16px 25px;
  }

  .video-wrapper {
    height: 350px;
    margin-top: 30px;
  }

  .stats-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-value {
    font-size: 2.2rem;
  }
  
  .stats-image {
    margin-top: 40px;
  }
  
  .about-image {
    margin-top: 40px;
  }

  .product-card,
  .feature,
  .footer-section {
    border-radius: 12px;
  }

  .cta-btn,
  .buy-btn {
    padding: 14px 20px;
  }

  .product-card,
  .feature,
  .setup-image-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  section {
    padding: 80px 0;
  }

  .hero-subtitle,
  .section-subtitle,
  .product-price {
    font-size: 1.05rem;
  }

  .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--accent-color),
      transparent
    );
    border-radius: 2px;
  }
}

/* ---------- MOBILE SMALL ---------- */
@media (max-width: 479px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.6rem;
  }

  .hero {
    padding: 130px 0 50px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-title span {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }

  .video-wrapper {
    height: 250px;
  }

  .play-overlay i {
    font-size: 3rem;
  }

  .play-overlay span {
    font-size: 1.2rem;
  }

  .cta-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .cta-btn i {
    font-size: 1.1rem;
  }

  .enter-btn {
    min-width: 280px;
    padding: 18px 30px;
    font-size: 1.1rem;
  }

  .enter-btn span {
    font-size: 1rem;
  }

  .enter-text h2 {
    font-size: 1.5rem;
  }

  .enter-text p {
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    gap: 10px;
  }

  .section-title i {
    font-size: 1.8rem;
  }

  .setup-image-item {
    min-width: 100%;
  }

  .setup-image-content {
    max-height: 200px;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  #audio-control-icon {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  #volume-icon {
    font-size: 1.3rem;
  }

  .custom-logo {
    width: 90px;
    height: 90px;
  }

  .loading-text {
    font-size: 2.8rem;
  }
}

/* ---------- ORIENTATION PAYSAGE ---------- */
@media (max-height: 600px) and (orientation: landscape) {
  .navbar {
    padding: 12px 0;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 30px;
  }

  .hero-text {
    text-align: left;
    max-width: 50%;
  }

  .hero-visual {
    max-width: 50%;
  }

  .video-wrapper {
    height: 250px;
  }

  section {
    padding: 60px 0;
  }
}

/* fallback si pas de backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .navbar,
  .feature,
  .setup-image-item {
    background: rgba(10, 10, 10, 0.95);
  }
}

/* ---------- AMÉLIORATIONS POUR LA PAGE CLIPS ---------- */
@media (max-width: 768px) {
    #clips-audio-control {
        bottom: 15px;
        right: 15px;
    }
    
    #clips-audio-control > div {
        gap: 10px;
    }
    
    #clips-audio-control > div > div {
        width: 50px;
        height: 50px;
    }
    
    #clips-audio-control img {
        width: 30px;
        height: 30px;
    }
    
    #clips-volume-icon {
        font-size: 1.3rem;
    }
}

/* ---------- ANIMATION DE SECOUSSE POUR FEEDBACK AUDIO ---------- */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Animation de secousse pour feedback */
.shake-animation {
  animation: shake 0.5s ease;
}