/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --orange:        #F0A000;
  --orange-light:  #F5B830;
  --orange-dark:   #D08800;
  --teal:          #4EC8C5;
  --teal-dark:     #35ADAA;
  --dark:          #1A1A1A;
  --darker:        #111111;
  --dark-card:     #252525;
  --dark-nav:      #1E1E1E;
  --pink:          #E91E8C;
  --white:         #FFFFFF;
  --gray-100:      #F8F8F8;
  --gray-200:      #F0F0F0;
  --gray-300:      #E0E0E0;
  --gray-500:      #888888;
  --gray-700:      #444444;
  --text-dark:     #222222;
  --text-muted:    #666666;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.18);
  --transition:    0.25s ease;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TEXT UTILITIES
   ============================================================ */
.text-orange { color: var(--orange); }
.text-teal   { color: var(--teal); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.section-title--light { color: var(--white); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  position: relative;
  z-index: 100;
}

.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 38px;
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 8px;
  height: 100%;
  transition: color var(--transition);
  white-space: nowrap;
}
.topbar__link:hover { color: var(--white); }
.topbar__link strong { color: var(--white); font-weight: 700; }
.topbar__icon { display: flex; align-items: center; opacity: 0.9; }
.topbar__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--dark-nav);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  height: 68px;
}

/* Logo */
.navbar__logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-right: 28px;
  flex-shrink: 0;
}
.logo-local { color: var(--white); }
.logo-dot   { color: var(--orange); }

/* Menu */
.navbar__menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-arrow {
  transition: transform var(--transition);
  opacity: 0.7;
  flex-shrink: 0;
}
.nav-item.active .nav-arrow,
.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-btn-orange {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-btn-orange:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #2A2A2A;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  border-top: 3px solid var(--orange);
  z-index: 300;
}

.dropdown--wide {
  min-width: 260px;
}

.nav-item:hover .dropdown,
.nav-item.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}
.dropdown__item:last-child { border-bottom: none; }
.dropdown__item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 26px;
}
.dropdown__item svg { color: var(--orange); opacity: 0; transition: opacity var(--transition); flex-shrink: 0; }
.dropdown__item:hover svg { opacity: 1; }

/* Subdropdown */
.dropdown__item.has-subdropdown {
  position: relative;
  cursor: default;
}
.dropdown__item.has-subdropdown > svg {
  opacity: 0.5;
  transform: rotate(-90deg);
}
.subdropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: #2A2A2A;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  border-top: 3px solid var(--teal);
  z-index: 400;
}
.dropdown__item.has-subdropdown:hover .subdropdown,
.dropdown__item.has-subdropdown:focus-within .subdropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.dropdown__item.has-subdropdown:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 26px;
}

/* CTAs */
.navbar__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 30px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--call {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 16px;
}
.btn--call:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--contact {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
}
.btn--contact:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(240,160,0,0.35);
}

.btn--orange-lg {
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  border: none;
}
.btn--orange-lg:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,160,0,0.35);
}

.btn--orange-sm {
  background: var(--orange);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  border: none;
}
.btn--orange-sm:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(240,160,0,0.3);
}

.btn--teal-sm {
  background: var(--teal);
  color: var(--darker);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  border: none;
  display: inline-block;
}
.btn--teal-sm:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #0B1220 0%, #142238 35%, #1B1A32 65%, #0F1923 100%);
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
}

/* --- Fond pattern subtil --- */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* --- Glows décoratifs --- */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  top: -120px; right: 5%;
  background: rgba(240,160,0,0.12);
}
.hero__glow--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -5%;
  background: rgba(78,200,197,0.08);
}

/* --- Layout --- */
.hero__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ===== COLONNE TEXTE ===== */
.hero__content {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(240,160,0,0.08);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(240,160,0,0.18);
  backdrop-filter: blur(4px);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  animation: heroPulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__ctas .btn--orange-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__ctas .btn--orange-lg svg {
  transition: transform 0.3s ease;
}
.hero__ctas .btn--orange-lg:hover svg {
  transform: translateX(4px);
}

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn--outline-light:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(240,160,0,0.06);
}

