/* Custom variables matching standard CSS rules */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(23, 23, 23, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.05);
  }
  
  /* Global Container Rules */
  .services-section {
    padding: 6rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  /* Header Styling */
  .section-header {
    text-align: center;
    margin-bottom: 5rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 98, 2, 0.8);
    background-color: rgba(250, 204, 21, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(250, 204, 21, 0.2);
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
  }
  
  @media (min-width: 768px) {
    .section-title {
      font-size: 3.75rem;
    }
  }
  
  .gradient-text {
    color: transparent;
    background-image: linear-gradient(to right, #fe6a04, #1831ff);
    -webkit-background-clip: text;
    background-clip: text;
  }
  
  .section-description {
    color: #a3a3a3;
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .section-description {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }
  }
  
  /* Grid Layout */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Card Styling */
  .service-card {
    position: relative;
    background-color: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5rem cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s;
    transition-delay: var(--delay);
  }
  
  .service-card:hover {
    transform: translateY(-0.25rem);
    border-color: var(--hover-border);
  }
  
  /* Ambient Ambient Neon Glow Background */
  .ambient-glow {
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    opacity: 0;
    pointer-events: none;
    filter: blur(24px);
    background: radial-gradient(circle at 10% 20%, var(--glow-color) 0%, transparent 70%);
    transition: opacity 0.5s ease;
  }
  
  .service-card:hover .ambient-glow {
    opacity: 1;
  }
  
  .card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 98, 2);
    background-color: var(--icon-bg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
  }
  
  .service-card:hover .icon-wrapper {
    transform: scale(1.1);
  }
  
  .badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    transition: color 0.3s;
  }
  
  .service-card:hover .badge {
    color: #d1d5db;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: -0.025em;
    transition: background-image 0.3s;
  }
  
  .service-card:hover .card-title {
    background-image: linear-gradient(to right, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .card-text {
    color: #a3a3a3;
    font-weight: 300;
    line-height: 1.625;
    font-size: 0.875rem;
    margin: 0;
    transition: color 0.3s;
  }
  
  @media (min-width: 768px) {
    .card-text {
      font-size: 1rem;
    }
  }
  
  .service-card:hover .card-text {
    color: #d1d5db;
  }
  
  /* Card Interactive Link Indicator */
  .card-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    cursor: pointer;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    transition: color 0.3s;
  }
  
  .service-card:hover .card-footer {
    color: #ffffff;
  }
  
  .arrow-icon {
    transition: transform 0.3s;
  }
  
  .service-card:hover .arrow-icon {
    transform: translateX(4px);
  }
  
  /* Metrics Section Layout */
  .metrics-container {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(10, 10, 10, 0.4);
    border-radius: 1.5rem;
    border: 1px solid var(--border-subtle);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .metrics-container {
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
  }
  
  .metric-item {
    padding: 1rem;
    box-sizing: border-box;
  }
  
  /* Responsive dividers mimicking Tailwind's divide utility */
  @media (min-width: 768px) {
    .metric-item:not(:first-child) {
      border-left: 1px solid var(--border-subtle);
    }
  }
  @media (max-width: 767px) {
    .metric-item:nth-child(n+3) {
      border-top: 1px solid var(--border-subtle);
    }
  }
  
  .metric-value {
    font-size: 1.875rem;
    font-weight: 900;
  }
  
  @media (min-width: 768px) {
    .metric-value {
      font-size: 2.25rem;
    }
  }
  
  .metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
  }

  /*########## F&A section ##############
  /* Conteneur Section */
.pourquoi-section {
  padding: 6rem 1.2rem;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

/* Gradients Flous d'arrière plan Decoratifs */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -10;
}

.top-glow {
  top: 33.333%;
  /*left: 25%;
  width: 24rem;*/
  height: 24rem;
  background-color: rgba(250, 204, 21, 0.05);
  filter: blur(120px);
}

.bottom-glow {
  bottom: 25%;
  right: 25%;
  width: 31.25rem;
  height: 31.25rem;
  background-color: rgba(34, 211, 238, 0.05);
  filter: blur(150px);
}

/* Layout Principal (Flex sur Mobile, Grid sur PC) */
.pourquoi-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .pourquoi-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 4rem;
  }
}

/* Panneau Latéral Gauche */
.side-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: left;
}

@media (min-width: 1024px) {
  .side-panel {
    grid-column: span 4;
    position: sticky;
    top: 9rem;
  }
}

.panel-header {
  margin-bottom: 1rem;
}

.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(to right, rgba(250, 204, 21, 0.1), rgba(34, 211, 238, 0.1));
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fe6a04;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.sparkle-icon {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin: 1rem 0 0 0;
}

