/* Nos engagements — pre-footer LeGeekShop */

.lgk-eng-section {
  --lgk-eng-accent: #00e5c8;
  --lgk-eng-card: #12171d;
  --lgk-eng-border: rgba(255, 255, 255, 0.1);
  --lgk-eng-muted: #9aa8b5;
}

.lgk-eng-section .lgk-eng__title {
  margin: 0;
  text-transform: none !important;
  letter-spacing: -0.02em;
}

.lgk-eng-section .lgk-eng__lead {
  margin: 0.5rem auto 0;
  max-width: 42rem;
  color: var(--lgk-eng-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  text-transform: none;
}

.lgk-eng-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .lgk-eng-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .lgk-eng-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  /* 5 cartes : 3 + 2 centrées */
  .lgk-eng-grid .lgk-eng-card:nth-child(4) {
    grid-column: 1 / span 1;
  }

  .lgk-eng-grid .lgk-eng-card:nth-child(5) {
    grid-column: 2 / span 1;
  }
}

@media (min-width: 1280px) {
  .lgk-eng-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lgk-eng-grid .lgk-eng-card:nth-child(4),
  .lgk-eng-grid .lgk-eng-card:nth-child(5) {
    grid-column: auto;
  }
}

.lgk-eng-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 14px;
  background: var(--lgk-eng-card);
  border: 1px solid var(--lgk-eng-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  text-align: center;
  text-transform: none !important;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lgk-eng-card:hover {
  border-color: color-mix(in srgb, var(--lgk-eng-accent) 45%, var(--lgk-eng-border));
  transform: translateY(-2px);
}

.lgk-eng-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-inline: auto;
  border-radius: 14px;
  font-size: 1.55rem;
  line-height: 1;
  background: color-mix(in srgb, var(--lgk-eng-accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--lgk-eng-accent) 35%, transparent);
}

.lgk-eng-card__heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #f2f6fa;
  text-transform: none !important;
  letter-spacing: normal;
}

.lgk-eng-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--lgk-eng-muted);
  text-transform: none !important;
  letter-spacing: normal;
  text-wrap: pretty;
}

.lgk-eng-card__bullets {
  margin: 0.15rem 0 0;
  padding: 0.75rem 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lgk-eng-card__bullets li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  text-transform: none !important;
}

.lgk-eng-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--lgk-eng-accent);
}

.lgk-eng-card__pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.lgk-eng-card__pay span {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e8eef3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: none;
}
