:root {
  --primary: #2D3561;
  --secondary: #4A5578;
  --accent: #6C7AA5;
  --dark: #1A1A2E;
  --light: #F5F7FA;
  --white: #FFFFFF;
  --text: #2D3748;
  --text-light: #718096;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
.solution-item {
  cursor: pointer;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* ===== VIDEO INTRO SPLASH SCREEN ===== */
.intro-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-video-desktop {
  display: block;
}

.intro-video-mobile {
  display: none;
}

.skip-intro {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
}

.skip-intro:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 1001;
}

.logo-container img {
  height: 100px;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  position: relative;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #062f66;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-column-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.dropdown-item {
  padding: 1rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: rgba(45, 53, 97, 0.05);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(45, 53, 97, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.dropdown-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.nav-cta {
  background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 53, 97, 0.4);
  background: #062f66;
}

.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 1rem;
}

.mobile-menu {
  display: none;
}

.social-icon-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(6, 47, 102, 0.08);
  border-radius: 50%;
  color: #062f66;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-icon-nav.instagram::before {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.social-icon-nav.facebook::before {
  background: #1877F2;
}

.social-icon-nav:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.social-icon-nav:hover::before {
  opacity: 1;
}

.social-icon-nav svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon-nav:hover svg {
  transform: scale(1.1);
}

/* ===== SIMPLE VIDEO BANNER ===== */
.simple-video-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  margin-bottom: 0;
}

.banner-video-desktop {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 1;
}

.banner-video-mobile-simple {
  display: none;
}

/* ===== HERO BANNERS HEADER ===== */
.hero-banners-header {
  text-align: center;
  padding: 2rem 5% 1rem;
  background: #ffffff;
}

.hero-banners-subtitle {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: #062f66;
}

.hero-banners-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

/* ===== SECTION NOS SOLUTIONS ===== */
.hero-banners-section {
  padding: 0;
  background: #000;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.hero-banners-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}

.solution-item img {
  width: 100%; height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.solution-item:hover img {
  transform: scale(1.05);
}

.solution-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 500px;
}

.solution-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.solution-item video {
  width: 100%; height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.solution-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 1.5rem;
  color: white;
  opacity: 1;        /* ← était 0, change en 1 */
  transition: opacity 0.3s ease;
}



.solution-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: white;
}

.solution-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  color: white;
  margin-bottom: 0.8rem;
}

.solutions-navigation {
  display: none;
}

.solutions-cta {
  display: none;
}

/* ===== SECTIONS COMMUNES ===== */
.section {
  padding: 6rem 5%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-subtitle2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  vertical-align: middle;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #062f66;
  margin-bottom: 1.5rem;
}

