@import url("https://fonts.googleapis.com/css2?family=Geist+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --font-sans: "Geist Sans", system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
}

/* ===========================
   THEME — AstroShock (Light)
   =========================== */
:root {
  --bg: #fafafa;
  /* fond principal clair */
  --bg-grad: radial-gradient(1200px 600px at 10% -10%, rgba(124, 92, 255, .06), transparent 40%),
    radial-gradient(900px 500px at 90% 10%, rgba(184, 255, 0, .08), transparent 45%);
  --bg-elev: rgba(255, 255, 255, .68);
  /* verre clair pour le header */
  --border: rgba(0, 0, 0, .08);
  --text: #111;
  /* texte sombre */
  --muted: #555;

  --accent: #e4f241;
  /* vert néon */
  --accent-2: #804ce4;
  /* violet électrique */
  --ring: 0 0 0 3px rgba(124, 92, 255, .22);
}

/* Reset petit confort pour liens/btns dans le header */
.header-nav-wrapper a,
.header-nav-wrapper button {
  -webkit-tap-highlight-color: transparent;
}

/* ===========================
   BODY (fond clair + léger gradient)
   =========================== */
body {
  background: var(--bg);
  background-image: var(--bg-grad);
  color: var(--text);
  font-family: var(--font-sans);
}

/* ===========================
   HEADER NAVIGATION (fixed + glass)
   =========================== */
.header-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.header-nav-wrapper.header-scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

/* container + inner */
.header-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.header-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* ===========================
   LOGO
   =========================== */
.header-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.header-logo-link:hover {
  transform: translateX(4px);
}

.header-logo-link:hover .header-logo-icon-box {
  transform: rotate(-5deg) scale(1.05);
  background: linear-gradient(135deg, #8A2BE2 0%, #1E90FF 100%);
  /* Violet → Bleu */
}

.header-logo-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8A2BE2 0%, #1E90FF 100%);
  /* Violet → Bleu */
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.header-logo-icon-svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  /* Icône blanc pour contraste */
  fill: none;
  stroke-width: 2;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.header-logo-link:hover .header-logo-icon-svg {
  transform: scale(1.1);
}


.header-logo-link:hover .header-logo-icon-svg {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .header-logo-icon-box {
    width: 42px;
    height: 32px;
    border-radius: 6px;
  }

  .header-logo-icon-svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .header-logo-icon-box {
    width: 42px;
    height: 32px;
    border-radius: 6px;
  }

  .header-logo-icon-svg {
    width: 24px;
    height: 24px;
  }
}

.header-logo-text-main {
  font-size: 17px;
  font-weight: 600;
  color: #0A0A0A;
  letter-spacing: -.3px;
  transition: color .3s ease;
}

.header-logo-link:hover .header-logo-text-main {
  color: #525252;
}

/* ===========================
   NAV MENU (desktop)
   =========================== */
.header-menu-list {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu-item {
  position: relative;
}

.header-menu-link {
  color: #525252;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -.2px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  padding: 8px 0;
}

.header-menu-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0A0A0A;
  transform: translateX(-50%);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.header-menu-link:hover {
  color: #0A0A0A;
  transform: translateY(-2px);
}

.header-menu-link:hover::before {
  width: 100%;
}

/* ===========================
   CTA PHONE BUTTON — UNI (vert par défaut)
   =========================== */
.header-cta-phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8A2BE2 0%, #1E90FF 100%);
  /* Violet → Bleu */
  color: #FFFFFF;
  /* texte en blanc */
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.2px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}

.header-cta-phone-button span {
  color: #FFFFFF;
  /* texte en blanc */
}

.header-cta-phone-button::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transition: left .5s ease;
}

.header-cta-phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.header-cta-phone-button:hover::before {
  left: 100%;
}

.header-cta-phone-button:active {
  transform: translateY(0);
}

.header-cta-phone-icon {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  /* Icône en blanc */
  fill: none;
  stroke-width: 2;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  flex-shrink: 0;
}

.header-cta-phone-button:hover .header-cta-phone-icon {
  transform: rotate(-12deg) scale(1.08);
}

/* ===========================
   MOBILE MENU TOGGLE (hamburger moderne)
   =========================== */
.header-mobile-toggle-button {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 10;
}

.header-mobile-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #0A0A0A;
  position: relative;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.header-mobile-toggle-icon::before,
.header-mobile-toggle-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #0A0A0A;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.header-mobile-toggle-icon::before {
  top: -7px;
}

.header-mobile-toggle-icon::after {
  bottom: -7px;
}

/* état ouvert (ton JS ajoute .header-menu-open sur le bouton) */
.header-mobile-toggle-button.header-menu-open .header-mobile-toggle-icon {
  background: transparent;
}

.header-mobile-toggle-button.header-menu-open .header-mobile-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.header-mobile-toggle-button.header-menu-open .header-mobile-toggle-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===========================
   MOBILE MENU (sheet + overlay)
   =========================== */
@media (max-width: 980px) {
  .header-nav-container {
    padding: 0 20px;
  }

  .header-menu-list {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 88px;
    /* sous le header */
    display: grid;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 9999;
  }

  .header-menu-list .header-menu-link {
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.25;
    color: #222;
  }

  .header-menu-list .header-menu-link:hover {
    background: rgba(124, 92, 255, .08);
  }

  .header-menu-list .header-menu-link::before {
    display: none;
  }

  /* affichage quand ouvert (ton JS ajoute .header-menu-active sur le <ul>) */
  .header-menu-active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* bouton hamburger visible sur mobile */
  .header-mobile-toggle-button {
    display: inline-block;
  }

  /* réduire l’espace entre nav et CTA si besoin */
  .header-nav-inner {
    gap: 12px;
  }
}

/* overlay d’écran quand le menu est ouvert (support moderne) */
@supports(selector(:has(*))) {
  .header-nav-wrapper::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .header-nav-wrapper:has(.header-menu-active)::after {
    opacity: 1;
    pointer-events: auto;
  }

  body:has(.header-menu-active) {
    overflow: hidden;
  }

  /* bloque le scroll derrière */
}

/* ===========================
   HERO — Layout
   =========================== */
.hero-main-section {
  position: relative;
  padding: clamp(48px, 6vw, 84px) 0;
  overflow: clip;
}

.hero-content-container {
  max-width: 1200px;
  margin: 20px auto 0;
  /* très léger en haut */
  padding: 24px 16px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .hero-content-container {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
    margin-top: 30px;
    /* réduit encore sur desktop */
    padding: 36px 24px;
  }
}

@media (max-width: 768px) {
  .hero-content-container {
    margin-top: 16px;
    /* super compact sur mobile */
    padding: 20px 12px;
  }
}

/* ===========================
   HERO — Badge top
   =========================== */
.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #FFFFFF;
  /* Texte en blanc pour contraste */
  background: linear-gradient(135deg, #8A2BE2 0%, #1E90FF 100%);
  /* Violet → Bleu */

  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #FFFFFF;
  /* Icône blanc */
  stroke-width: 2;
}


/* ===========================
   HERO — Title + highlight
   =========================== */
