/* =============================================
   EXTERNALIS TEAM — style.css
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: "Plus Jakarta Sans", sans-serif; background: #0F161E; }
ul { list-style: none; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* =============================================
   HERO SECTION (header + présentation)
   ============================================= */
.hero-section {
  position: relative;
  width: 1440px;
  height: 799px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* --- Background image --- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Fallback gradient si l'image n'est pas encore chargée */
  background: linear-gradient(135deg, #0a1a6e 0%, #12085a 50%, #6b1a6b 100%);
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Cache l'img cassée et garde le gradient fallback */
.hero-bg-img[src="hero-bg.jpg"]:not([complete]) { display: none; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: relative;
  z-index: 10;
  padding: 18px 40px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 66px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.06);
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 38px;
  width: auto;
}
/* Fallback texte logo */
.logo-fallback {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  color: #002D6D;
  letter-spacing: 0.02em;
}
.logo-x { color: #00BFE5; }
/* Masque le fallback si l'image logo charge bien */
.logo img:not([src="logo.svg"]) ~ .logo-fallback,
.logo img[src]:not([src=""]) ~ .logo-fallback { display: none; }

/* --- Nav --- */
.nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0F161E;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover { color: #002D6D; }
.nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown placeholder */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #FFF;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 18px;
  z-index: 100;
}
.nav-item.open .dropdown { display: block; }

/* --- Header CTA --- */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-contact {
  color: #002D6D;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.header-contact:hover { opacity: 0.75; }

/* ---- Boutons réutilisables ---- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Header buttons */
.btn-outline-dark {
  height: 46px;
  padding: 16px;
  border: 1px solid #002D6D;
  background: transparent;
  color: #002D6D;
}
.btn-dark {
  height: 46px;
  padding: 16px;
  background: #002D6D;
  color: #FFF;
  border: none;
}

/* Hero buttons */
.btn-cyan {
  height: 62px;
  padding: 16px 30px;
  background: #00BFE5;
  color: #000;
  border: none;
}
.btn-outline-cyan {
  height: 62px;
  padding: 16px 30px;
  border: 2px solid #00BFE5;
  background: transparent;
  color: #FFF;
}

/* =============================================
   HERO CONTENT
   ============================================= */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex: 1;
  padding: 78px 80px 0;
}

/* ---- Colonne gauche ---- */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}

.hero-title {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 65px;
  font-weight: 800;
  line-height: 100%;
}
.hero-italic {
  font-family: "Playwrite US Modern", cursive;
  font-size: 65px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  color: #FFF;
}

.hero-desc {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 4px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-label {
  color: rgba(255,255,255,0.70);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-value {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: normal;
}
.stat-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-sub {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.stat-icon {
  width: 36px;
  height: 36px;
  color: #FFF;
  margin-left: 40px;
  stroke-width: 1.5;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.3);
  align-self: center;
}

/* ---- Colonne droite ---- */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  padding-top: 20px;
}

/* Photos */
.hero-photos {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hero-photo {
  width: 184px;
  height: 272px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255,255,255,0.12);
  /* Placeholder couleur si image pas encore uploadée */
  min-width: 184px;
}
/* Placeholder fallback */
.hero-photo[src="photo1.jpg"],
.hero-photo[src="photo2.jpg"],
.hero-photo[src="photo3.jpg"] {
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
}


/* Step cards */
.hero-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 575px;
  height: 75px;
  padding: 0 22px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.step-num {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  flex-shrink: 0;
  min-width: 28px;
}
.step-text {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  flex: 1;
}
.step-icon {
  width: 34px;
  height: 34px;
  color: #002D6D;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* =============================================
   HAMBURGER MENU
   ============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 200;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #002D6D;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 9000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 32px 40px;
  animation: fadeInMenu 0.25s ease;
}

.mobile-menu.open { display: flex; }

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav-link {
  color: #002964;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mobile-nav-link:hover { opacity: 0.6; }

.mobile-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.mobile-btn {
  width: 100%;
  height: 54px;
  justify-content: center;
  font-size: 15px;
}

/* =============================================
   CHAOS SECTION
   ============================================= */
.chaos-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 90px 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.chaos-title {
  color: rgba(0, 0, 0, 0.46);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
  width: 880px;
}
.chaos-title-accent {
  color: #002964;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}
.chaos-desc {
  color: #3F4955;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  max-width: 740px;
}
.chaos-desc-bold {
  color: #000;
  font-weight: 600;
}

.cc-outer {
  position: relative;
  width: 100%;
  margin-top: 32px;
}
.cc-clip {
  overflow: hidden;
  width: 100%;
  padding-bottom: 30px;
}
.cc-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cc-card {
  flex-shrink: 0;
  width: 308px;
  min-height: 220px;
  border-radius: 12px;
  background: #FFF;
  position: relative;
  transition: box-shadow 0.25s;
}
.cc-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: #00CAF3;
  border-radius: 12px 12px 0 0;
  transform: translateY(-100%);
  transition: transform 0.25s;
}
.cc-card:hover .cc-bar { transform: translateY(0); }
.cc-card:hover {
  background: #FFF;
  box-shadow: 0 8px 24px 0 rgba(0,0,0,0.10), -4px 0 16px 0 rgba(0,0,0,0.06);
}
.cc-inner {
  padding: 10px 28px 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cc-icon { width: 42px; height: 42px; 
margin-top: 30px;}
.cc-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}
.cc-text {
  color: #3F4955;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 262px;
}
.cc-next {
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F3F3F3;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cc-next:hover { background: #E5E5E5; }

.transition-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 80px;
}
.transition-title {
  width: 678px;
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.comp-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 80px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.comp-title {
  width: 960px;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}
.comp-title-muted {
  color: rgba(0, 0, 0, 0.46);
}
.comp-title-accent {
  color: #002964;
}

.comp-cards {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.comp-card {
  width: 411px;
  height: 471px;
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comp-card--grey {
  background: #F3F3F3;
}
.comp-card--dark {
  background: #001E48;
  border-radius: 16px;
}
.comp-card--photo {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}
.comp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comp-card-label {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}

.comp-logo {
  width: 187.448px;
  height: 49.562px;
  object-fit: contain;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.comp-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-card--grey .comp-item span {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.comp-card--dark .comp-item span {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.comp-btn {
  display: flex;
  width: 244px;
  height: 62px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #002D6D;
  color: #002D6D;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.comp-btn:hover {
  background: #002D6D;
  color: #FFF;
}

.modeles-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 80px 80px 10x;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.modeles-title {
  width: 799px;
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.modeles-grid {
  display: grid;
  grid-template-columns: repeat(3, 411px);
  gap: 20px;
}

.modeles-card {
  width: 411px;
  height: 353px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.04);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modeles-card--photo {
  padding: 0;
  overflow: hidden;
}
.modeles-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modeles-card-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 40px;
}

.modeles-card-text {
  color: #3F4955;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 298px;
  margin-top: 10px;

}

.modeles-btn {
  display: inline-flex;
  height: 62px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #002D6D;
  color: #002D6D;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.modeles-btn:hover {
  background: #002D6D;
  color: #FFF;
}

.metiers-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 80px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.metiers-title {
  width: 799px;
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.metiers-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}

/* --- Nav gauche --- */
.metiers-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.metiers-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 411px;
  height: 83px;
  padding: 0 24px;
  border-radius: 16px;
  cursor: pointer;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  transition: box-shadow 0.2s, background 0.2s;
}

.metiers-nav-item.active {
  background: #FFF;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  font-weight: 700;
}

.metiers-nav-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

/* --- Détail droite --- */
.metiers-detail {
  width: 852px;
  min-height: 417px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.04);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.metiers-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.metiers-detail-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metiers-detail-title-wrap { flex: 1; }

.metiers-detail-title {
  width: 287px;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
}

.metiers-detail-reporting {
  color: #8C8C8C;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  flex-shrink: 0;
}

.metiers-detail-body {
  display: flex;
  gap: 40px;
  background: #F8F8F8;
  border-radius: 12px;
  padding: 28px 32px;
}

.metiers-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metiers-col-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}

.metiers-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.metiers-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.metiers-list li svg { flex-shrink: 0; }
.metiers-list li span {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.secteurs-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 30px 80px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.secteurs-title {
  width: 799px;
  color: #002964;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.secteurs-outer {
  position: relative;
  width: 100%;
}

.secteurs-clip {
  overflow: hidden;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 90px;
}

.secteurs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.secteurs-card {
  flex-shrink: 0;
  width: 232px;
  height: 158px;
  border-radius: 13px;
  background: #FFF;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.secteurs-card-text {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}

.secteurs-next {
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F3F3F3;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.secteurs-next:hover { background: #E5E5E5; }

.processus-section {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  padding: 80px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  overflow: hidden;
}

.processus-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0a1a3e 0%, #1a0a3e 50%, #0a3e3e 100%);
}
.processus-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.processus-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.processus-title {
  width: 738px;
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
}

.processus-desc {
  width: 587px;
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

/* Carte principale */
.processus-card {
  position: relative;
  z-index: 2;
  width: 1303px;
  height: 531px;
  border-radius: 16px;
  background: #FFF;
  display: flex;
  overflow: hidden;
}

/* Colonne gauche */
.processus-left {
  flex: 0 0 568px;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

/* Dots */
.processus-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.processus-dot {
  height: 9px;
  border-radius: 4.5px;
  background: #B4B4B4;
  transition: width 0.3s, background 0.3s;
}
.processus-dot.active {
  width: 41px;
  background: #000;
}
.processus-dot:not(.active) {
  width: 9px;
}

/* Icône */
.processus-icon-wrap {
  width: 61px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.processus-icon-wrap svg {
  width: 61px;
  height: 61px;
}

/* Titre étape */
.processus-step-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

/* Texte étape */
.processus-step-text {
  width: 315px;
  color: #3F4955;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Boutons nav */
.processus-nav-btns {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.processus-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F3F3F3;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.processus-btn:hover { background: #E5E5E5; }
.processus-btn--prev { opacity: 0.4; }
.processus-btn--prev.active-btn { opacity: 1; }

/* Colonne droite */
.processus-right {
  flex: 1;
  padding: 22px 22px 22px 0;
}
.processus-photo {
  width: 735px;
  height: 487px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.resultats-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 100px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.resultats-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.resultats-outer {
  position: relative;
  width: 100%;
}

.resultats-clip {
  overflow: hidden;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 24px;
}

.resultats-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resultats-card {
  flex-shrink: 0;
  width: 411px;
  height: auto;
  border-radius: 16px;
  border: 1px solid #A3B9D5;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.04);
  padding: 36px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resultats-card-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.resultats-prix-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.resultats-prix {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}

.resultats-par-mois {
  color: #5E5E5E;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.resultats-barre {
  color: #767676;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: line-through;
  margin-left: auto;
}

.resultats-sep {
  width: 307px;
  height: 1px;
  background: #E2E2E2;
}

.resultats-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.resultats-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.resultats-list li svg { flex-shrink: 0; }

.resultats-list li span {
  color: #5E5E5E;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.resultats-next {
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F3F3F3;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.resultats-next:hover { background: #E5E5E5; }

.garanties-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 50px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.garanties-title {
  width: 829px;
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
    justify-content: center;
}

.garanties-layout {
  display: flex;
  margin-left: 500px;
  align-items: center;
  gap: 80px;
  width: 100%;
  }

.garanties-photo-wrap {
  flex-shrink: 0;
}

.garanties-photo {
  width: 411px;
  height: 539px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.garanties-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.garanties-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.garanties-item svg { flex-shrink: 0; }

.garanties-item-text {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.faq-section {
  width: 1440px;
  margin: 0 auto;
  background: #FFF;
  padding: 50px 80px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.faq-title {
  width: 829px;
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 961px;
}

.faq-item {
  width: 961px;
  border-radius: 16px;
  border: 1px solid #A3B9D5;
  background: #FFF;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 115px;
  cursor: pointer;
}

.faq-question {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
}

.faq-answer {
  display: none;
  padding: 0 32px 32px;
}

.faq-answer p {
  color: #5E5E5E;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 141%;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-section {
  position: relative;
  width: 1440px;
  height: 764px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #020e3a 0%, #0a0a5e 50%, #4a0a6e 100%);
}
.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 80px;
  gap: 60px;
}

/* Colonne gauche */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-title {
  width: 444px;
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 65px;
  font-weight: 800;
  line-height: 100%;
}

.contact-subtitle {
  color: #E3E942;
  font-family: "Playwrite US Modern", cursive;
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
}

.contact-desc {
  width: 479px;
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.contact-btn-call {
  display: flex;
  height: 62px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  background: #00BFE5;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s;
}
.contact-btn-call:hover { opacity: 0.85; }

/* Colonne droite : formulaire */
.contact-form-box {
  width: 575px;
  height: 605px;
  border-radius: 10px;
  background: #FFF;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
}

.contact-form-title {
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-input {
  border: none;
  outline: none;
  background: transparent;
  color: #767676;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding: 8px 0;
  width: 100%;
}
.contact-input::placeholder {
  color: #767676;
}

.contact-sep {
  width: 469px;
  height: 1px;
  background: #D7D7D7;
  margin-top: 8px;
}

.contact-btn-send {
  display: flex;
  height: 62px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  background: #00BFE5;
  border: none;
  cursor: pointer;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  width: fit-content;
  transition: opacity 0.2s;
  margin-top: auto;
}
.contact-btn-send:hover { opacity: 0.85; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #FFF;
  border-radius: 16px;
  padding: 48px 40px;
  width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.modal-icon { display: flex; }

.modal-title {
  color: #002964;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

.modal-text {
  color: #3F4955;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.modal-btn {
  margin-top: 8px;
  display: inline-flex;
  height: 52px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #00BFE5;
  border: none;
  cursor: pointer;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.modal-btn:hover { opacity: 0.85; }