/**
 * @file
 * MLT Modern — Promise card.
 *
 * Translucent yellow-bordered card with uppercase title + tick list.
 * Designed for inside the hero against the blue gradient. The semi-
 * transparent fills mean it inherits the surrounding colour rather
 * than fighting it.
 *
 * Markup:
 *   <div class="mlt-promise">
 *     <div class="mlt-promise__title">Our Promise When You Book Us</div>
 *     <ul class="mlt-promise__list">
 *       <li><strong>Fixed price</strong> — what we quote is what you pay</li>
 *       ...
 *     </ul>
 *   </div>
 */

.mlt-promise {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid hsla(var(--mlt-accent-value), 0.3);
  border-radius: var(--mlt-radius-md);
  padding: 20px 22px;
  margin-top: 22px;
}

.mlt-promise__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--mlt-accent);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mlt-promise__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mlt-promise__list li {
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0 7px 28px;
  position: relative;
  opacity: 0.95;
}

.mlt-promise__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: var(--mlt-accent);
  color: var(--mlt-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.mlt-promise__list li strong {
  font-weight: 700;
  color: #fff;
}
