.fm-bm {
  --fm-bg: #0f1110;
  --fm-card: #ffffff;
  --fm-text: #111111;
  --fm-muted: #666666;
  --fm-border: #e8e8e8;
  --fm-green: #b6ff00;
  --fm-green-light: #f2ffd1;
  --fm-light: #f5f5f5;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
.fm-bm * { box-sizing: border-box; }
.fm-bm-section {
  overflow: hidden;
  border-radius: 28px;
  background: var(--fm-bg);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.fm-bm-hero {
  padding: 48px 30px 34px;
  background:
    radial-gradient(circle at top right, rgba(182,255,0,.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(182,255,0,.07), transparent 30%),
    var(--fm-bg);
}
.fm-bm-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--fm-green);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.fm-bm-hero h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
}
.fm-bm-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.6;
}
.fm-bm-top-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.fm-bm-top-info {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.fm-bm-content { padding: 0 30px 30px; }
.fm-bm-grid {
  display: grid;
  gap: 22px;
}
.fm-bm-grid-1 { grid-template-columns: 1fr; }
.fm-bm-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.fm-bm-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.fm-bm-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.fm-bm-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: var(--fm-card);
  color: var(--fm-text);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fm-bm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,.18);
}

.fm-bm-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.fm-bm-type {
  display: inline-block;
  margin-left: auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--fm-green);
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.fm-bm-type-occasion {
  background: #ececec;
}
.fm-bm-brand {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.fm-bm-title {
  margin: 0 0 6px;
  color: #111;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}
.fm-bm-subtitle {
  margin: 0 0 20px;
  color: var(--fm-muted);
  font-size: 14px;
  line-height: 1.4;
}
.fm-bm-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.fm-bm-spec {
  padding: 13px 14px;
  border-radius: 16px;
  background: var(--fm-light);
}
.fm-bm-spec small,
.fm-bm-repairs small {
  display: block;
  margin-bottom: 6px;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.fm-bm-spec strong {
  color: #111;
  font-size: 15px;
}
.fm-bm-repairs {
  margin-bottom: 20px;
  padding: 15px;
  border: 2px solid var(--fm-green);
  border-radius: 16px;
  background: var(--fm-green-light);
}
.fm-bm-repairs strong {
  display: block;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}
.fm-bm-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.fm-bm-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  color: #343434;
  font-size: 14px;
  line-height: 1.45;
}
.fm-bm-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  content: "✓";
  background: var(--fm-green);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 19px;
  text-align: center;
}
.fm-bm-bottom {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--fm-border);
}
.fm-bm-price-box {
  padding: 18px 15px;
  border: 2px solid var(--fm-green);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--fm-green-light), #fff);
  text-align: center;
}
.fm-bm-price-label {
  display: block;
  margin-bottom: 7px;
  color: #5c5c5c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.fm-bm-price {
  display: block;
  color: #111;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}
.fm-bm-price small {
  margin-left: 4px;
  color: #555;
  font-size: 13px;
  font-weight: 600;
}
.fm-bm-note,
.fm-bm-empty {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.fm-bm-empty { margin-top: 0; }
@media (max-width: 1100px) {
  .fm-bm-grid-4 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .fm-bm-grid-3,
  .fm-bm-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .fm-bm-hero h2 { font-size: 36px; }
}
@media (max-width: 640px) {
  .fm-bm { padding: 0 8px; }
  .fm-bm-section { border-radius: 20px; }
  .fm-bm-hero,
  .fm-bm-content { padding-right: 18px; padding-left: 18px; }
  .fm-bm-hero { padding-top: 34px; }
  .fm-bm-grid-2,
  .fm-bm-grid-3,
  .fm-bm-grid-4 { grid-template-columns: 1fr; }
  .fm-bm-hero h2 { font-size: 30px; }
  .fm-bm-card { padding: 21px; }
  .fm-bm-price { font-size: 38px; }
}

/* Problèmes ou fonctions non disponibles */
.fm-bm-problems {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 15px 15px 46px;
  border: 2px solid #f2a900;
  border-radius: 16px;
  background: #fff6df;
}
.fm-bm-problems::before {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  content: "!";
  background: #f2a900;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}
.fm-bm-problems small {
  display: block;
  margin-bottom: 6px;
  color: #8a5400;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.fm-bm-problems strong {
  display: block;
  color: #342300;
  font-size: 14px;
  line-height: 1.5;
}
