.fcta-sect {
  background: linear-gradient(160deg, #F8FAFB 0%, #EDF7F2 50%, #F4FAF7 100%);
  padding: 96px 56px; position: relative; overflow: hidden;
  border-top: 1px solid #EEF2F7;
}
/* Top accent bar */
.fcta-sect::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #1EA047, #00B894);
}
.fcta-inner {
  max-width: 100%; margin: 0 auto; position: relative; z-index: 1;
  text-align: center;
}
.fcta-h {
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1ea047;
    line-height: 1.3;
    text-decoration: none;
}
.fcta-h em { font-style: normal; color: #1EA047; }
.fcta-sub {
  font-size: 16px; 
  color: #1D4128; 
  line-height: 1.78;
  max-width: 540px; 
  margin: 0 auto 36px; 
}
.fcta-sub strong { color: var(--navy); font-weight: 700; }

/* CTA button — centered */
.fcta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 48px;
}
.fcta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1EA047, #17843C);
  color: white; border: none; border-radius: 12px;
  padding: 15px 28px; font-size: 15px; font-weight: 800;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 20px rgba(30,160,71,.35);
  transition: transform .28s cubic-bezier(.34,1.1,.64,1), box-shadow .28s;
}
.fcta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,160,71,.45); }
.fcta-btn-ic {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fcta-btn-ic svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.fcta-note svg { width: 12px; height: 12px; stroke: #1EA047; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Trust row — 3 items horizontal */
.fcta-trust-ic.green  { background: #E8F8EE; border: 1.5px solid rgba(30,160,71,.18); }
.fcta-trust-ic.blue  { background: #EEF4FF; border: 1.5px solid rgba(59,130,246,.18); }
.fcta-trust-ic.amber  { background: #FFF7E8; border: 1.5px solid rgba(245,158,11,.18); }
.fcta-trust-ic svg { width: 17px; height: 17px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

