/* ===== Variables ===== */
:root {
  --blue: #2563eb;
  --blue-dark: #1e5eff;
  --blue-section: #0b1f3a;
  --blue-light: #eff6ff;
  --blue-hover: #dbeafe;
  --white: #ffffff;
  --black: #111827;
  --gray: #374151;
  --gray-light: #6b7280;
  --gray-bg: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 31, 58, 0.12);
  --radius: 12px;
  --radius-btn: 10px;
  --header-h: 72px;
  --sticky-bar-h: 118px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font: var(--font-body);
  --grid-cols: 3;
  --max: 1180px;
  --transition: 0.25s ease;
  --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--blue-section);
}

body {
  font-family: var(--font);
  color: var(--gray);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.05rem;
  padding-bottom: var(--sticky-bar-h);
  box-shadow: 0 var(--sticky-bar-h) 0 var(--blue-section);
}

body.no-sticky-bar {
  padding-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--black);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.15rem); }
h3 { font-size: 1.12rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ===== Top bar ===== */
.top-bar {
  background: var(--blue-section);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
}

.top-bar a {
  color: #fff;
  font-weight: 600;
}

.top-bar a:hover {
  color: #93c5fd;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(11, 31, 58, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--black);
  flex-shrink: 0;
}

.logo:hover .logo__title {
  color: var(--blue);
}

.logo__img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}

.logo__title {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: inherit;
  transition: color var(--transition);
}

.footer .logo__title {
  color: #fff;
}

.footer .logo:hover .logo__title {
  color: #93c5fd;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--black);
  font-weight: 500;
  font-size: 0.98rem;
}

.nav a {
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
}

.footer a,
.top-bar a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.header-cta {
  display: flex;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--transition-slow), transform 0.65s var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .container > .reveal,
.hero .container > .hero-badge,
.hero .container > h1,
.hero .container > .hero-lead,
.hero .container > .contact-actions,
.hero .container > .hero-stats {
  animation: fadeInUp 0.85s var(--transition-slow) backwards;
}

.hero .hero-badge { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.12s; }
.hero .hero-lead { animation-delay: 0.2s; }
.hero .contact-actions { animation-delay: 0.28s; }
.hero .hero-stats { animation-delay: 0.38s; }

.page-hero .container > * {
  animation: fadeInUp 0.7s var(--transition-slow) backwards;
}

.page-hero h1 { animation-delay: 0.08s; }
.page-hero p { animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero .container > *,
  .hero__bg,
  .page-hero .container > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Grille 3 colonnes ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-3 > .card,
.grid-3 > .feature,
.grid-3 > .contact-card,
.grid-3 > .value-card,
.grid-3 > .content-img {
  min-width: 0;
}

/* Centrer le dernier élément seul (4 cartes seulement — pas la grille services) */
@media (min-width: 901px) {
  .cards-grid:not(.services-grid):not(.cards-grid-4):not(.network-cards-grid) > :last-child:nth-child(3n + 1):not(:only-child),
  .grid-3 > :last-child:nth-child(3n + 1):not(:only-child) {
    grid-column: 2;
  }
}

/* Contact : 2×2 puis 4 colonnes sur grand écran */
.contact-cards {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-cards > :last-child:nth-child(3n + 1) {
    grid-column: auto;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-section);
  border-color: var(--blue-section);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: clamp(420px, 55vh, 560px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg,
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__bg {
  object-position: center;
}

.page-hero--banner .page-hero__bg {
  object-position: center 22%;
}

.hero.hero--banner .hero__bg {
  animation: heroZoom 1.4s ease-out;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.75) 45%, rgba(11, 31, 58, 0.45) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.9);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  max-width: 640px;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.2rem;
  max-width: 520px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  color: #fff;
}

.hero-stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Sections ===== */
.section {
  padding: 4.5rem 0;
}

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

.section-dark {
  background: var(--blue-section);
  color: rgba(255, 255, 255, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header h2 span {
  color: var(--blue);
}

.section-header p {
  color: var(--gray-light);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.section--gray:not(.network-section) {
  background: var(--gray-bg);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

/* ===== Réseau Zelutra (Moving) ===== */
.network-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.network-cards-grid {
  --grid-cols: 4;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 100%;
}

.network-card {
  height: 100%;
}

.network-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.network-card__link:hover {
  color: inherit;
}

.network-card__link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.network-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  padding: 1.75rem 1.5rem 1.5rem;
}

.network-card .card-body p {
  flex: 1;
}

.network-card .card-link {
  margin-top: auto;
  padding-top: 0.5rem;
}

.footer-network-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-network-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-btn);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.footer-network-pill:hover,
.footer-network-pill:focus-visible {
  background: rgba(37, 99, 235, 0.35);
  border-color: rgba(147, 197, 253, 0.45);
  color: #fff !important;
  transform: translateX(4px);
}

.footer-col-network .footer-network__lead {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin: -0.35rem 0 0.85rem;
}

/* ===== Grilles ===== */
.grid-cols-2 { --grid-cols: 2; }
.grid-cols-3 { --grid-cols: 3; }
.grid-cols-4 { --grid-cols: 4; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 3), minmax(0, 1fr));
  gap: 1.5rem;
}

/* Types de services : 2×2 centré (page À propos) */
.cards-grid.cards-grid-4 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 840px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 1.5rem;
}