/* --- Trust / Social proof --- */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__trust-avatars {
  display: flex;
}
.hero__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
  border: 2.5px solid #142238;
  margin-left: -8px;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__trust-text {
  display: flex;
  flex-direction: column;
}
.hero__trust-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  line-height: 1;
}
.hero__trust-text span {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 2px;
}

/* ===== COLONNE VISUELLE ===== */
.hero__visual {
  flex: 0 0 500px;
  position: relative;
  height: 560px;
}

/* --- Image principale --- */
.hero__img-frame {
  position: relative;
  width: 420px;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.06);
  margin-left: auto;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,25,35,0.35) 100%);
  pointer-events: none;
}

/* --- Cartes flottantes --- */
.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20,34,56,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 3;
  animation: heroFloat 4s ease-in-out infinite;
}
.hero__float-card--stats {
  bottom: 60px;
  left: -20px;
  animation-delay: 0s;
}
.hero__float-card--sites {
  top: 40px;
  left: 0;
  animation-delay: 2s;
}
.hero__float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(240,160,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__float-icon--teal {
  background: rgba(78,200,197,0.12);
}
.hero__float-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.hero__float-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* --- Badge agences flottant --- */
.hero__float-badge {
  position: absolute;
  top: -10px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(240,160,0,0.35);
  z-index: 3;
  animation: heroFloat 4s ease-in-out infinite;
  animation-delay: 1s;
}

/* --- Déco anneau + dots --- */
.hero__deco-ring {
  position: absolute;
  bottom: -10px;
  right: -15px;
  width: 120px; height: 120px;
  border: 3px solid rgba(240,160,0,0.15);
  border-radius: 50%;
  z-index: 0;
}
.hero__deco-dots {
  position: absolute;
  top: 10px;
  left: 40px;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(78,200,197,0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 0;
}

/* --- Animations Hero --- */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ============================================================
   EXPERTISES
   ============================================================ */
.expertises {
  padding: 5rem 0;
  background: var(--gray-100);
}

.section-label {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: center;
}

.expertises__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 1.5rem auto 3rem;
}

.expertises__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.expertise-card__icon {
  margin-bottom: 1.25rem;
}

.expertise-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.expertise-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.expertise-card__link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 1rem;
}

.expertises__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn--outline {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  background: var(--gray-100);
  padding: 80px 0;
}

.solutions__header {
  text-align: center;
  margin-bottom: 50px;
}

.solutions__label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.solutions__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.solutions__title span { color: var(--text-dark); }
.solutions__title .separator {
  color: var(--orange);
  font-weight: 900;
}

/* Solution Cards */
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: transform var(--transition), box-shadow var(--transition);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.solution-card--audience {
  grid-template-columns: 1fr 360px;
  border-left: 5px solid var(--orange);
}

.solution-card__body {
  padding: 40px 44px;
}

.solution-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.solution-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* Features row */
.solution-card__features {
  display: flex;
  gap: 32px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  border: 2px solid var(--gray-200);
}

.feature-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

/* Two columns */
.solution-card__two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin: 20px 0;
}

.solution-card__three-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 24px;
  margin: 20px 0;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solution-list li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding-left: 16px;
  position: relative;
}
.solution-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

/* Icon row */
.solution-card__icons {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 80px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  border: 2px solid var(--gray-200);
  transition: background var(--transition), border-color var(--transition);
}
.icon-item:hover .icon-circle {
  background: rgba(240,160,0,0.1);
  border-color: var(--orange);
}

