/* ============================================================
   SERVICES.CSS — Styles communs + spécifiques aux pages services
============================================================ */

/* ============================================================
   COMMUN — PAGE HERO
============================================================ */
.page-hero {
  min-height: 420px;
  background-color: var(--color-dark);
  background-image: radial-gradient(circle, rgba(56,182,255,0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(56,182,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* CENTRÉ — version data-bi/applications/assurance/site-web */
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

/* Fil d'Ariane */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-blue); }
.breadcrumb-sep { opacity: 0.4; font-size: 0.7rem; }
.breadcrumb-current { color: rgba(255,255,255,0.7); }

/* H1 deux lignes */
.hero-h1-top {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  margin-bottom: 6px;
}
.hero-h1-bottom {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}
.page-hero h1 { margin: 20px 0 20px; }

/* H1 classique (assurance, site-web) */
.page-hero-h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin: 20px 0 24px;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* Encadré stats hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 680px;
  margin: 48px auto 0;
}
.hero-stat-item { text-align: center; padding: 0 16px; }
.hero-stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); }
.hero-stat-value { display: block; font-size: 1.8rem; font-weight: 700; color: var(--color-blue); line-height: 1.1; margin-bottom: 8px; }
.hero-stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.50); text-transform: uppercase; letter-spacing: 1px; line-height: 1.4; }

/* Responsive hero */
@media (max-width: 767px) {
  .page-hero { min-height: auto; padding: 100px 0 56px; }
  .hero-h1-top { font-size: 1.2rem; }
  .hero-h1-bottom { font-size: 1.8rem; }
  .page-hero-h1 { font-size: 1.9rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
}

/* ============================================================
   COMMUN — ACCROCHE GRID
============================================================ */
.accroche-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .accroche-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.accroche-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
  line-height: 1.35;
}
.accroche-text h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--color-blue);
  border-radius: 2px;
  margin-top: 14px;
}
.accroche-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 18px;
}
.accroche-text p.highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  font-style: italic;
}

/* ============================================================
   COMMUN — FAQ
============================================================ */
.faq-section { background: var(--color-gray-bg); }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-list details { border-bottom: 1px solid #E5E7EB; }
.faq-list details:first-child { border-top: 1px solid #E5E7EB; }
.faq-list summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  padding: 20px 40px 20px 0;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-blue);
  line-height: 1;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list summary:hover { color: var(--color-blue); }
.faq-answer {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  padding: 0 40px 24px 0;
}

/* ============================================================
   COMMUN — CTA FINAL (pages services)
============================================================ */
.page-cta {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.page-cta-title { font-size: 2.2rem; font-weight: 700; color: white; margin-bottom: 20px; line-height: 1.25; }
.page-cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.page-cta-email { margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.page-cta-email a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 767px) { .page-cta-title { font-size: 1.7rem; } }

/* ============================================================
   SECTION SUBTITLE (commun à toutes les pages)
============================================================ */
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text);
  text-align: center;
  max-width: 600px;
  margin: -24px auto 48px;
  line-height: 1.75;
}

/* why-grid / why-text → remplacés par .accroche-grid / .accroche-text */

/* Encadré chiffres clés — version assurance */
.page-assurance .key-numbers {
  background: var(--color-light);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-assurance .key-number-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-assurance .key-number-item:not(:last-child) {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(56,182,255,0.2);
}

.kn-arrow {
  font-size: 0.75rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: 4px;
}

.kn-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
}

.kn-label {
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* ============================================================
   ASSURANCE — TIMELINE
============================================================ */
.timeline-section {
  background: var(--color-white);
}

.timeline {
  max-width: 680px;
  margin: 56px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: rgba(56,182,255,0.2);
}

.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(56,182,255,0.15);
}

.timeline-content {
  flex: 1;
  padding-bottom: 8px;
}

.timeline-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-today {
  display: inline-block;
  background: var(--color-blue);
  color: white;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.75;
}

/* ============================================================
   ASSURANCE — DOMAINES (fond dark)
============================================================ */
.domains-section {
  background: var(--color-dark);
  padding: 80px 0;
}

.domains-section .section-title {
  color: var(--color-white);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 40px auto 0;
}