.cards-grid.cards-grid-4 > .card {
  grid-column: auto !important;
  grid-row: auto !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cards-grid.cards-grid-4 .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cards-grid.cards-grid-4 .card-body p {
  flex: 1;
}

/* Grille services : 3 colonnes × 3 lignes (9 cartes) */
.services-grid.grid-cols-3 {
  --grid-cols: 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid .card {
  grid-column: auto !important;
  display: flex;
  flex-direction: column;
}

.card-img-wrap {
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #e5e7eb 100%);
  flex-shrink: 0;
}

.services-grid .card-img {
  height: 100%;
  min-height: 200px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition:
    transform 0.35s var(--transition-slow),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.card:hover .card-img {
  transform: scale(1.06);
}

.card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
  background: var(--gray-bg);
}

.card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--gray-light);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: color 0.25s ease, gap 0.25s ease;
}

.card-link:hover {
  color: var(--blue-section);
  gap: 0.55rem;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--blue-hover);
  background: var(--white);
}

.step:hover .step-num {
  background: var(--blue-section);
  transform: scale(1.08);
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.step h3 {
  margin-bottom: 0.5rem;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.features-grid.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition:
    transform 0.35s var(--transition-slow),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.feature:hover .feature-icon {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature p {
  font-size: 0.92rem;
  color: var(--gray-light);
}

/* ===== Zone ===== */
.zone-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.zone-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  margin-top: 1.25rem;
}

.zone-list li::before {
  content: "✓ ";
  color: var(--blue);
  font-weight: 700;
}

.zone-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blue-light);
  display: flex;
  flex-direction: column;
  padding: 0;
}

.zone-map img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.zone-map-caption {
  margin: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  background: var(--white);
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray);
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--black);
  font-size: 0.9rem;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-section) 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: var(--max);
  width: calc(100% - 2rem);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin-bottom: 1.5rem;
  opacity: 0.92;
  max-width: 520px;
  margin-inline: auto;
}

.cta-band .hero-actions,
.cta-band .contact-actions {
  justify-content: center;
}

/* Boutons sur fond bleu (bandeau CTA) */
.cta-band .btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.cta-band .btn-white:hover,
.cta-band .btn-white:focus-visible {
  background: var(--blue-hover);
  color: var(--blue-section);
  border-color: #fff;
}

.cta-band .btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.cta-band .btn-outline:hover,
.cta-band .btn-outline:focus-visible {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}

/* Liens-boutons : ne pas hériter de a:hover global */
a.btn {
  text-decoration: none;
}

a.btn.btn-primary {
  color: #fff;
}

a.btn.btn-outline:not(:hover):not(:focus-visible) {
  color: var(--blue);
}