.icon-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* SEA footer */
.sea__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Google Partner Badge */
.google-partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
}
.google-partner-badge__logo {
  display: flex;
  gap: 1px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.g-blue  { color: #4285F4; }
.g-red   { color: #EA4335; }
.g-yellow{ color: #FBBC05; }
.g-green { color: #34A853; }
.google-partner-badge__text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Visual screenshot */
.solution-card__visual {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 300px;
}

.solution-card__visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.solution-card__mockup {
  width: 100%;
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.mockup-bar {
  background: var(--gray-200);
  padding: 8px 12px;
  display: flex;
  gap: 6px;
}
.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}
.mockup-bar span:first-child  { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FEBC2E; }
.mockup-bar span:nth-child(3) { background: #28C840; }

.mockup-content { padding: 16px; }
.mockup-line {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 8px;
}
.mockup-line--title { height: 14px; width: 70%; background: rgba(240,160,0,0.3); }
.mockup-line--short { width: 50%; }

.mockup-chart {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  margin-top: 16px;
  height: 60px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--orange), var(--orange-light));
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
}

/* ============================================================
   ÉTAPES
   ============================================================ */
.etapes {
  background: var(--white);
  padding: 80px 0;
}

.etapes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.etape-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.etape-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.etape-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240,160,0,0.2);
}
.etape-card:hover::before { transform: scaleX(1); }

.etape-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.etape-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(240,160,0,0.2);
  line-height: 1;
}

.etape-icon {
  width: 52px;
  height: 52px;
  background: rgba(240,160,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.etape-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.etape-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   POURQUOI CHOISIR
   ============================================================ */
.pourquoi {
  background: var(--gray-100);
  padding: 80px 0;
}

.pourquoi__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.pourquoi__left {
  display: flex;
  justify-content: center;
}

.pourquoi__visual {
  position: relative;
  width: 280px;
  height: 320px;
  background: linear-gradient(135deg, #1A2840, #2A3850);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.pourquoi__avatar {
  width: 120px;
  height: 120px;
  background: rgba(240,160,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(240,160,0,0.3);
}

.pourquoi__badge-notif {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(240,160,0,0.4);
}
.pourquoi__badge-notif span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
}

.pourquoi__intro {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pourquoi__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-bottom: 2rem;
}

.pourquoi__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pourquoi__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pourquoi__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

/* Atouts */
.pourquoi__atouts {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 2rem;
  border: 1px solid var(--gray-200);
}

.pourquoi__atouts h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.atouts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.atout-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   AGENCES
   ============================================================ */
.agences {
  background: var(--dark);
  padding: 80px 0;
  color: var(--white);
}

.agences__subtitle {
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.agences__grid {
  display: grid;
  grid-template-columns: 1fr 220px 280px;
  gap: 40px;
  align-items: start;
}

/* France Map */
.agences__map {
  display: flex;
  justify-content: center;
}

.france-map {
  width: 100%;
  max-width: 400px;
}

.france-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.france-outline {
  transition: opacity 0.3s ease;
}

/* Pulse animation on dots */
.agence-pulse {
  fill: #4EC8C5;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: agencePulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes agencePulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

/* Dots */
.agence-dot {
  cursor: pointer;
  transition: filter 0.3s ease;
}
.agence-dot:hover {
  filter: drop-shadow(0 0 8px rgba(78, 200, 197, 0.8));
}
.agence-dot--main {
  filter: drop-shadow(0 0 8px rgba(240, 160, 0, 0.6));
}
.agence-dot--main:hover {
  filter: drop-shadow(0 0 12px rgba(240, 160, 0, 0.9));
}

/* City labels */
.agence-label {
  fill: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  transition: fill 0.3s ease;
}
.agence-group:hover .agence-label {
  fill: rgba(255, 255, 255, 1);
}

/* Villes list */
.agences__list-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.agences__villes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ville-link {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
  cursor: pointer;
}
.ville-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 18px;
}
.ville-link--active {
  color: var(--orange) !important;
  font-weight: 700;
  background: rgba(240,160,0,0.1) !important;
}

/* Agence detail */
.agence-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid var(--orange);
}

.agence-card__ville {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.agence-card__ville::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.agence-card__addr,
.agence-card__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.agence-card__addr svg,
.agence-card__tel svg { color: var(--orange); flex-shrink: 0; }
.agence-card__tel a { color: rgba(255,255,255,0.9); font-weight: 600; }
.agence-card__tel a:hover { color: var(--orange); }

.agence-card .btn--teal-sm { margin-top: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--gray-100);
  padding: 80px 0;
}

.faq .section-title,
.expertises .section-title { text-align: center; }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: rgba(240,160,0,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--gray-100); }
.faq-item.open .faq-question { background: var(--gray-100); color: var(--orange); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--orange);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 4px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, #1A2840 0%, #0F1923 100%);
  padding: 80px 0;
  color: var(--white);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-section__left h2 { color: var(--white); }
.contact-section__left > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-section__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.contact-info-item a { color: rgba(255,255,255,0.9); }
.contact-info-item a:hover { color: var(--orange); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { display: flex; flex-direction: column; }

.form-input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--white);
  font-family: var(--font);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-select option { background: var(--dark-nav); color: var(--white); }

.form-textarea { resize: vertical; min-height: 100px; }

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.5);
}
.remember-me input[type="checkbox"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-feedback {
  font-size: 0.88rem;
  padding: 0;
  border-radius: var(--radius-sm);
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(52,168,83,0.15);
  border: 1px solid rgba(52,168,83,0.3);
  color: #52C87A;
  padding: 12px 16px;
}
.form-feedback.error {
  display: block;
  background: rgba(234,67,53,0.15);
  border: 1px solid rgba(234,67,53,0.3);
  color: #FF6B6B;
  padding: 12px 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--darker);
}

.footer__main {
  padding: 60px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer__contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--orange); }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer__links a:hover { color: var(--orange); padding-left: 4px; }

