/* =========================================
   HERO DÉVELOPPEMENT D'INTERFACES CLIENT
   — CALQUÉ SUR HERO ACCUEIL
   ========================================= */

.pw-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg,  var(--primary) 0%, #137CB4 100%);
}

/* --- IMAGE DE FOND DROITE --- */
.pw-hero .pw-hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1400&h=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 100%);
}

/* --- Effet de sol (glow en bas) --- */
.pw-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: linear-gradient(to top, rgba(15, 35, 65, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

/* --- Inner --- */
.pw-hero .pw-hero-inner {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--pw-header-h, 92px) + 40px);
  padding-bottom: 60px;
}

/* --- Content --- */
.pw-hero .pw-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 650px;
  padding-left: 0;
}

/* --- H1 --- */
.pw-hero .pw-hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 3.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 800;
  max-width: 620px;
  margin: 0;
}

/* --- Paragraphe --- */
.pw-hero .pw-hero-content p {
  max-width: 600px;
  margin-top: 40px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.5;
  font-weight: 500;
}

/* --- Actions --- */
.pw-hero .pw-hero-actions {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* --- Boutons --- */
.pw-hero .pw-btn {
  height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pw-hero .pw-btn:hover {
  transform: translateY(-3px);
}

.pw-hero .pw-btn-light {
  min-width: 220px;
  background: var(--white);
  color: #1C6DD0;
}

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

.pw-hero .pw-btn-outline {
  min-width: 200px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.pw-hero .pw-btn-outline:hover {
  background: var(--white);
  color: #1C6DD0;
}

/* --- Particules --- */
.pw-hero .pw-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.pw-hero .pw-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.65;
  animation-name: pwFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes pwFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%       { transform: translate3d(var(--move-x), var(--move-y), 0); }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1100px) {
  .pw-hero .pw-hero-bg-image {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  }

  .pw-hero .pw-hero-inner {
    justify-content: flex-start;
    padding-top: calc(var(--pw-header-h, 88px) + 32px);
    padding-bottom: 50px;
    text-align: left;
  }

  .pw-hero .pw-hero-content {
    padding-left: 0;
    width: 100%;
    max-width: 560px;
    align-items: flex-start;
    margin: 0;
  }

  .pw-hero .pw-hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    max-width: 100%;
    letter-spacing: -1.5px;
  }

  .pw-hero .pw-hero-content p {
    margin-top: 24px;
    max-width: 100%;
    font-size: clamp(15px, 2vw, 18px);
  }

  .pw-hero .pw-hero-actions {
    margin-top: 32px;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  .pw-hero .pw-hero-inner {
    padding-top: calc(var(--pw-header-h, 88px) + 24px);
    padding-bottom: 40px;
  }

  .pw-hero .pw-hero-content h1 {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -1px;
  }

  .pw-hero .pw-hero-content p {
    margin-top: 20px;
    font-size: 15px;
  }

  .pw-hero .pw-hero-actions {
    margin-top: 28px;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .pw-hero .pw-btn {
    width: 100%;
    min-width: 0;
    height: 54px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .pw-hero .pw-hero-inner {
    padding-top: calc(var(--pw-header-h, 88px) + 20px);
  }

  .pw-hero .pw-hero-content h1 {
    font-size: 26px;
  }
}









































:root {
  --pill-blue:   #137CB4;
  --pill-orange: #F08020;
  --pill-dark:   #1C6DD0;
  --pill-text:   #0F2341;
  --pill-bg:     #f8fbff;
  --pill-border: #e3eaf2;

}

.pill-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 80px 0; /* Padding haut/bas, pas de padding latéral ici */
  display: flex;
  justify-content: center;
  font-family: 'Gevora Regular', 'Poppins', sans-serif;
}

.pill-container {
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px; /* Padding pour éviter que ça colle aux bords sur mobile */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Tout aligné à gauche */
}

/* ================= TITRE DE SECTION (Texte) ================= */
.pill-section-main-title {
  font-size: 36px; /* Taille titre standard */
  font-weight: 800;
  color: var(--pill-text);
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* ================= ONGLETS (Pilules) ================= */
.pill-tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.pill-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #607089;
  background: #ffffff;
  border: 1.5px solid var(--pill-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 2px 6px rgba(15, 35, 65, 0.04);
}

.pill-tab-icon {
  display: inline-flex;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.pill-tab:hover {
  border-color: #c2d4e3;
  color: var(--pill-text);
  box-shadow: 0 6px 16px rgba(15, 35, 65, 0.08);
}

/* États Actifs */
.pill-tab.is-active[data-pill="web"] {
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  border-color: var(--pill-blue);
  color: var(--pill-blue);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12), 0 8px 20px rgba(0, 174, 239, 0.15);
}
.pill-tab.is-active[data-pill="web"] .pill-tab-icon { color: var(--pill-blue); }

.pill-tab.is-active[data-pill="crm"] {
  background: linear-gradient(135deg, #ffffff, #fff7ee);
  border-color: var(--pill-orange);
  color: var(--pill-orange);
  box-shadow: 0 0 0 3px rgba(240, 128, 32, 0.12), 0 8px 20px rgba(240, 128, 32, 0.15);
}
.pill-tab.is-active[data-pill="crm"] .pill-tab-icon { color: var(--pill-orange); }

.pill-tab.is-active[data-pill="api"] {
  background: linear-gradient(135deg, #ffffff, #eff5ff);
  border-color: var(--pill-dark);
  color: var(--pill-dark);
  box-shadow: 0 0 0 3px rgba(28, 109, 208, 0.12), 0 8px 20px rgba(28, 109, 208, 0.15);
}
.pill-tab.is-active[data-pill="api"] .pill-tab-icon { color: var(--pill-dark); }

/* ================= CONTENU (Carte) ================= */
.pill-content-card {
  width: 100%;
  max-width: 800px; /* On limite la largeur de la carte pour qu'elle soit élégante */
  background: #ffffff;
  border: 1px solid #eef3f8;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 35, 65, 0.06);
  text-align: left;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pill-content-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--pill-text);
  margin: 0 0 24px 0;
}

.pill-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill-services li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--pill-text);
  font-weight: 500;
}

.pill-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #137CB4, #1C6DD0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pill-section-main-title { font-size: 28px; }
  .pill-content-card { padding: 24px; }
}




































/* =========================================
   SECTION MÉTHODOLOGIE
   ========================================= */

.method-section {
  background: #FFF8F2;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 450px;
  margin-bottom: -340px;
}

.method-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* ─── COLONNE GAUCHE STICKY ─── */
.method-side {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.method-title {
  font-size: 44px;
  font-weight: 800;
  color: #0F2341;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.method-desc {
  color: #607089;
  font-size: 18px;
  text-align: justify;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* ─── BOUTONS ─── */
.method-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.method-btn {
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.method-btn-solid {
  background: linear-gradient(135deg, #F08020 0%, #ff9a3d 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(240, 128, 32, 0.25);
}

.method-btn-solid:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.method-btn-ghost {
  border: 2px solid rgba(240, 128, 32, 0.25);
  color: #F08020;
  background: #ffffff;
}

.method-btn-ghost:hover {
  background: rgba(240, 128, 32, 0.08);
  color: #0F2341;
}

/* ─── CARTE DROITE ─── */
.method-card {
  background: #ffffff;
  border: 1px solid #f6e6d4;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 18px 55px rgba(240, 128, 32, 0.08);
}

.method-card-title {
  margin: 0 0 30px;
  color: #0F2341;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ─── ÉTAPES ─── */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-step {
  padding: 26px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #f6e6d4;
  transition: all 0.3s ease;
}

.method-step.is-active {
  border-color: #F08020;
  background: #fffbf7;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(240, 128, 32, 0.1);
}

.method-num {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(240, 128, 32, 0.10);
  color: #F08020;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  display: inline-block;
}

.method-step strong {
  display: block;
  margin-bottom: 8px;
  color: #0F2341;
  font-size: 20px;
}

.method-step p {
  margin: 0;
  color: #607089;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE TABLETTE (max 991px)
   ========================================= */

@media (max-width: 991px) {

  .method-section {
    padding-top: 70px;
    padding-bottom: 300px;
    margin-bottom: -220px;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Sticky désactivé sur tablette */
  .method-side {
    position: relative;
    top: 0;
    text-align: center;
  }

  .method-title {
    font-size: clamp(30px, 5vw, 40px);
  }

  .method-desc {
    font-size: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Boutons côte à côte centrés */
  .method-actions {
    justify-content: center;
    gap: 12px;
  }

  .method-card {
    padding: 30px;
    border-radius: 20px;
  }

  /* Étapes : désactiver le translateX sur tablette */
  .method-step.is-active {
    transform: translateX(0);
  }
}

/* =========================================
   RESPONSIVE MOBILE (max 600px)
   ========================================= */

@media (max-width: 600px) {

  .method-section {
    padding-top: 50px;
    padding-bottom: 200px;
    margin-bottom: -150px;
  }

  .method-title {
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: -0.5px;
  }

  .method-desc {
    font-size: 15px;
  }

  /* Boutons en colonne pleine largeur */
  .method-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .method-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
  }

  .method-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .method-card-title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .method-steps {
    gap: 14px;
  }

  .method-step {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .method-step strong {
    font-size: 17px;
  }

  .method-step p {
    font-size: 14px;
  }

  /* Étapes : pas de translateX sur mobile */
  .method-step.is-active {
    transform: translateX(0);
    box-shadow: 0 6px 20px rgba(240, 128, 32, 0.10);
  }
}

/* =========================================
   RESPONSIVE PETIT MOBILE (max 380px)
   ========================================= */

@media (max-width: 380px) {

  .method-section {
    padding-top: 40px;
    padding-bottom: 160px;
    margin-bottom: -120px;
  }

  .method-title {
    font-size: 24px;
  }

  .method-card {
    padding: 16px 14px;
  }

  .method-step {
    padding: 16px 14px;
  }

  .method-step strong {
    font-size: 15px;
  }

  .method-step p {
    font-size: 13px;
  }
}