.hero-main-title {
  margin: 16px 0 14px;
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: .98;
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: -.5px;
  color: var(--text);
}

.hero-highlight {
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, #8a2be2, #1e90ff);
  /* Violet → Bleu */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  inset: -6px -10px -4px;
  z-index: -1;
  background: radial-gradient(100% 140% at 20% 50%,
      rgba(138, 43, 226, 0.45) 0%,
      /* Violet */
      rgba(30, 144, 255, 0.35) 60%,
      /* Bleu */
      rgba(30, 144, 255, 0) 80%
      /* Dissipation douce */
    );
  filter: blur(40px);
  /* effet diffus comme sur ton image */
  border-radius: 20px;
  /* adoucit les angles */
}

/* ===========================
   HERO — Description
   =========================== */
.hero-description {
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  margin: 8px 0 22px;
}

/* ===========================
   HERO — CTAs
   =========================== */
.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .3px;
  color: #FFFFFF;
  /* texte en blanc */
  background: linear-gradient(135deg, #8A2BE2 0%, #1E90FF 100%);
  /* Violet → Bleu */
  box-shadow: 0 10px 28px rgba(124, 92, 255, .35), 0 0 0 1px rgba(255, 255, 255, .2) inset;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-cta-primary span {
  color: #FFFFFF;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(124, 92, 255, .45), 0 0 0 1px rgba(255, 255, 255, .25) inset;
}

.hero-cta-icon {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  /* icône en blanc */
  fill: none;
  stroke-width: 2;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.hero-cta-primary:hover .hero-cta-icon {
  transform: rotate(-10deg) scale(1.05);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--text);
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(0, 0, 0, .08);
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hero-cta-secondary:hover {
  background: rgba(124, 92, 255, .10);
  border-color: rgba(0, 0, 0, .12);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .18);
}

.hero-cta-arrow {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
}

/* ===========================
   HERO — Feature chips
   =========================== */
.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .045);
  border: 1px solid rgba(0, 0, 0, .08);
  color: var(--muted);
  font-weight: 700;
}

.hero-feature-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

/* ===========================
   HERO — Media (image / vidéo)
   =========================== */
.hero-visual-wrapper {
  position: relative;
}

.hero-media-container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(120% 120% at 10% 10%, rgba(124, 92, 255, .10), rgba(184, 255, 0, .08), rgba(0, 0, 0, .02) 70%);
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.hero-media-image,
.hero-media-video {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (min-width: 520px) {

  .hero-media-image,
  .hero-media-video {
    height: 460px;
  }
}

@media (min-width: 980px) {

  .hero-media-image,
  .hero-media-video {
    height: 520px;
  }
}

/* Overlay décoratif + soft-glow */
.hero-media-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(60% 60% at 75% 20%, rgba(184, 255, 0, .22), transparent 60%),
    radial-gradient(50% 50% at 20% 80%, rgba(124, 92, 255, .24), transparent 60%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    transform: translateY(0);
    filter: saturate(100%);
  }

  to {
    transform: translateY(-6px);
    filter: saturate(112%);
  }
}

/* ===========================
   HERO — Spacing tweaks on small screens
   =========================== */
@media (max-width: 420px) {
  .hero-cta-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* ===========================
   PROCESS — Section Layout
   =========================== */
.process-main-section {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0;

  /* Fond violet → bleu → blanc */
  background: linear-gradient(135deg,
      rgba(124, 92, 255, 0.08) 0%,
      /* violet pâle */
      rgba(30, 144, 255, 0.08) 50%,
      /* bleu pâle */
      rgba(255, 255, 255, 0.8) 100%
      /* blanc */
    );
}


/* Container */
.process-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   PROCESS — Header
   =========================== */
.process-small-title {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .3px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: linear-gradient(135deg, #8A2BE2 0%, #1E90FF 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
  color: #fff;
  /* texte blanc */
}

.process-main-title {
  margin: 14px 0 10px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.4px;
  font-size: clamp(28px, 5.5vw, 40px);
  color: #111;
  /* noir sobre */
}

.process-main-title strong {
  background: linear-gradient(90deg,
      #8A2BE2,
      /* Violet */
      #1E90FF,
      /* Bleu */
      #8A2BE2
      /* Violet pour boucler l’animation */
    );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: processGradFlow 6s ease-in-out infinite;
}

@keyframes processGradFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Sous-titre lisible */
.process-subtitle {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #111;
}

.process-subtitle strong,
.process-subtitle .highlight {
  color: #1E90FF;
  /* Bleu uni (DodgerBlue) */
  font-weight: 700;
}

/* ===========================
   PROCESS — Grid Cards
   =========================== */
.process-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 720px) {
  .process-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ===========================
   PROCESS — Card
   =========================== */
.process-card-item {
  position: relative;
  border-radius: 20px;
  padding: 22px 20px 20px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}

.process-card-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(135deg, #8A2BE2, #1E90FF);
  /* Violet → Bleu */
  opacity: .95;
}

.process-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
  border-color: rgba(0, 0, 0, .12);
}

/* Numéro */
.process-card-number {
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #8A2BE2, #1E90FF);
  /* Violet → Bleu */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Icône */
.process-card-icon-wrapper {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #8A2BE2, #1E90FF) border-box;
  /* Violet → Bleu */
  border: 2px solid transparent;
  margin-bottom: 14px;
  transition: transform .3s ease;
}

.process-card-item:hover .process-card-icon-wrapper {
  transform: scale(1.08);
}

.process-card-icon {
  width: 22px;
  height: 22px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
}

/* Titres & texte des cartes */
.process-card-title {
  font-weight: 800;
  color: #111;
  margin: 8px 0 10px;
  letter-spacing: .2px;
}

.process-card-description {
  color: #444;
  line-height: 1.6;
  font-size: 15.5px;
}

/* ===========================
   Motion safe
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .process-main-title strong {
    animation: none;
  }

  .process-card-item {
    transition: none;
  }
}

/* SECTION POURQUOI NOUS */
/* SECTION POURQUOI NOUS */
.why-us-main-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  /* réduit de 100px → 60px */
  background: #FAFAFA;
}

.why-us-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  /* réduit légèrement */
}

.why-us-header-wrapper {
  text-align: center;
  margin-bottom: 40px;
  /* réduit de 60px → 40px */
}

/* Responsive */
@media (max-width: 992px) {
  .why-us-main-section {
    padding: 50px 0;
  }

  .why-us-content-container {
    padding: 0 40px;
  }

  .why-us-header-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .why-us-main-section {
    padding: 40px 0;
  }

  .why-us-content-container {
    padding: 0 20px;
  }

  .why-us-header-wrapper {
    margin-bottom: 24px;
  }
}

/* =========================================
   WHY-US — Améliorations titres & animations
   (aucun impact sur les paragraphes)
   ========================================= */

/* Variables de secours si non définies ailleurs */
:root {
  --accent: #e4f241;
  /* vert néon */
  --accent-2: #804ce4;
  /* violet électrique */
}