.footer__stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__bottom {
  background: #0A0A0A;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 12px;
}
.footer__bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }

.footer__legal {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}
.footer__pro-link {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__pro-link:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   NAVBAR SCROLL EFFECT
   ============================================================ */
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .navbar__ctas .btn--call { display: none; }
  .hero__inner { flex-direction: column; gap: 40px; text-align: center; }
  .hero__content { text-align: center; }
  .hero__desc { max-width: 600px; margin: 0 auto 2rem; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { flex: none; width: 100%; max-width: 480px; height: 480px; margin: 0 auto; }
  .hero__img-frame { width: 360px; height: 440px; margin: 0 auto; }
  .hero__float-card--stats { left: 0; bottom: 30px; }
  .hero__float-card--sites { left: 10px; top: 20px; }
  .hero__float-badge { right: 10px; top: -5px; }
  .hero__deco-ring { bottom: -5px; right: 10px; width: 80px; height: 80px; }
  .solution-card--audience { grid-template-columns: 1fr; }
  .solution-card__visual { min-height: 200px; }
  .pourquoi__grid { grid-template-columns: 1fr; }
  .pourquoi__left { display: none; }
  .agences__grid { grid-template-columns: 1fr 1fr; }
  .agences__map { grid-column: 1 / -1; }
  .contact-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .expertises__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }

  .navbar__menu { display: none; flex-direction: column; align-items: stretch; }
  .navbar__menu.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark-nav);
    padding: 16px;
    z-index: 199;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
  }
  .navbar__hamburger { display: flex; }
  .navbar__ctas { display: none; }

  .navbar__inner { position: relative; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border-top: none;
    border-radius: var(--radius-sm);
    display: none;
    margin: 4px 0;
  }
  .nav-item.dropdown-open .dropdown { display: block; }

  .subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: rgba(255,255,255,0.03);
    min-width: 0;
    margin: 0;
    padding-left: 12px;
  }
  .dropdown__item.has-subdropdown > svg { display: none; }

  .nav-link { padding: 12px 14px; }

  .hero__visual { max-width: 100%; height: 400px; }
  .hero__img-frame { width: 280px; height: 340px; }
  .hero__float-card { padding: 10px 14px; border-radius: 12px; }
  .hero__float-card--stats { left: -5px; bottom: 30px; }
  .hero__float-card--sites { left: 5px; top: 10px; }
  .hero__float-number { font-size: 1rem; }
  .hero__float-icon { width: 36px; height: 36px; border-radius: 10px; }
  .hero__float-icon svg { width: 18px; height: 18px; }
  .hero__float-badge { font-size: 0.7rem; padding: 8px 14px; right: 0; top: -8px; }
  .hero__deco-ring { display: none; }
  .hero__deco-dots { display: none; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn--orange-lg,
  .hero__ctas .btn--outline-light { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .hero__badge { font-size: 0.7rem; }
  .hero__trust { flex-direction: column; gap: 8px; }
  .expertises__grid { grid-template-columns: repeat(2, 1fr); }

  .solutions__title { font-size: 1.2rem; flex-direction: column; gap: 4px; }
  .solutions__title .separator { display: none; }

  .solution-card__body { padding: 28px 24px; }
  .solution-card__two-cols,
  .solution-card__three-cols { grid-template-columns: 1fr; }

  .etapes__grid { grid-template-columns: 1fr; }

  .pourquoi__cols { grid-template-columns: 1fr; gap: 12px; }
  .atouts__grid { grid-template-columns: 1fr; }

  .agences__grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-links { gap: 4px 10px; }

  .solution-card__features { gap: 16px; }
  .solution-card__icons { gap: 12px; }
}

@media (max-width: 480px) {
  .navbar__logo { font-size: 1.3rem; }
  .hero__title { font-size: 1.8rem; }
  .solution-card__features { flex-direction: column; }
  .sea__footer { flex-direction: column; }
}

/* ============================================================
   CHIFFRES CLÉS
   ============================================================ */
.chiffres {
  padding: 4rem 0;
  background: var(--orange);
  color: var(--white);
}

.chiffres__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.chiffres__disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.chiffre-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.chiffre-item__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.chiffre-item__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.chiffre-item__suffix {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-left: 2px;
}

.chiffre-item__label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* ============================================================
   RÉFÉRENCES
   ============================================================ */
.references {
  padding: 5rem 0;
  background: var(--gray-100);
}

.references__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.references__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.ref-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ref-card__visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #1a1a1a;
}
.ref-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: object-position 3s ease-in-out;
}
.ref-card:hover .ref-card__visual img {
  object-position: bottom center;
}