.section-title .highlight {
  color: white;
  -webkit-text-stroke: 2px var(--primary);
  text-shadow:
    -1px -1px 0 var(--primary),
     1px -1px 0 var(--primary),
    -1px  1px 0 var(--primary),
     1px  1px 0 var(--primary);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 1rem 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: #232A4D;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(45, 53, 97, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 53, 97, 0.4);
  background: #062f66;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* ===== PROCESS SECTION ===== */
.process {
  background: #ffffff;
  color: #062f66;
  position: relative;
  overflow: visible;
}

.process .container {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.process .section-title,
.process .section-description {
  color: #062f66;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  overflow: visible;
}

.process-step {
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: none;
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  overflow: visible;
}

.process-step.step-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.step-number-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #1576ad;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.step-icon-circle {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.step-icon-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.process-step:hover .step-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.process-step h3 { color: #274279; }
.process-step p  { color: #2D3748; }

/* ===== SECTION PACKS SPÉCIAUX ===== */
.packs-special-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.packs-special-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21, 118, 173, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.packs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.packs-content {
  position: relative;
  z-index: 2;
}

.packs-badge {
  display: inline-block;
  background: #062f66;
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.packs-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #062f66;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.packs-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 2rem;
}

.packs-features {
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0;
}

.packs-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2D3748;
}

.packs-features svg {
  flex-shrink: 0;
  color: #1576ad;
  background: rgba(21, 118, 173, 0.1);
  padding: 0.3rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.btn-packs-discover {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
  color: white;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(6, 47, 102, 0.3);
}

.btn-packs-discover:hover {
  background: #0a3d7a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 47, 102, 0.5);
}

.btn-packs-discover svg {
  transition: transform 0.3s ease;
}

.btn-packs-discover:hover svg {
  transform: translateX(5px);
}

.packs-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.packs-image:hover {
  transform: scale(1.03) rotate(1deg);
}

.packs-image video,
.packs-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 500px;
}

.packs-badge-overlay {
  position: absolute;
  top: 2rem; right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.badge-promo {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #062f66;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-modern {
  background: #062f66;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary-modern {
  background: transparent;
  color: #062f66;
  border: 2px solid #062f66;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary-modern:hover {
  background: #062f66;
  color: white;
  transform: translateY(-3px);
}

/* ============================================================
   NOS DERNIERS PROJETS — SCROLL HORIZONTAL NATIF
   ============================================================ */
.projects-scroll-section {
  padding: 0 0 3rem 0;
  background: #ffffff;
  position: relative;
}

.projects-scroll-track-wrapper {
  position: relative;
  overflow: hidden;
}

.projects-scroll-track {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 5%;
  scrollbar-width: none;
  cursor: grab;
}

.projects-scroll-track::-webkit-scrollbar {
  display: none;
}

.projects-scroll-track:active {
  cursor: grabbing;
}

.project-card {
  flex: 0 0 340px;
  min-width: 340px;
  max-width: 340px;
  height: 440px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(6, 47, 102, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(6, 47, 102, 0.22);
}

.project-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-card-inner img,
.project-card-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-inner img,
.project-card:hover .project-card-inner video {
  transform: scale(1.06);
}

.project-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(6, 15, 50, 0.95) 0%, rgba(6, 47, 102, 0.6) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  opacity: 1;
  transition: none;
}

.project-tag {
  display: none;
}

.project-card-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.project-card-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.project-cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7dd3fc;
  border-bottom: 1px solid rgba(125, 211, 252, 0.4);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}

.project-card:hover .project-cta {
  opacity: 1;
  pointer-events: auto;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Fade-out bord droit uniquement sur desktop */
@media (min-width: 769px) {
  .projects-scroll-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255,255,255,0.9) 0%, transparent 100%);
  }
}

/* Navigation flèches + barre de progression */
.projects-scroll-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 5% 0;
}

.pscroll-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #E5E5E5;
  color: #062f66;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.pscroll-arrow:hover {
  background: #062f66;
  border-color: #062f66;
  transform: scale(1.08);
  box-shadow: 0 5px 20px rgba(6, 47, 102, 0.3);
}

.pscroll-arrow:hover svg {
  stroke: white;
}

.pscroll-progress {
  flex: 1;
  max-width: 300px;
  height: 4px;
  background: rgba(6, 47, 102, 0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.pscroll-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #1576ad, #062f66);
  border-radius: 2px;
  transition: width 0.2s ease, left 0.2s ease;
}

/* ===== WHY CHOOSE ACCORDION ===== */
.why-choose-accordion {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.why-accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.why-accordion-left {
  position: sticky;
  top: 120px;
}

.section-badge {
  display: inline-block;
  background: #062f66;
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.why-accordion-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #062f66;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.why-accordion-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 2.5rem;
}

.btn-contact-accordion {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-contact-accordion:hover {
  background: #062f66;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-contact-accordion svg {
  transition: transform 0.3s ease;
}

.btn-contact-accordion:hover svg {
  transform: translateX(5px);
}

.btn-contact-accordion-mobile {
  display: none;
}

.why-accordion-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.accordion-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
  border-color: #062f66;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  background: white;
  border: none;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1A1A1A;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: #062f66;
}

.accordion-header span {
  flex: 1;
  padding-right: 1.5rem;
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #1A1A1A;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #062f66;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #FAFAFA;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 2rem 2rem 2rem;
}

.accordion-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin: 0;
  padding-top: 0.5rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 2rem 5%;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #062f66;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  color: #062f66;
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #062f66;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.8rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
  padding-top: 1rem;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #062f66;
  margin-bottom: 0.8rem;
}

.faq-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.faq-cta .btn {
  display: inline-block;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover img {
  transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.zoom-blur {
  opacity: 0;
  transform: scale(1.5);
  filter: blur(10px);
  transition: opacity 0.8s ease-out,
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.8s ease-out;
}

.zoom-blur.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}

/* ===== COOKIE BANNER ===== */
.termsfeed-com---nb {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #ffffff !important;
  padding: 12px 24px !important;
  margin: 0 !important;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15) !important;
  z-index: 99999 !important;
  font-family: 'Poppins', sans-serif !important;
}

.termsfeed-com---nb .cc-nb-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.termsfeed-com---nb .cc-nb-title {
  display: none !important;
}

.termsfeed-com---nb .cc-nb-desc {
  color: #e0e0e0 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  flex: 1 !important;
  max-width: 600px !important;
}

.termsfeed-com---nb .cc-nb-buttons-container {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
}

.termsfeed-com---nb .cc-nb-okagree,
.termsfeed-com---nb .cc-nb-reject,
.termsfeed-com---nb .cc-nb-changep {
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  border: none !important;
  transition: background 0.2s, transform 0.1s !important;
  white-space: nowrap !important;
}

.termsfeed-com---nb .cc-nb-okagree {
  background: #062f66 !important;
  color: #fff !important;
}

.termsfeed-com---nb .cc-nb-okagree:hover {
  background: #062f66 !important;
}

/* ===== SECTION 4 FEATURES ===== */
@media (min-width: 769px) {
  .partners-section {
    background: transparent;
    padding: 0;
    margin: -100px 0 50px 0;
    position: relative;
    z-index: 10;
  }

  .partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    justify-items: center;
  }

  .partner-item {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-height: 100px;
  }

  .partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  }

  .partner-item img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
  }

  .partner-item:hover img {
    transform: scale(1.1);
  }

  .partner-title {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #062f66;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .partners-section {
    background: white;
    padding: 3rem 0;
    margin: 0;
  }

  .partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
  }

  .partner-item {
    width: 100%;
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .partner-item img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
  }

  .partner-title {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #062f66;
    text-align: center;
  }
}

