/* ═══════════════════════════════════════════════════════
   SONERGIA — Design System & Global Styles
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ──────────────────────────────────────── */
:root {
  --teal: #06556e;
  --teal-light: #0a7a9e;
  --teal-dark: #044058;
  --orange: #f4a008;
  --orange-hover: #e09007;
  --white: #ffffff;
  --gray-soft: #f4f8fa;
  --gray-text: #4a5568;
  --gray-mid: #e2edf2;
}

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

body {
  font-family: 'Nunito Sans', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
nav {
  background: #fff;
  border-bottom: 1px solid var(--gray-mid);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(6, 85, 110, .07);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

/* ── Menu principal ── */
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  height: 68px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links>li {
  position: relative;
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-links>li>a {
  text-decoration: none;
  color: var(--gray-text);
  font-weight: 700;
  font-size: .82rem;
  padding: 0 14px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li:hover>a {
  color: var(--teal);
}

.nav-links>li>a.active {
  color: var(--teal);
  border-bottom: 3px solid var(--orange);
}

.nav-links>li>a .chevron {
  font-size: .6rem;
  opacity: .5;
  transition: transform .2s;
}

.nav-links>li:hover>a .chevron {
  transform: rotate(180deg);
}

/* ── Dropdown ── */
.dropdown {
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--teal);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 48px rgba(6, 85, 110, .12);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 300;
}

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

.dropdown-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 8px 18px 4px;
  opacity: .6;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.dropdown a:hover,
.dropdown a.active {
  background: var(--gray-soft);
  color: var(--teal);
}

.dropdown a.active {
  color: var(--orange);
  font-weight: 800;
}

.dropdown a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-mid);
  flex-shrink: 0;
  transition: background .15s;
}

.dropdown a:hover .dot,
.dropdown a.active .dot {
  background: var(--orange);
}

.dropdown-divider {
  height: 1px;
  background: var(--gray-mid);
  margin: 6px 0;
}

/* ── Dropdown large (Nos Solutions) ── */
.dropdown-wide {
  min-width: 320px;
  left: 0;
  transform: translateX(0) translateY(-6px);
}

.nav-links>li:hover .dropdown-wide {
  transform: translateX(0) translateY(0);
}

/* ── Boutons droite ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-btn-particulier {
  color: var(--teal);
  border: 1.5px solid var(--teal);
  background: transparent;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.nav-btn-particulier:hover {
  background: var(--teal);
  color: #fff;
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 14px 80px;
  font-size: .82rem;
  color: #888;
  background: var(--gray-soft);
  border-bottom: 1px solid var(--gray-mid);
}

.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  background: var(--gray-soft);
  padding: 80px 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: var(--teal);
  border-radius: 50%;
  opacity: .06;
}

.hero-tag {
  display: inline-block;
  background: rgba(6, 85, 110, .1);
  color: var(--teal);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.18;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(244, 160, 8, .3);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 160, 8, .4);
}

.btn-secondary {
  color: var(--teal);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  transition: color .2s;
}

.btn-secondary:hover {
  color: var(--teal-light);
}

.btn-white {
  background: #fff;
  color: var(--teal);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* ─── Hero stats ─────────────────────────────────────── */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-mid);
}

.stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--teal);
  display: block;
}

.stat-label {
  font-size: .82rem;
  color: #888;
  display: block;
  margin-top: 2px;
}

/* ─── Hero visual ────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--teal);
  position: relative;
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  background: rgba(244, 160, 8, .15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hero-badge-text strong {
  display: block;
  font-weight: 800;
  font-size: .95rem;
  color: var(--teal);
}

.hero-badge-text span {
  font-size: .78rem;
  color: #888;
}

/* ─── Secteurs pills ─────────────────────────────────── */
.secteurs-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — Layout global
   ═══════════════════════════════════════════════════════ */
.section {
  padding: 80px 80px;
}

.section-alt {
  background: var(--gray-soft);
}

.section-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-subtitle {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════
   ENJEUX — Cards
   ═══════════════════════════════════════════════════════ */
.enjeux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.enjeu-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--gray-mid);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.enjeu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 85, 110, .1);
  border-color: var(--teal-light);
}

.enjeu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  opacity: 0;
  transition: opacity .2s;
}