/* Petit badge "Notre engagement" plus premium */
.why-us-small-title {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0A0A0A;
  /* texte noir */
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #8A2BE2, #1E90FF) border-box;
  /* Violet → Bleu */
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-us-small-title:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}


/* Titre h2 (centré dans ta maquette) */
/* Titre h2 (centré, plus petit que les autres sections) */
.why-us-main-title {
  position: relative;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #0A0A0A;
  /* texte principal en noir */
  font-size: clamp(24px, 4.5vw, 34px);
  /* plus petit que 40-46px ailleurs */
  line-height: 1.25;
  margin-bottom: 14px;
  text-align: center;
}

/* Accent ANIMÉ uniquement sur <strong> (violet → bleu) */
.why-us-main-title strong {
  background: linear-gradient(90deg, #8A2BE2, #1E90FF, #8A2BE2);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: whyTitleFlow 6s ease-in-out infinite;
}

@keyframes whyTitleFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Soulignement gradient sous le H2 (fin, moderne) */
.why-us-main-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 120px;
  /* desktop */
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #8A2BE2, #1E90FF);
  transform-origin: left;
  animation: whyUnderlineIn .8s cubic-bezier(.2, .8, .2, 1) both;
  filter: drop-shadow(0 4px 10px rgba(124, 92, 255, .25));
}

@keyframes whyUnderlineIn {
  from {
    transform: scaleX(0);
    opacity: .2;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Responsive : souligné un peu plus court sur mobile */
@media (max-width: 768px) {
  .why-us-main-title::after {
    width: 84px;
    height: 3px;
    margin-top: 12px;
  }
}


/* Animations */
@keyframes whyTitleFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes whyUnderlineIn {
  from {
    transform: scaleX(0);
    opacity: .2;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Motion-safe : désactive les animations si l’utilisateur préfère moins d’animations */
@media (prefers-reduced-motion: reduce) {
  .why-us-main-title strong {
    animation: none;
  }

  .why-us-main-title::after {
    animation: none;
  }
}

.why-us-text-content {
  max-width: 1000px;
  margin: 0 auto 80px;
}

.why-us-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 24px;
  text-align: justify;
}

.why-us-paragraph strong {
  color: #0A0A0A;
  font-weight: 600;
}

/* ======================================
   WHY-US — Paragraph Highlight stylé
   ====================================== */
.why-us-paragraph-highlight {
  font-size: 18px;
  line-height: 1.8;
  color: #0A0A0A;
  margin-bottom: 0;
  font-weight: 500;
  text-align: justify;
  padding: 30px;
  border-radius: 12px;

  /* Fond clair avec effet glassy */
  background: linear-gradient(145deg, #FFFFFF, #FAFAFA);
  border-left: 5px solid transparent;
  border-image: linear-gradient(135deg, #8A2BE2, #1E90FF) 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);

  /* Animation à l’apparition */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
}

/* Effet hover élégant */
.why-us-paragraph-highlight:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

/* Strong keywords → accent en gris doux */
.why-us-paragraph-highlight strong {
  font-weight: 700;
  color: #777;
  /* gris plus doux */
  position: relative;
  transition: color 0.3s ease;
}

/* Optionnel : petit effet soulignement animé pour raffinement */
.why-us-paragraph-highlight strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ccc;
  /* gris clair élégant */
  transition: width 0.35s ease;
}

.why-us-paragraph-highlight strong:hover {
  color: #555;
  /* fonce légèrement au hover */
}

.why-us-paragraph-highlight strong:hover::after {
  width: 100%;
}


/* Animation apparition */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   WHY-US — Features Grid complet (neutre + violet + responsive 3 colonnes)
   ========================================================================== */

/* Grille responsive */
.why-us-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* mobile par défaut */
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(8px, 1.5vw, 16px);
  max-width: 1200px;
  /* centré sur grand écran */
  margin: 0 auto;
}

/* 2 colonnes sur tablette */
@media (min-width: 640px) {
  .why-us-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 colonnes fixes sur PC */
@media (min-width: 1024px) {
  .why-us-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cartes */
.why-us-feature-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(16px, 2.2vw, 24px);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, .03),
    0 6px 18px rgba(0, 0, 0, .06);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-us-feature-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .08),
    0 2px 10px rgba(0, 0, 0, .04);
  border-color: var(--accent-2);
  /* violet en hover */
}

/* Icônes */
.why-us-feature-icon-wrapper {
  --size: 52px;

  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6e6e6;
  /* gris clair neutre */
  color: var(--accent-2);
  /* violet pour l’icône */
  margin-bottom: 14px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, .1),
    0 0 0 3px rgba(255, 255, 255, .5);
  transition: background .25s ease, color .25s ease;
}

.why-us-feature-icon {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us-feature-card:hover .why-us-feature-icon-wrapper {
  background: var(--accent-2);
  /* violet */
  color: #fff;
  /* icône blanche */
}

/* Titres */
.why-us-feature-title {
  margin: 6px 0 8px;
  font-size: clamp(1.05rem, 1.2vw + .9rem, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--accent-2);
  /* violet */
}

/* Description */
.why-us-feature-description {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.95rem, .6vw + .85rem, 1rem);
  line-height: 1.55;
}

.why-us-feature-description strong {
  color: #444;
  /* gris foncé sobre */
  font-weight: 700;
}

/* Responsive petits écrans */
@media (max-width: 420px) {
  .why-us-feature-card {
    border-radius: 14px;
    padding: 16px;
  }

  .why-us-feature-icon-wrapper {
    --size: 46px;
  }
}

/* ===========================
   Motion safe
   =========================== */
@media (prefers-reduced-motion: reduce) {

  .why-us-feature-card,
  .why-us-feature-icon-wrapper,
  .why-us-feature-icon {
    transition: none !important;
  }
}

/* ===========================
   SECTION SERVICES (light)
   =========================== */
:root {
  /* fallback si non définis plus haut */
  --accent: #e4f241;
  --accent-2: #804ce4;
}

/* Section + container (espacement top réduit) */
.services-main-section {
  position: relative;
  width: 100%;
  padding: 45px 0 55px;
  /* encore réduit */
  background: #FAFAFA;
}

.services-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-main-section {
    padding: 35px 0 45px;
  }

  .services-content-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .services-main-section {
    padding: 28px 0 36px;
    /* mobile encore plus léger */
  }

  .services-content-container {
    padding: 0 18px;
  }
}

/* ---------- Header ---------- */
.services-header-wrapper {
  text-align: center;
  margin-bottom: 56px;
  /* un peu moins haut */
}

/* Small title (sobre, anneau dégradé) */
.services-small-title {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 1.6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  /* plus compact et uniforme */
  color: #111;
  /* texte noir/gris foncé */
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #8A2BE2, #1E90FF) border-box;
  /* violet → bleu */
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

/* Dégradé animé uniquement sur <strong> */
@keyframes svcGradFlow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.services-main-title {
  font-size: clamp(28px, 5.5vw, 40px);
  /* même logique que why-us */
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 12px 0 14px;
}

.services-main-title strong {
  background: linear-gradient(90deg, #8A2BE2, #1E90FF, #8A2BE2);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svcGradFlow 6s ease-in-out infinite;
}

/* Sous-titre : gris sobre */
.services-subtitle {
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
  /* gris doux → meilleure hiérarchie */
}

/* Soulignement moderne sous le H2 */
.services-header-wrapper .services-main-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #8A2BE2, #1E90FF);
  animation: underlineGrow 700ms ease forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0
  }

  to {
    width: 72px;
    opacity: 1
  }
}

