/**
 * @file
 * MLT Modern — Final CTA block.
 *
 * Full-bleed blue gradient section that closes a page with a big call-to-
 * action, two buttons, and a large phone number underneath in accent
 * yellow.
 *
 * Markup:
 *   <section class="mlt-final-cta">
 *     <div class="mlt-final-cta__container">
 *       <h2>Ready to book your free home visit?</h2>
 *       <p>No obligation, no high-pressure sales — just an honest look
 *         at your wiring and a fixed-price quote.</p>
 *       <div class="mlt-final-cta__actions">
 *         <a href="#quote" class="mlt-btn-primary">Get a Free Quote</a>
 *         <a href="tel:01992276087" class="mlt-btn-secondary">Call 01992 276087</a>
 *       </div>
 *       <div class="mlt-final-cta__phone">
 *         Or call us directly: <a href="tel:01992276087">01992 276087</a>
 *       </div>
 *     </div>
 *   </section>
 */

.mlt-final-cta {
  background: linear-gradient(135deg, var(--mlt-primary) 0%, var(--mlt-primary-dark) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.mlt-final-cta__container {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 var(--mlt-container-pad);
}

.mlt-final-cta h2 {
  font-size: 36px;
  margin: 0 0 16px;
  line-height: 1.2;
  color: #fff;
  font-weight: 800;
}

.mlt-final-cta p {
  font-size: 19px;
  margin: 0 auto 30px;
  opacity: 0.95;
  max-width: 700px;
  line-height: 1.5;
}

.mlt-final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mlt-final-cta__phone {
  font-size: 28px;
  font-weight: 800;
  margin-top: 24px;
}

.mlt-final-cta__phone a {
  color: var(--mlt-accent);
  text-decoration: none;
}

.mlt-final-cta__phone a:hover {
  text-decoration: underline;
}
