/* ─── PAGE LIVRABLE ──────────────────────────────────── */
.livrable-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 48px 80px;
}

/* ─── HERO ───────────────────────────────────────────── */
.livrable-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.livrable-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(26,107,255,.08);
  border: 1px solid rgba(26,107,255,.2);
  padding: 5px 12px; margin-bottom: 16px;
}

.livrable-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text);
  line-height: 1; margin-bottom: 20px;
}

.livrable-hero-content p {
  font-size: 14px; color: var(--muted);
  line-height: 1.8; margin-bottom: 28px;
  max-width: 420px;
}

.livrable-hero-img {
  position: relative;
}

.livrable-hero-img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}

.livrable-hero-img::before {
  content: '';
  position: absolute; inset: -8px -8px auto auto;
  width: 60px; height: 60px;
  background: var(--blue); z-index: -1;
}

.livrable-hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--dark);
  padding: 14px 20px;
  display: flex; flex-direction: column;
}

.badge-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--blue);
  line-height: 1;
}

.badge-label {
  font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* ─── GRILLE 4 BLOCS ─────────────────────────────────── */
.livrable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.livrable-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
}

.livrable-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.card-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800;
  color: var(--white); background: var(--blue);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.livrable-card-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text); flex: 1;
}

.card-icon {
  width: 36px; height: 36px; color: var(--blue);
  opacity: .6; flex-shrink: 0;
}

.card-desc {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.75; margin-bottom: 20px;
}

/* ─── SPECS ──────────────────────────────────────────── */
.card-specs {
  display: flex; flex-direction: column; gap: 12px;
}

.spec-item {
  display: flex; align-items: flex-start; gap: 12px;
}

.spec-item svg {
  width: 18px; height: 18px; color: var(--blue);
  flex-shrink: 0; margin-top: 2px;
}

.spec-item strong {
  display: block; font-size: 13px; color: var(--text);
  font-weight: 600;
}

.spec-item span {
  font-size: 12px; color: var(--muted);
}

/* ─── USAGES ─────────────────────────────────────────── */
.usages-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.usage-item {
  background: var(--white); border: 1px solid var(--border);
  padding: 14px 12px; text-align: center;
  transition: border-color .2s, transform .2s;
}

.usage-item:hover {
  border-color: rgba(26,107,255,.3);
  transform: translateY(-2px);
}

.usage-item svg {
  width: 22px; height: 22px; color: var(--blue);
  margin: 0 auto 8px; display: block;
}

.usage-item strong {
  display: block; font-size: 11.5px; font-weight: 600;
  color: var(--text); letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 3px;
}

.usage-item span {
  font-size: 11px; color: var(--muted);
}

/* ─── SPEC TABLE ─────────────────────────────────────── */
.spec-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}

.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }

.spec-table td {
  padding: 9px 0; color: var(--muted); vertical-align: top;
}

.spec-table td:first-child { width: 50%; }

.spec-table td strong {
  color: var(--text); font-weight: 600;
}

/* ─── FORMATS ────────────────────────────────────────── */
.formats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 16px;
}

.format-item {
  background: var(--white); border: 1.5px solid var(--border);
  padding: 14px 8px; text-align: center;
  transition: border-color .2s;
}

.format-item.active {
  border-color: var(--blue);
  background: rgba(26,107,255,.05);
}

.format-item svg {
  width: 24px; height: 24px;
  color: var(--muted); margin: 0 auto 6px; display: block;
}

.format-item.active svg { color: var(--blue); }

.format-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .1em;
  color: var(--text);
}

.formats-note {
  font-size: 12.5px; color: var(--muted);
  line-height: 1.6; margin-bottom: 14px;
}

.formats-compat {
  display: flex; flex-direction: column; gap: 8px;
}

.formats-compat > span {
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}

.compat-list {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.compat-list span {
  font-size: 11.5px; background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 10px; color: var(--text);
  font-weight: 500;
}

/* ─── PROCESS ────────────────────────────────────────── */
.livrable-process {
  background: var(--dark);
  padding: 48px;
  margin: 0 -48px;
}

.livrable-process .section-header h2 { color: var(--white); }
.livrable-process .section-header p  { color: rgba(255,255,255,.45); }

.process-steps {
  display: flex; align-items: flex-start;
  gap: 0; max-width: 1000px; margin: 40px auto 0;
}

.process-step {
  flex: 1; text-align: center; padding: 0 12px;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; color: var(--blue);
  line-height: 1; margin-bottom: 10px;
}

.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6;
}

.process-arrow {
  font-size: 20px; color: var(--blue);
  padding-top: 10px; flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .livrable-page { padding: 80px 24px 60px; }
  .livrable-hero { grid-template-columns: 1fr; gap: 32px; }
  .livrable-grid { grid-template-columns: 1fr; }
  .usages-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 16px; }
  .process-arrow { transform: rotate(90deg); }
  .livrable-process { margin: 0 -24px; padding: 40px 24px; }
}