/* ==========================================================================
   SERVICES — Carousel horizontal (sobre + accents légers)
   Dépend de : --bg-elev, --border, --text, --muted (depuis ton :root)
   ========================================================================== */

/* ===== RAIL HORIZONTAL ===== */
.services-cards-grid {
  display: flex;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(8px, 1.5vw, 16px);
  padding-inline: 24px;
  /* petit “peek” au bord */
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 24px;
  /* aligne le snap au bord */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-gutter: stable both-edges;

  /* bords en fondu pour suggérer le scroll */
  position: relative;
  mask-image: linear-gradient(to right,
      transparent 0, black 32px,
      black calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0, black 32px,
      black calc(100% - 32px), transparent 100%);
}

/* ===== SLIDES ===== */
.services-card-item {
  flex: 0 0 clamp(260px, 28vw, 360px);
  /* largeur responsive d’un slide */
  scroll-snap-align: center;
  scroll-snap-stop: always;

  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, .03),
    0 8px 24px rgba(0, 0, 0, .06);

  /* animation d’entrée (fade+scale) */
  opacity: 0;
  transform: translateY(0) scale(.975);
  animation: card-fade-in .6s cubic-bezier(.2, .7, .2, 1) forwards;
}

/* Stagger d’apparition */
.services-card-item:nth-child(1) {
  animation-delay: .05s
}

.services-card-item:nth-child(2) {
  animation-delay: .12s
}

.services-card-item:nth-child(3) {
  animation-delay: .19s
}

.services-card-item:nth-child(4) {
  animation-delay: .26s
}

.services-card-item:nth-child(5) {
  animation-delay: .33s
}

.services-card-item:nth-child(6) {
  animation-delay: .40s
}

.services-card-item:nth-child(7) {
  animation-delay: .47s
}

.services-card-item:nth-child(8) {
  animation-delay: .54s
}

@keyframes card-fade-in {
  from {
    opacity: 0;
    transform: translateY(2px) scale(.965)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

/* Hover : tilt subtil + légère élévation */
.services-card-item:hover,
.services-card-item:focus-within {
  transform: translateY(-2px) scale(1.01) rotate3d(1, 0, 0, .6deg);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, .08),
    0 4px 12px rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .12);
  outline: none;
}