@media (min-width: 768px) {
  .main-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .main-title { font-size: 3.75rem; }
}

.gradient-text-lb {
  color: transparent;
  background-image: linear-gradient(to right, #fe6a04, #1831ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
}

.side-description {
  color: #a3a3a3;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.625;
  max-width: 24rem;
  margin: 0 0 1.5rem 0;
}

@media (min-width: 768px) {
  .side-description { font-size: 1.125rem; }
}

.engagements-box {
  display: none;
}

@media (min-width: 1024px) {
  .engagements-box {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

.engagements-title {
  display: block;
  font-family: monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.badge-row {
  display: flex;
  gap: 1rem;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.badge-row:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.footer-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}


/* Grille de Cartes d'Atouts (Correction stricte des colonnes) */
.atouts-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 carte par ligne sur Mobile */
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .atouts-grid {
    grid-column: span 8;
  }
}

@media (min-width: 768px) {
  .atouts-grid {
    /* Propriété valide : Exactement 2 cartes par ligne sur Écran */
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  }
}

/* Style Global d'une Carte */
.atout-card {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s, box-shadow 0.5s;
  transition-delay: var(--delay);
}

.atout-card:hover {
  transform: translateY(-0.375rem);
  border-color: var(--hover-border);
  box-shadow: 0 0 20px var(--glow-box);
}

/* Gestion de la 5ème carte sur Desktop (Largeur complète) */
@media (min-width: 768px) {
  .full-width-card {
    grid-column: span 2;
  }
}

/* Micro lueur néon en arrière plan de carte au survol */
.micro-glow {
  position: absolute;
  inset: -1px;
  border-radius: 2rem;
  opacity: 0;
  pointer-events: none;
  filter: blur(40px);
  z-index: -10;
  background: radial-gradient(circle at 10% 20%, var(--glow-bg) 0%, transparent 60%);
  transition: opacity 0.5s ease;
}

.atout-card:hover .micro-glow {
  opacity: 1;
}

.atout-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.card-top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: var(--accent-bg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.atout-card:hover .icon-box {
  transform: scale(1.1);
}

.tag-badge {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #6b7280;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.atout-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.025em;
  transition: all 0.3s ease;
}

.atout-card:hover .atout-title {
  background-image: linear-gradient(to right, #ffffff, #e5e7eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.atout-desc {
  color: #a3a3a3;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .atout-desc { font-size: 1rem; }
}

.atout-card:hover .atout-desc {
  color: #d1d5db;
}

/* Pied de page esthétique des cartes */
.card-status-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: monospace;
  font-size: 11px;
  color: #6b7280;
}

.status-valid {
  color: var(--accent-color);
  text-transform: uppercase;
}

/*########## Notre approche section ##############*/
:root {
  --orange-accent: #fe6a04;
  --orange-bg: rgba(250, 204, 21, 0.1);
  --orange-border: rgba(250, 204, 21, 0.4);
  --blue-accent: #1831ff;
  --blue-bg: rgba(34, 211, 238, 0.1);
  --blue-border: rgba(34, 211, 238, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.05);
}
/* Base de la section */
.approche-section {
  padding: 6rem 1.2rem;
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

/* En-tête */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.header-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1831ff;
  background-color: rgba(34, 211, 238, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .section-title { font-size: 3.75rem; }
}

.gradient-text {
  color: transparent;
  background-image: linear-gradient(to right, #fe6a04, #1831ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-description {
  color: #a3a3a3;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 768px) {
  .section-description { font-size: 1.125rem; line-height: 1.75rem; }
}


/* ==========================================================================
   Pipeline Stepper Architecture (Système d'onglets CSS pur)
   ========================================================================== */
.pipeline-container {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Masquer les inputs radio */
.step-radio {
  display: none;
}

/* Ligne vertébrale (Backbone) fixe */
.pipeline-backbone {
  position: absolute;
  left: 2rem;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  background-color: #171717;
  border-radius: 9999px;
  overflow: hidden;
  z-index: 0;
}

@media (min-width: 1024px) {
  .pipeline-backbone { left: 2.5rem; }
}

/* Remplissage de la ligne de progression dynamique */
.pipeline-progress {
  width: 100%;
  height: 20%; /* Valeur par défaut */
  background: linear-gradient(to bottom,#fe6804ad, #182fffaa);
  transform-origin: top;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Changement de hauteur de ligne selon le bouton radio coché */
.pipeline-container:has(#step-1:checked) .pipeline-progress { height: 20%; }
.pipeline-container:has(#step-2:checked) .pipeline-progress { height: 40%; }
.pipeline-container:has(#step-3:checked) .pipeline-progress { height: 60%; }
.pipeline-container:has(#step-4:checked) .pipeline-progress { height: 80%; }
.pipeline-container:has(#step-5:checked) .pipeline-progress { height: 100%; }


/* Wrapper général d'une étape (Sert de Label cliquable) */
.step-wrapper {
  position: relative;
  padding-left: 4rem;
  cursor: pointer;
  display: block;
  opacity: 0.6;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .step-wrapper { padding-left: 5rem; }
}

.step-wrapper:hover {
  opacity: 0.9;
}

/* Gestion du statut Sélectionné via CSS */
.step-radio:checked + .step-wrapper {
  opacity: 1;
  transform: scale(1.01);
}

/* Bulle du Node Numéroté */
.pipeline-node {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid #262626;
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .pipeline-node { left: 1.5rem; }
}

.pipeline-node span {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #737373;
  transition: color 0.3s;
}

/* Style Node Sélectionné (Thème Orange) */
.step-radio:checked + .step-wrapper.orange-theme .pipeline-node {
  background-color: var(--orange-bg);
  border-color: var(--orange-border);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(254, 106, 4, 0.3);
}
.step-radio:checked + .step-wrapper.orange-theme .pipeline-node span {
  color: var(--orange-accent);
}

/* Style Node Sélectionné (Thème Bleu) */
.step-radio:checked + .step-wrapper.blue-theme .pipeline-node {
  background-color: var(--blue-bg);
  border-color: var(--blue-border);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(24, 49, 255, 0.3);
}
.step-radio:checked + .step-wrapper.blue-theme .pipeline-node span {
  color: var(--blue-accent);
}


/* ==========================================================================
   Fiche Blueprint de l'Étape (Card)
   ========================================================================== */
.step-card {
  padding: 1.5rem;
  border-radius: 1.875rem;
  background-color: rgba(23, 23, 23, 0.3);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .step-card { padding: 2rem; }
}

/* Changements de bordures de carte sur statut Sélectionné */
.step-radio:checked + .step-wrapper.orange-theme .step-card {
  border-color: var(--orange-border);
  background-color: rgba(23, 23, 23, 0.85);
}

.step-radio:checked + .step-wrapper.blue-theme .step-card {
  border-color: var(--blue-border);
  background-color: rgba(23, 23, 23, 0.85);
}

.step-wrapper:not(:checked):hover .step-card {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Métadonnées de la carte */
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tech-badge {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  color: #a3a3a3;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

/* Association couleurs badges */
.orange-theme .tech-badge { --badge-text: var(--orange-accent); --badge-bg: var(--orange-bg); }
.blue-theme .tech-badge { --badge-text: var(--blue-accent); --badge-bg: var(--blue-bg); }

.step-radio:checked + .step-wrapper .tech-badge {
  color: var(--badge-text);
  background-color: var(--badge-bg);
}

.phase-label {
  font-family: monospace;
  font-size: 0.75rem;
  color: #525252;
}

/* Ligne titre & icône */
.card-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.icon-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050505;
  color: #a3a3a3;
  transition: all 0.5s ease;
}

.orange-theme .icon-container { --icon-act-color: var(--orange-accent); --icon-act-bg: var(--orange-bg); }
.blue-theme .icon-container { --icon-act-color: var(--blue-accent); --icon-act-bg: var(--blue-bg); }

.step-radio:checked + .step-wrapper .icon-container {
  color: var(--icon-act-color);
  background-color: var(--icon-act-bg);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 768px) {
  .card-title { font-size: 1.5rem; }
}

.card-description {
  color: #a3a3a3;
  font-weight: 300;
  line-height: 1.625;
  font-size: 0.875rem;
  margin: 0;
}

@media (min-width: 768px) {
  .card-description { font-size: 1rem; }
}


/* ==========================================================================
   Section Accordéon (Livrables masqués/affichés)
   ========================================================================== */
.deliverables-section {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s, padding 0.4s;
}

.step-radio:checked + .step-wrapper .deliverables-section {
  max-height: 400px; 
  opacity: 1;
  pointer-events: auto;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.deliverables-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #a3a3a3;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.orange-theme .deliverables-title svg { color: var(--orange-accent); }
.blue-theme .deliverables-title svg { color: var(--blue-accent); }

/* Grille Interne des Livrables : Exactement 2 colonnes sur Desktop, 1 sur Mobile */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.deliverable-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #d1d5db;
  transition: color 0.3s;
}

.deliverable-item:hover {
  color: #ffffff;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.orange-theme .check-icon { color: var(--orange-accent); }
.blue-theme .check-icon { color: var(--blue-accent); }