/* ============================
   MXBZH - SECTION A PROPOS
   Design Premium Bleu Nuit
   ============================ */

/* Import police moderne */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

.about-section {
  padding: 6rem 0 7rem;
  background: linear-gradient(165deg, #0a0f1a 0%, #0d1829 35%, #111d35 70%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Sora', sans-serif;
}

/* Effets de fond subtils */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Container */
.about-section .container {
  position: relative;
  z-index: 1;
}

/* Grid principal */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Contenu texte */
.about-content {
  padding-right: 2rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  hyphens: none;
  -webkit-hyphens: none;
}

.about-title span {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2.5rem;
  max-width: 520px;
}

/* Stats - Important pour SEO */
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.about-feature:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.about-feature-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.3rem;
}

.about-feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

/* ===== PARTIE VISUELLE - VIDEO ===== */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Bordure lumineuse animée */
.about-video-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
  background-size: 300% 300%;
  border-radius: 27px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0.8;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Glow effect */
.about-video-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  z-index: -2;
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.about-video-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

/* Badge sur la vidéo */
.about-video-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 5;
}

.about-video-badge .live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ===== RESPONSIVE ===== */

/* Tablette */
@media (max-width: 1024px) {
  .about-section {
    padding: 5rem 0;
  }

  .about-grid {
    gap: 3rem;
  }

  .about-content {
    padding-right: 1rem;
  }

  .about-stats {
    gap: 2rem;
  }

  .about-stat-number {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0 5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
    order: 2;
  }

  .about-visual {
    order: 1;
  }

  .about-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .about-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .about-description {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .about-stats {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .about-stat {
    align-items: center;
    min-width: 80px;
  }

  .about-stat-number {
    font-size: 1.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-feature {
    text-align: left;
  }

  .about-video-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Petit mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0 4rem;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .about-feature {
    padding: 1rem;
  }

  .about-feature-icon {
    width: 42px;
    height: 42px;
  }

  .about-video-wrapper {
    max-width: 260px;
  }
}