/* ===== ICON BOX (neutre au repos, teinte douce au hover) ===== */
.services-card-icon-box {
  --size: 52px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e9e9e9;
  /* neutre par défaut */
  color: var(--tone, #333);
  /* icône teintée si --tone défini */
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
  margin-bottom: 12px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.services-card-item:hover .services-card-icon-box {
  background: color-mix(in oklab, var(--tone, #666), white 80%);
  color: var(--tone, #333);
  transform: translateY(-1px) scale(1.05);
}

/* Icône SVG : visible d’emblée + “pop” à l’arrivée */
.services-card-icon {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .98;
  transform: scale(.92);
  animation: icon-pop .5s .08s cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes icon-pop {
  0% {
    transform: scale(.9);
    opacity: 0
  }

  60% {
    transform: scale(1.04);
    opacity: 1
  }

  100% {
    transform: scale(1);
  }
}

/* ===== TITRES & TEXTES ===== */
.services-card-title {
  margin: 6px 0 8px;
  font-size: clamp(1.02rem, 1.1vw + .9rem, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: .2px;
  transition: color .25s ease;
}

.services-card-item:hover .services-card-title {
  color: var(--tone, var(--text));
}

.services-card-description {
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: clamp(.95rem, .6vw + .85rem, 1rem);
  line-height: 1.58;
}

.services-card-description strong {
  color: color-mix(in oklab, var(--text), var(--tone, #666) 20%);
  font-weight: 800;
}

/* ===== BADGE HIGHLIGHT (accordé à la teinte) ===== */
.services-card-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 10px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--tone, #666), white 92%);
  border: 1px solid rgba(0, 0, 0, .06);
  color: color-mix(in oklab, var(--tone, #444), black 30%);
  font-size: .92rem;
  transform: translateY(2px);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.services-card-item:hover .services-card-highlight {
  transform: translateY(0);
  background: color-mix(in oklab, var(--tone, #666), white 88%);
  color: var(--tone, #444);
}

.services-highlight-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}

/* ===== VARIANTES COULEURS (pastels discrets) =====
   Ajoute simplement l’une de ces classes sur une carte pour la teinter.
   Sinon, tout reste neutre. */
.services-card-blue {
  --tone: #4f83cc;
}

/* bleu doux */
.services-card-purple {
  --tone: #8b6fcf;
}

/* violet feutré */
.services-card-orange {
  --tone: #e5a24d;
}

/* orange caramel */
.services-card-red {
  --tone: #d76a6a;
}

/* rouge doux */
.services-card-yellow {
  --tone: #d6b84f;
}

/* jaune moutarde */
.services-card-teal {
  --tone: #4ba8a0;
}

/* teal doux */
.services-card-pink {
  --tone: #cc6fa1;
}

/* rose pastel */
.services-card-green {
  --tone: #7a8a7a;
}

/* vert-gris (désaturé) */

/* ===== SCROLLBAR PREMIUM ===== */
.services-cards-grid {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, .28) transparent;
  /* Firefox */
}

.services-cards-grid::-webkit-scrollbar {
  height: 12px;
}

.services-cards-grid::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.services-cards-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .18);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.services-cards-grid:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .28);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .services-card-item {
    flex-basis: min(86%, 360px);
  }
}

/* ===== ACCESSIBILITÉ & RÉDUCTION DE MOUVEMENT ===== */
.services-card-item:focus-within {
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .18),
    0 10px 30px rgba(0, 0, 0, .08);
}

@media (prefers-reduced-motion: reduce) {
  .services-cards-grid {
    scroll-behavior: auto;
  }

  .services-card-item,
  .services-card-icon,
  .services-card-highlight {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Banner ---------- */
.services-bottom-banner {
  background: linear-gradient(135deg, #6A42C2 0%, #4B2C91 50%, #2C3E91 100%);
  padding: 46px;
  border-radius: 24px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(106, 66, 194, 0.25),
    0 8px 20px rgba(44, 62, 145, 0.2);
  position: relative;
  overflow: hidden;

  /* Animation du fond */
  background-size: 200% 200%;
  animation: bannerFlow 12s ease-in-out infinite;
}

@keyframes bannerFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ---------- Contenu ---------- */
.services-banner-title {
  font-size: clamp(1.25rem, 1.5vw + 1rem, 1.6rem);
  margin-bottom: 12px;
  font-weight: 700;
}

.services-banner-title strong {
  color: #FFDDEE;
  /* petit accent pastel */
}

.services-banner-text {
  font-size: 1rem;
  margin-bottom: 22px;
  opacity: 0.9;
}

/* ---------- Bouton (fixe, pas de hover) ---------- */
.services-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #4B2C91;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ---------- Icon ---------- */
.services-banner-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  color: #4B2C91;
  /* icône toujours visible */
}


/* Titre */
.services-banner-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.services-banner-title strong {
  font-weight: 900;
  color: #E5D4FF;
  /* accent clair sur certains mots */
}

/* Texte */
.services-banner-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Bouton CTA Services */
/* --- Bouton SERVICES (desktop par défaut) --- */
.services-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  inline-size: fit-content;
  /* pas de largeur forcée */
  max-inline-size: 100%;
  padding: 14px 26px;
  border-radius: 999px;

  background: #fff;
  color: #0A0A0A;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.3px;
  text-decoration: none;

  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
  margin-inline: auto;
  /* centré */
  line-height: 1;
  /* évite la sur-hauteur */
}

.services-banner-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

.services-banner-button span {
  color: #0A0A0A;
}

.services-banner-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
}

.services-banner-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(124, 92, 255, .25);
}

.services-banner-button:active {
  transform: translateY(-1px);
}

/* --- Mobile: plus compact, pas “pilule géante” --- */
@media (max-width: 768px) {
  .services-banner-button {
    inline-size: min(100%, 320px);
    /* jamais plus large que 320px */
    padding: 12px 0px;
    /* moins haut */
    border-radius: 14px;
    /* moins arrondi -> moins “pillule” */
    gap: 8px;
    font-size: 16px;
  }

  .services-banner-button svg {
    width: 18px;
    height: 18px;
  }
}

/* Très petit écran: permet pleine largeur si besoin, mais garde la compacité */
@media (max-width: 380px) {
  .services-banner-button {
    inline-size: 100%;
    max-inline-size: 100%;
  }
}

/* ---------- Responsive ---------- */
@media (max-width:1200px) {
  .services-content-container {
    padding: 0 60px;
  }

  .services-cards-grid {
    gap: 20px;
  }
}

@media (max-width:992px) {
  .services-content-container {
    padding: 0 40px;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
  }

  .services-main-title {
    font-size: 40px;
  }
}

@media (max-width:768px) {
  .services-main-section {
    padding: 56px 0 72px;
  }

  /* encore plus compact sur mobile */
  .services-content-container {
    padding: 0 20px;
  }

  .services-header-wrapper {
    margin-bottom: 44px;
  }

  .services-main-title {
    font-size: 32px;
  }

  .services-subtitle {
    font-size: 16px;
  }

  .services-card-item {
    padding: 26px;
  }
}

@media (max-width:480px) {
  .services-main-title {
    font-size: 28px;
  }

  .services-card-item {
    padding: 22px;
  }
}

/* Respect “réduire les animations” */
@media (prefers-reduced-motion: reduce) {

  .services-main-title strong,
  .services-header-wrapper .services-main-title::after {
    animation: none;
  }

  .services-card-item,
  .services-card-icon-box {
    transition: none;
  }
}

/* ===========================
   SECTION ZONES D'INTERVENTION (alignée)
   =========================== */
.zones-main-section {
  position: relative;
  width: 100%;
  padding: 55px 0;
  /* réduit pour s’aligner avec services */
  background: #FAFAFA;
}

.zones-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .zones-main-section {
    padding: 40px 0;
  }

  .zones-content-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .zones-main-section {
    padding: 30px 0;
    /* compact sur mobile */
  }

  .zones-content-container {
    padding: 0 20px;
  }
}

.zones-header-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

/* Badge titre — bord dégradé violet/bleu */
.zones-small-title {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 1.6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  /* cohérent avec Services */
  color: #111;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #8A2BE2, #1E90FF) border-box;
  /* violet → bleu */
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

/* Animation pour les <strong> */
@keyframes zonesGradFlow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.zones-main-title {
  font-size: clamp(28px, 5.5vw, 40px);
  /* uniforme avec les autres sections */
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  text-align: center;
  /* pour bien centrer la ligne */
  position: relative;
}

/* Dégradé animé uniquement sur <strong> */
.zones-main-title strong {
  background: linear-gradient(90deg, #8A2BE2, #1E90FF, #8A2BE2);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: zonesGradFlow 6s ease-in-out infinite;
}

/* Ligne dégradée en dessous */
.zones-main-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  /* centrée */
  border-radius: 2px;
  background: linear-gradient(135deg, #8A2BE2, #1E90FF);
  animation: underlineGrow 700ms ease forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0
  }

  to {
    width: 64px;
    opacity: 1
  }
}

/* Sous-titre sobre et lisible */
.zones-subtitle {
  font-size: 16px;
  color: #444;
  /* gris doux pour hiérarchie */
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   HERO CARD (violet dominant, responsive)
   =========================== */
.zones-hero-card {
  background: linear-gradient(135deg, #4B2C91 0%, #6A42C2 55%, #804CE4 100%);
  background-size: 160% 160%;
  animation: zonesHeroFlow 12s ease-in-out infinite;
  padding: 46px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 44px;
  margin-bottom: 56px;
  box-shadow: 0 30px 80px rgba(75, 44, 145, .25);
  position: relative;
  overflow: hidden;
  color: #fff;
}

@keyframes zonesHeroFlow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

/* halo doux */
.zones-hero-card::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .12), transparent 70%);
  filter: blur(2px);
  opacity: .7;
  animation: zones-pulse 8s ease-in-out infinite;
}

@keyframes zones-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.1);
    opacity: .9;
  }
}

/* Left */
.zones-hero-left {
  flex-shrink: 0;
  text-align: center;
}

.zones-hero-icon {
  width: 132px;
  height: 132px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  animation: zones-float 4s ease-in-out infinite;
}

.zones-hero-icon svg {
  width: 68px;
  height: 68px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

@keyframes zones-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.zones-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
}

/* Right */
.zones-hero-right {
  flex: 1;
  position: relative;
  z-index: 1;
}

.zones-hero-title {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.zones-hero-code {
  display: inline-block;
  margin-left: 10px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.zones-hero-description {
  font-size: 17px;
  color: rgba(255, 255, 255, .92);
  line-height: 1.75;
  margin-bottom: 26px;
}

.zones-hero-description strong {
  color: #fff;
  font-weight: 900;
}

.zones-hero-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.zones-hero-stat {
  text-align: center;
  flex: 1;
}

.zones-hero-stat-number {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.zones-hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .zones-hero-card {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 38px 28px;
  }

  .zones-hero-title {
    font-size: 30px;
  }

  .zones-hero-code {
    margin-left: 0;
    margin-top: 8px;
    display: block;
    font-size: 20px;
  }

  .zones-hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .zones-hero-stats {
    justify-content: center;
    gap: 18px;
  }

  .zones-hero-stat-number {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .zones-hero-card {
    padding: 28px 20px;
    gap: 22px;
  }

  .zones-hero-icon {
    width: 100px;
    height: 100px;
  }

  .zones-hero-icon svg {
    width: 50px;
    height: 50px;
  }

  .zones-hero-title {
    font-size: 24px;
  }

  .zones-hero-code {
    font-size: 18px;
  }

  .zones-hero-description {
    font-size: 15px;
  }

  .zones-hero-stat-number {
    font-size: 22px;
  }
}

/* ===========================
   DIVIDER (accent aligné)
   =========================== */
.zones-divider {
  text-align: center;
  position: relative;
  margin: 56px 0 46px;
}

.zones-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(124, 92, 255, .35) 50%, transparent 100%);
}

.zones-divider-text {
  position: relative;
  display: inline-block;
  background: #FAFAFA;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 800;
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===========================
   GRID DES CARTES (Responsive)
   =========================== */
.zones-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* PC */
  gap: 26px;
  margin-bottom: 56px;
}

/* Tablette : 2 colonnes */
@media (max-width: 1200px) {
  .zones-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile : 1 colonne */
@media (max-width: 768px) {
  .zones-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Cartes */
.zones-card-item {
  background: #fff;
  padding: 36px;
  border-radius: 20px;
  border: 2px solid #E8E8E8;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;

  /* Animation apparition */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeLift .7s ease forwards;
}

.zones-card-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-2, #804ce4), #6A42C2);
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.zones-card-item:hover::before {
  transform: translateX(0);
}

.zones-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .12);
  border-color: rgba(124, 92, 255, .35);
}

/* Icône de carte */
.zones-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(124, 92, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.zones-card-item:hover .zones-card-icon {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 10px 28px rgba(124, 92, 255, .25);
  background: #804ce4;
}

.zones-card-icon svg {
  width: 34px;
  height: 34px;
  stroke: #0A0A0A;
  fill: none;
  stroke-width: 2;
}

.zones-card-item:hover .zones-card-icon svg {
  stroke: #fff;
}

/* Textes carte */
.zones-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0A0A0A;
  margin-bottom: 10px;
  letter-spacing: -.4px;
}

.zones-card-description {
  font-size: 15px;
  line-height: 1.75;
  color: #525252;
  margin-bottom: 22px;
}

.zones-card-description strong {
  color: #0A0A0A;
  font-weight: 700;
}

/* Footer carte */
.zones-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 2px solid #F0F0F0;
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
}

.zones-card-footer svg {
  width: 20px;
  height: 20px;
  stroke: #0A0A0A;
  fill: none;
  stroke-width: 2;
}

/* Carte spéciale */
.zones-card-special {
  background: #F6F3FF;
  border-color: #E1DAFF;
}

.zones-card-special .zones-card-icon {
  background: rgba(124, 92, 255, .16);
}

.zones-card-special .zones-card-corner {
  background: #804ce4;
  opacity: .06;
}

/* ===========================
   CTA BANNER
   =========================== */
.zones-cta-banner {
  background: linear-gradient(135deg, #6A42C2 0%, #4B2C91 70%, #804ce4 100%);
  background-size: 160% 160%;
  animation: zonesHeroFlow 14s ease-in-out infinite;
  padding: 46px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(106, 66, 194, .25);
}

.zones-cta-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.4px;
}

.zones-cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, .86);
  margin-bottom: 26px;
  line-height: 1.6;
}

/* Bouton CTA */
.zones-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  inline-size: fit-content;
  max-inline-size: 100%;
  padding: 14px 26px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
  text-decoration: none;
  margin-inline: auto;
  line-height: 1;
}