.enjeu-card:hover::before {
  opacity: 1;
}

.enjeu-icon {
  width: 52px;
  height: 52px;
  background: rgba(6, 85, 110, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.enjeu-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 10px;
}

.enjeu-card p {
  color: var(--gray-text);
  font-size: .9rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   SOLUTIONS — Cards
   ═══════════════════════════════════════════════════════ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--gray-mid);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(6, 85, 110, .12);
}

.solution-card.featured {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(244, 160, 8, .15);
}

.solution-card-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.solution-badge {
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(6, 85, 110, .08);
}

.solution-card.featured .solution-icon {
  background: rgba(244, 160, 8, .12);
}

.solution-card-body {
  padding: 20px 24px 24px;
  flex: 1;
}

.solution-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.solution-card .tagline {
  font-size: .85rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}

.solution-card p {
  color: var(--gray-text);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-benefits {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-benefits li {
  font-size: .85rem;
  color: var(--gray-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.solution-benefits li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.solution-card.featured .solution-benefits li::before {
  color: var(--orange);
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--teal);
  text-decoration: none;
  transition: gap .2s;
}

.solution-cta:hover {
  gap: 10px;
  color: var(--teal-light);
}

.solution-card.featured .solution-cta {
  color: var(--orange);
}

/* ─── Versement info band ────────────────────────────── */
.versement-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 14px;
  padding: 24px 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.versement-band .v-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.versement-band p {
  font-size: .9rem;
  line-height: 1.6;
  opacity: .92;
}

.versement-band strong {
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════════════════ */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.temoignage-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--gray-mid);
  position: relative;
}

.stars {
  color: var(--orange);
  font-size: .95rem;
  margin-bottom: 12px;
}

.temoignage-card p {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.temoignage-author strong {
  display: block;
  font-weight: 800;
  font-size: .88rem;
  color: var(--teal);
}

.temoignage-author span {
  font-size: .8rem;
  color: #999;
}

/* ═══════════════════════════════════════════════════════
   CROSS-SELL
   ═══════════════════════════════════════════════════════ */
.crosssell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.crosssell-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1.5px solid var(--gray-mid);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.crosssell-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(6, 85, 110, .1);
  border-color: var(--teal-light);
}

.crosssell-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(6, 85, 110, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.crosssell-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 6px;
}

.crosssell-card p {
  font-size: .85rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.crosssell-link {
  font-size: .85rem;
  font-weight: 800;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  padding: 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(244, 160, 8, .08);
}

.cta-section h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-section h2 em {
  font-style: normal;
  color: var(--orange);
}

.cta-section p {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-reassurance {
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, .6);
  padding: 28px 80px;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

footer a:hover {
  color: rgba(255, 255, 255, .8);
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

.fade-up-delay {
  animation: fadeUp .6s ease .15s both;
}

/* ═══════════════════════════════════════════════════════
   HERO HOME
   ═══════════════════════════════════════════════════════ */
.hero-home {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  padding: 100px 80px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: rgba(244, 160, 8, .08);
  border-radius: 50%;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .03);
  border-radius: 50%;
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-home-label {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  color: var(--orange);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-home h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}

.hero-home h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-home-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-home-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-home-trust {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  justify-content: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-home-trust .trust-item {
  text-align: center;
}

.hero-home-trust .trust-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange);
  display: block;
}

.hero-home-trust .trust-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  display: block;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   MISSION — Cards
   ═══════════════════════════════════════════════════════ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1.5px solid var(--gray-mid);
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 85, 110, .1);
  border-color: var(--teal-light);
}

.mission-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  opacity: 0;
  transition: opacity .2s;
}

.mission-card:hover::after {
  opacity: 1;
}

.mission-icon {
  width: 64px;
  height: 64px;
  background: rgba(6, 85, 110, .08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}

.mission-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 10px;
}

.mission-card p {
  color: var(--gray-text);
  font-size: .88rem;
  line-height: 1.6;
}

/* ─── INTRO CEE ──────────────────────────────────────── */
.cee-intro {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  margin-top: 40px;
}

.cee-intro-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.cee-intro h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.cee-intro p {
  font-size: .92rem;
  line-height: 1.65;
  opacity: .88;
}

.cee-intro strong {
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════
   FINDER TOOL
   ═══════════════════════════════════════════════════════ */
.finder-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.finder-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 48px 40px;
  border: 2px solid var(--gray-mid);
  box-shadow: 0 8px 40px rgba(6, 85, 110, .08);
  position: relative;
  overflow: hidden;
}

.finder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.finder-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.finder-row label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal);
  white-space: nowrap;
}