.ref-card__mockup {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.ref-card__mockup .mockup-bar {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: #2a2a2a;
}

.ref-card__mockup .mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}

.ref-card__mockup .mockup-bar span:first-child { background: #ff5f56; }
.ref-card__mockup .mockup-bar span:nth-child(2) { background: #ffbd2e; }
.ref-card__mockup .mockup-bar span:nth-child(3) { background: #27c93f; }

.ref-card__mockup .mockup-content {
  padding: 16px;
}

.ref-card__mockup .mockup-line {
  height: 8px;
  background: #333;
  border-radius: 4px;
  margin-bottom: 8px;
}

.ref-card__mockup .mockup-line--title {
  width: 60%;
  height: 10px;
  background: var(--orange);
}

.ref-card__mockup .mockup-line--short {
  width: 40%;
}

.ref-card__body {
  padding: 1.5rem;
}

.ref-card__tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.ref-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ref-tag--orange {
  background: rgba(240, 160, 0, 0.12);
  color: var(--orange-dark);
}

.ref-tag--teal {
  background: rgba(78, 200, 197, 0.12);
  color: var(--teal-dark);
}

.ref-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.ref-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.references__cta {
  text-align: center;
}

/* ============================================================
   NOUS REJOINDRE
   ============================================================ */
.rejoindre {
  padding: 5rem 0;
  background: var(--dark);
  color: var(--white);
}

.rejoindre__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
}

.rejoindre__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.rejoindre__perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.rejoindre__perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.rejoindre__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rejoindre__icon-group {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(240, 160, 0, 0.08);
  border: 2px solid rgba(240, 160, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 900px) {
  .chiffres__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .references__grid { grid-template-columns: 1fr; max-width: 500px; }
  .rejoindre__grid { grid-template-columns: 1fr; }
  .rejoindre__visual { display: none; }
}

@media (max-width: 600px) {
  .chiffres__grid { grid-template-columns: repeat(2, 1fr); }
  .chiffres { padding: 3rem 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