.zones-cta-button svg {
  width: 20px;
  height: 20px;
  stroke: #0A0A0A;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.zones-cta-button span {
  color: #0A0A0A;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zonesHeroFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce) {

  .zones-card-item,
  .zones-cta-banner {
    animation: none;
    transition: none;
  }
}


/* ===========================
   SECTION CONTACT (alignée thème violet/vert)
   =========================== */
.contact-main-section {
  position: relative;
  width: 100%;
  padding: 40px 0;
  /* padding interne haut/bas */
  margin-top: 20px;
  /* ↓ réduit l’espace externe avant la section */
  background: #FFFFFF;
}

@media (max-width: 992px) {
  .contact-main-section {
    padding: 30px 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .contact-main-section {
    padding: 24px 0;
    margin-top: 10px;
  }
}


.contact-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  /* un peu plus serré */
}

/* Responsive */
@media (max-width: 992px) {
  .contact-content-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .contact-content-container {
    padding: 0 16px;
  }
}

.contact-header-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

/* Badge titre — bord dégradé comme les autres sections */
.contact-small-title {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 1.6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  /* cohérent avec autres sections */
  color: #0A0A0A;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #8A2BE2, #1E90FF) border-box;
  /* Violet → Bleu */
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/* Animation dégradé pour mots forts */
@keyframes contactGradFlow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.contact-main-title {
  font-size: clamp(28px, 5.5vw, 40px);
  /* responsive uniforme */
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
}

/* Dégradé animé uniquement sur <strong> */
.contact-main-title strong {
  background: linear-gradient(90deg, #8A2BE2, #1E90FF, #8A2BE2);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: contactGradFlow 6s ease-in-out infinite;
}

/* Soulignement moderne sous le H2 */
.contact-main-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 64px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(135deg, #8A2BE2, #1E90FF);
  animation: underlineGrow 700ms ease forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0
  }

  to {
    width: 64px;
    opacity: 1
  }
}

/* Sous-titre sobre et lisible */
.contact-subtitle {
  font-size: 16px;
  color: #444;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   GRILLE PRINCIPALE
   =========================== */
.contact-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ===========================
   COLONNE FORMULAIRE
   =========================== */
.contact-form-column {
  position: relative;
}

.contact-form-card {
  background: #FAFAFA;
  padding: 46px;
  border-radius: 24px;
  border: 2px solid #E8E8E8;
  position: relative;
  overflow: hidden;
}

/* petit filet haut dégradé discret */
.contact-form-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-2, #804ce4), #3B82F6);
  opacity: .9;
}

.contact-form-title {
  font-size: 28px;
  font-weight: 900;
  color: #0A0A0A;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}

.contact-form-subtitle {
  font-size: 16px;
  color: #525252;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-label {
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 8px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 14px 0px;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-size: 15px;
  color: #0A0A0A;
  background: #FFFFFF;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #804ce4;
  box-shadow: 0 0 0 4px rgba(124, 92, 255, .12);
}

.contact-form-input::placeholder,
/* Style spécifique du placeholder */
.contact-form-select:focus,
.contact-form-textarea::placeholder {
  color: #A0A0A0;
  text-indent: 6px;
  /* décale uniquement le texte du placeholder */
  opacity: 1;
  /* force l’affichage à pleine opacité */
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-select {
  cursor: pointer;
}

/* bloc rassurance */
.contact-form-reassurance {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #E8E8E8;
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.contact-reassurance-icon {
  width: 20px;
  height: 20px;
  stroke: #0A0A0A;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.contact-form-reassurance strong {
  color: #0A0A0A;
  font-weight: 800;
}

/* Bouton — uni violet (pas de dégradé) */
.contact-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #6A42C2;
  /* violet dominant */
  color: #FFFFFF;
  padding: 16px 34px;
  border-radius: 12px;
  border: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.3px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  margin-top: 8px;
}

.contact-form-button:hover {
  background: #4B2C91;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(106, 66, 194, .25);
}

.contact-form-button:active {
  transform: translateY(0);
}

.contact-form-button svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ===========================
   COLONNE INFO
   =========================== */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Cartes info */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: #FAFAFA;
  padding: 22px;
  border-radius: 16px;
  border: 2px solid #E8E8E8;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-info-card:hover {
  transform: translateX(4px);
  border-color: rgba(124, 92, 255, .45);
  box-shadow: 0 10px 24px rgba(124, 92, 255, .12);
}

/* Icone info — violet doux + inversion au hover */
.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(124, 92, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: #804ce4;
  transform: scale(1.06) rotate(-5deg);
  box-shadow: 0 10px 24px rgba(124, 92, 255, .28);
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0A0A0A;
  fill: none;
  stroke-width: 2;
}

.contact-info-card:hover .contact-info-icon svg {
  stroke: #fff;
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-size: 12px;
  font-weight: 800;
  color: #6B6B6B;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-link {
  font-size: 20px;
  font-weight: 900;
  color: #0A0A0A;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -.4px;
  transition: color .2s ease;
}

.contact-info-link:hover {
  color: #4B2C91;
}

.contact-info-text {
  font-size: 14px;
  color: #525252;
}

/* ===========================
   MAP
   =========================== */
.contact-map-card {
  background: #FAFAFA;
  border-radius: 16px;
  border: 2px solid #E8E8E8;
  overflow: hidden;
}

.contact-map-container {
  position: relative;
  width: 100%;
  height: 350px;
  background: #E8E8E8;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-map-footer {
  padding: 18px 22px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.contact-map-footer svg {
  width: 20px;
  height: 20px;
  stroke: #0A0A0A;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-map-footer strong {
  color: #0A0A0A;
  font-weight: 800;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .contact-content-container {
    padding: 0 60px;
  }

  .contact-grid-wrapper {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .contact-content-container {
    padding: 0 40px;
  }

  .contact-main-title {
    font-size: 40px;
  }

  .contact-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact-main-section {
    padding: 72px 0;
  }

  .contact-content-container {
    padding: 0 20px;
  }

  .contact-header-wrapper {
    margin-bottom: 48px;
  }

  .contact-main-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 30px 24px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-map-container {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .contact-main-title {
    font-size: 28px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .contact-form-title {
    font-size: 22px;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-link {
    font-size: 18px;
  }
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
  .contact-main-title strong {
    animation: none;
  }

  .contact-info-card,
  .contact-form-button {
    transition: none;
  }
}

/* ===========================
   SECTION FAQ (alignée thème)
   =========================== */
.faq-main-section {
  position: relative;
  width: 100%;
  padding: 84px 0;
  /* aligné aux autres */
  background: #FAFAFA;
}

.faq-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.faq-header-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

/* Badge titre — bord dégradé violet/bleu */
.faq-small-title {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 1.6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  /* même taille que dans Contact/Services */
  color: #0A0A0A;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #8A2BE2, #1E90FF) border-box;
  /* Violet → Bleu */
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/* Animation de dégradé partagée */
@keyframes faqGradFlow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.faq-main-title {
  font-size: clamp(28px, 5.5vw, 40px);
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
}

/* Dégradé ANIMÉ uniquement sur le <strong> du H2 */
.faq-main-title strong {
  background: linear-gradient(90deg, #8A2BE2, #1E90FF, #8A2BE2);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: faqGradFlow 6s ease-in-out infinite;
}

/* Soulignement gradient sous le titre */
.faq-main-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 64px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(135deg, #8A2BE2, #1E90FF);
  animation: underlineGrow 700ms ease forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0
  }

  to {
    width: 64px;
    opacity: 1
  }
}

/* Sous-titre lisible — noir uni */
.faq-subtitle {
  font-size: 16px;
  color: #0A0A0A;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   LAYOUT GRILLE
   =========================== */
.faq-grid-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 46px;
  align-items: start;
}

/* ===========================
   COLONNE QUESTIONS
   =========================== */
.faq-questions-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #E8E8E8;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.faq-item:hover {
  border-color: #D9D9E7;
  /* léger violet gris */
}

.faq-item.faq-active {
  border-color: rgba(124, 92, 255, .85);
  /* violet */
  box-shadow: 0 12px 36px rgba(124, 92, 255, .16);
  transform: translateY(-2px);
}

.faq-question-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s ease;
}

.faq-question-button:hover {
  background: #FAFAFA;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.4;
  letter-spacing: -.3px;
  padding-right: 20px;
}

/* Pastille icône — violette (inverse en actif) */
.faq-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #804ce4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  stroke-width: 2.5;
  transition: stroke .25s ease;
}

.faq-item.faq-active .faq-icon-wrapper {
  transform: rotate(45deg);
  background: #FFFFFF;
  border: 2px solid #804ce4;
}

.faq-item.faq-active .faq-icon {
  stroke: #804ce4;
}

/* Réponse (accordéon) */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.faq-active .faq-answer-wrapper {
  max-height: 520px;
}

.faq-answer-content {
  padding: 0 28px 28px;
  border-top: 1px solid #F0F0F0;
}

.faq-answer-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #525252;
  padding-top: 20px;
}

.faq-answer-content strong {
  color: #0A0A0A;
  font-weight: 800;
}

/* ===========================
   COLONNE CTA (sticky)
   =========================== */
.faq-cta-column {
  position: relative;
}

.faq-cta-sticky {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Carte CTA — fond violet profond, halo subtil */
.faq-cta-card {
  background: #4B2C91;
  /* violet sombre uni */
  padding: 36px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(75, 44, 145, .28);
  position: relative;
  overflow: hidden;
}

.faq-cta-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(80% 80% at 30% 20%, rgba(124, 92, 255, .25), transparent 60%),
    radial-gradient(80% 80% at 80% 80%, rgba(184, 255, 0, .15), transparent 65%);
  pointer-events: none;
}

.faq-cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: faqPulse 3s ease-in-out infinite;
}

@keyframes faqPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
}

.faq-cta-icon svg {
  width: 40px;
  height: 40px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
}

.faq-cta-title {
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}

.faq-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* --- FAQ CTA — fixes visuels --- */
.faq-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px;
  /* un peu moins haut */
  border-radius: 24px;
  background: linear-gradient(135deg, #5630B3 0%, #6B44D0 60%, #4B2C91 100%);
  /* violet dominant */
  box-shadow: 0 24px 60px rgba(75, 44, 145, .22);
  overflow: visible;
  /* évite les crops d’ombres du bouton */
}

.faq-cta-icon {
  width: 72px;
  height: 72px;
  margin: 0 0 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
}

.faq-cta-title {
  margin-bottom: 8px;
}

/* Bouton principal */
.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 80%;
  padding: 16px 32px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-weight: 800;
  font-size: 17px;
  /* ≥16px : évite le zoom iOS */
  letter-spacing: -0.3px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
}

.faq-cta-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(124, 92, 255, .25);
}