.finder-select {
  flex: 1;
  min-width: 200px;
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--gray-soft);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2306556e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.finder-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(6, 85, 110, .12);
}

.finder-result {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--gray-soft);
  border-radius: 12px;
  border-left: 4px solid var(--orange);
  display: none;
}

.finder-result.is-visible {
  display: block;
  animation: fadeUp .3s ease both;
}

.finder-result p {
  font-size: .92rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.finder-result .finder-result-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--orange);
  text-decoration: none;
  transition: gap .2s;
}

.finder-result .finder-result-link:hover {
  gap: 10px;
}

.finder-btn {
  margin-top: 20px;
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(244, 160, 8, .3);
}

.finder-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 160, 8, .4);
}

.finder-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════
   SECTEURS
   ═══════════════════════════════════════════════════════ */
.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.secteur-item {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 16px;
  border: 1.5px solid var(--gray-mid);
  text-align: center;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.secteur-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(6, 85, 110, .1);
  border-color: var(--teal-light);
}

.secteur-picto {
  width: 56px;
  height: 56px;
  background: rgba(6, 85, 110, .07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 14px;
  transition: background .2s;
}

.secteur-item:hover .secteur-picto {
  background: rgba(6, 85, 110, .12);
}

.secteur-item h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: var(--teal);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════
   CHIFFRES
   ═══════════════════════════════════════════════════════ */
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.chiffre-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1.5px solid var(--gray-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chiffre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.chiffre-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}

.chiffre-label {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.chiffre-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(6, 85, 110, .08);
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════
   PARTENAIRES (MARQUEE)
   ═══════════════════════════════════════════════════════ */
.partenaires-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  margin-top: 50px;
  padding: 30px 0;
}

.partenaires-marquee::before,
.partenaires-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.partenaires-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.partenaires-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.partenaires-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

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

.partenaire-set {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px; /* Espace entre la fin du set 1 et le début du set 2 */
}

.partenaire-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.partenaire-img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

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

/* ─── Autorités bar ──────────────────────────────────── */
.autorites-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 24px 32px;
  background: rgba(6, 85, 110, .04);
  border-radius: 14px;
}

.autorite-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.autorite-check {
  width: 28px;
  height: 28px;
  background: rgba(6, 85, 110, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
}

.autorite-item span {
  font-size: .85rem;
  font-weight: 700;
  color: var(--teal);
}
/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--teal-dark);
  color: #fff;
  padding: 80px 40px 30px;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 40px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-cta {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--orange);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-cta:hover {
  background: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════ */
.nav-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 310;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.nav-menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}

/* Hamburger → X animation */
.nav-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hide mobile CTA on desktop */
.nav-mobile-cta {
  display: none !important;
}

/* Mobile CTA button styling */
.nav-cta-mobile {
  display: block;
  background: var(--orange);
  color: #fff !important;
  text-align: center;
  padding: 14px 24px !important;
  border-radius: 8px;
  font-weight: 800 !important;
  font-size: 1rem !important;
  text-decoration: none;
  margin: 8px 20px 16px;
  transition: background .2s;
}

.nav-cta-mobile:hover {
  background: var(--orange-hover);
}