.btn-solution-discover {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid white;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-solution-discover:hover {
  border-bottom-width: 2px;
  opacity: 0.9;
  transform: translateX(3px);
}

/* ===== TESTIMONIALS BANNER ===== */
.testimonials-banner-section {
  padding: 4rem 5% 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.testimonials-banner-wrapper {
  margin-top: 4rem;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.testimonials-banner-wrapper::before,
.testimonials-banner-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-banner-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.testimonials-banner-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card-banner {
  min-width: 400px;
  max-width: 400px;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(6, 47, 102, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card-banner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(6, 47, 102, 0.2);
}

.testimonial-stars-banner {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2rem;
}

.testimonial-text-banner {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4A5568;
  font-style: italic;
  margin-bottom: 2rem;
  min-height: 90px;
}

.testimonial-author-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(6, 47, 102, 0.1);
}

.author-avatar-banner {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1576ad 0%, #062f66 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(6, 47, 102, 0.3);
}

.author-info-banner { flex: 1; }

.author-info-banner h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.3rem;
}

.author-info-banner p {
  font-size: 0.9rem;
  color: #718096;
}

/* ============================================================
   BANNIÈRE HERO ANIMÉE
   ============================================================ */
.hero-banner-animated {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, rgb(21, 118, 173) 0%, rgb(6, 47, 102) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 1px;
}

.hba-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hba-p {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: hbaFloat linear infinite;
}

.hba-p:nth-child(1)  { width: 6px;  height: 6px;  left: 8%;   animation-duration: 9s;  animation-delay: 0s;   }
.hba-p:nth-child(2)  { width: 4px;  height: 4px;  left: 20%;  animation-duration: 12s; animation-delay: -3s;  }
.hba-p:nth-child(3)  { width: 8px;  height: 8px;  left: 35%;  animation-duration: 8s;  animation-delay: -1s;  }
.hba-p:nth-child(4)  { width: 3px;  height: 3px;  left: 50%;  animation-duration: 14s; animation-delay: -5s;  }
.hba-p:nth-child(5)  { width: 5px;  height: 5px;  left: 65%;  animation-duration: 10s; animation-delay: -2s;  }
.hba-p:nth-child(6)  { width: 7px;  height: 7px;  left: 80%;  animation-duration: 11s; animation-delay: -4s;  }
.hba-p:nth-child(7)  { width: 4px;  height: 4px;  left: 92%;  animation-duration: 7s;  animation-delay: -6s;  }
.hba-p:nth-child(8)  { width: 6px;  height: 6px;  left: 14%;  animation-duration: 13s; animation-delay: -8s;  }
.hba-p:nth-child(9)  { width: 3px;  height: 3px;  left: 44%;  animation-duration: 16s; animation-delay: -7s;  }
.hba-p:nth-child(10) { width: 9px;  height: 9px;  left: 72%;  animation-duration: 9s;  animation-delay: -9s;  }

@keyframes hbaFloat {
  from { transform: translateY(700px) scale(0.8); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  to   { transform: translateY(-40px) scale(1.1); opacity: 0; }
}

.hba-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hbaShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hbaShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hba-geo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: hbaPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.hba-geo-1 { width: 600px; height: 600px; top: -220px; right: -140px; animation-delay: 0s; }
.hba-geo-2 { width: 360px; height: 360px; top: -120px; right: -40px;  animation-delay: 1s; }
.hba-geo-3 { width: 440px; height: 440px; bottom: -200px; left: -100px; animation-delay: 2s; }

@keyframes hbaPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.04); }
}