.faq-cta-button:active {
  transform: translateY(-1px);
}

.faq-cta-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Force la même apparence sur tous les états de lien */
.faq-cta-button,
.faq-cta-button:link,
.faq-cta-button:visited,
.faq-cta-button:hover,
.faq-cta-button:active {
  color: #0A0A0A;
  text-decoration: none;
}

/* iOS Safari : évite le restylage auto des numéros */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

/* ======= Mobile ======= */
@media (max-width: 768px) {
  .faq-cta-button {
    padding: 18px 20px;
    /* + haut, + compact en largeur */
    font-size: 16px;
    gap: 10px;
    width: 80%;
  }

  .faq-cta-button svg {
    width: 18px;
    height: 18px;
  }
}

/* ======= Petit mobile ======= */
@media (max-width: 480px) {
  .faq-cta-button {
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
    /* ombre plus douce */
    width: 80%;
  }
}

.faq-cta-button svg {
  width: 18px;
  height: 18px;
  stroke: #0A0A0A;
}

.faq-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(124, 92, 255, .24);
}

/* Texte d’accroche lisible (pas de dégradé) */
.faq-cta-text {
  color: rgba(255, 255, 255, .90);
}

/* Petit halo décoratif discret (adoucit l’animation) */
.faq-cta-card::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background:
    radial-gradient(60% 70% at 25% 20%, rgba(255, 255, 255, .10), transparent 60%),
    radial-gradient(50% 60% at 85% 85%, rgba(124, 92, 255, .18), transparent 65%);
  pointer-events: none;
  filter: blur(0.2px);
}