a.btn.btn-white:not(:hover):not(:focus-visible) {
  color: var(--blue);
}

/* ===== Contact actions (4 boutons) ===== */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.btn-mail {
  background: var(--white);
  color: var(--blue-section);
  border-color: var(--blue-section);
}

.btn-mail:hover {
  background: var(--blue-section);
  color: #fff;
  border-color: var(--blue-section);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.25);
}

/* ===== Page hero (inner) ===== */
.page-hero {
  background: var(--blue-section);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto;
}

.page-hero--banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(420px, 58vh, 600px);
  overflow: hidden;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.05) 0%,
    rgba(11, 31, 58, 0.2) 35%,
    rgba(11, 31, 58, 0.65) 70%,
    rgba(11, 31, 58, 0.88) 100%
  );
}

.page-hero--banner .container {
  position: relative;
  z-index: 2;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  width: 100%;
}

.section-header--left {
  text-align: left;
}

.section-header--left p {
  margin-left: 0;
}

.approche-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.approche-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.approche-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.approche-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approche-card h3 {
  font-size: 1.05rem;
  margin: 1rem 1rem 0.35rem;
}

.approche-card p {
  margin: 0 1rem 1.15rem;
  font-size: 0.92rem;
  color: var(--gray);
}

/* ===== About / content blocks ===== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block h2 {
  margin-bottom: 1rem;
  color: var(--blue);
}

.content-block ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.content-block li {
  margin-bottom: 0.5rem;
}

.content-block__text p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-block__text ul {
  color: var(--gray);
}

.zigzag-blocks {
  margin-top: 2.5rem;
}

.zigzag-blocks .content-block {
  margin-bottom: 0;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.zigzag-blocks .content-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 280px;
  background: var(--gray-bg);
}

.content-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.content-img:hover img {
  transform: scale(1.04);
}

.values-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto;
}

/* Nos valeurs : 4 blocs sur une ligne, centrés */
.values-grid.values-grid-4 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  max-width: 1000px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 1.25rem;
}

.values-grid.values-grid-4 > .value-card {
  grid-column: auto !important;
  grid-row: auto !important;
  height: 100%;
  min-height: 100%;
}

.section-values .section-header,
.section-types .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-types .container,
.section-values .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card {
  text-align: center;
  padding: 1.35rem 0.85rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--gray-light);
  margin: 0;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.value-card .card-icon {
  margin: 0 auto 0.75rem;
}

/* ===== Services detail ===== */
/* ===== Services page ===== */
.services-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.06);
}

.services-jump .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.75rem 0;
  justify-content: center;
}

.services-jump a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.services-jump a:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-light);
}

.service-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.service-block .content-block__text h2 {
  margin-bottom: 0.75rem;
}

.service-block,
.service-mini-card,
.availability-section {
  scroll-margin-top: calc(var(--header-h) + 3.5rem);
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-mini-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.service-mini-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-mini-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-mini-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.service-mini-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-mini-card__body p {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
}

.availability-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.availability-band h2 {
  margin-bottom: 0.5rem;
}

.availability-band__text p {
  color: var(--gray);
  margin-bottom: 1rem;
  max-width: 520px;
}

.availability-band__lead {
  font-weight: 600;
  color: var(--blue-section);
  margin-bottom: 1rem;
}

.availability-band__cta .contact-actions {
  justify-content: flex-end;
}

.cta-band--compact {
  text-align: center;
  padding: 2.5rem 2rem;
}

.cta-band--compact .btn-lg {
  margin-top: 0.5rem;
}

.service-detail {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-detail:hover {
  transform: translateX(6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.service-detail h3 {
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-detail ul {
  padding-left: 1.25rem;
  color: var(--gray);
}

.service-detail li {
  margin-bottom: 0.35rem;
}

.options-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.tag:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Contact page ===== */
.contact-page {
  background: #f0f6ff;
  min-height: 60vh;
}

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(400px, 50vh, 540px);
  overflow: hidden;
  color: #fff;
}

.contact-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 8%;
  z-index: 0;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.5) 0%,
    rgba(11, 31, 58, 0.72) 50%,
    rgba(11, 31, 58, 0.5) 100%
  );
}

.contact-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
  text-align: center;
}

