/* =====================================================================
   FastDriver Plugin 1355 - Checklist Text Block
   ===================================================================== */
.fdcb-section,.fdcb-section *{box-sizing:border-box}
.fdcb-section{
  --fdcb-lime:var(--primary-color-one,#c1f11d);
  --fdcb-ink:var(--primary-color-two,#141414);
  --fdcb-deep:#7da40a;
  background:#f5f5f5;padding:60px 24px;
  font-family:var(--creote-family-two,"Inter",system-ui,sans-serif);
  font-size:var(--font-size-base,15px);color:var(--fdcb-ink);
  -webkit-font-smoothing:antialiased;
}
.fdcb-wrap{max-width:1180px;margin:0 auto}
.fdcb-tag{display:inline-block;font-size:11.5px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase;color:var(--fdcb-ink);background:var(--fdcb-lime);padding:7px 18px;border-radius:50px;margin-bottom:12px}
.fdcb-title{font-family:var(--creote-family-one,"Spartan",sans-serif);font-size:clamp(22px,2.8vw,34px);font-weight:800;letter-spacing:-.4px;line-height:1.35;margin:0 0 10px}
.fdcb-title span{color:var(--fdcb-deep)}
.fdcb-intro{font-size:14.5px;color:#6b6b6b;line-height:1.8;max-width:700px;margin:0}
.fdcb-intro a{color:var(--fdcb-deep);font-weight:600}
.fdcb-points{list-style:none;margin:20px 0 28px;padding:0;display:flex;flex-direction:column;gap:10px}
.fdcb-point{display:flex;align-items:center;gap:10px;font-size:14px;color:#3d3d3d;line-height:1.5}
.fdcb-point__dot{width:20px;height:20px;border-radius:50%;background:var(--fdcb-lime);display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}
.fdcb-point__dot svg{width:10px;height:10px;fill:var(--fdcb-ink);display:block}
/* ---------------------------------------------------------------------
   Theme override
   theme-css.css has `section ul li` { padding-left:25px } and
   `section ul li:before` { content:'\f058'; FontAwesome tick }, which
   applies to EVERY list inside a <section> - including this one, giving
   a doubled tick. This list draws its own icon, so switch the theme's
   pseudo-element off.
   --------------------------------------------------------------------- */
.fdcb-section .fdcb-points li{padding-left:0;list-style:none}
.fdcb-section .fdcb-points li::before,.fdcb-section .fdcb-points li::after{content:none;display:none}

.fdcb-btns{display:flex;gap:12px;flex-wrap:wrap}
.fdcb-btn{display:inline-flex;align-items:center;gap:7px;border-radius:8px;font-family:inherit;font-size:14px;text-decoration:none;transition:background .18s,border-color .18s,color .18s}
.fdcb-btn--solid{background:var(--fdcb-lime);color:var(--fdcb-ink);border:none;padding:13px 26px;font-weight:800}
.fdcb-btn--solid:hover{filter:brightness(.94);color:var(--fdcb-ink)}
.fdcb-btn--outline{background:transparent;color:var(--fdcb-ink);border:1.5px solid #e0e0e0;padding:12px 24px;font-weight:600}
.fdcb-btn--outline:hover{border-color:var(--fdcb-deep);color:var(--fdcb-deep)}
@media(max-width:480px){
  .fdcb-section{padding:40px 16px}
  .fdcb-btns{flex-direction:column;align-items:stretch}
  .fdcb-btn{justify-content:center}
}