.tag {
  background: rgba(56,182,255,0.10);
  border: 1px solid rgba(56,182,255,0.30);
  color: var(--color-blue);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.tag:hover {
  background: rgba(56,182,255,0.18);
  border-color: rgba(56,182,255,0.55);
}

.domains-note {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* constat-grid / constat-text → remplacés par .accroche-grid / .accroche-text */

/* ============================================================
   SITE-WEB — KEY NUMBERS (version site-web)
============================================================ */
.page-site-web .key-numbers {
  background: var(--color-light);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-site-web .key-number-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
}

.page-site-web .key-number-item:first-child { padding-top: 0; }
.page-site-web .key-number-item:last-child  { padding-bottom: 0; }

.page-site-web .key-number-item:not(:last-child) {
  border-bottom: 1px solid rgba(56,182,255,0.2);
}

.page-site-web .kn-value { font-size: 1.5rem; }

/* ============================================================
   SITE-WEB — CARD TAG (version dark)
============================================================ */
.page-site-web .card-tag {
  display: inline-block;
  background: var(--color-dark);
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 12px;
  margin-top: 16px;
}

/* steps-wrapper / step → remplacés par .process-steps / .process-step */

/* ============================================================
   SITE-WEB — POURQUOI MOI (fond dark) — couleurs uniquement
============================================================ */
.why-me-text h2 { color: var(--color-white); }
.why-me-text p { color: rgba(255,255,255,0.72); margin-bottom: 18px; }
.why-me-text p:last-child { margin-bottom: 0; }

/* Stats bloc version sombre */
.stats-dark {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.stat-dark-item {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-dark-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-dark-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
}

.stat-dark-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============================================================
   DATA-BI — TERMINAL SQL
============================================================ */
.sql-terminal {
  background: #0D1117;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  overflow: hidden;
  font-family: 'Courier New', 'Consolas', monospace;
}

.terminal-bar {
  background: #1C2128;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.terminal-dot.red    { background: #FF5F57; }
.terminal-dot.yellow { background: #FEBC2E; }
.terminal-dot.green  { background: #28C840; }

.terminal-title {
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  margin-left: 8px;
  font-family: 'Inter', sans-serif;
}

.sql-code {
  margin: 0;
  padding: 28px 32px;
  font-size: 0.88rem;
  line-height: 2;
  color: #CDD9E5;
  white-space: pre;
  overflow-x: auto;
}

.sql-kw  { color: #FF7B72; }
.sql-col { color: #79C0FF; }
.sql-tbl { color: #FFA657; }
.sql-num { color: #A5D6FF; }

.sql-badge {
  margin: 0 32px 28px;
  background: rgba(56,182,255,0.08);
  border: 1px solid rgba(56,182,255,0.25);
  color: var(--color-blue);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  animation: sqlPulse 2s ease-in-out infinite;
}

@keyframes sqlPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============================================================
   DATA-BI — CARD TAGS (version light)
============================================================ */
.page-data-bi .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.page-data-bi .card-tag {
  background: var(--color-light);
  color: var(--color-blue);
  border-radius: 4px;
  font-size: 0.75rem;
  padding: 3px 8px;
  font-weight: 500;
}

/* ============================================================
   DATA-BI — SQL EXPERTISE (fond dark)
============================================================ */
.sql-expertise {
  background: var(--color-dark);
  padding: 80px 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .expertise-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.expertise-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.expertise-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Stack badges panel */
.stack-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

.stack-panel-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 24px;
  display: block;
}

.stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* Niveau 1 — experte */
.badge-l1 {
  background: var(--color-blue);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
}

/* Niveau 2 — courante */
.badge-l2 {
  background: rgba(56,182,255,0.12);
  color: var(--color-blue);
  border: 1px solid rgba(56,182,255,0.3);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
}

/* Niveau 3 — notions */
.badge-l3 {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.50);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 6px;
}

.stack-legend {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stack-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.l1 { background: var(--color-blue); }
.legend-dot.l2 { background: transparent; border: 1.5px solid var(--color-blue); }
.legend-dot.l3 { background: transparent; border: 1.5px solid rgba(255,255,255,0.2); }

/* ============================================================
   DATA-BI & APPLICATIONS — PROCESS SECTION
============================================================ */
.process-section {
  background: var(--color-white);
  padding: 80px 0;
}

/* Socle commun — 4 colonnes (data-bi) */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      rgba(56,182,255,0.3) 0,
      rgba(56,182,255,0.3) 8px,
      transparent 8px,
      transparent 16px
    );
    pointer-events: none;
  }
}

.process-step {
  background: var(--color-gray-bg);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .process-step {
    margin: 0 10px;
    border-radius: 12px;
  }
}

.process-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 16px;
}

.process-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
}

.process-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.process-text {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.65;
}

/* 5 colonnes (applications) */
@media (min-width: 768px) {
  .page-applications .process-steps {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1100px;
  }
  .page-applications .process-steps::before {
    left: calc(10% + 20px);
    right: calc(10% + 20px);
  }
  .page-applications .process-step {
    margin: 0 8px;
    padding: 28px 20px;
  }
  .page-applications .process-num { margin-bottom: 14px; }
  .page-applications .process-icon { width: 36px; height: 36px; margin-bottom: 14px; }
  .page-applications .process-title { font-size: 0.9rem; margin-bottom: 8px; }
  .page-applications .process-text { font-size: 0.82rem; line-height: 1.6; }
}

/* ============================================================
   APPLICATIONS — FENÊTRE APP
============================================================ */
.app-window {
  background: #F8FAFC;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.app-titlebar {
  background: var(--color-dark);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-titlebar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-dot-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
}

.app-titlebar-name {
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
}

.app-titlebar-dots {
  display: flex;
  gap: 6px;
}

.app-titlebar-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.app-titlebar-dots span:nth-child(1) { background: #FF5F57; }
.app-titlebar-dots span:nth-child(2) { background: #FEBC2E; }
.app-titlebar-dots span:nth-child(3) { background: #28C840; }

.app-body { padding: 20px; background: white; }

.app-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.app-kpi {
  background: var(--color-gray-bg);
  border-radius: 8px;
  padding: 12px 14px;
}

.app-kpi-label {
  font-size: 0.68rem;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.app-kpi-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.app-kpi-sub {
  font-size: 0.65rem;
  color: var(--color-blue);
  font-weight: 500;
}

.app-table { width: 100%; border-radius: 6px; overflow: hidden; font-size: 0.75rem; }

.app-table-header {
  background: var(--color-dark);
  color: white;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 0.7fr;
  padding: 8px 12px;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.3px;
}

.app-table-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 0.7fr;
  padding: 8px 12px;
  gap: 8px;
  align-items: center;
  color: var(--color-dark);
}

.app-table-row:nth-child(odd) { background: white; }
.app-table-row:nth-child(even) { background: #F8FAFC; }

.app-status-ok  { color: #22C55E; font-weight: 600; font-size: 0.7rem; }
.app-status-wait { color: #F59E0B; font-weight: 600; font-size: 0.7rem; }

.app-btn-voir {
  display: inline-block;
  background: var(--color-blue);
  color: white;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 600;
}

.app-caption {
  font-size: 0.75rem;
  color: var(--color-text);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ============================================================
   APPLICATIONS — SECTEURS
============================================================ */
.sector-examples {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.sector-examples li {
  font-size: 0.85rem;
  color: var(--color-text);
  padding: 4px 0;
}

.sector-examples li::before {
  content: '→ ';
  color: var(--color-blue);
  font-weight: 600;
}

/* ============================================================
   APPLICATIONS — REFIT (fond dark)
============================================================ */
.refit-section {
  background: var(--color-dark);
  padding: 80px 0;
}

.refit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .refit-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.refit-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.refit-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.refit-link {
  display: block;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.refit-link:hover { opacity: 0.75; }

/* Schéma comparatif */
.compare-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}

.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-col-title {
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.compare-col-title.bad  { background: rgba(239,68,68,0.15); color: #F87171; }
.compare-col-title.good { background: rgba(56,182,255,0.15); color: var(--color-blue); }

.compare-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.compare-item:last-child { border-bottom: none; }

.cmp-x { color: #F87171; font-weight: 700; flex-shrink: 0; }
.cmp-ok { color: var(--color-blue); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   PAGE IA — INTÉGRATION INTELLIGENCE ARTIFICIELLE
============================================================ */

/* Hero split layout */
.page-ia .page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
  max-width: none;
  margin: 0;
}

.page-ia .breadcrumb {
  justify-content: flex-start;
}

.page-ia .page-hero-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.page-ia .hero-stats {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  margin-top: 32px;
}

.page-ia .page-hero-inner .hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .page-ia .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .page-ia .breadcrumb {
    justify-content: center;
  }
}

/* Chat window illustration */
.chat-window {
  background: #0f1117;
  border: 1px solid rgba(56,182,255,0.2);
  border-radius: 14px;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.chat-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.chat-dot.red   { background: #FF5F57; }
.chat-dot.yell  { background: #FFBD2E; }
.chat-dot.green { background: #28C840; }

.chat-window-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-left: 6px;
  font-family: 'Inter', monospace;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.chat-bubble-user {
  background: rgba(56,182,255,0.15);
  border: 1px solid rgba(56,182,255,0.25);
  color: rgba(255,255,255,0.85);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble-ai {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.8);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  position: relative;
}

.chat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.8;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: chat-bounce 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chat-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* tools-grid / ia-use-card / conviction-box → remplacés par .cards-grid + .card (style.css) */