.contact-hero__copy {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.contact-hero__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(37, 99, 235, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.contact-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  color: #fff;
}

.contact-hero__lead {
  margin: 0 auto;
  max-width: 32rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.contact-page .contact-section {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 100%;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition:
    border-color 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-card:hover {
  border-color: var(--blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-card .card-icon {
  margin: 0 auto 1rem;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.contact-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.3;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.25rem;
}

.contact-card__desc {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.55;
  min-height: 4.65rem;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contact-card__meta {
  margin: 0.75rem 0 0;
  min-height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-card__btn {
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  flex-shrink: 0;
}

.info-box {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.info-box h3 {
  margin-bottom: 0.75rem;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.availability span {
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--blue-section);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

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

.footer-grid--network {
  grid-template-columns: 2fr 1fr 1fr 1.1fr 1.5fr;
}

.sites-card {
  background: var(--gray-bg, #f1f5f9);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius, 12px);
  padding: 1.25rem;
}

.sites-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--blue-dark, #1d4ed8);
}

.sites-card > p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
}

.sites-card--standalone {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.sites-card--standalone h3 {
  font-size: 1.35rem;
}

.sites-card--standalone > p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.zelutra-network-section .section-header {
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue, #2563eb);
  margin-bottom: 0.5rem;
}

.zelutra-network {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.zelutra-network--compact {
  grid-template-columns: 1fr;
}

.zelutra-network--wide {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .zelutra-network--wide {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zelutra-network__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text, #0f172a);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.zelutra-network__link:hover,
.zelutra-network__link:focus-visible {
  border-color: var(--blue, #2563eb);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.zelutra-network__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  background: var(--blue-light, #eff6ff);
  border-radius: 10px;
}

.zelutra-network__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.zelutra-network__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-dark, #1d4ed8);
  line-height: 1.25;
}

.zelutra-network__desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
}

.zelutra-network__arrow {
  flex-shrink: 0;
  color: var(--blue, #2563eb);
  font-weight: 700;
  font-size: 1.15rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.zelutra-network__link:hover .zelutra-network__arrow,
.zelutra-network__link:focus-visible .zelutra-network__arrow {
  transform: translateX(3px);
}

.footer-col-network .footer-network__lead {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin: -0.35rem 0 0.75rem;
}

.footer-network {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-network li {
  margin-bottom: 0.5rem;
}

.footer-network a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 0.35rem 0;
  border-radius: 4px;
  transition: color 0.15s ease;
}

.footer-network a:hover,
.footer-network a:focus-visible {
  color: #93c5fd;
}

.footer-network__icon {
  width: 1.35rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.95;
}

.footer .logo {
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.5rem;
}

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

.footer a:hover {
  color: #93c5fd;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.social-links a:hover {
  color: #93c5fd !important;
  background: rgba(255, 255, 255, 0.18);
}

/* ===== Sticky mobile bar ===== */
.sticky-contact {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.45rem;
  gap: 0.4rem;
  grid-template-columns: 1fr 1fr;
}

.sticky-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 0.4rem;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-btn);
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.sticky-call {
  background: var(--blue);
}

.sticky-call:hover {
  background: var(--blue-section);
  color: #fff;
  transform: scale(1.03);
}

.sticky-sms {
  background: var(--blue-section);
}

.sticky-sms:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.03);
}

.sticky-mail {
  background: var(--gray);
}

.sticky-mail:hover {
  background: var(--blue-section);
  color: #fff;
  transform: scale(1.03);
}

.sticky-contact a {
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .footer-grid:not(.footer-grid--network) {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid.footer-grid--network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-block,
  .zone-wrap {
    grid-template-columns: 1fr;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .content-block.reverse .content-img {
    order: 2;
  }

  .content-block.reverse .content-block__text {
    order: 1;
  }

  .zigzag-blocks .content-block {
    padding-bottom: 3rem;
    gap: 2rem;
  }

  .cards-grid:not(.cards-grid-4),
  .features-grid,
  .contact-cards,
  .values-grid:not(.values-grid-4),
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    margin-inline: auto;
  }

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

  .cards-grid.cards-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 100% !important;
  }

  .values-grid.values-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 520px !important;
  }

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

  .services-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .availability-band {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .availability-band__cta .contact-actions {
    justify-content: flex-start;
  }

  .grid-3 > :last-child:nth-child(3n + 1):not(:only-child),
  .cards-grid:not(.cards-grid-4):not(.network-cards-grid) > :last-child:nth-child(3n + 1):not(:only-child),
  .contact-cards > :last-child:nth-child(3n + 1):not(:only-child) {
    grid-column: auto;
  }

  .grid-3 > :last-child:nth-child(3n + 2):not(:only-child) {
    grid-column: auto;
    display: block;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(var(--sticky-bar-h) + 0.5rem);
    font-size: 1.08rem;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .sticky-contact {
    display: grid;
  }

  .contact-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero {
    min-height: clamp(480px, 78vh, 640px);
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6vw, 2.15rem);
  }

  .hero-lead {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

  .hero-stats {
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .page-hero--banner {
    min-height: clamp(380px, 54vh, 500px);
    align-items: flex-end;
  }

  .page-hero--banner .page-hero__bg {
    object-position: center 18%;
  }

  .contact-hero {
    min-height: clamp(360px, 52vh, 480px);
  }

  .contact-hero__media {
    object-position: 72% 8%;
  }

  .page-hero h1 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }

  .page-hero p {
    font-size: 0.95rem;
    padding: 0 0.25rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .zone-list {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-grid.footer-grid--network {
    grid-template-columns: 1fr;
  }

  .cards-grid:not(.cards-grid-4),
  .features-grid,
  .contact-cards,
  .values-grid:not(.values-grid-4),
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .cards-grid.cards-grid-4 {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
  }

  .values-grid.values-grid-4 {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }

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

  .services-mini-grid {
    grid-template-columns: 1fr;
  }

  .services-jump .container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }
}

@media (min-width: 901px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .values-grid.values-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 1000px !important;
  }

  .cards-grid.cards-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 840px !important;
  }
}

@media (min-width: 769px) {
  .sticky-contact {
    display: none !important;
  }
}

/* Réseau Zelutra — section cartes + pied de page (style informatique premium) */

.network-section.section--gray {
  background: linear-gradient(180deg, #0d1322 0%, #0b0f19 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.network-section .section-header h2 {
  color: #ffffff;
}

.network-section .section-header h2 span {
  color: #3b82f6;
}

.network-section .section-header p {
  color: #94a3b8;
}

.network-section .section-eyebrow {
  color: #3b82f6;
}

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

.network-section .network-card,
.network-section .card.network-card {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.network-section .network-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.22);
}

.network-section .network-card .card-body {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.75rem 1.5rem 1.5rem;
}

.network-section .network-card .card-body p {
  flex: 1;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.55;
}

.network-section .network-card h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.network-section .network-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.18);
  color: #60a5fa;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.network-section .network-card .card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #60a5fa;
}

.network-section .network-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .network-section .network-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .network-section .network-cards-grid {
    grid-template-columns: 1fr;
  }
}


/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.lang-switch__link {
  color: var(--muted, #94a3b8);
  text-decoration: none;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.lang-switch__link:hover { color: var(--text, #fff); }
.lang-switch__link.is-active {
  color: var(--blue, #2563eb);
  background: rgba(37, 99, 235, 0.12);
}
.lang-switch__sep { color: var(--muted, #64748b); opacity: 0.6; user-select: none; }
.header-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
@media (max-width: 900px) {
  .lang-switch { margin-right: 0; order: -1; width: 100%; justify-content: flex-end; }
}

/* moving-network-grid-fix */
.cards-grid.network-cards-grid {
  --grid-cols: 4;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1100px) {
  .cards-grid.network-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 520px) {
  .cards-grid.network-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