/* Mobile : on repasse le bouton en pleine largeur pour l’ergonomie */
@media (max-width: 640px) {
  .faq-cta-button {
    width: 100%;
    min-width: 0;
  }
}


/* Carte infos additionnelles */
.faq-info-card {
  background: #FFFFFF;
  padding: 26px;
  border-radius: 16px;
  border: 2px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #0A0A0A;
  font-weight: 700;
}

.faq-info-item svg {
  width: 20px;
  height: 20px;
  stroke: #0A0A0A;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .faq-content-container {
    padding: 0 60px;
  }

  .faq-grid-layout {
    grid-template-columns: 1fr 350px;
    gap: 38px;
  }
}

@media (max-width: 992px) {
  .faq-content-container {
    padding: 0 40px;
  }

  .faq-main-title {
    font-size: 40px;
  }

  .faq-grid-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq-cta-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .faq-main-section {
    padding: 72px 0;
  }

  .faq-content-container {
    padding: 0 20px;
  }

  .faq-header-wrapper {
    margin-bottom: 48px;
  }

  .faq-main-title {
    font-size: 32px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-question-button {
    padding: 20px 22px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .faq-answer-content {
    padding: 0 22px 22px;
  }

  .faq-answer-content p {
    font-size: 15px;
  }

  .faq-cta-card {
    padding: 32px 26px;
  }

  .faq-cta-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .faq-main-title {
    font-size: 28px;
  }

  .faq-question-button {
    padding: 18px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-cta-card {
    padding: 28px 22px;
  }
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
  .faq-main-title strong {
    animation: none;
  }

  .faq-item,
  .faq-cta-button {
    transition: none;
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer-main-section {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 80px 0 0;
}

.footer-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

/* TOP FOOTER */
.footer-top-section {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

/* COLONNE BRAND */
.footer-brand-column {
  max-width: 400px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.footer-social-link:hover svg {
  stroke: #0A0A0A;
}

/* COLONNES */
.footer-column-title {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}

/* CONTACT LIST */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.5);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-contact-link,
.footer-contact-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #FFFFFF;
}

/* CTA SECTION */
.footer-cta-section {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-cta-content {
  flex: 1;
}

.footer-cta-title {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.footer-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* BOUTON CTA SOBRE (violet uni, responsive) */
.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #804ce4;
  /* Violet uni */
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.footer-cta-button:hover {
  background: #6A4BE0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.3);
}

.footer-cta-button svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
}

/* BOTTOM FOOTER */
.footer-bottom-section {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #FFFFFF;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .footer-content-container {
    padding: 0 60px;
  }

  .footer-grid-layout {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-content-container {
    padding: 0 40px;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-column {
    max-width: 100%;
  }

  .footer-cta-section {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-button {
    width: auto;
    /* pas full width */
    padding: 12px 22px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .footer-main-section {
    padding: 60px 0 0;
  }

  .footer-content-container {
    padding: 0 20px;
  }

  .footer-top-section {
    padding-bottom: 50px;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-cta-section {
    padding: 40px 0;
  }

  .footer-cta-title {
    font-size: 24px;
  }

  .footer-cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .footer-bottom-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-cta-title {
    font-size: 22px;
  }

  .footer-cta-text {
    font-size: 14px;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-cta-button {
    padding: 10px 18px;
    font-size: 14px;
  }
}


/* ========================
   Mentions légales amélioré
   ======================== */
.ml-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  background: #f9f9fb;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.ml-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #804ce4;
  text-align: center;
  letter-spacing: 0.5px;
}

.ml-section {
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  border-left: 4px solid #804ce4;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ml-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.ml-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #804ce4;
}

.ml-section p {
  margin-bottom: 1rem;
  color: #111;
  line-height: 1.7;
  font-size: 1rem;
}

.ml-section a {
  color: #804ce4;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.ml-section a:hover {
  color: #652bbd;
}

/* === Bouton retour === */
.ml-btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 2.5rem auto 0 auto;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #8A2BE2 0%, #1E90FF 100%);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  transition: background .3s ease, transform .3s ease;
  box-shadow: 0 4px 12px rgba(128, 76, 228, .3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}

.ml-btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(101, 43, 189, .35);
  filter: brightness(1.05);
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 600px) {
  .ml-container {
    padding: 1.5rem 1rem;
  }

  .ml-title {
    font-size: 1.8rem;
  }

  .ml-section h2 {
    font-size: 1.25rem;
  }

  .ml-btn-home {
    display: block;
    width: 90%;
    /* laisse un petit espace sur les côtés */
    text-align: center;
    white-space: normal;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    border-radius: 12px;
    /* arrondis plus doux en mobile */
  }
}

/* ===========================
   CAPTCHA STYLING
   =========================== */
.contact-form-captcha-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  align-items: center;
}

/* Wrapper du widget reCAPTCHA */
.g-recaptcha {
  transform: scale(0.95);
  transform-origin: center;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.g-recaptcha:hover {
  transform: scale(0.97);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Responsive captcha */
@media (max-width: 480px) {
  .contact-form-captcha-wrapper {
    gap: 16px;
  }

  .g-recaptcha {
    transform: scale(0.85);
    /* Plus petit sur mobile */
  }
}

/* Très petit écran */
@media (max-width: 360px) {
  .g-recaptcha {
    transform: scale(0.75);
  }
}

/* Animation du bouton pendant l'envoi */
.contact-form-button:disabled {
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

.contact-form-button span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Animation des champs au focus */
.contact-form-group {
  transition: transform 0.2s ease;
}