/* ─── Scroll animations (data-animate) ───────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — ≤1024px (Tablette paysage)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links > li > a {
    font-size: .78rem;
    padding: 0 10px;
  }

  /* Hero artisan */
  .hero {
    padding: 60px 40px;
    gap: 40px;
  }

  .hero-circle {
    width: 320px;
    height: 320px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  /* Hero home */
  .hero-home {
    padding: 70px 40px 60px;
  }

  .hero-home h1 {
    font-size: 2.6rem;
  }

  /* Sections */
  .section {
    padding: 60px 40px;
  }

  .cta-section {
    padding: 60px 40px;
  }

  /* Grids */
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chiffres-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secteurs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 14px 40px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — ≤768px (Tablette portrait / Mobile)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Navigation mobile ── */
  nav {
    padding: 0 16px;
  }

  .nav-menu-toggle {
    display: flex;
    order: 3;
    margin-left: 12px;
  }

  .nav-right {
    display: none;
  }

  .nav-mobile-cta {
    display: list-item !important;
    list-style: none;
    border-bottom: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    overflow-y: auto;
    z-index: 300;
    height: auto;
    gap: 0;
    border-top: 1px solid var(--gray-mid);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links > li {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--gray-mid);
  }

  .nav-links > li > a {
    height: auto;
    padding: 16px 24px;
    font-size: .95rem;
    justify-content: space-between;
  }

  .nav-links > li > a.active {
    border-bottom: none;
    color: var(--teal);
    background: rgba(6, 85, 110, .04);
  }

  .nav-links > li > a .chevron {
    transition: transform .3s;
  }

  .nav-links > li.mobile-open > a .chevron {
    transform: rotate(180deg);
  }

  /* Dropdowns in mobile: hidden by default, shown via .mobile-open */
  .nav-links > li .dropdown,
  .nav-links > li .dropdown-wide {
    position: static !important;
    left: 0 !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-top: none !important;
    min-width: unset !important;
    padding: 0 0 8px !important;
    background: var(--gray-soft) !important;
  }

  .nav-links > li.mobile-open .dropdown,
  .nav-links > li.mobile-open .dropdown-wide {
    display: block !important;
  }

  /* On mobile, completely disable desktop hover behavior for dropdowns.
     Only .mobile-open controls visibility via click/JS. */
  .nav-links > li:hover > a .chevron {
    transform: none;
  }

  .nav-links > li.mobile-open > a .chevron {
    transform: rotate(180deg);
  }

  .dropdown a {
    padding: 12px 32px;
  }

  .dropdown-label {
    padding: 12px 24px 4px;
  }

  .nav-right .nav-cta {
    font-size: .78rem;
    padding: 8px 14px;
  }

  /* ── Hero Artisan — 1 colonne ── */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 32px;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-circle {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .hero-badge {
    left: 50%;
    translate: -50% 0;
    bottom: -10px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .secteurs-pills {
    justify-content: center;
  }

  /* ── Hero Home ── */
  .hero-home {
    padding: 48px 20px 40px;
  }

  .hero-home h1 {
    font-size: 2rem;
  }

  .hero-home-sub {
    font-size: 1rem;
  }

  .hero-home-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* ── Sections ── */
  .section {
    padding: 48px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    max-width: 100%;
  }

  .cta-section {
    padding: 48px 20px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  /* ── Grids : 1 colonne ── */
  .enjeux-grid,
  .solutions-grid,
  .temoignages-grid,
  .crosssell-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .chiffres-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secteurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Composants divers ── */
  .cee-intro {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .versement-band {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .autorites-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .crosssell-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* ── Finder ── */
  .finder-card {
    padding: 28px 20px 24px;
  }

  .finder-row label {
    font-size: 1rem;
  }

  /* ── Breadcrumb ── */
  .breadcrumb {
    padding: 12px 20px;
    font-size: .78rem;
  }

  /* ── Partenaires ── */
  .partenaires-band {
    gap: 28px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — ≤480px (Mobile petit)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero home */
  .hero-home h1 {
    font-size: 1.65rem;
  }

  .hero-home-sub {
    font-size: .92rem;
  }

  .hero-home-trust {
    gap: 16px;
  }

  .hero-home-trust .trust-num {
    font-size: 1.5rem;
  }

  /* Hero artisan */
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-circle {
    width: 220px;
    height: 220px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  /* Buttons full width */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
  }

  .hero-home-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-white,
  .cta-buttons .btn-outline-white {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Chiffres : 1 colonne */
  .chiffres-grid {
    grid-template-columns: 1fr;
  }

  /* Section title */
  .section-title {
    font-size: 1.35rem;
  }

  .cta-section h2 {
    font-size: 1.35rem;
  }

  /* Finder */
  .finder-row {
    flex-direction: column;
    align-items: stretch;
  }

  .finder-row label {
    font-size: .92rem;
  }

  .finder-select {
    min-width: unset;
    width: 100%;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 10px 16px;
  }

  /* Chiffre cards */
  .chiffre-num {
    font-size: 1.8rem;
  }
}