.hba-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 90px 40px;
  width: 100%;
}

.hba-label {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  animation: hbaFadeDown 1s ease both;
}

.hba-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 5vw, 62px);
  color: #fff;
  line-height: 1.4;
  animation: hbaFadeDown 1s ease 0.2s both;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hba-brand {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  animation: hbaBrandColor 5s ease-in-out infinite;
}

@keyframes hbaBrandColor {
  0%   { color: #ffffff;  text-shadow: 0 0 24px rgba(255,255,255,0.5); }
  25%  { color: #7dd3fc;  text-shadow: 0 0 24px rgba(125,211,252,0.6); }
  50%  { color: #bae6fd;  text-shadow: 0 0 24px rgba(186,230,253,0.5); }
  75%  { color: #38bdf8;  text-shadow: 0 0 24px rgba(56,189,248,0.6); }
  100% { color: #ffffff;  text-shadow: 0 0 24px rgba(255,255,255,0.5); }
}

.hba-pronoun {
  position: absolute;
  left: 0; bottom: 0;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 600;
  font-size: inherit;
  color: rgba(186, 230, 253, 0.95);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(14px);
  line-height: 1.4;
}

.hba-pronoun.active { animation: hbaWordIn  0.45s cubic-bezier(.22,1,.36,1) forwards; }
.hba-pronoun.exit   { animation: hbaWordOut 0.35s cubic-bezier(.55,0,1,.45) forwards; }

.hba-carousel-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hbaFadeDown 1s ease 0.4s both;
  padding: 10px 0;
}

.hba-word-slot {
  position: relative;
  height: 100px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hba-word {
  position: absolute;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  white-space: nowrap;
}

.hba-word.active { animation: hbaWordIn  0.45s cubic-bezier(.22,1,.36,1) forwards; }
.hba-word.exit   { animation: hbaWordOut 0.35s cubic-bezier(.55,0,1,.45) forwards; }

@keyframes hbaWordIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hbaWordOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-14px); }
}

@keyframes hbaFadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION PLATEFORMES SOCIALES ===== */
.social-platforms-section {
  background: #ffffff;
  padding: 5rem 5%;
}

.social-platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.social-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.8rem 1.5rem;
  background: #f8f9fa;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 110px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.social-platform-item:hover {
  background: #ffffff;
  border-color: #062f66;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(6, 47, 102, 0.15);
}

.social-platform-item img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-platform-item:hover img {
  transform: scale(1.1);
}

.social-platform-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #062f66;
  text-align: center;
}

/* ── Nav témoignages : cache sur desktop ── */
.testimonials-mobile-nav {
  display: none;
}

/* ── PACK INCLUDES ROW ── */
.pack-includes-row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin: 1.2rem 0 1.8rem;
  flex-wrap: nowrap;
}

.pack-includes-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  padding: 0.45rem 0.7rem;
  background: rgba(6, 47, 102, 0.05);
  border: 1.5px solid rgba(6, 47, 102, 0.12);
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: default;
  min-width: 0;
}

.pack-includes-item:hover {
  background: rgba(21, 118, 173, 0.1);
  border-color: #1576ad;
  box-shadow: 0 2px 8px rgba(21, 118, 173, 0.12);
}

.pack-includes-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.pack-includes-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #062f66;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}

.pack-video-mobile {
  display: none;
}